InterviewSolution
| 1. |
What Is An Abap Memory And Sap Memory And How To Use Them? |
|
Answer» ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. 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). ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. 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). |
|