‎2008 Jan 23 5:22 AM
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.
‎2008 Jan 23 5:36 AM
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
‎2008 Jan 23 5:36 AM
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
‎2008 Jan 23 5:58 AM
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....
‎2008 Jan 23 6:02 AM
Hi..
My point is..
How to create parameter id for the data element.
Regards
sandeep
‎2008 Jan 23 6:10 AM
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
‎2008 Jan 23 6:27 AM
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.
‎2008 Jan 23 6:32 AM
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.
‎2008 Jan 24 10:14 AM
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