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 fields

Former Member
0 Likes
652

Hi,

i am currently working on module pool, when i am displaying the data , the fields which appears in the 2nd screen should be get disabled.

But the problem is, i am trying to write

loop at screen..

......

But In 4.6 the SCREEN table is not found in data dictionary. so can anybody please tell the solution to disable all the fields in 2nd screen.

Thanks & Regards,

Chandu

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
552

hi screen is not a table its a structure, even in ECC 5.0 I can see SCREEN in SE11

4 REPLIES 4
Read only

former_member156446
Active Contributor
0 Likes
553

hi screen is not a table its a structure, even in ECC 5.0 I can see SCREEN in SE11

Read only

Former Member
0 Likes
552

Hello,

SCREEN structure exits in Data Dictionary from SAP Version 3.0, so should be there in 4.6 any version.

Are your sure you are not seeing it in SE16!!

Thanks,

Jayant

Read only

Former Member
0 Likes
552

Make sure this is done in the PBO of the second screen.

Rob

Read only

Former Member
0 Likes
552

Hi Chandrashekar,

Let me explain the logic to use to implement in your program.

If you are talking about the second screen then what you need to do is if you want to disable the fields which are in Second screen then you have to use the event PBO. and inside that you need to use the statement


LOOP AT SCREEN.
  SCREEN-INPUT = ' '.
  MODIFY SCREEN.
ENDLOOP.

Please let me know if you need more inputs on this.

Thanks,

Chidanand