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: 

ZFIELD into Details Tab - MIRO Transaction

0 Kudos

Dear partners,

First of all I want to mention that I found searching on the internet and in the forum that it is possible to expand the sub-screen of "Basic Data" through the BADIS "BADI_FDCB_SUBBAS0*", but it is not what I need.

My requirement is to add a Z field (LFA1-STCD1) in the "Details" tab of the MIRO transaction, without having to open objects with the key.

Attached an image where you can see the places where the field mentioned in the "Details" tab could be:

Please I need your help, thank you very much in advance!

4 REPLIES 4

Former Member
0 Kudos

Is the currency EUR or BRL ?

raymond_giuseppi
Active Contributor
0 Kudos

Isn't there a customer-exit at bottom of this tab, related to Enhancement LFDCB001 / EXIT_SAPLFDCB_001?

Excuse me, why is that important?

mpizeli
Explorer
0 Kudos

Dear,

Let's suppose that in details, you need the field: XREF3.

You have to follow the steps in CMOD:

  1. assign: LFDCB001,
  2. assign: LMR1M001,
  3. Double click in the screen (of your project's component, you have two screen exits but it's actually the same screen): 'SAPLXM08' - '400' & create it as sub-screen,
  4. In the Output (PROCESS BEFORE OUTPUT), create a module, with the code:

IF xg_rbkpv IS INITIAL.
CALL FUNCTION 'MRM_SET_GET_IVEXT'
IMPORTING
es_rbkpv = xg_rbkpv.
ENDIF.

invfo-xref3 = xg_rbkpv-xref3.

5. In the Input (PROCESS AFTER INPUT), create a module, with the code:

xg_rbkpv-xref3 = invfo-xref3.

CALL FUNCTION 'MRM_SET_GET_IVEXT'
EXPORTING
is_rbkpv = xg_rbkpv.

Now, in case that you need custom fields, you should play with (the same field(s)) append structures in: 'INVFO', 'RBKP' & 'RBKP_V' & badi enhancement ('BADI_FDCB_SUBBAS01' or 02 or …).

Regards,