How To Call Workflow From Abap Program Sap

Posted on  by  admin
How To Call Workflow From Abap Program Sap 6,9/10 496 votes
How To Call Workflow From Abap Program Sap

This explains a simple scenario to trigger Class based Workflow from program. Now if we call the SET_CUSTOMER method it will. ABAP, BAPI, xApps, SAP. Call Method from a ABAP Program. **** Call the method from Program 1. Or is part of a workflow. Pre-requisites: It is assumed that the reader of this document is aware of the business object concepts and good in ABAP. Procedure: In this document, we would take an example of the business object BUS1001006 (Material) and the event CREATED. This example shows a simple way to call a workflow process from Event-Class into a Class Method or SAP ABAP Program. Pre-requisites: It is assumed that the reader of this document is aware of the business object concepts and good in ABAP. Procedure: In this document, we would take an example of the business object BUS1001006 (Material) and the event CREATED.

Call Transaction From Abap Program

Your description is a little vague, so in general if you talk about a button to press and a following action that is to be triggered you may need to: • define a button for the Application Toolbar in GUI-Status with a custom function code that is used when the button is clicked • add a gloabl general attribute with 'type of screen element' = OK to the dynpro screen's element list • check this global attribute in the PAI module for the custom function code value and then perform/call your sendEmail function. Jackass 2 full movie watch. Use the following code example to send an email in ABAP z-program code, via calling function module (SAPoffice: Send new document): * Data Declarations DATA: LT_MAILSUBJECT TYPE SODOCCHGI1. DATA: LT_MAILRECIPIENTS TYPE STANDARD TABLE OF SOMLREC90 WITH HEADER LINE. DATA: LT_MAILTXT TYPE STANDARD TABLE OF SOLI WITH HEADER LINE. * Recipients LT_MAILRECIPIENTS-REC_TYPE = 'U'.

LT_MAILRECIPIENTS-RECEIVER = 'sheetal@gmail.com'. APPEND LT_MAILRECIPIENTS. CLEAR LT_MAILRECIPIENTS. LT_MAILSUBJECT-OBJ_NAME = 'TEST'. LT_MAILSUBJECT-OBJ_LANGU = SY-LANGU. LT_MAILSUBJECT-OBJ_DESCR = 'Mail Subject'.

* Mail Contents LT_MAILTXT = 'This is a test mail'. Dj songs free download mp3. APPEND LT_MAILTXT.

Send Email From Abap Program

CLEAR LT_MAILTXT. * Send Mail CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1' EXPORTING DOCUMENT_DATA = LT_MAILSUBJECT TABLES OBJECT_CONTENT = LT_MAILTXT RECEIVERS = LT_MAILRECIPIENTS EXCEPTIONS TOO_MANY_RECEIVERS = 1 DOCUMENT_NOT_SENT = 2 DOCUMENT_TYPE_NOT_EXIST = 3 OPERATION_NO_AUTHORIZATION = 4 PARAMETER_ERROR = 5 X_ERROR = 6 ENQUEUE_ERROR = 7 OTHERS = 8. IF SY-SUBRC EQ 0. * Push mail out from SAP outbox SUBMIT RSCONN01 WITH MODE = 'INT' AND RETURN.

Coments are closed
Scroll to top