can u send the results from report to sap memory?
Answer Posted / 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 |
Post New Answer View All Answers
How do we assign dynamic views while creating material master and generating bdc? : abap bdc
what is abstract classes
How is conversion of data types done between abap/4 & external level? : abap data dictionary
What has to be done to the packed fields before submitting to a BDC session.
Can any tell me ECC 5.0, ECC 6.0 Released year? and difference between them?
In which time constraint does the infotype records depend on the subtype ? : abap hr
What is the collect statement? How is it different from append?
On abap: did you set up a workflow? Are you familiar with all the steps for setting up a workflow?
How to convert normal function module to bapi?
Does the call transaction method allow multiple transactions to be processed by sap? : abap bdc
What is a type-pool?
Is logo in script 1st stored as tiff format before uploading or in jpeg format?and where is that stored after uploading?
In sap scripts, how will you link form with the event driven?
What happens if a function module runs in an update task?
How are BAPI different from normal function modules?