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

obligatory in selection screen

Former Member
0 Likes
599

Hi genius,,,

i am facing one critical requirement..give me solution for that

requirement is three select options will be there in selection screen for example KUNNR,AKONT,DATE

if i enter AKONT in select option it will fetch the record for corresponding AKONT,this AKONT will not depanding to other,but if i enter KUNNR automaticaly DATE field change to mandatory, KUNNR should be depend to DATE...

Asok...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
572

Hi

U need to insert some validations in the event AT SELECTION-SCREEN

Max

Hi genius,,,

i am facing one critical requirement..give me solution for that

requirement is three select options will be there in selection screen for example KUNNR,AKONT,DATE

if i enter AKONT in select option it will fetch the record for corresponding AKONT,this AKONT will not depanding to other,but if i enter KUNNR automaticaly DATE field change to mandatory, KUNNR should be depend to DATE...

Asok...

3 REPLIES 3
Read only

JozsefSzikszai
Active Contributor
0 Likes
572

you have to do something like this:

AT SELECTION-SCREEN.

IF ( kunnr-low IS NOT INITIAL OR kunnr-high IS NOT INITIAL ) AND 
    ( date-low IS INITIAL AND date-high IS INITIAL ).
==> issue message here that date field is mandatory if kunnr is filled
ENDIF.

Read only

Former Member
0 Likes
573

Hi

U need to insert some validations in the event AT SELECTION-SCREEN

Max

Read only

Former Member
0 Likes
572

This message was moderated.