Skip to main content

Posts

Showing posts from July, 2017

Restrict Inbound delivery quantity from exceeding against PO quantity

Standard SAP doesn't control the change of quantity at inbound delivery due to this business user will have a provision to increase the quantity of the inbound delivery to that of Purchase order quantity. This will be commonly seen when an inbound delivery gets created through IDoc, System by default will create for the quantity received rather than validating against the PO which will be quite confusing for the buyer and receiving department. To restrict this, SAP  has provided message control functionality. Below is the process steps to achieve this. AS IS Config Changes at Message Control Level After Change Increase the Inbound delivery quantity to that of PO quantity then system will throw an error message as stated below Thank You.

Finding BADI in a screen

At times, you might require finding a BADI on a screen and in this situation, we can leverage of Object Type - 'CL_EXITHANDLER' to find the list of BADI's available on the screen. In order to access this object type, we need to use T.Code - SE24 class builder.       Click on display and select method 'GET_INSTANCE'  to enter the method. put a breakpoint at    ' CALL  METHOD  cl_exithandler => get_class_name_by_interface' Then go to the required screen where exit needs to be identified. For instance, here I have executed T.Code VA01 then BADI's relevant to the initial screen will be displayed . To view the relevant BADI's click on Exit_Name parameter of Method. Then click on F8 or execute to go to the next available BADI on the screen and if no BADI exist then the screen will be displayed. Ensure to remove breakpoint upon completion of the required task else breakpoint will be triggered for all screens which a

Change description of released Transport Request

At times, We might have released TR by mistake to subsequent environment or Quality and require to change the description of a Transport request. SAP has given a provision to change the description even after TR release. Below process steps depict the process to be followed to do so. Enter the TR number for which description need to be changed Select the parent request for which description need to be changed Once the parent request is selected double click on the required TR to change the description. A popup will be displayed upon selecting the required TR Click on the change Icon of the popup to change the TR description Thank you...