what are SPA and GPA parameters?What the Purpose?Examples?
under ABAP Memory.
Answers were Sorted based on User's Feedback
Answer / pinu
SPA and GPA are SET/GET parameters.it comes under SAP
memory and used to pass a value from one program to any
transcation where the set/get parameterid is set.
SET PARAMETER ID 'MON' FIELD P_SCRIPT.
where MON is a parameter ID set for a particular screen
(SMOD).
thanks,
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rajeshwar rao
Within a main session, when ever you start an application
program, it opens up an internal sessions with in the main
session. The internal session has a memory area that
contains the ABAP program and its associated data. So when
ever you want to pass data between two internal sessions,
then you can use ABAP Memory (i.e import, export).
When comes to SAP memory (also known as global memory), if
the data has to be passed b/w two main sessions, we can use
SAP Memory(SPA/GPA Parameters). SAP Memory can also be used
to pass data b/w internal sessions.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rajeshwar rao
SAP Memory
SAP memory is a memory area to which all main sessions
within a SAPgui have access. You can use SAP memory either
to pass data from one program to another within a session,
or to pass data from one session to another. Application
programs that use SAP memory must do so using SPA/GPA
parameters (also known as SET/GET parameters). These
parameters can be set either for a particular user or for a
particular program using the SET PARAMETER statement. Other
ABAP programs can then retrieve the set parameters using the
GET PARAMETER statement. The most frequent use of SPA/GPA
parameters is to fill input fields on screens
Is This Answer Correct ? | 0 Yes | 0 No |
how to find the print/driver prg of smartform.I used FM SSF_FUNCTION_MODULE_NAME in driver prg.
How data is stored in cluster table?
Difference between table control and step loop? Plz answer me its urgent!
can you create an internal table dynamically?(at run time)
In Sapscript , For example : I want to define font in Arial? And that font is not available in my system ? how can i get this font into my sapscript?
What is the difference of update types in call transaction method ? : abap bdc
WHAT IS DIFFERENCE BETWEEN USER EXIT AND BADI
30000 locks are done,u r having 15 min time .to leave u r job.how would u resolve it
In start of selection, if we perform validation, what happens ?
By default SAP provides locking mechanism if db is being used by a user ,then what is the use of writing enque method in your code?
Give few names of pooled tables in sap ?
How many times we can use At Selection Screen Output and on field event in report?