cancel
Showing results for 
Search instead for 
Did you mean: 

update routine

Aummad
Participant
0 Kudos

hi there,

some one explaine me the flowing codes,

DATA: ZZI_PSTTM LIKE /BIC/FZRTOSUC01-/BIC/ZI_PSTTM,

ZZI_MHTM LIKE /BIC/FZRTOSUC01-/BIC/ZI_MHTM,

ZZI_PBXTM LIKE /BIC/FZRTOSUC01-/BIC/ZI_PBXTM,

Accepted Solutions (1)

Accepted Solutions (1)

dielom
Active Contributor
0 Kudos

Hi Rob,

That's the declaration of 3 variables, called ZZI_PSTTM, ZZI_MHTM and ZZI_PBXTM. They are of the same type of the /BIC/FZRTOSUC01-xxxx that it says after LIKE.

/BIC/FZRTOSUC01 seems to be the fact table of an object, and i guess the xxxx are key figures.

Hope this helps.

Regards,

Diego.

Answers (1)

Answers (1)

Former Member
0 Kudos

You are declaring 3 variables which is like the corresponding dictionary types.

1) ZZI_PSTTM which is like the field of table/structure /BIC/FZRTOSUC01 and field /BIC/ZI_PSTTM

2) and similiar for the other two..

ZZI_MHTM LIKE /BIC/FZRTOSUC01-/BIC/ZI_MHTM,

ZZI_PBXTM LIKE /BIC/FZRTOSUC01-/BIC/ZI_PBXTM,