2008 Apr 30 10:12 AM
Hi all ,
I am creating a structure as follows.
types: BEGIN OF ty_price,
kunnr TYPE knvp-kunnr,
pricedata TYPE z4rl_pricing_records,
END OF ty_price.
In the structure the first field is kunnr. Second field should have data type as that of a structure. here z4rl_pricing_records is a structure created in SE11. Please tell me the syntax for this.
Thanks & Regards,
Neethu.
2008 Apr 30 10:19 AM
hi,
do this way ..
types: BEGIN OF ty_price,
kunnr TYPE knvp-kunnr,
pricedata TYPE standard table of z4rl_pricing_recordswith default key initial size 0,
END OF ty_price.
Regards,
Santosh
Hi all ,
I am creating a structure as follows.
types: BEGIN OF ty_price,
kunnr TYPE knvp-kunnr,
pricedata TYPE z4rl_pricing_records,
END OF ty_price.
In the structure the first field is kunnr. Second field should have data type as that of a structure. here z4rl_pricing_records is a structure created in SE11. Please tell me the syntax for this.
Thanks & Regards,
Neethu.
2008 Apr 30 10:19 AM
hi,
do this way ..
types: BEGIN OF ty_price,
kunnr TYPE knvp-kunnr,
pricedata TYPE standard table of z4rl_pricing_recordswith default key initial size 0,
END OF ty_price.
Regards,
Santosh
2008 Apr 30 11:18 AM
2008 May 05 10:57 AM
Types: BEGIN OF ty_price,
kunnr TYPE knvp-kunnr,
pricedata TYPE standard table of z4rl_pricing_records,
END OF ty_price.
hopefully it would do.
reward if heplful.