can u send the results from report to sap memory?
Answers were Sorted based on User's Feedback
Answer / k.swetha reddy
yes ofcourse we can send through SET PARAMETER.
CHECK THIS OUT......
SET PARAMETER ID pid FIELD f.
Effect
Writes the contents of the field f to the global SAP memory
under the key pid . If the key already contains a value, it
is overwritten.
The key pid must consist of three characters. You can find
a list of the keys (parameters) used in the SAP system
description or in the ABAP/4 Development Workbench.
Notes
The global SAP memory remains available to the user during
the entire terminal session. This means that set values are
retained when you leave a program.
You should not use the SAP memory for temporary storage of
values because other modes use the same global memory.
If you need a new key (parameter), you can create this in
the ABAP/4 Development Workbench.
EXAMPLE:
DATA: REPID(8) VALUE 'RFSCHU01'.
SET PARAMETER ID 'RID' FIELD REPID.
Sets the program name, e.g. for transfer to another
program.
Notes
Runtime errors
SET_PARAMETER_ID_TOO_LONG : Key longer than 3 characters.
SET_PARAMETER_ID_WRONG_TYPE : Key neither type C nor type
N.
SET_PARAMETER_VALUE_TOO_LONG : Value longer than 250
characters
Is This Answer Correct ? | 9 Yes | 0 No |
What is the difference between a dialog program and a report?
Types of windows in SAP scripts?
9 Answers vCentric Technologies,
How to find only duplicate records from table ?
What is the major difference between pool tables and transparent tables?
Explain the different types of view?
What is the length of function code at user-command?
what is sap scriptview ?
wat is the difference between ALE & EDI?
What is modularization and its benefits?
BDC program to migrate data to SAP R/3 database. The data will be uploaded using transaction ME11. (Session Method) plz mention the detail coding Tahnks, Rahul
what are the two methods of modifying sap standard tables ?
On which event we can validate the input fields in module programs?