hi ppl,
I have created a multiline for business object zfipp for field DMBTR..i have coded like this-
GET_PROPERTY DMBTR CHANGING CONTAINER.
types: begin of tw,
Bseg type dmbtr,
end of tw,
tt type standard table of tw.
data: vobj type swc_object,
DMBTR type tt,
wa type tw.
select dmbtr from bseg into table DMBTR
where belnr = object-key-documentno.-->till here value is getting populated
SWC_SET_TABLE CONTAINER 'DMBTR' object-DMBTR.--> no values in object-DMBTR.
END_PROPERTY.
Attribute name is DMBTR..but when i execute my business object its shows null value..