Application Development 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: 

function CLSC_SEARCH_IN_CLASSTYPE

0 Kudos

Hey guys!

Has anyone used the function CLSC_SEARCH_IN_CLASSTYPE to get a list of objects based in a plant and characteristics??


All the parameters of the function are filled but I had no return.


call function 'CLSC_SEARCH_IN_CLASSTYPE'

         exporting

           i_classtype              = '300'

           i_keydate                = sy-datum

           i_language               = sy-langu

           i_status_free            = abap_true

           i_status_locked          = abap_true

           i_status_incomplete      = abap_true

*         i_max_hits               = p_clselinput_struc-max_hits

         importing

           e_result_incomplete      = l_result_incomplete

           e_no_statistics          = l_no_statistics

         tables

           i_r_objecttypes_tab      = i_r_obtab_tab

           i_selection_criteria_tab = i_selectioncriteria_tab

           i_r_characteristics_tab  = i_selected_chars_tab

           e_objects_tab            = i_objects_tab

           e_values_tab             = i_values_tab

         exceptions

           no_objects_found         = 1

           insufficient_criteria    = 2

           others                   = 3.


Could anyone help me??


Thanks in advance



1 ACCEPTED SOLUTION

former_member156446
Active Contributor
0 Kudos

Have you tried a where used list? in your system

its used in program: LCLSDF13

2 REPLIES 2

former_member156446
Active Contributor
0 Kudos

Have you tried a where used list? in your system

its used in program: LCLSDF13

0 Kudos

Hi Jay Raj.

    Thank you for your reply.

    

     I've debugged this program via CL31 transaction using the same selection fields and I found the difference between my Call Function and the standard Call Function.

Thank you very much.

Felipe