cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Monitor GEN_INCLUDE_NOT_EXEC AL01100R

mmaglis
Explorer
0 Kudos

Scheduling SQL Monitor collection jobs creates ABAP runtime errors.

GEN_INCLUDE_NOT_EXEC

Program "AL01100R" is type I and therefore cannot be generated.
The current ABAP/4 program attempts to call the program "AL01100R", but this program cannot be executed. Therefore, the current program had to be terminated.

The program "AL01100R" was started as a background job.

Job Name....... "/SDF/ZQLM_UPDATE_DATA/SCHEDULE"

The program is type I - Include in production, but type 1 - Executable in QA system and does not exist at all in development. No version information exist either in any of the systems.

Jobs in QA and development environment run with out dumps.

Has anyone faced the same?

System details:

Oracle 11.2.0.4
SAP Basis 701 SP18
ST-PI 2008_1_700 SP14
SAP Kernel 721_EXT_REL patch 700

Reference notes:

1885926 - ABAP SQL monitor
1972328 - SQL Monitor - robustness and minimization of administrative efforts

Accepted Solutions (1)

Accepted Solutions (1)

christoph_ostrop
Active Contributor

have a look at => https://launchpad.support.sap.com/#/notes/0001634704

sapnote: 1634704 - ALLOCATION: Kurzdump GEN_INCLUDE_NOT_EXEC

==========================

sapnote: 2017410 https://launchpad.support.sap.com/#/notes/0002017410

use SE16N + edit the type from "I" to "F"

=====

You can check the SUBC type definition on:

  1. Transaction: SE16;
  2. Table: REPOSRC;
  3. Enter program name: SAPLSEOP;
  4. Execute the query.

Resolution

In case program "SAPLSEOP" is defined as “I” or “K” instead of “F”, you should manually set SUBC value as “F”, by following below procedure:

  1. Transaction: SE16;
  2. Table Name: PROGDIR;
  3. Search the name as: SAPLSEOP;
  4. Select object SAPLSEOP and then change (F6);
  5. Replace SUBC from“I” or “K” to “F”;
  6. Save your entry.
mmaglis
Explorer
0 Kudos

Applying the note 1634704 - ALLOCATION: Kurzdump GEN_INCLUDE_NOT_EXEC solved the issue.

Thank you!

Answers (1)

Answers (1)

christoph_ostrop
Active Contributor
0 Kudos

sapnote: 2017410 https://launchpad.support.sap.com/#/notes/0002017410

use SE16N + edit the type from "I" to "F"

=====