cancel
Showing results for 
Search instead for 
Did you mean: 

CJI3 submit program issue

rajsapabap-tech
Explorer
0 Kudos
666

Hi Folks,

Im facing a issue while submit the CJI3 transaction in my custom program.

some projects getting ALV data but some projects not found in CJI3 t.code getting this Pop Up message.

I need to suppress this Popup message if projects not found in CJI3 report.

rajsapabaptech_0-1717092619307.png

 cl_salv_bs_runtime_info=>set(
    EXPORTING display abap_false
    metadata abap_false
    data abap_true ).

    DATA it_tabs TYPE TABLE OF abaplist.
    DATA(prof_db'000000000001'.
    SET PARAMETER ID 'CAC' FIELD kokrs."'BCCA'.
    SET PARAMETER ID 'PDB' FIELD prof_db."'000000000001'.
 
    SUBMIT rkpep003 WITH SELECTION-TABLE it_rsparams AND RETURN.

    TRY.
        cl_salv_bs_runtime_info=>get_data_ref(
        IMPORTING
        r_data_descr data_desc ).
      CATCH cx_salv_bs_sc_runtime_info.
    ENDTRY.

What should i do for skip this message in program.

 

View Entire Topic
Szczerbowski
Active Participant

Hi, 

In a way you can suppress the popup by not submitting non-existent projects to the tcode.
You could check and filter our PROJ/PRPS tables before, no? Or issue your own message for those?

M. 

rajsapabap-tech
Explorer
0 Kudos
Hi, Initially i took projects from PROJ table where passing company code & Open items and pass the projects into CJI3 (rkpep003)report. I want to know how to check non-existent projects before submitting the CJI3 report. Is there any Function module to check or table ?