‎2007 Feb 01 6:10 PM
Hello,
what does MEMORY ID 'SAP_APPLICATION' contain. I am new in SAP and in many code samples, i see importing from memory id 'SAP_APPLICATION'
first if all, where is it being first exported ?
and what does it contain and what is its usage ?
I am new in SAP and i highly appreciate your help
‎2007 Feb 01 6:19 PM
hi hassan ,
You start SAPscript with the program ADTEST00 that you can use to carry out processing of the standard text for the original file depending on processing category (change, display).
Source text:
report adtest00.
tables: draw.
data: begin of intdraz occurs 0.
include structure draz.
data: end of intdraz.
data: path(140).
data: textname like thead-tdname,
applicationsnumber,
applicationtype,
display.
import draw intdraz path applicationsnumber applicationtype
from memory id 'SAP_APPLICATION'.
textname = path.
display = 'X'.
if applicationtype eq '2'. display = ' '. endif.
perform edit_text(sapmssce) using 'TEXT'
'ST'
textname
sy-langu
display.
thanks & regards
warun
‎2007 Feb 01 6:28 PM
Hi,.
to edit the standard text for the original application file, depending on the processing mode (change, display
import draw intdraz path application number application type
from memory id 'SAP_APPLICATION'.
textname = path.
display = 'X'
if application type eq '2'. display = ' '. endif.
perform edit_text(sapmssce) using 'TEXT'
'ST'
textname
sy-langu
display.
Look at the Bwlow links