Hello Folks,
Need to add a custom field(status) in hierarchy view of Campaign. So i am trying to Enhance 'MKTPRJ_HIER'.
Now i am not able to see "Tree Proxy Node" under my tree node view "HierarchyTree' and i am unable to see atrribute list.
i tried enhancing it..still nothing visible.
am i missing something.
(idea is to add field in "GET_TABLE_LINE_SAMPLE', and generate GET and SET methods to populate this field)
Thanks.
Hi Jhon,
To add fields you can try in get_table_line_sample
TYPES: BEGIN OF line.
INCLUDE TYPE crms_mktpl_ib_mktproject.
TYPES zzaa TYPE string. "Added by wizard
TYPES zzbbb TYPE string. "Added by wizard
TYPES: END OF line.
CREATE DATA rv_sample TYPE line.
For get set you can check this class CL_MKTPRJ_HIER_NODE_CONTEXT to set and get the value of custom attribute.
Regards,
Sumeet
Add a comment