cancel
Showing results for 
Search instead for 
Did you mean: 

Default check "All active/inactive versions" in MD62 ?

Former Member
0 Kudos

Dear Seniors,

We have created shortcut buttons in MD04 for changing the Planned Independent Requirements with MD62.

Do you know if there is a way to have the default check on "All active/inactive versions" ?

I have tried from User Parameters and there is not this option.

Many thanks,

Accepted Solutions (1)

Accepted Solutions (1)

Caetano
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Alex

This is not possible on the standard.

You can find the below logic to select the flag on the PBO module VERSION_SETZEN of program MM60XO0V:


IF SY-CALLD IS INITIAL AND SY-BINPT IS INITIAL

*-->Inaktive  Version vorhanden

        AND AM60X-FLG04 IS INITIAL.

*-->Radio Buttons Version

       CLEAR AM60X-VERAW.                   " Clear Button  Aktiv

       CLEAR AM60X-VERAI.                   " Clear Button  Aktiv/Inaktiv

       MOVE SELEKTIERT TO AM60X-VERAK.    " Button "Ausgewählte Version"

      ELSE.

*-->Radio Buttons Version

       CLEAR AM60X-VERAK.                   " Clear Button  Aktiv

       CLEAR AM60X-VERAI.                   " Clear Button  Aktiv/Inaktiv

       MOVE SELEKTIERT TO AM60X-VERAW.    " Button "Ausgewählte Version"

ENDIF.

Basically, it means that when MD62 is called from another transaction, only the selected version (VERAW) will be displayed. 

If this logic is really necessary you can ask your ABAP consultant to make a small modification on this programm, setting 'X' to AM60X-VERAI.

Regards
Caetano

Former Member
0 Kudos

Thanks a lot Caetano. I also did not found nothing in standard SAP.

You answer looks like it is correct.

We will not implement this dough, but it will be a point for the future.

Many thanks again !

Answers (0)