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

Disable Field for Input

Former Member
0 Likes
2,696

Hi All,

in transaction-> MIRO tab-> DETAIL. we want to disable the field "Inv. Party" for input. ( it is displaying the LIFNR which was entered at the time of MIGO and user should not be able to change the LIFNR).

Details:

Tcode : MIRO

Screen Field: INVFO-LIFRE

pls advice.

Thanks,

SS

Hi All,

in transaction-> MIRO tab-> DETAIL. we want to disable the field "Inv. Party" for input. ( it is displaying the LIFNR which was entered at the time of MIGO and user should not be able to change the LIFNR).

Details:

Tcode : MIRO

Screen Field: INVFO-LIFRE

pls advice.

Thanks,

SS

7 REPLIES 7
Read only

Former Member
0 Likes
1,778

Hi Surendra,

Create a Screen variant for MIRO transaction from TCode SHD0.

Create Trasaction variant for MIRO.

Assign Above created Screen variant to transaction variant

Activate Transaction variant.

It should work...

<b>Reward points for helpful answers</b>

Satish

Read only

0 Likes
1,778

Hi satish

when I create screen variant for MIRO it's not showing my required field i.e. INVFO-LIFRE .

here is the detail:

Screen values 0010

Program SAPLFDCB

Thanks,

SS

Read only

0 Likes
1,778

Hi,

Check this Enhancement 'LFDCB001', here you have one screen exit 'SAPLXM08'

Screen No: 150 ,jus double click that screen exit and write a code by looping the screen and make that particular screen field as screen-input = 0.

Thanks

Read only

0 Likes
1,778

HI,

Thanks for ur Reply.

in screen exit 'SAPLXM08' when we write code and compile, it showing error message "Statement not Accessable".

pls advice

SS

Read only

0 Likes
1,778

HI,

now this is sloved

Enhancement : LFDCB001

Exit : EXIT_SAPLFDCB_001

here is the coding:

data wa_screen type screen.

loop at screen . "into wa_screen.

*CASE SCREEN-NAME.

if screen-name = 'INVFO-LIFRE' . "

screen-input = 0.

modify screen.

exit.

endif.

  • ENDCASE.

endloop.

Thanks to All

SS

Read only

0 Likes
1,778

Hi ,

I also had the same requirement and have implemented the same logic

but screen loop is not picking any values

I have included screen loop in PBO event.

Please help me on this.

Thanks in advance.

Read only

Former Member
0 Likes
1,778

Hi experts,

I am facing a problem during activate my project for this enhance ment....

this is the error: Dynpro does not exist

The system attempted to use dynpro 0400 in program "SAPLXM08".