‎2006 Dec 12 5:48 PM
I changed the selection screen using enhancement frame concept. But I can not change the selection text that displays on the selection screen.
Does anybody know how to do it?
‎2006 Dec 12 6:03 PM
u need to go to the text elements of the program and change the text.
‎2006 Dec 12 6:18 PM
‎2006 Dec 18 5:19 AM
Hi Ketki,
Do u get any solution for this problem ...
even i am atruck with a similar problem ..
I want to delete a few checkboxes from the Order Status frame .. can you tell me how this can be achieved.
‎2006 Dec 18 3:48 PM
With new enhancement frame concept, you can create the enhancement in INILIZATION event. Once create the enhamcemnt point, you can loop thru the SCREEN and make the fields invisible.
something like this............
LOOP AT SCREEN.
IF screen-group1 = 'ISU'.
screen-invisible = 1.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
‎2007 Aug 29 2:49 PM
Hi
Have you found a solution to this? I have the same problem with enhancing a standard SAP program (RIAUFK20) with additional selection screen fields it seems that you cannot enhance the text elements. Is this a limitation of the enhancement framework?
I did find find a FM called Selection_texts_modify however I can't seem to find a point in the code that I can call the FM to add the text in.
Thanks
John
‎2007 Sep 07 6:42 PM
Hi
I was able to change the selection screen, my issue before was that I was implementing changes to an Explicit enhancment that was not switched on so the code was not being processed.
I used the explicit enhancement MGV_GENERATED_RIAUFK20 # 14 on my system. It has the initialization piece in it. To add the frame header to the selection screen I used a read and insert on the text-pool and for the individual fields I used the FM selection_texts_modifiy.
Hope this helps
John