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

Program not working in background.

Former Member
0 Likes
1,536

Hi Experts,

I have created a Z Program and i have used my Z' fm in this program. I've used class of CKMLQS alv tree in this FM.
Class name is CL_QSTREE_CKML . When i calling this class it is generating custom and docking containers for alv tree.

I've searched google than i found some info about screen objects and bakcground sample program as below.

<link removed by moderator>

CL_GUI_ALV_TREE object has not offline method. So, how can i manage background proccess is active or not?

When i start to write this discussion i found a fm then it has solved my problem. But, still i dont know how can i catch alv_tree offline mode?

Thanks for your valuable answers...

Message was edited by: Matthew Billingham - link to banned site

1 ACCEPTED SOLUTION
Read only

raghug
Active Contributor
0 Likes
1,165

CL_GUI_ALV_TREE uses classical error handling (use sy-subrc instead of TRY... CATCH). All the initial create errors are visible right in the SE24 interface.

3 REPLIES 3
Read only

raghug
Active Contributor
0 Likes
1,166

CL_GUI_ALV_TREE uses classical error handling (use sy-subrc instead of TRY... CATCH). All the initial create errors are visible right in the SE24 interface.

Read only

Former Member
0 Likes
1,165

It seems that, offline mode imposible for cl_gui_alv_tree.

Thanks Raghu

Read only

Former Member
0 Likes
1,165

Check class CL_GUI_LIST_TREE

in general, for online processing one would use ALV classes and function modules, for batch processing usually one wants to use LISTs.

For example, not what you asked, but for an ALV grid you would use for an online execution fm REUSE_ALV_GRID_DISPLAY, for batch execution REUSE_ALV_LIST_DISPLAY instead

Regards