cancel
Showing results for 
Search instead for 
Did you mean: 

Submit and return silent skip in process inbound api

05-21-2026 4:47 AM
acetedi Participant
759 views 8 comments
0 Likes
SAP Managed Tags
Subscribe

Dear Experts,

I have an issue sometimes data from the inbound REST API silently skips the process. When this happens, no data is processed, and absolutely no log is written into our custom logging table. Since this issue only happens occasionally in Production (and works fine in Development/Quality environments), I suspect it might be related to system load or session limitations. The submit program originally waiting time with default 12 second the code look like this.

  SUBMIT zxxx WITH v_wait = 12
              AND RETURN.

Any insights, experiences, or suggestions would be highly appreciated.

Thank you in advance!

0 Likes

Accepted Solutions (0)

Answers (1)

Answers (1)

sravan_aleshwaram
Active Participant
0 Likes

Hello @acetedi 

Possible issue is with SUBMIT ... AND RETURN timing out or getting skipped under Production load.
Try increasing the wait time and add application logging before/after SUBMIT for traceability

SUBMIT zxxx WITH v_wait = 30
AND RETURN.


Thanks,
Sravan

acetedi
Participant
0 Likes

Hello Sravan,

I think increasing the wait time for the program is not the right solution. Also, adding logging after the SUBMIT is not fully traceable because some processes are being skipped silently. When I checked the SAP documentation for the SUBMIT syntax, I also found that there are several session handling limitations, especially when multiple executions are triggered simultaneously.

Kind Regards,

Tedi