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: 

MODIFY SCREEN inactive WITH LDB OF PNP

Former Member
0 Kudos

hi

i want to set a screen field no input. and this report use PNP of LDB.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'PNPMASSN'.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

but this can't active.

how Modify Screen IN LDB.

thank you!

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos

Hi,

You can use transaction SE36 for the same.

Best regards,

Prashant

4 REPLIES 4

Former Member
0 Kudos

Hi,

I am attaching the link for LDBs in report programs.

This shows the events available for reports. And i do not see SELECTION-SCREEN OUTPUT event listed. So i feel that SAP does not support this event when you use LDBs in reports.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9bfa35c111d1829f0000e829fbfe/frameset.htm

Hope this helps.

ashish

Former Member
0 Kudos

thank you !

do you know how to modify LDB screen attribute in report!

please give a demo if have!

thanks!

former_member223537
Active Contributor
0 Kudos

Hi,

You can use transaction SE36 for the same.

Best regards,

Prashant

Former Member
0 Kudos

se36 just get the define of LDB information.

i know in LDB screen attribute setting in FORM PBO.

but i want to dynamic to change LDB screen attribute in other Report what use this LDB. because in this report, following can't active.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'PNPMASSN'.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

i want how to realize it.

thank you your information!