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

AMDP_EXECUTION_FAILED in QA System.

Former Member
0 Likes
2,040

Hi ,

I'm facing AMDP_EXECUTION_FAILED error in QA system .

"column store error: search table error: [2620] executor: plan operation
failed;CalculationNode ($$DUMMY$$) -> operation (CustomLOp):Compilation
failed; CompileServerNotFoundException: No details;#"

I have tried all possible ways as per forum discussions , KBA notes . The selection crietria would pull not more than 7 k records . This happens only in QA system while in Dev it's working with both clients .

Snippet :-

lv_where = ( MANDT = 'XXX') AND( BUKRS = 'XXXX') AND( ENDDA >= '20191205')


CLASS-METHODS : get_pernr_pa0001

IMPORTING VALUE(lv_where) TYPE string
CHANGING VALUE(ct_pernr) TYPE tt_pernr.

TRY .

CALL METHOD zcl_hr_minimaster_report=>get_pernr_pa0001
EXPORTING
lv_where = lv_where
CHANGING
ct_pernr = lt_pernr.

CATCH cx_amdp_error INTO lx_amdp_error ."Exceptions

ENDTRY.

ENDIF.

Thnaks!

Hi ,

I'm facing AMDP_EXECUTION_FAILED error in QA system .

"column store error: search table error: [2620] executor: plan operation
failed;CalculationNode ($$DUMMY$$) -> operation (CustomLOp):Compilation
failed; CompileServerNotFoundException: No details;#"

I have tried all possible ways as per forum discussions , KBA notes . The selection crietria would pull not more than 7 k records . This happens only in QA system while in Dev it's working with both clients .

Snippet :-

lv_where = ( MANDT = 'XXX') AND( BUKRS = 'XXXX') AND( ENDDA >= '20191205')


CLASS-METHODS : get_pernr_pa0001

IMPORTING VALUE(lv_where) TYPE string
CHANGING VALUE(ct_pernr) TYPE tt_pernr.

TRY .

CALL METHOD zcl_hr_minimaster_report=>get_pernr_pa0001
EXPORTING
lv_where = lv_where
CHANGING
ct_pernr = lt_pernr.

CATCH cx_amdp_error INTO lx_amdp_error ."Exceptions

ENDTRY.

ENDIF.

Thnaks!

2 REPLIES 2
Read only

former_member1716
Active Contributor
0 Likes
1,167

Guna P,

Could you please explain a bit further on your issue.

Are you trying AMDP with CDS? Is the issue is when the records are more than 7K?

Regards!

Read only

Former Member
0 Likes
1,167

Hi Satish Kumar Balasubramanian,

I'm using this method in reports not CDS . This issue occurs in Quality but not in Dev irrepective of number of records.


Thanks!