Hi guys,
I have a macro defined as follows,
DEFINE fog_setting.
iest0-status = &1.
iest0-s_code4 = &2.
iest0-hq_rjt_rea = 'Before In-Warranty Service'.
fog-flag = &3.
END-OF-DEFINITION.
If certain condition satisfies the below statment has to be executed.I want to confirm here,the satatment fog_setting '80' ' ' ' '.
will assign "status" = 80
"s_code4 = ' '
" hq_rjt_rea|" = 'Before In-Warranty Service'
" fog-flag " = ' '
I mean though in the statment there is no value defined for "hq_rjt_real" , it would take "'Before In-Warranty Service' as it is defined in Macro?Please guide.