Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CL_GUI_ALV_TREE

Former Member
0 Likes
737

hi,

I'm using the class CL_GUI_ALV_TREE , and method SET_TABLE_FOR_FIRST_DISPLAY for displaying . i got the out put but i'm getting the pf-status. in this class what are methods we have to call gui status.

please suggest me asap

thanks

Naveen

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
661

You don't call any gui status using this class, the status should be called in the PBO of your screen in which the tree is implemented.

Regards,

Rich Heilman

3 REPLIES 3
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
662

You don't call any gui status using this class, the status should be called in the PBO of your screen in which the tree is implemented.

Regards,

Rich Heilman

Read only

RaymondGiuseppi
Active Contributor
0 Likes
661

I just put a SET PF-STATUS in the PBO before displaying the tree and it worked fine.

MODULE pbo100 OUTPUT.
  IF tree1 IS INITIAL.
    PERFORM init_tree. " create custom container, tree and init display of tree
  ENDIF.
  SET PF-STATUS 'MAIN100'.

Regards

Read only

0 Likes
661

hi raymonds,

actually my problem is

i'm running a std report RHXSTR00 which displays org. structure. my problem before upgradation i'e., in 4.6c we have menu list->download ,so we can down load to local file.but current version ECC 6.0 ,we d't have menu list->download. i have to put that menu.

i tried for download code in 4.6c by debugging , the down load function code

is "%PC" which is not there through out the code .

help me , i have to add menu in ecc 6.0 same as 4.6c

i had degugged, i just concluded that in ECC 6 he is calling the class CL_GUI_ALV_TREE->SET_TABLE_FOR_FIRST_DISPLAY.

In R/3 4.6c he is calling the FM RS_TREE_LIST_DISPLAY .

in 4.6 we geting down load option but not ecc 6.

please suggest the solution

thanks

Naveen