Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
Do you know that on average 40-60% of your custom code is in reality not executed in your productive landscape? Especially in SAP Business Suite migration projects like to SAP HANA or SAP S/4HANA such amounts of unused code result in huge adaptation efforts. Therefore SAP’s recommendation is to clean up your unused custom code before migration. But how can you identify the code that is not used?

The purpose of the ABAP Call Monitor (transaction SCMON) is to monitor the execution (usage) of ABAP code (function modules, method calls etc.) in your productive system. The advantage of the SCMON compared to the UPL (Usage Procedure Logging in SAP Solution Manager) is that using this tool you not only collect the usage data (how often a specific ABAP object was called), but also the information about the calling business process. Therefore as a result of the monitoring, you get a list of business transactions (callers) along with all ABAP objects that have been called within these business transactions including the number of calls.

Since SCMON comes along with enhanced functionality scope compared with UPL, you can consider SCMON as a successor and use it instead of UPL.

In the example below you can see, that the function module HTTP_GET_HOST was called altogether 50 times and 19 times of it within the transaction SICF, 17 times as remote function call from the FB_AUINT_CLASSTEST_EXTERNAL and so on.



ABAP Call Monitor does not provide any performance data.

You can use the collected data for example, to find all business processes that call  a specific ABAP object (e.g.to identify the business processes affected by code change or deprecation) or to find out which ABAP objects are called by a specific business process.

SAP’s recommendation is to keep the monitor switched on for a certain period of time to get reliable data.

The ABAP Call Monitor stores the usage data on the system for a certain period of time (maximum 7 days). In order to store the usage data for a longer period of time, you should use transaction SUSG. The purpose of the transaction SUSG is to aggregate the usage information collected by ABAP Call Monitor for a period of time. Learn also how to Aggregate usage data in your production system with SUSG transaction.

Prerequisites


ABAP Call Monitor is available with AS ABAP 7.50 and for the lower releases (>=7.00) per ST-PI Add-on.

The authorization profile for object S_ADMI_FCD with value SCMD for read access to ABAP Call Monitor data.

The authorization profile for object S_ADMI_FCD with value SCMA for administration activities in the ABAP Call Monitor.

Integration into SAP Solution Manager 7.20


SCMON can be activated in different systems from one single place: SAP Solution Manager 7.20, if these systems are connected to SAP Solution Manager (Solman_Setup -> Custom Code Management).



Generally the Solution Manager 7.20 collects either UPL or SCMON data depending whether the connected system is capable of SCMON or UPL. It is also possible to extract the SCMON data into Solution Manager BW. The data will be stored in day slices and if needed as well in weekly, monthly and yearly aggregation. This will help to keep SCMON data during a long time period in one single place, but still keep the time slices and the respective data small in the original system itself. The existing already collected UPL data get also imported into Solution Manager BW and simply mixed with the new SCMON data.

The SCMON data can then be evaluated for decommissioning of unused objects in the connected systems, using Custom Code Lifecycle Management (CCLM) Decommissioning Cockpit in the Solution Manager. (Sm_Workcenter -> Custom Code Management -> Custom Code Management or CCLM Decomissioning Cockpit). Please consider that usage data are collected from different systems and if an object is not used on one system, but used on the other system, you should not decommission it.

Administrator: Configuring ABAP Call Monitor


System administrator configures SCMON and changes the data collection.

CAUTION:

  • You should never run Usage Procedure Logging (UPL) und SCMON in parallel. This can happen coincidentally for example if you activate UPL via Solution Manager and then SCMON locally in ABAP system.

  • Avoid using SCMON (or UPL) for the systems which already run under maximum load


It is the task of a system administrator to activate or deactivate monitoring with SCMON for the entire ABAP system (all server instances) by using the button Activate and then specifying the configuration settings:



Here you specify the point of time when the monitoring will be deactivated automatically (Scheduled Deactivation) and limit the maximum number of records that are created during monitoring (Record Limit).

The time slices in the ABAP Call Monitor make possible to analyze the progress of monitoring results over time. You then have the option to focus on monitoring data for a specific time interval. For example, you might be interested in those ABAP procedures that call development objects that have been declared as deprecated since a specific point of time (ABAP Call Monitor > Configure Time Slices).



Here you can limit the data records created during monitoring to a specific period of time. The ABAP Call Monitor automatically deletes the monitoring data that has been created before Maximum Number of days.

Usually, the data collection takes automatically place once an hour if the ABAP Call Monitor is active in the system. But you can trigger the data collection explicitly at any point of time (button Collect Data).

If you have finished your monitoring activities and no longer need the corresponding data, you have the option to explicitly delete the collected monitor data (menu ABAP Call Monitor > Delete Data).

Developer: Using ABAP Call Monitor for data analysis


Display and analyze the collected data


The Data Browser of the ABAP Call Monitor allows you to analyze the use/dependency relationship between called objects and calling business processes (button Display Data).

You can also specify the data for selective analysis. For example if you want to get all URLs calling the method TRACE of the class CL_HTTP_SERVER during a specific period of time, you need to specify the following options:



And here is the result example:



If you want to display all ABAP objects that were used (called) by the SE38 transaction within one day you need to specify the following options:



Based on the selection criteria, the ABAP Call Monitor generates a result list of request entry points along with all ABAP objects that have been executed within the selected time interval:



Each entry in the list represents a monitoring data record, which you can drill down for viewing further details. For example Show Time Evolution displays the daily time slices of monitoring data for the selected entry, Show Calling Requests displays the calling requests and Show Called Requests displays the called requests for the selected entry.



Display and analyze the Call Graph


The call graph option allows you to focus on the usage/dependency relationship between requests (button Display Call Graph). For example, if you want to know which objects call the transaction SE38 within a certain period of time, you will need to specify the following options:



And here is the result example:



Display Log


Occasionally, you will need an overview of all monitor activities within a certain period of time (button Display Log).

In the Log Browser screen that appears, you get a list of actions or events - such as activation or deactivation of the call monitor, deletion of records, and collection of data.



 

Further information


The new SAP Note 2679723 serves as a central reference and entry point for problems with SCMON and /SDF/SCMON. In particular, it contains an overview of relevant further notes concerning the ABAP Call Monitor.
132 Comments
Former Member
0 Kudos
 

Hello Olga - thanks very much for all of the information.  Is it possible, either via SCMON or another tool to understand which users are executing custom developments ?  For custom code which has limited use, we would like to follow up with those users and organizations where it is still used to check for decommission possibilities.

Many thanks and best regards,

Ken
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Ken,

unfortunately not automatically. You need to look up for each such custom code object in the object catalog (TADIR). Alternatively you can write a report, to JOIN the SCMON results (e.g. SCMON_VDATA_A_VIEW) with the table TADIR.

Best regards,

Olga.
marcin_starzyk2
Discoverer
0 Kudos
Hello olga.dolinskaja

Big thanks for great blogs, I learn a lot from your articles.

Currently I have issue that I don't know how to grasp. In our organization we setup monitoring process of our code via Solman using SCMON. Everything works great and data is collected so we can start planning cleaning process but we have issue with Function modules usage monitoring (Reports/Classes looks nice). It looks that only about 1% of our custom function modules have last usage date when we check BW report in Custom Code Management Workcenter.

We also try to use some reports that using custom function modules and check if usage will be recorded but it wasn't. I was trying to check also some information on forums but it is really hard to find answer to our problems.

Maybe you have something in mind that we can check in our system to improve usage reports ?
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Marcin,

SCMON always collects the usage of function modules. Please consider, that function modules appear in the SCMON usage list as entry points only if they are called via RFC. Otherwise they are  part of the calling request and you can see their usage within the call graph of the calling request. You can check it directly in the system. If it is not the case, and you still don't get the usage of functional modules, please open the OSS message to the ST-PI component.

I'm not familiar with BW reports in CCLM, maybe the SAP Community wiki can guide you: https://wiki.scn.sap.com/wiki/display/SM/SAP+Solution+Manager+WIKI+-+Custom+Code+Management

Best regards,

Olga.

 
0 Kudos
Hi Olga,

thanks for sharing this information!

My question is about calling the SCMON_DISPLAY_DATA in the background. I noticed, that the batch job failed every time with exception CNTL_ERROR. I would like to export results to local file weekly from spool. With filters I use, there are less than10000 entries. Do you have any proposals for running this report in the background? It is not integrated in the Solution Manager.

Thank you!

 

Best regards,

Elena

 
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Elena,

the report SCMON_DISPLAY_DATA can only be run in dialog. An aggregation of the data for week / month is (presumably) provided by the Solution Manager, if configured.

Regards,

Olga.
SergioFerrari
Active Contributor
0 Kudos
thanks for the blog Olga,

activating SCMON on a productive SAP S/4HANA system, table SCMON_DATA growth very fast using more then 250GB of the HANA (check out attached picture).

At that point SCMON_DATA become greater than all the complete Database increasing the memory consumption out-side the licence limit.

Table SCMON_DATA is defined as Columnar and not Row and some doubts about usage in real-life are arising.

As you can see in the picture SQLMZD (from /nSQML) is second and it's a bit a pity that also this kind of tables that are technical logs fill-up the memory of SAP HANA, isn't it?

Sergio

 



 
stefan_bresch
Employee
Employee
Hi Sergio,

since a large number of updates are performed hourly on table SCMON_DATA, the table appears under the top tables regarding "Memory Size in Delta", as shown on your screenshot.

Regarding "Memory Size in Total", the table SCMON shall not grow larger than a few GBytes, as overall records in SCMON are limited to 20.000.000 per default.

Similar for table SQLMZD.

Best Regards
Stefan
SergioFerrari
Active Contributor
0 Kudos
Thanks for the valuable reply Stefan !
vonglan
Active Participant
0 Kudos
Hi Olga,

it seems this functionality has now been supplied by SAP. See note https://launchpad.support.sap.com/#/notes/2643357, providing a new transaction SUSG.

Where can I find information about this new aggregation functionality?

Especially, I am interested whether the aggregated data is stored in the same tables (SCMON_SLICE, SCMON_DATA etc.) and displayed by the same transaction SCMON.

Best regards,

Edo
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Edo,

the documentation about SUSG is being now created, and will be available somewhat later.

The aggregated usage data is stored in new tables (SUSG_DATA, etc.) and cannot be displayed using transaction SCMON.

A remote enabled API is provided to read the aggregated usage data.

Best regards,

Olga.

 

 
vinchacho
Explorer
0 Kudos

Hi Olga,

It would be great if you can share the documentation once it is available.

I’m most interested to know if there are any plans to integrate this with custom code tools like CDMC etc.? I assume it's technically possible with the API provided. Would be great enhancemet especially since UPL/SCMON no longer works with CDMC on SolMan 7.2.

Looking forward to hearing from you.

Best regards,

Vincent

OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Vincent,

there are no plans to integrate SCMON or UPL data with CDMS and there will be no new developments for CDMS generally, only  maintenance. You should use CCLM in Solution Manager for custom code management. It is capable of UPL/SCMON.

Best regards,

Olga.
IanStubbings
Active Participant
0 Kudos
Hi Olga

I'm not sure if this is the correct place but at least the blog is about usage 🙂

I have a situation in Solution Manager CCLM where the BW aggregation to month and year cubes is occurring for some systems but not all (we do not use the week cubes). Checking the AGS_CC_SCMON_DSO extractor confirms that for 10 systems the aggregation is currently working but for 4 it is not.  When I run an infrastructure check, all seems well for the Solution Manager system itself.



and the information on the cubes for each system just tells what I already know - that the data is missing.

What I have noticed though, is that in the Usage Logging configuration settings, for a system that aggregates correctly, the Operation status is Green and the Message Context has an Operation Status node - see below



 

However, for systems that does not aggregate correctly, the Operation Status is RED and there is no Operation Status code in the Message Context.



Daily data is collected correctly for all systems, just not aggregated for some.

Any idea how I can rectify this?

Regards

Ian
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Ian,

please open the ticket to SAP regarding this issue. It needs to be analyzed in depth by SAP experts.

Thanks,

Olga.
IanStubbings
Active Participant
0 Kudos
Hi Olga

 

I've opened the ticket and will feedback the resolution once we have solved the issue.

 

Many thanks

Ian
Gilmour213
Explorer
0 Kudos
Hi Olga,

we have switched on the SCMON via /SDF/SCMON... in our System.

The Base colleagues have set the time slices to the max. of 7

So the Monitoring was started 3 weeks ago , we suggested that we will all Data since 3 weeks now.

But always when we use now the /SDF/SCMOND Transaction we got only the last 7 days an not 21, even when we set the relevant dates in the Selection Screen.

Is only the Data for the last 7 Days available, since we use Time Slices = 7 ?

Best regards

Mario
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Mario,

yes, correct. The ABAP Call Monitor stores the usage data on the system for a certain period of time (maximum 7 days). In order to store the usage data for a longer period of time, you should use transaction SUSG (see also the link to SUSG above in the blog Aggregate usage data in your production system with SUSG transaction.). The purpose of the transaction SUSG is to aggregate the usage information collected by the ABAP Call Monitor for a period of time.

Best regards,

Olga.
Gilmour213
Explorer
0 Kudos
Hi Olga,

Thx for the quick answer. But I didn't find this Transaktion SUSG on our Production System.

Is it because we only have 7.40 Release ?

We use therefore the /sdf/..... Functions and not the Original one like SCMON

Best regards

Mario

 
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Mario,

SUSG is provided also on older releases (>=7.00), 7.40 is supported as well. You need to install SUSG on your system via SNOTE. See please the corresponding SAP Notes in the "Prerequisites"chapter of the SUSG blog.

Best regards,

Olga.
IanStubbings
Active Participant
0 Kudos
Hi Olga

This is now rectified by reactivating the system specific settings.



Thanks

Ian
IanStubbings
Active Participant
0 Kudos
Hi Olga

If SCMON is switched on in the system rather than via SolMan, it has a deactivation date of 2 weeks in the future. If our system is not connected to SolMan, should we just set this data to be indefinite and ensure that SUSG is also switched on?

Regards

Ian
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
Hi Ian,

yes, you need to switch on the SUSG.

I found nothing special in the application help of SCMON regarding deactivation date besides:

"The following configuration settings are specified: Scheduled Deactivation: Point of time when the monitoring will be deactivated automatically." So I think you can leave it undefined.

Regards,

Olga.
IanStubbings
Active Participant
Thanks Olga. Set as below. I'm assuming the records will not grow to 20 million if they are being aggregated.



Thanks

Ian
former_member188032
Participant
0 Kudos
We are in early planning stages for setting up SCMON and ATC.  We have been asked if either of these tools can provide usage statistics for LiquidUI scripts.  My first guess is that they can't but would appreciate any feedback or suggestions you or other readers may have about usage statistics for LiquidUI scripts.
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Joyce,

the ABAP code, processed by Liquid UI scripts will be recorded by SCMON. The question is, what is the request entry point for the SCMON, because the processing was called not by ABAP transaction but by Liquid UI script.

Regards,

Olga.
rob_kading1
Explorer
0 Kudos
Hello experts

We have two years' UPL data accumulated on our Managed System (Production). What happens to that information when SCMON is activated (and transaction SUSG is implemented)? Would the usage stats (i.e how many times a directly executed Transaction and/or Program was used) become available in CCLM reporting? If so, would we still be able to access to full two years' data, or only the data used since activating SUSG/SCMON?

Your insights are appreciated.

Regards, Rob

 
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Rob,

if you use CCLM then the existing already collected UPL data will be imported into Solution Manager BW and simply mixed with the new SCMON data, so you will not lose your collected UPL data if you switch on SCMON. SUSG/SCMON should be used directly in the ERP system without Solution Manager and CCLM and you cannot add your collected UPL data to SUSG.

Regards,

Olga.
0 Kudos
hi Olga,

Is there any plan to add data about the development package and the time of execution for each SCMON output record?

 

Thanks,

Joe.
former_member4628
Participant
0 Kudos
Hi Olga

Thank you for your block.

We activated SCMON via our Solution Manager for the managed systems. In the managed system we can see that the SCMON only runs for 7 days and the data is then overwritten.

Where can we see the total data collected over a long period of time?

Many thank you


 

Best Regards
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

as described in the beginning of this blog: you must activate SUSG transaction for the data aggregation.

Best Regards,

Olga.
former_member4628
Participant
0 Kudos

Hi Olga,

Thank you very much for your answer. Unfortunately we have not activated SUSG.

Does this mean that the collected data were always overwritten after 7 days  and we now have no data collected for more than 7 days?

 

Must SUSG in the managed System to be activated if SCMON has been activated via solman?

 

Thank you

 

Best Regards

OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

yes, it so.

Regards,

Olga.
former_member4628
Participant
0 Kudos
Hi Olga,

Thank you for the answers!!!


I apologize for the many questions, but I still haven't understood.


We have activated SCMON and BW in the Solution Manager.

Custom Code:





BW





But we have not activated  SUSG in the managed system. Can we view the collected data in the Solution Manager? Or will they be overwritten even after 7 days if SUSG is not activated?


Many Thanks
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

if you use SCMON with Solution Manager, then you don't need SUSG, SCMON data gets stored in the Solution Manager BW, but will be deleted from the SCMON system after 7 days. You should then refer to the SCMON usage data stored in the Solution Manager BW. Please refer to the Solution Manager Guide for details to to set up SCMON with Solution Manager. You can find it here:

https://wiki.scn.sap.com/wiki/display/SM/SAP+Solution+Manager+WIKI+-+Custom+Code+Management

Best regards,

Olga.
former_member670866
Discoverer
0 Kudos

Hello Olga:

Firstly, Many Thanks for this good information.

However, there are few questions.

Let’s assume that we need custom code usage data for 1 year. This information will later be used to determine custom objects to be deleted.

Question1:

If my understanding is correct, SCMON and SUSG both go hand-in-hand. i.e. SCMON and SUSG should remain active together for 1 year. Correct?

Question 2:

It is mentioned in the blog for SUSG that  “You cannot display the aggregated usage data (neither in SUSG nor in SCMON or /SDF/SCMON)”. Question would be then, how can we use this data for determining unused custom code, if we are not able to access the result (We are not yet in S/4 HANA system)?

Is it that we can still access SCMON analysis data of 1 year? If yes, then I am a bit worried about size of the respective table in database.

Question 3:

If we activate SCMON and SUSG, to evaluate for a duration of 1 year, how can we perform analysis without solution manager as the total number of records will be very huge to process in foreground. Is there a solution for this?

Question 4:

What is the recommendation of SAP i.e. what is the right approach?

Is it Activation of SCMON & SUSG and Analysis of Custom Code using SolMan?

 

Thanks in advance for your reply.

Regards,

Vineesh

 

OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Vineesh,

thank you. Please see my answers to your questions:

  1. yes, you should turn on both: SCMON and SUSG to collect usage data for a longer period of time

  2. currently only SAP Fiori App Custom Code Migration can access and display the SCMON/SUSG aggregated usage data. You should use Custom Code Migration app.

  3. for approx. 1,5 years usage data collection and aggregation you will get approx. 5GB data on the system. See also the Usage data - FAQ:  https://blogs.sap.com/2019/06/25/custom-code-adaptation-for-sap-s4hana-faq/#_Toc470164261

  4. for the SAP S/4HANA conversion use case we recommend to collect and aggregate the usage data wit SCMON/SUSG directly in your ERP system without Solution Manager. For all other use cases you can collect the usage data with SCMON and store it in Solution Manager BW (if you need access to usage data).


Best regards,

Olga.
former_member4628
Participant
0 Kudos
Hi Olga,

Many Thanks for your answers.

Can I ask you something else?

we already configured SCMON with Solution Manager:


 

 

Where can I find the data in the Solution Manager BW Cube ?

 

 

Many Thanks

Best Regards

Tatjana
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

please look up in the Custom Code Management Guide of Solution Manager for SCMON data.

https://wiki.scn.sap.com/wiki/display/SM/SAP+Solution+Manager+WIKI+-+Custom+Code+Management

Best regards,

Olga.
former_member4628
Participant
0 Kudos

Hi Olga

Many Thanks.

If we activate and change Time Slices for 365 day directly in the productive system without solman, will the collected data nevertheless be overwritten after 7 days?


Thanks a lot

 

OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

yes, you need to activate SUSG in order to keep the SCMON data. These time slices are daily time slices. With this number, you can just limit the data records created during monitoring per day.

Regards,

Olga.

 
former_member4628
Participant
0 Kudos

Hi Olga

Thank you very much for the support.
Do I understand it correctly ? If I configure Time Slince as in my screenshot, then can the SCMON  collect only 365 data records per day ?



Many thanks
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

sorry, I've explained it not very carefully. If you enter 365, you will get SCMON data for 365 days. But every night runs SCMON data collection, and the data of the oldest day will be always deleted. Even for 7 days you will get approximately 20GB of data, for 365 you will get more then 1Tbyte (!) of data, which would oveload the system capacity and you will not be able to display the data in the transaction SCMON because of performance. Our recomendation is to use 7 days as default and aggregate the data either with Solution Manager or with SUSG.

Regards,

Olga.
former_member4628
Participant
0 Kudos

Hi Olga
You explain that very well. Maybe I don’t quite understand it.

Do I understand it correctly, our SCMON runs for 365 days, but the collected data will be overwritten when our SCMON has collected 999,999,999 data?

Thank you very much!

OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Tatjana,

no, Record Limit is maximum of SCMON records which can be generally recorded by SCMON. The collected SCMON records of the oldest day of your 365 days will be overwritten each night. But as wrote above: 365 days is too much, you may get data overflow in the system. Use SUSG in order not to lose SCMON data.

Regards,

Olga.
IanStubbings
Active Participant
0 Kudos
Hi Olga

 

I've just configured CCLM for a S/4HANA 1909 FP0 managed system and SCMON was not activated. Instead it activated UPL.  I had actually switched off SCMON in this managed system directly before triggering from Solution Manager so I know it supports it.

I've checked Note 1828848 - Usage & Procedure Logging and ABAP Call Monitor: Technical prerequisite (UPL/SCMON) as suggested in the another blog post and the requirements are fulfilled.  Why would CCLM chose UPL if SCMON was available?

 

Thanks

Ian
OlgaDolinskaja
Product and Topic Expert
Product and Topic Expert
RyabovAlex
Advisor
Advisor
0 Kudos
Hi Ian, it's been a while since we last met 🙂

The reason for this could be insufficient authorizations from Solman to Managed system. You can check the job log of the *scmon_control* in sm37. Usually it is quite straight forward described.

You can also try to debug the same report.
IanStubbings
Active Participant
0 Kudos
Hi Olga

Yes, checked for this guide and the others. The note you refer to switches on SCMON Root which I'd rather not as I'm concerned about the 20x data footprint it will generate compared to standard SCMON. Unless this is a way to 'force' it to see SCMON and then reactivate using standard SCMON? Currently in CCLM it just lists /SDF/UPL_PERIODIC_EXT_JOB under the analysis jobs section.

 

Regards

Ian
IanStubbings
Active Participant
0 Kudos
Hi Alexander

Nice to hear from and thanks for the reply. Yes, indeed it has been a while!

 

I've checked for the job but unfortunately there is no instance of it.  I also did an SU53 for the SolMan user but nothing there either.  It looks as though /SDF/UPL_PERIODIC_EXT_JOB is the the job triggered from CCLM and not SM:SCMON_CONTROL.

It's a bit of a mystery at the moment.

 

Regards

Ian
Labels in this area