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

Regarding Data Element...

Former Member
0 Likes
921

Hi..

What is the Parameter ID in Data Element.

How to give that?

What is the purpose of that?

Please Help Me out....

Regards

Sandeep.

1 ACCEPTED SOLUTION
Read only

sachin_mathapati
Contributor
0 Likes
850

Hi Sandeep,

Usually paramater id is used to default values of a screen field.

Paramater ID : A field can be filled with proposed values from SAP memory using a parameter ID.

Example

A user only has authorization for company code 001. This company code is stored in memory at the beginning of a transaction under the corresponding parameter ID of the data element. Fields that refer to the data element are automatically filled with the value 001 in all subsequent screen templates.

Reward points if helpful....

Regards,

Sachin M M

Edited by: Sachin Mathapati on Jan 23, 2008 6:36 AM

7 REPLIES 7
Read only

sachin_mathapati
Contributor
0 Likes
851

Hi Sandeep,

Usually paramater id is used to default values of a screen field.

Paramater ID : A field can be filled with proposed values from SAP memory using a parameter ID.

Example

A user only has authorization for company code 001. This company code is stored in memory at the beginning of a transaction under the corresponding parameter ID of the data element. Fields that refer to the data element are automatically filled with the value 001 in all subsequent screen templates.

Reward points if helpful....

Regards,

Sachin M M

Edited by: Sachin Mathapati on Jan 23, 2008 6:36 AM

Read only

Former Member
0 Likes
850

Sandeep,

http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm

To get the parameter id

press F1 on field->technical help-> you can find parameter id of that element.

Table is : TPARA

Don't forget to reward if useful....

Read only

Former Member
0 Likes
850

Hi..

My point is..

How to create parameter id for the data element.

Regards

sandeep

Read only

Former Member
0 Likes
850

Hi Sandeep,this will help u.

While using CALL TRANSACTION this filed is essential..

Check this sample code how to use it..

SET PARAMETER ID 'MAT' FIELD mat_tab-matnr . "material number

SET PARAMETER ID 'WRK' FIELD p_werks. "plant

CALL TRANSACTION 'MD04' AND SKIP FIRST SCREEN .

In (SE11)Table Enter Mara and Press on Display and Double click on Data Element of Matnr And Press on Further Characteristics Tab..Here u Findout the Parameter ID.

Go to the dataelement of that field, go to further characteristics, there you will find parameter id.

BES is the parameter ID for PO Number.

kindly reward if found helpful.

cheers,

Hema.

Edited by: Hema Sundar Munagapati on Jan 23, 2008 7:12 AM

Read only

Former Member
0 Likes
850

hi sandeep,

Set/Get parameter ID

A field can be filled with proposed values from SAP memory using

a parameter ID.

Example

A user only has authorization for company code 0001. This company

code is stored in memory at the beginning of a transaction under

the corresponding parameter ID. Fields that refer to the data

element are automatically filled with the value 001 in all

subsequent screen templates.

Dependencies

A field in the screen template is only filled automatically with

the value stored under the parameter ID of the data element if

this was explicitly permitted in the Screen Painter.

with regards,

asif.

Read only

Former Member
0 Likes
850

hi

Set/Get parameter ID

A field can be filled with proposed values from SAP memory using a parameter ID.

Example

A user only has authorization for company code 0001. This company code is stored in memory at the beginning of a transaction under the corresponding parameter ID. Fields that refer to the data element are automatically filled with the value 001 in all subsequent screen templates.

Dependencies

A field in the screen template is only filled automatically with the value stored under the parameter ID of the data element if this was explicitly permitted in the Screen Painter.

Read only

Former Member
0 Likes
850

Hi,

SET PARAMETER makes use of theSAP memory.

We can set values for a particular field globally.

e.g: SET PARAMETER 'paramid' field <field name>.

'paramid' can be used in any ABAP program using the

syntax GET PARAMETER 'paramid' field <field name>.

To set Paramter ID for a Data Element, edit "Further Characteristics" where you will get an input field for Parameter ID.

Go via SE11 -> Data Element Name -> Display -> Further Characteristics

Reward if helpful.

Edited by: prosenjit chaudhuri on Jan 24, 2008 11:16 AM