Some IMG customizing activities are protected against modification in all but customizing system/client. But there might be activities that consultants need to perform directly in the production system without transporting the change though all the systems. Continue reading
ABAP – Modify RFQ item data during SAVE
There’s a user exit EXIT_SAPMM06E_012 (include ZXM06U43) you can use to perform various user checks before an RFQ is saved in Tx ME41/ME42. But what if you need to modify the line item data? Continue reading
ABAP – Create new SET/GET Parameter ID
If you need to create your own parameter id which can be bound to a data element or which you can use in your abap commands SET/GET PARAMETER ID, you can follow the steps described below. Continue reading
SAP CRM – Maintain partners on a CRM order
In this article I’m going to show how to replace the current business partner assigned to a partner function on a CRM order. Continue reading
ABAP – How to identify invoice text ID
If you need to read a text out of an invoice, you use standard function module READ_TEXT. But it might be a challenge to identify the correct input parameters for this FM as invoice can contain quite a lot of texts. Continue reading
ABAP – Get handling units in a Shipment
In this code snippet I’ll show how you can get info about all the handling units in a shipment delivery. Continue reading
ABAP – Select ALV layout on the selection screen
If you want to offer your users to have a parameter on the selection screen where they can select layout of the ALV to be displayed, you can use the following code snippet Continue reading
ABAP – CALL TRANSACTION USING BDC
In the following code snippet you can find an example on how to trigger a transaction HU03 (display handling unit details) with given HU number via batch input. Continue reading
ABAP – Number ranges usage
I wanted to have a tool for monitoring usage of internal number ranges in a system (such tool should be used also as a backround job) which can alert a system administrator in case a number range is reaching end of its interval. Continue reading
ABAP – Dynamically show and hide ALV (as sidebar)
Quite frequently I’m getting requests to create an ALV report where only the “header data” is displayed…but after clicking on a hotspot area in that ALV, another grid (ALV) is to be displayed with detailed information (displayed as a sidebar on the screen, not as a new, modal screen). And of course, this sidebar should be possible to be closed/hidden. Continue reading