What is a variant and where do you use it?

If you want to run a report program with same selections at regular intervals (forexample, for monthly sales statistics), you would not want to enter the same values eachtime. So, ABAP/4 offers you a possibility to combine the desired values for all theseselections in one selection set. You can create as many different selection sets … Read more

What is a variant and where do you use it?

If you want to run a report program with same selections at regular intervals (forexample, for monthly sales statistics), you would not want to enter the same values eachtime. So, ABAP/4 offers you a possibility to combine the desired values for all theseselections in one selection set. You can create as many different selection sets … Read more

What is field symbol?

A field symbol does not physically reserve space for a field, but points to a fieldwhich is not known until runtime of the program. Sometimes you only know which fieldyou want to process, and how you want to process it, at runtime. For this purpose, you can create field symbols in your program. At runtime, … Read more

What is field symbol?

A field symbol does not physically reserve space for a field, but points to a fieldwhich is not known until runtime of the program. Sometimes you only know which fieldyou want to process, and how you want to process it, at runtime. For this purpose, you can create field symbols in your program. At runtime, … Read more

What is set parameter and get parameter?

We can pass data to a called program using SPA/GPA parameters. SPA/GPAparameters are field values saved globally in memory. Each parameter is identified by athree-character code: you can define these parameters in the object browser byselecting Other objects on the first screen. The SPA/GPA storage is user-specific andvalid throughout all the user’s sessions.by using the … Read more

What is set parameter and get parameter?

We can pass data to a called program using SPA/GPA parameters. SPA/GPAparameters are field values saved globally in memory. Each parameter is identified by athree-character code: you can define these parameters in the object browser byselecting Other objects on the first screen. The SPA/GPA storage is user-specific andvalid throughout all the user’s sessions.by using the … Read more