Question:
hello
one of the job SAP_COLLECTOR_FOR_PERFMONITOR getting cancelled in our Quality System BW.
Here is the Job Log details:
Job started
Step 001 started (program RSCOLL00, variant , user ID AMAHAPATRA)
Buffer statistics for dcwiu07f transferred to MONI
ABAP/4 processor: LOAD_PROGRAM_NOT_FOUND
Job cancelled
Here is the log for LOAD_PROGRAM_NOT_FOUND:
Runtime Errors LOAD_PROGRAM_NOT_FOUND
Date and Time 11/30/2005 23:26:20
ShrtText
Program "SWNCCOLL" not found.
What happened?
There are several possible reasons for the error:
Error in ABAP application program.
The current ABAP program "RSCOLL00" had to be terminated because one of the
statements could not be executed.
This is probably due to an error in the ABAP program.
or
The current ABAP program had to be terminated because the
ABAP processor detected an internal system error.
The current ABAP program "RSCOLL00" had to be terminated because the ABAP
processor discovered an invalid system state.
What can you do?
Print out the error message (using the "Print" function)
and make a note of the actions and input that caused the
error.
To resolve the problem, contact your SAP system administrator.
You can use transaction ST22 (ABAP Dump Analysis) to view and administer
termination messages, especially those beyond their normal deletion
date.
is especially useful if you want to keep a particular message.
Error analysis
On account of a branch in the program
(CALL FUNCTION/DIALOG, external PERFORM, SUBMIT)
or a transaction call, another ABAP/4 program
is to be loaded, namely "SWNCCOLL".
However, program "SWNCCOLL" does not exist in the library.
Possible reasons:
a) Wrong program name specified in an external PERFORM or
SUBMIT or, when defining a new transaction, a new
dialog module or a new function module.
b) Transport error
b) Transport error
How to correct the error
Check the last transports to the R/3 System.
Are changes currently being made to the program "RSCOLL00"?
Has the correct program been entered in table TSTC for Transaction " "?
-
You may able to find an interim solution to the problem
in the SAP note system. If you have access to the note system yourself,
use the following search criteria:
------------------------------------------------------------------------
"LOAD_PROGRAM_NOT_FOUND" C
"RSCOLL00" or "RSCOLL00"
"LOOP_AT_SYSTEMS_AND_REPORTS"
------------------------------------------------------------------------
If you cannot solve the problem yourself and you wish to send
an error message to SAP, include the following documents:
1. A printout of the problem description (short dump)
To obtain this, select in the current display "System->List->
Save->Local File (unconverted)".
2. A suitable printout of the system log
To obtain this, call the system log through transaction SM21.
Limit the time interval to 10 minutes before and 5 minutes
after the short dump. In the display, then select the function
"System->List->Save->Local File (unconverted)".
3. If the programs are your own programs or modified SAP programs,
supply the source code.
To do this, select the Editor function "Further Utilities->
Upload/Download->Download".
4. Details regarding the conditions under which the error occurred
or which actions and input led to the error.
ystem environment
SAP Release.............. "640"
Application server....... "dcwiu07f"
Network address.......... "10.104.220.150"
Operating system......... "HP-UX"
Release.................. "B.11.23"
Hardware type............ "ia64"
Character length......... 8 Bits
Pointer length........... 64 Bits
Work process number...... 1
Short dump setting....... "full"
Database server.......... "dcwiu07f"
Database type............ "ORACLE"
Database name............ "QW1"
Database owner........... "SAPBIW"
Character set............ "en_US.iso88591"
SAP kernel............... "640"
Created on............... "Jun 5 2005 20:32:15"
Created in............... "HP-UX B.11.23 U ia64"
Database version......... "OCI_920 "
Patch level.............. "76"
Patch text............... " "
Supported environment....
Database................. "ORACLE 8.1.7.*.*, ORACLE 9.2.0.*.*, ORACLE
10.1.0.*.*"
SAP database version..... "640"
Operating system......... "HP-UX B.11"
Memory usage.............
Roll..................... 796928
EM....................... 0
Heap..................... 0
Page..................... 24576
MM Used.................. 723552
MM Free.................. 53136
SAP Release.............. "640"
User and Transaction
Client.............. 010
User................ "MCCURLIS"
Language key........ "E"
Transaction......... " "
Program............. "RSCOLL00"
Screen.............. "SAPMSSY0 1000"
Screen line......... 6
Information on where terminated
The termination occurred in the ABAP program "RSCOLL00" in
"LOOP_AT_SYSTEMS_AND_REPORTS".
The main program was "RSCOLL00 ".
The termination occurred in line 534 of the source code of the (Include)
program "RSCOLL00"
of the source code of program "RSCOLL00" (when calling the editor 5340).
The program "RSCOLL00" was started as a background job.
Job name........ "SAP_COLLECTOR_FOR_PERFMONITOR"
Job initiator... "MCCURLIS"
Source Code Extract
Line SourceCde
504 LOOP AT itcoll. " start of loop 2: reports
505 skip_flg = 'X'. " disable execution of report
506 CASE itcoll-sytyp.
507 WHEN 'S'.
508 IF sys_tabl-system_mark = 'X'.
509 CLEAR skip_flg. " enable execution of report
510 ENDIF.
511 WHEN 'A'.
512 IF sys_tabl-appsrv_mark = 'X'.
513 CLEAR skip_flg. " enable execution of report
514 ENDIF.
515 WHEN 'H'.
516 IF sys_tabl-host_mark = 'X'.
517 CLEAR skip_flg. " enable execution of report
518 ENDIF.
519 WHEN '%'. "Explicitly
520 IF sys_tabl-name = itcoll-altsy OR sys_tabl-host = itcoll-altsy.
521 CLEAR skip_flg.
522 ENDIF.
523 ENDCASE.
524
525 * Execute this report?
526 IF skip_flg IS INITIAL.
527 * Yes, execute report ITCOLL-RNAME.
528 * All 'S' reports are executed locally; don't perform a RFC (itcoll-sytyp = 'S').
529 * 'A' and 'H' reports for the local application server are also
530 * executed by SUBMIT (sys_tabl-system_mark = 'X').
531 IF itcoll-sytyp = 'S' or sys_tabl-system_mark = 'X'.
532 DO itcoll-renum TIMES.
533 SUBMIT (itcoll-rname) AND RETURN.
>>>> rinfo-host = sy-host.
535 rinfo-rname = itcoll-rname.
536 rinfo-rpara = space.
537 rinfo-datum = sy-datum.
538 rinfo-uzeit = sy-uzeit.
539 rinfo-ltext = space.
540 * write log entry
541 PERFORM proto_fill USING sys_tabl-name
542 sys_tabl-host
543 itcoll-rname
544 sys_tabl-error.
545 ENDDO.
546 ELSE.
547 * 'A' and 'H' reports may have to be executed remotely.
548 DO itcoll-renum TIMES. " start of loop 3: trials
549 sys_tabl-error = 0.
550 CLEAR mess.
551 MODIFY sys_tabl.
552 CALL FUNCTION 'RSCOLL10' DESTINATION sys_tabl-name
553 EXPORTING
SY-INDEX 1
SY-TABIX 11
SY-DBCNT 30
SY-FDPOS 0
SY-LSIND 0
SY-PAGNO 0
SY-LINNO 1
SY-COLNO 1
SY-PFKEY
SY-UCOMM
SY-TITLE Main program: Performance monitor (RFC) collector run
SY-MSGTY E
SY-MSGID PO
SY-MSGNO 238
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
Active Calls/Events
No. Ty. Program Include Line
Name
2 FORM RSCOLL00 RSCOLL00 534
LOOP_AT_SYSTEMS_AND_REPORTS
1 EVENT RSCOLL00 RSCOLL00 169
END-OF-SELECTION
Chosen variables
Name
Val.
No. 2 Ty. FORM
Name LOOP_AT_SYSTEMS_AND_REPORTS
SKIP_FLG
2
0
SCREEN
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
SY-REPID
RSCOLL00
5544443322222222222222222222222222222222
233FCC0000000000000000000000000000000000
ITCOLL-SYTYP
S
5
3
SPACE
2
0
SYS_TABL-NAME
dcwiu07f_QW1_00
6676733655535332222222222222222222222222
43795076F171F000000000000000000000000000
ITCOLL-ALTSY
Answer:
ShrtText
Program "SWNCCOLL" not found.
go into SE38
type SWNCCOLL
check if it exists. If not, call SAP. This means it's a system problem from their part.
_________________
SapFans Moderator
NetWeaver ‘04–SAP Web AS for ORACLE certified
Search: /forums/search.php
SAP Notes: http://service.sap.com/notes
SAP Help: http://help.sap.com
Basic Rules: /forums/viewtopic.php?t=222759
Answer:
Hello
I had see your logs . I know whats the problem.
The problem is in the support package , you have implemented the Basis support package 14.
The Solution is you need to delete the SWNC* reports and insert RSSTAT83 and RSSTAT87 into TCOLL .
See SAP Note # 874480.
Thanks & Regards
AKM
Answer:
Thanks AKM
-MCurlis