Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Memory ID 'SAP_APPLICATION'

Former Member
0 Likes
452

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

2 REPLIES 2
Read only

Former Member
0 Likes
394

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

Read only

Former Member
0 Likes
394

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