‎2008 Nov 07 3:04 PM
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
‎2008 Nov 07 3:08 PM
hi screen is not a table its a structure, even in ECC 5.0 I can see SCREEN in SE11
‎2008 Nov 07 3:08 PM
hi screen is not a table its a structure, even in ECC 5.0 I can see SCREEN in SE11
‎2008 Nov 07 3:10 PM
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
‎2008 Nov 07 3:23 PM
‎2008 Nov 07 3:49 PM
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