‎2007 Sep 04 3:57 PM
hi experts.
AFTER CONVERTING TO Y OR Z PROGRAM.
I want to add one WBS Element(projk) field in the output report ie i want one column in rfitemar(yrfitemar).
how to add the coulme i am not getting how to add that column in the report output.
table bseg-projk.
can u plz help me it is very urgent.
‎2007 Sep 04 4:25 PM
Hi,
Once you copy the rfitemar to ZXXXXXXXX. All the field will displayed. In this program RFPOSXEXT strcuture is used. WBS element is also included in the strcuture. But this field (WBS Element PROJK) is visible in the change layout. If you want this field to appear in the default output list.
You need to modify the fieldcatalog as below :
loop at it_max_fieldcat.
if it_max_fieldcat-fieldname = projk.
it_max_fieldcat-no_out = ' '.
endif.
modify.
endloop.
Thanks,
Sri.
Message was edited by:
Sriram Ponna
‎2007 Sep 04 4:25 PM
Hi,
Once you copy the rfitemar to ZXXXXXXXX. All the field will displayed. In this program RFPOSXEXT strcuture is used. WBS element is also included in the strcuture. But this field (WBS Element PROJK) is visible in the change layout. If you want this field to appear in the default output list.
You need to modify the fieldcatalog as below :
loop at it_max_fieldcat.
if it_max_fieldcat-fieldname = projk.
it_max_fieldcat-no_out = ' '.
endif.
modify.
endloop.
Thanks,
Sri.
Message was edited by:
Sriram Ponna
‎2007 Sep 05 12:10 PM
he did not used directly this fieldcat it_max_fieldcat directly.
he has moved that fieldcat some different process that i am not able to understand.
plz try to find the solution
‎2007 Sep 04 4:50 PM
Hi Santu,
Check customizing table T021S. Create an entry in this table and then try.
Hope this helps.
Thanks
Lakshman