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

Screen Exit

Former Member
0 Likes
1,081

Hi Experts,

In MM02 transaction(Program SAPLMGD1,screen -2001) , there is a field called old material number(MARA-BISMT) . I want to change the description from old. mtrl .number to

custom description.

Is there any way to change it .We dont have access key with us.

Could anybody help in this regard?

Thanks,

Ponraj.s.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,028

you don't require to use screen exit.

Do like this....

1.press f1 on related field and go to edit documentaion on that pop up window.

now you will see a popup window ,where you have to select data element radio button,now press enter and it will aks to eneter change description.now save it ,but remember you can save in same package in whch the data element defined.

Please rewards,

If it is helpful for you.

8 REPLIES 8
Read only

Former Member
0 Likes
1,029

you don't require to use screen exit.

Do like this....

1.press f1 on related field and go to edit documentaion on that pop up window.

now you will see a popup window ,where you have to select data element radio button,now press enter and it will aks to eneter change description.now save it ,but remember you can save in same package in whch the data element defined.

Please rewards,

If it is helpful for you.

Read only

0 Likes
1,028

Hi Mohit,

I couldnt see any edit documentaion on pressing f1 help.Its dispalying only appp.help and tech. help.

Could you tel me where to click to get edit docuemntaion. explain in detail.

Read only

Former Member
0 Likes
1,028

Hi

You can create PAI module in your subscreen. In this PAI module, check sy-ucomm for the function your set in your 2 buttons.

PAI of your subscreen



MODULE CHECK_SUBSCREEN.


MODULE CHECK_SUBSCREEN INPUT.

CASE SY-UCOMM.
WHEN 'BUTTON1'.
"do something
WHEN 'BUTTON2'.
"do something else
ENDCASE.
ENDMODULE. " CHECK_SUBSCREEN. 

check this link it will solve ur problem

http://wiki.ittoolbox.com/index.php/Implement_a_screen_exit_to_a_standard_SAP_transaction

Reward all helpfull answers

Regards

Pavan

Read only

Former Member
0 Likes
1,028

You could try transaction CMOD, then Goto > Text enhancements > Data elements > New DE cust. docu.

You should be able to record your custom field description there, but do expect it to take effect throughout the system.

Read only

0 Likes
1,028

Hi Jonathan,

I 've tried what you have said, it has taken me to trxn se61. and there i've given data element as 'bismt' and doc. class as 'data element' and clicked chage push button.

I have given my customer decription and while activating it ,it gives messages as "saved as a raw version, no authorization for active version".

What things have gone wrong here, could you explain further?

Read only

0 Likes
1,028

Sorry, to change the screen label, use:

CMOD > Text enhancements > Key words > Change ...

The previous suggestion was to add your own long text documentation against the data element as well i.e. in SE61, you can create an entry for the Data Element of type:

Document class: <b>Data element</b>

Documentation type: <b>Modification user</b>

Language: <b>English</b> (or whatever)

Read only

0 Likes
1,028

Hi Jonathan,

ya its worked .thankz for helping.

Read only

Former Member
0 Likes
1,028

my question was answered.