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

Text elements and selection screen

Former Member
0 Likes
831

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?

6 REPLIES 6
Read only

Former Member
0 Likes
699

u need to go to the text elements of the program and change the text.

Read only

0 Likes
699

It's std. SAP RIAUFK20 program. Won't let me change.

Read only

Former Member
0 Likes
699

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.

Read only

0 Likes
699

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.

Read only

Former Member
0 Likes
699

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

Read only

0 Likes
699

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