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: 

If a new line item is created in salesorder curency must not be changed how to do enhancement?

former_member666235
Discoverer
0 Kudos

Tcode:va02

sales order ex:16358

create a new line item where the currency field is editable means i can change when it is in display mode the change values gets reflected in conditions blog under currency this change must not be happen what is the best way of doing.

3 REPLIES 3

jerryjanda
Community Manager
Community Manager
0 Kudos

Thank you for visiting SAP Community to get answers to your questions. Since you're asking a question here for the first time, I recommend that you familiarize yourself with https://community.sap.com/resources/questions-and-answers (if you haven't already), as it provides tips for preparing questions that draw responses from our members. For example, you can outline what steps you took to find answers (and why they weren't helpful), share screenshots of what you've seen/done, and make sure you've applied all appropriate tags. The more details you provide, the more likely it is that members will be able to assist you.

Should you wish, you can revise your question by selecting Actions, then Edit (although once someone answers your question, you'll lose the ability to edit the question -- but if that happens, you can leave more details in a comment).

Kind regards,

--Jerry

Make sure to subscribe to What's New!

venkateswaran_k
Active Contributor
0 Kudos

Hi

Please refer to the user exit include MV45AFZZ.

Inside that get into form routine - FORM USEREXIT_FIELD_MODIFICATION.

update the code as below (example) - change as per your requirement. This section will make field enable/disable as per your code

FORM USEREXIT_FIELD_MODIFICATION.

IF SY-TCODE = 'VA02'.
 CASE SCREEN-NAME.
   WHEN 'VBAP-WAERS'.
     SCREEN-ACTIVE = 0.
 ENDCASE.
ENDIF.

ENDFORM.

Regards,

Venkat

VeselinaPeykova
Active Contributor
0 Kudos

Request a proper development specification from your functional consultant.

Among other things, this also implies the use of the right SAP terminology , paying attention to grammar, pragmatics and semantics.

The question in its current form makes absolutely no sense for anyone who has at least basic understanding of SAP SD. Seriously, do not start with any development tasks before you are absolutely certain that you know what needs to be done.