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


Please Help Members By Posting Answers For Below Questions

What is a maintenance view? : abap data dictionary

764


Is it possible to pass data to and from include programs explicitly? : abap modularization

987


What is transparent table?

827


Differentiate between static and dynamic step loops?

773


foreign key enforcement?

1833


after creating lock object if does n't access record by second user what should we do?

1750


How can you manipulate the presentation and attributes of interactive lists?

870


What is the first thing you do after vendor setup is complete?

1110


While sorting field groups we cannot use more than one key field. State true or false. : abap modularization

800


how to create module pool program using table controls based on selection criteria specified for sales document item in the first screen and item details in the second screen. plz mention the detail coding Tahnks, Rahul

3633


What is new enhancement framework?

1089


What is full form of bdc session? : abap bdc

875


SAP query how to use end users?

1893


What are the requirements a dialog program must fulfill?

848


What is protect & endprotect?

774