Application Development 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: 

Set the user paramater

Former Member
0 Kudos

Hi,

I have a requirement where i want to set and get the user parameter.

I am using set/Get parameter for that, but once i logoff from system amd login again it does not get that value.

Also do you know some functional module where we can set the value su01.

Best regards,

Rohit Mahajan

6 REPLIES 6

Former Member
0 Kudos

Rohit,

Let us know your requirement in detail.

Raj

Former Member
0 Kudos

Hello,

Try this

/community [original link is broken]

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

Write code SET PARAMETER-ID <PID NAME>.

Then doble click on PID NAME to create your own PID.

SM32 transaction to create/maintain parameter ids.

Simply go to the table where your field is and double click on the data element. You will then see the definition for the data element. Choose tab Further Characteristics and on Parameter ID simply write down your desired parameter ID name. Double Click on the parameter ID name and describe the Parameter ID as desired and click Save.

Save and Activate the data element for the field and you are now good to go.

Using SM30 give the TPARA in the Table/view input and press Maintain, in the Next screen give the parameter id and press enter, in the pop give the text and press continue.

0 Kudos

Hi,

This thing i have set already,

I want the value of user parameter to be set and seen in su01.

and should be aviable one i logoff anf log in system again.

0 Kudos

Try using the function module SMAN_SET_USER_PARAMETER to set / update a parameter for the logged on user.

This will update in SU01 User parameters also.

Regards,

Trikanth Basetty

Former Member
0 Kudos

Hi ,

You have to use SAP memory the syntax is :

export data to database idx(hk) id 'idname' --> for exporting

import data from database idx(hk) id 'idname' --> for impoting

regards,

Munibabu.K

Former Member
0 Kudos

call function 'SUSR_USER_BUFFERS_TO_DB'.

Solved with this, thanks all for help.