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

parameter id

Former Member
0 Likes
732

without using the statements SET PARAMETER ID and GET PARAMETER ID how to create our own parameter id starting with z.

5 REPLIES 5
Read only

Former Member
0 Likes
697

Hi ,

DATA REPID like sy-repid VALUE 'RSPFPAR'.

SET PARAMETER ID 'RID' FIELD REPID.

or

<b>AT Select-options :</b>

Addition 5

... MEMORY ID pid

Effect

On the selection screen, the SPA/GPA ID pid is assigned to the left range limit of the selection criterion.

Note

You must specify the memory ID without quotation marks. It can be up to 3 characters long.

Regards

prabhu

Read only

dani_mn
Active Contributor
0 Likes
697

GO TO SE80.

open your development class.

Right click on your development class. select

CREATE->MORE->SET/GET parameter ID.

Regards,

Wasim Ahmed

Read only

Former Member
0 Likes
697

Hi Priya,

Generally parameter id's are defines when the data element is defined. so in se11...after creating our own table,we have to create a field, data element..then create domain and in the Furhter Characteristics tab you can define your PID.

Hope this helps.

Regards,

Vidya.

Read only

naimesh_patel
Active Contributor
0 Likes
697

Hello,

In ABAP Editor, click on the Other objects > More > Set parameter id. and click on the create button.

Regards,

Naimesh

Read only

Manohar2u
Active Contributor
0 Likes
697

From se80 you can create parameter id's create-more-parameter id.

But you have to use SET PARAMETER ID and GET PARAMETER ID to use your created ZXXX parameter id.

If you don't want to use SET PARAMETER ID & GET PARAMTER ID then no use of creating it.

Also the SET PARAMETER ID will set the value into memory and GET will get back id which was set. ( They are not used to create parameter id).

Parameter id should be created explicitly. And can be assigned in datalement level.

Regds

Manohar