LUW

LUW

Logical unit of work (LUW) in SAP: The objective of this document is aimed at…

Generate an xml file by ABAP

https://sapintegrationhub.com/abap/transformation/xml-transformation-example-xslt_tool/ Another sample with encoding: http://sapblog.rmtiwari.com/2012/05/simple-transformation-for-xml-in-abap.html

Create a background job from ABAP code

FORM run_background . DATA: lv_jobname TYPE tbtcjob-jobname. DATA: lv_jobcount   LIKE tbtcjob-jobcount, lv_release(1) TYPE c. lv_jobname = 'jobname'. CALL FUNCTION 'JOB_OPEN' EXPORTING jobname          = lv_jobname IMPORTING jobcount         = lv_jobcount EXCEPTIONS cant_create_job  = 1 invalid_job_data = 2 jobname_missing  = 3…