Hi All,
Please help me.
While i trigger full load Infopackage(SAP 3.X) it fails with error message "Job in source system terminated --> Request is set to red."
In SM37 it is coming like that:
25.05.2016 05:14:14 Job started
25.05.2016 05:14:14 Step 001 started (program SBIE0001, variant &0000001573811, user ID XXXXXX)
25.05.2016 05:14:14 Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
25.05.2016 05:14:15 DATASOURCE = 8EDWXXXX
25.05.2016 05:14:15 *************************************************************************
25.05.2016 05:14:15 * Current Values for Selected Profile Parameters *
25.05.2016 05:14:15 *************************************************************************
25.05.2016 05:14:15 * abap/heap_area_nondia......... 20800000000 *
25.05.2016 05:14:15 * abap/heap_area_total.......... 37000000000 *
25.05.2016 05:14:15 * abap/heaplimit................ 40000000 *
25.05.2016 05:14:15 * zcsa/installed_languages...... EFDIS *
25.05.2016 05:14:15 * zcsa/system_language.......... E *
25.05.2016 05:14:15 * ztta/max_memreq_MB............ 2047 *
25.05.2016 05:14:15 * ztta/roll_area................ 20000000 *
25.05.2016 05:14:15 * ztta/roll_extension........... 8000000000 *
25.05.2016 05:14:15 *************************************************************************
25.05.2016 05:14:15 ABAP/4 processor: DBIF_RSQL_INVALID_RSQL
25.05.2016 05:14:15 Job cancelled
In ST22 source code extraction tab it is coming like this:
| 493 | select * from (s_tablnm) |
| 494 | where (s_t_dynsel). |
| 495 | else. |
| 496 | open cursor with hold s_cursor for |
| 497 | select * from (s_tablnm) |
| 498 | where (s_t_dynsel) |
| 499 | order by primary key. |
| 500 | endif. |
| 501 | endif. |
| >>> | fetch next cursor s_cursor |
| 503 | appending corresponding fields of table e_t_dat |
| 504 | package size s_maxsize. |
| 505 | if sy-subrc <> 0. |
| 506 | s_no_more_data = rs_c_true. |
| 507 | endif. |
| 508 | endif. |
| 509 | when sbiwa_c_updmode_delta or sbiwa_c_updmode_repeat. |
510 * fetch data package
| 511 | while l_lines < s_maxsize |
| 512 | and s_no_more_data = rs_c_false. |
| 513 | if s_first_call = rs_c_false. |