2016 Jan 21 1:12 PM
Greetings,
I have implemented a screen-exit (ITOB0001) for function location enhancement; where I have created a new tab with 4 check boxes.
Now based on 'Function location category' selected, I need to enable and disable the added tab fields.
I am able to read 'Function location category' in the function exit EXIT_SAPLITO0_001 (which is for PBO of main screen). But my problem is how can I disable my newly added tab fields from this function exit.
In other words how can I disable the subscreen elements from the main screen PBO.
Thanks in advance,
Mayank
2016 Jan 21 3:07 PM
Usually :
(similar in most customer fields dynpro exit)
Regards,
Raymond
Greetings,
I have implemented a screen-exit (ITOB0001) for function location enhancement; where I have created a new tab with 4 check boxes.
Now based on 'Function location category' selected, I need to enable and disable the added tab fields.
I am able to read 'Function location category' in the function exit EXIT_SAPLITO0_001 (which is for PBO of main screen). But my problem is how can I disable my newly added tab fields from this function exit.
In other words how can I disable the subscreen elements from the main screen PBO.
Thanks in advance,
Mayank
2016 Jan 21 2:43 PM
Hello
In PBO of the created subscreen you can enable disable. You can export the value from PBO of exit and read it in PBO of Subscreen?
Thanks
Nabheet
2016 Jan 21 3:07 PM
Usually :
(similar in most customer fields dynpro exit)
Regards,
Raymond
2016 Jan 21 9:35 PM
Thanks for your help. The solution is working.
I have created the ZXTOBTOP include and declare a global variable there.
For which I am able to store value in function exit, and use that stored value directly in subscreen.
Thanks again,
Mayank