Go to Tx- SE93 Let’s find out the user exits present in VA01 transaction. Open the transaction. Double Click on the program. Click
Category: Uncategorized
Creating New Parameter ID in SAP
Open the data element MATNR. Here Parameter ID- MAT is used. Double click on the Parameter ID. Open the table TPARA and here we can
Creating SAP Change Document Object (SCDO):Using CDHDR & CDPOS Table for different applications
Scenario: Creating Sap Change Document Object and using it in the program to log the field changes in the standard data base tables: CDHDR &
Text Objects And IDs Creation and Using It by FMs ‘CREATE_TEXT’ & ‘READ_TEXT’
Scenario: SAP Script uses Text Object and Text Ids concept to store some information in the standard table ‘STXH’ and ‘STXL’. Also these Text Object
Creating Application Log Object , Sub object & its Uses
Step1. Create the below table which stores the Employee records. Step2. Create the below message class in Trax- SE91 with below messages. Step3. Go to
RFC Connection Type -G and Using it in program with CL_HTTP_CLIENT to read an xml file from the Web
DATA : lr_request TYPE REF TO if_http_request, lr_client TYPE REF TO if_http_client, lv_code TYPE i, lv_xdata TYPE xstring. * Create a link to the source xml by the RFC destination CALL METHOD cl_http_client=>create_by_destination EXPORTING destination = ‘ZW3SCHOOL’ ” Logical destination (specified in function call) IMPORTING client = lr_client ” HTTP Client Abstraction EXCEPTIONS argument_not_found = 1 destination_not_found = 2 destination_no_authority = 3 plugin_not_active = 4 internal_error = 5 OTHERS = 6. IF sy–subrc <> 0. MESSAGE ID sy–msgid TYPE sy–msgty NUMBER sy–msgno WITH sy–msgv1 sy–msgv2 sy–msgv3 sy–msgv4. ENDIF. * Set the method type as Set CALL METHOD lr_client->request->set_method EXPORTING