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

Customer Exit

Former Member
0 Likes
939

Hi All,

I have used Customer Enhancement LMR1M001 to get the additional screen (exit SAPLXM08 and program SAPLMR1M screen number 0400) and added 2 new fields to the screen. According to theory these newly added fields should be reflected in the screen called by MIRO AND MIR7 transactions.However the are not getting reflected.

If anyone knows abt this, plz share ur knowledge with me.

4 REPLIES 4
Read only

Former Member
0 Likes
886

Have you activated the project created?

It gets reflected only if you activate the project.

Thanks,

Kiran Bobbala

Read only

0 Likes
886

ya i have created a project and activated the same. But still the fields are not getting reflected.

Read only

former_member226999
Contributor
0 Likes
886

You can add new screens to MIRO with one of five BADIs BADI_FDCB_SUBBAS01...BADI_FDCB_SUBBAS05, and SAP have given an example on how to use them.

Hope this helps.

Franc

Read only

Former Member
0 Likes
886

hi

let the two field u defined are name1 and name2

define an module under the PBO

say module newfield

in side that module place this code

if (sy-tcode = 'MIRO' or sy-tcode = 'MIR7' ).

LOOP AT SCREEN.

IF SCREEN-NAME = 'NAME1'.

SCREEN-ACTIVE= 1.

ENDIF.

ENDLOOP.

LOOP AT SCREEN.

IF SCREEN-NAME = 'NAME2'.

SCREEN-ACTIVE = 1.

ENDIF.

ENDLOOP.

ENDIF.

after this when u come back do activate at each step and screen and at last do activate ur project at the initial screen of Cmod

hope ur problem get solved by this

well im still working on ur problem if it didnt get solved plz let me know

Cheers

Snehi