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

difference between screen-required=1 & =2

Former Member
0 Likes
13,830

HELLO,

i don't see the différence between screen-required=1 & =2 .In execution i don't see anything that change with (=2) .but with (='1') the execution is stopped if the field is empty

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
6,237

Hi Mo

Screen-required = '1' means, the field is a required field(mandatory field) and you cannot proceed without filling data in the fields.

If Screen-required not equals '1' means, the field is optional and you can proceed without data in the field.

Thanks,

sapper

5 REPLIES 5
Read only

Former Member
0 Likes
6,237

Hi,

Click on below link:

[http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm]

BR

Dep

Read only

Former Member
0 Likes
6,238

Hi Mo

Screen-required = '1' means, the field is a required field(mandatory field) and you cannot proceed without filling data in the fields.

If Screen-required not equals '1' means, the field is optional and you can proceed without data in the field.

Thanks,

sapper

Read only

0 Likes
6,237

So we don't need to use "=2" since its optional and it had no effect ,we can replace it by "=0" or we don't make even the attribute required.

Read only

0 Likes
6,237

Hi,

if you want to make the screen field a mandatory field, make screen-required as '1'. in this case, it will be thorwing error message if the field is empty. and make screen-required = 0, if its not mandatory.

Thanks

Sam

Read only

Former Member
0 Likes
6,237

Well, to answer the question, SCREEN-REQUIRED = '1' is valid while SCREEN-REQUIRED = '2' is not.

Rob