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

initialization

Former Member
0 Likes
815

hi friends,

could u plese help me how to do this

i have a little bit confusion

for CDHDR-CHANGE_IND S_CHGIND ‘I’ and ‘U’

for CDPOS-FNAME S_FLD_NM ‘DATBI’, ‘DATAB’ and ‘KBETR’

The screen should have a warning not to mess with these values unless there is a real business reason for a change as it is expected that they will remain constant.

Set all these values in the INITIALIZATION event; make sure that the standard variant has these variables marked as ‘NO VALUE’.

Thanks & Regards

Srilavi

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
780

Are you saying that you want these values on the selection screen but do not want the suer to be able to change them?

Regards

Rich Heilman

6 REPLIES 6
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
781

Are you saying that you want these values on the selection screen but do not want the suer to be able to change them?

Regards

Rich Heilman

Read only

0 Likes
780

hi Rich,

Thanks a lot

For aobe one in select-options with out no Intervals

for CDHDR-CHANGE_IND S_CHGIND ‘I’ and ‘U’

both and u how can it possible Could u please elabrate How to do this.

Thanks & Regards

Srilavi

Read only

0 Likes
780

You can default the values into the select-options like this.



report zrich_0001.

tables: cdhdr, cdpos.

select-options: s_chgind for cdhdr-change_ind.
select-options: s_fld_nm for cdpos-fname.

initialization.

  s_chgind-sign = 'I'.
  s_chgind-option =  'EQ'.
  s_chgind-low = 'I'.
  append s_chgind.
  s_chgind-low = 'U'.
  append s_chgind.

  s_fld_nm-sign = 'I'.
  s_fld_nm-option = 'EQ'.
  s_fld_nm-low = 'DATBI'.
  append s_fld_nm.
  s_fld_nm-low = 'DATAB'.
  append s_fld_nm.
  s_fld_nm-low = 'KBETR'.
  append s_fld_nm.

Regards,

Rich Heilman

Read only

0 Likes
780

hi Rich,

Could u please help me for this

could u plese help me how to do this

i have a little bit confusion

for CDHDR-CHANGE_IND S_CHGIND ‘I’ and ‘U’

for CDPOS-FNAME S_FLD_NM ‘DATBI’, ‘DATAB’ and ‘KBETR’

The screen should have a warning not to mess with these values unless there is a real business reason for a change as it is expected that they will remain constant.

Set all these values in the INITIALIZATION event; make sure that the standard variant has these variables marked as ‘NO VALUE’.

Regards

Srilavi

Read only

0 Likes
780

Do you want to protect these fields?

REgards,

Rich HEilman

Read only

0 Likes
780

hi Rich,

what is the meaning of PROTECT ?

IS IT 'SAVE'?

IF IT IS SAVE THEN THAT IS WHAT I WANT.

REGARDS,

SRILAVI