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

Regards Menu Painter - This Function is not possible

Former Member
0 Likes
591

Dear All,

I have created one module pool program with screen painter and along with menu painter. When I executive this program and some input data wants to come back the edit program. In this case I am getting an error when I press back (Push-button). The error name is This Function is not possible.

This message what every push button I press getting same error. I thought, I did some mistake in menu painter. Can any one pls explain me really what step I need to do.

Regards,

Chandra.

Dear All,

I have created one module pool program with screen painter and along with menu painter. When I executive this program and some input data wants to come back the edit program. In this case I am getting an error when I press back (Push-button). The error name is This Function is not possible.

This message what every push button I press getting same error. I thought, I did some mistake in menu painter. Can any one pls explain me really what step I need to do.

Regards,

Chandra.

3 REPLIES 3
Read only

Former Member
0 Likes
542

you need to write code for that...

suppose exit button is there , then you need towrite like

CASE SY-UCOMM.

WHEN SY-UCOMM = 'EXIT'

LEAVE PROGRAM/TRANSACTION " Like that...

WHEN OTHERS.

ENDCASE.

Read only

Former Member
0 Likes
542

Hi,

Try this


     IF  ( SY-UCOMM NE 'BACK' ).
      CALL SCREEN 0130.
    ENDIF.

Read only

Former Member
0 Likes
542

I got it the out put.