cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CPI-DS:ABAP Program syntax error while pulling data from ztable

former_member60331
Participant
0 Kudos
659

Hi Experts,

I am pulling data from a ztable from S4 system using CPI-DS. I am getting the below error in CPI-DS. However the error text is trimmed and I am not able to understand the error. Can some please help me understand the error and any SAP note to resolve this.

(E)(4876:611788608)R3S-140101 |Data flow Task_S4H_400_IBP_AirlineMaster_DF_S4H_400_IBP_AirlineMaster|Reader Task_S4H_400_IBP_AirlineMaster_R3_DF_S4H_400_IBP_AirlineMaster|Transform Task_S4H_400_IBP_AirlineMaster_R3_DF_S4H_400_IBP_AirlineMaster__Driver ABAP program </usr/sap/DataServicesAgent/abap/Task_S4H_400_IBP_AirlineMaster_R3_DF_S4H_400_IBP_AirlineMaster.Aba> syntax error: <The name "ZOGS_I6_DATA9START_METER_READING" is lon>.

Accepted Solutions (0)

Answers (2)

Answers (2)

TuncayKaraca
Active Contributor

Hi Akash,

Since it's an ABAP syntax error you can check the runtime error with transaction code ST22 in S4 system and see the details about the error.

If I try to guess what the error is about by looking "syntax error: <The name "ZOGS_I6_DATA9START_METER_READING" is lon>" I would say probably ZOGS_I6_DATA9START_METER_READING is a structure name and SAP allows max 30 characters length for the structure / table / view. So I think CPI-DS is trying to generate some ABAP objects including structures based on your setup but ZOGS_I6_DATA9START_METER_READING obviously is longer than 30 characters. Therefore I'd recommend you to use shorter name for whatever the objects you are naming on your end that might help.

Regards,
Tuncay Karaca

spandanabhi
Explorer
0 Kudos

Are you using any joins while extracting data from SAP tables?

former_member60331
Participant
0 Kudos

Hi Spandan,

Not using any joins.

Regards,

Akash