Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem Regarding SET & GET Parameter

Former Member
0 Likes
341

hi.

This is arijit.i am working as a technical consultant...have 1 yrs of experience.

can anyone tell me the real life example of SET & GET parameter...i never used it.

and i have one more question...

plese give me the fullform of SHDB in b.d.c & NACE in script.....

2 REPLIES 2
Read only

Former Member
0 Likes
311

Check these links for SET and GET parameters:

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9df735c111d1829f0000e829fbfe/content.htm

I think there are no full forms or abbrevations for SAP t-codes. I may be wrong. If you come to know pls let me know:)

Thanks,

Santosh

Read only

Former Member
0 Likes
311

Hi Arijit,

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.

GET-This is the most important event for executable programs that use a logical database. It occurs when the logical database has read a line from the node <table> and made it available to the program in the work area declared using the statement NODES <table>.

When you define the corresponding event block in the program, you can specify a field list if the logical database supports field selection for this node:

GET <table> [FIELDS <f1> <f2>...].

You can process the data in the work area in this event block. For example, you can write it directly to a list, or store it in a sequential dataset (internal table or extract) so that you can process it later.

The logical database reads all columns from all nodes that are not designated for field selection in the logical database and which are superior to <table> on the access path of the logical database. This works independently of whether you have defined GET event blocks for these nodes or not. However, you can only access the data of the nodes for which you have declared a

work area in the NODES statement.

set parameter sets different processing parameters

1. SET PF-STATUS pfstat.

2. SET TITLEBAR f.

3. SET SCREEN scr.

4. SET CURSOR ...

5. SET PARAMETER ID pid FIELD f.

6. SET LANGUAGE lg.

7. SET COUNTRY f.

8. SET BLANK LINES ON/OFF.

9. SET MARGIN x y.

10. SET USER-COMMAND f.

11. SET LEFT SCROLL-BOUNDARY.

12. SET EXTENDED CHECK ON/OFF.

13. SET PROPERTY OF obj p = f.

14. SET RUN TIME ANALYZER ON/OFF.