Any log for process chain changes

Dear All,
I have around 95 process chains, during the monthends & beginings i have done some changes to some of the process chains.
If i want to have a quick look at only changes to those pc's where can i get the info.
To be frank, practically its not possible to go each and every pc and goolge them.
Can you please guide me on how to .
Rgds

Go to SE11 and search with
RSPC*
You will find all the tables concerned with process chains.
RSPC_ALERT_CAT                 Alert Categories for Process Types
RSPC_BUFFER                    Shared Buffer for Processes (Esp. C
RSPC_MONITOR                   Monitor individual process chains
RSPCABAPASYNC                  Logging for ABAP Processes(Synchron
RSPCCATEGORY                   Process Type Categories
RSPCCATEGORYT                  Texts for Category
RSPCCHAIN                      Process chain
RSPCCHAINATTR                  Attributes for a Process Chain
RSPCCHAINEVENTS                Multiple Events with Process Chains
RSPCCHAINT                     Texts for Chain
RSPCCOMMANDLOG                 System Command Execution Logs (Proc
RSPCCONTENTSTART               Process Chains To Be Scheduled Auto
RSPCENQUEUE                    Dummy Table for Runtime Locks of a
RSPCEXOR                       Excluding Or: Log Table
RSPCINFO                       Special Values for Communication be
RSPCINFOT                      Special Values for Communication be
RSPCINSTANCE                   Generic Instance Storage
RSPCINSTANCET                  Texts for Generic Instance-Storage
RSPCINTERRUPT                  Variants for the Trigger Processes
RSPCINTERRUPTLOG               Table for Interrupt Processes
RSPCINTERRUPTT                 Texts for Interrupt Variants
RSPCLOGCHAIN                   Cross-Table Log ID / Chain ID
RSPCLOGCROSS                   Cross-Table Log ID Old / Log ID New
RSPCLOGS                       Application Logs for the Process Ch
RSPCPROCESSLOG                 Logs for the Chain Runs
RSPCRUNVARIABLES               Variables for Process Chains for Ru
The information you are looking for is available in RSPCCHAIN i belive.
Regards,
rocks

Similar Messages

  • Log for process chain.

    Hello Gurus,
           after my process chain runned today sucessfully, I want to check this running in the log view, but after I chose "yesterday and today" and got into log view, there are only log for "03/05/2010" and "02/26/2010". please how can I get the log for today's running?
    Many thanks,

    Hi,
    If you select the option u201CTodayu201D in date selection it displays todayu2019s process chain log.  I think, you have selected the option u201CThis month and last monthu201D in your case. So, it displayed the logs for date "03/05/2010" and "02/26/2010u201D accordingly and only two runs were done since last month. Please make sure your selections.

  • Need a table for process chains of when these are scheduled!!

    Hi,
    I had like to have list of all the process chains and their schedules of how often these are loaded and whether been triggered by event or directly scheduled. If periodically scheduled then the period----
    is there any table which can have the information as i said??
    Raj

    Hi....
    process chain tables
    RSPC_BUFFER Shared Buffer for Processes (Esp. Customer
    RSPC_MONITOR Monitor individual process chains
    RSPCABAPASYNC Logging for ABAP Processes(Synchronously a
    RSPCCATEGORY Process Type Categories
    RSPCCATEGORYT Texts for Category
    RSPCCHAIN Process chain
    RSPCCHAINATTR Attributes for a Process Chain
    RSPCCHAINEVENTS Multiple Events with Process Chains
    RSPCCHAINT Texts for Chain
    RSPCCOMMANDLOG System Command Execution Logs (Process Cha
    RSPCENQUEUE Dummy Table for Runtime Locks of a Process
    RSPCEXOR Excluding Or: Log Table
    RSPCINFO Special Values for Communication between P
    RSPCINFOT Special Values for Communication between P
    RSPCINSTANCE Generic Instance Storage
    RSPCINSTANCET Texts for Generic Instance-Storage
    RSPCLOGCHAIN Cross-Table Log ID / Chain ID
    RSPCLOGCROSS Cross-Table Log ID Old / Log ID New
    RSPCLOGS Application Logs for the Process Chains (G
    RSPCPROCESSLOG Logs for the Chain Runs
    RSPCRUNVARIABLES Variables for Process Chains for Runtime
    RSPCTRIGGER Variants for the Trigger Processes
    RSPCTRIGGERT Texts for the Trigger Variants
    RSPCTYPESDEP Dependencies for Processes
    RSPCTYPESPROC Attributes of BW processes (RSSM)
    RSPCVARIANT Generic Variant-Storage
    RSPCVARIANTATTR Attributes of a Process Variant
    RSPCVARIANTT Texts for Generic Variant Storage
    Among all these tables I think.......
    RSPCCHAINATTR Attributes for a Process Chain
    RSPCCHAINEVENTS Multiple Events with Process
    Chains
    RSPCPROCESSLOG Logs for the Chain Runs .........can help you.......
    Regards,
    Debjani........
    Edited by: Debjani  Mukherjee on Oct 21, 2008 1:32 PM

  • Authorization for Process Chains in BW 3.5 (2004)

    Hi all,
      I wanted to know if there is any way to limit actions on process chains.  I would like to give some users display only access to process chains.  Is that possible?
    Thanks

    Hi,
    In your system go to
    'Transport Connection' tool-->
    Click on 'Object Changeability' pushbutton-->
    And for Object types RSPC and ISIP make "changeable/Not Changable" .
    Note: This will work only if your system is lockect aganist the changes as it is normally in Production.
    Also check the below links:
    1) Authorisation for process chains
    2) Authorization Object for Process Chain
    3)http://help.sap.com/saphelp_nw2004s/helpdata/en/35/c7e442e3c15704e10000000a155106/frameset.htm
    4) http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6859e07211d2acb80000e829fbfe/frameset.htm

  • Logs for 'Operating mode' change in mirroring

    Logs for 'Operating mode' change in mirroring
    Hi Everyone,
    Is there any log,that shows when the Operating mode of a database involved in mirroring(SQL SERVER 2008 R2) has been changed from asynchronous to synchrous(or vise versa).
    Regards,
    Aspet
    A.G

    Try looking into trace log files
    DECLARE @filename VARCHAR(100), @filenum int
    SELECT @filename = CAST(value AS VARCHAR(100))
    FROM fn_trace_getinfo(DEFAULT)
    WHERE property = 2
      AND traceid = 1
      AND value IS NOT NULL
    SELECT @filename
    SELECT @filename = substring(@filename, 0, charindex('_', @filename)+1) + convert(varchar, (convert(int, substring(left(@filename, len(@filename)-4), charindex('_', @filename)+1, len(@filename)))-4)) + '.trc'
    SELECT @filename
    SELECT gt.EventClass, 
           te.Name AS EventName,  
           gt.TEXTData, 
           gt.NTUserName, 
           gt.NTDomainName, 
           gt.HostName, 
           gt.ApplicationName, 
           gt.LoginName, 
           gt.SPID, 
           gt.StartTime, 
           gt.EndTime, 
           gt.ObjectName, 
           gt.DatabaseName, 
           gt.FileName 
    FROM [fn_trace_gettable](@fileName, DEFAULT) gt 
    JOIN sys.trace_events te ON gt.EventClass = te.trace_event_id 
    WHERE EventClass = 116 
      AND TEXTData LIKE '%Alter
    database%' 
    ORDER BY StartTime; 
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Blog:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance

  • BAPI for Process order change

    Hi,
    Can any buddy tell me the Bapi used for Process order change
    with following scenarios:
    Quantity change
    Resource change
    Rescheduling
    Control key change
    RM Change
    Recipe change
    TECO
    REVOKE
    Material shortage check
    Best Regards,
    Sheetal.

    Hi,
    BAPI_PROCORD_CREATE for process order create
    BAPI_PROCORD_CHANGE - Change Process Order
    BAPI_PROCORD_CLOSE - Close Process Order
    BAPI_PROCORDCONF_CANCEL for Cancel Process Order
    Confirmation.
    BAPI_PROCORD_COMPLETE_TECH - Complete Technically
    BAPI_PROCORD_RELEASE - Release Process order
    BAPI_PROCORD_SET_DELETION_FLAG - Deletion Flag
    BAPI_PROCORD_REVOKEUSERSTATUS - Cancel User Status
    BAPI_PROCORD_SCHEDULE - Carry Out Scheduling
    pls refer below link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/200dd1cc-589e-2910-98a9-bb2c48b78dfa
    http://help.sap.com/saphelp_nw04/helpdata/en/e0/9eb2370f9cbe68e10000009b38f8cf/frameset.htm
    Regards,
    Sankaran

  • Send Message Process prompting for "Process Chain to Check"

    Hi, When I insert a "Send Message" Process into my chain I do get prompted to select the message. 
    1. When I do a pull down I am getting prompted for "Process Chain to Check". 
    If I select my current process chain I get an abend.
    2. When I click create instead of select I get brought to a table maint "Controls the execution of Process Chains".  It has process chain, Start Date, Start time, and an inactive checkbox.
    Any guesses why it's asking for "Process Chain to Check"?
    What is this maintenence table I'm being brought to just to create a message.
    Sounds Like I've run into a bug?????
    Can you help???

    Found out this must be related to development from a previous consultant..
    thanks

  • Display components for process chains

    Hi all,
    i remember a sap note or a how to guide to configure the display components for process chains as hierarchy like:
    - my chains
        - daily
        - weekly
        - monthly
             - monthly admin
             - monthly xyz
    but right now i find no information about that.
    Do you?
    thanks for your help.

    Hi,
    Check below threads -
    Change the Directory of a Process chain.
    Process chain: Moving chain from one u0093folderu0094 to the other
    AleX

  • Test Scripts for Process Chains

    Hi Gurus,
    Can anybody send me the sample test scripts or the available links for process chains
    to my mail Id. [email protected]
    I will assign full points.
    Thanks in adance.
    Maruthi.

    Hi Maruthi,
    Please go through the belwo links and let me know if you need any specific information. Also you can find lot of threads in SDN
    http://help.sap.com/saphelp_nw04/helpdata/en/67/13843b74f7be0fe10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0f4e952-e46e-2910-1f9e-cae187cd16d1
    Assign points if its helpful.
    Regards,
    Jagadeesh.

  • Re: Statistics Query for Total runtimes for Process Chain incorrect

    Hi Guys,
    I am building a Query for Total runtimes for Process Chain Statistics. I used the Cube 0TCT_MC21 for Query - 0TCT_MC21_Q0101.
    I dragged in Keyfigure section - startdate, end date, Start time are all correct and fine but the End time (0TCTENDTIM) is coming incorrect. Is something else i should use to get the End time?
    Please let me know if any suggestions?
    Regards

    Just check if the end times are in GMT ?? usually happens with timestamps....

  • Step by Step documents for Process Chain Error Handling with Screen Shots

    Hi
    Is anybody having Step By Step Documents for Process Chain Error Handling with Screen Shots ?. Please forward it to me to my e-mail [email protected] .  I will reward points to u immediately.
    bye
    Aamira Khan

    Hi,
    You can find lots of topic related to process chain issues in SDN.Please make a search in SDN.
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_library&query=process+chain&adv=true&sdn_author_name=&sdn_updated_on_comparator=ge&sdn_updated_on=&sortby=cm_rnd_rankvalue
    Regards.

  • My iCloud on my phone is undJer another persons account I however am no longer with them and want to cut all ties and is there any way for me to change my iCloud account or will it affect my phone? And it's photos, apps, music?

    My iCloud on my phone is under another persons account I however am no longer with them and want to cut all ties and is there any way for me to change my iCloud account or will it affect my phone? And it's photos, apps, music?

    You have to delete the iCloud account but you can keep all your data such as Contacts, Calendars etc. when you delete the account you will prompted to "Keep on my iPhone".
    All your purchased content (like apps and music from iTunes Store) belongs to the original ID and you have to re-Purchase them under your Apple ID.
    Photos in Camera Roll remains in Camera Roll.
    Photos in photo stream that are not in Camera Roll must be saved in Camera Roll.
    Photo that previously synced from iTunes remains in photo library until you synced with another iTunes library (another computer).
    Also sign out from iMessages, FaceTime and Home sharing (Settings>Music)

  • BI admin cockpit for process chains

    Hi
      Currently we are monitoring process chains(Daily data loads) on a daily basis ,Business users want the statstics of the process chains to be implemented in cockpits via BI admin cockpit( BI 7 version) .can some one tell how to implement BI admin cockpit for process chains.
    If some one has some specific documents can you please mail then to my email: [email protected]
    Thanks
    Bhavana

    Hi,
    You need to install Business Content
    Front End and OLAP Statistics (Aggregated) – ( 0TCT_C01, 0TCT_VC01)
    0TCT_C01
    InfoCube 0TCT_C01 is a standard InfoCube that contains front end and query runtime statistics (aggregated).
    This InfoCube is used for monitors that display all the aggregated values of front end and query runtime for BI applications, BI application objects, and InfoProviders on the portal.
    0TCT_VC01
    InfoCube 0TCT_VC01 is a Virtual Provider that contains front end and query runtime statistics (aggregated).
    This InfoCube is used for monitors that display all the aggregated values of front end and query runtime for BI applications, BI application objects, and InfoProviders on the portal.
    Front End and OLAP Statistics (Details) –  (0TCT_C02, 0TCT_VC02)
    0TCT_C02
    InfoCube 0TCT_C02 is a standard InfoCube that contains detail values for front end and query runtime statistics.
    This InfoCube is used for monitors that display detail values for the query runtime object.
    0TCT_VC02
    InfoCube 0TCT_VC02 is a Virtual Provider that contains front end and query runtime statistics (details).
    Data Manager Statistics (Details) – (0TCT_C03, 0TCT_VC03)
    0TCT_C03
    InfoCube 0TCT_C03 is a standard InfoCube that contains data manager statistics (details).
    This InfoCube is used for monitors that display all the detail values of data manager statistics for the query runtime object on the portal.
    0TCT_VC03
    InfoCube 0TCT_VC03 is a Virtual Provider that contains data manager statistics (details).
    This InfoCube is used for monitors that display all the detail values of data manager statistics for the query runtime object on the portal.
    DTP Statistics –  (0TCT_C22, 0TCT_VC22)
    0TCT_C22
    The InfoCube 0TCT_C22 is a Standard InfoCube that contains statistics for data transfer processes that are executed individually or in process chains.
    This InfoCube is used for all the monitors that display the DTP statistics on the portal.
    0TCT_VC22
    The InfoCube 0TCT_VC22 is a Virtual Provider that contains statistics for data transfer processes that are executed individually or in process chains.
    This InfoCube is used for all the monitors that display the DTP statistics on the portal.
    InfoPackage Statistics (0TCT_C23, 0TCT_VC23)
    0TCT_VC23
    The InfoCube 0TCT_VC23 is a Virtual Provider that contains InfoPackage statistics or detailed information about the InfoPackage that are executed individually or in process chains.
    0TCT_C23
    The InfoCube 0TCT_C23 is a Standard InfoCube that contains InfoPackage statistics or detailed information about InfoPackages that are executed individually or within a process chain.
    Process Statistics (0TCT_VC21, 0TCT_C21)
    0TCT_VC21
    The InfoCube 0TCT_VC21 is a Virtual Provider that contains process chain statistics or detailed information about process chains and process types that are successfully executed.
    This InfoCube is used for all the monitors that display detailed information about process chain statistics and process statistics on the portal.
    0TCT_C21
    The InfoCube 0TCT_C21 is a Standard InfoCube that contains process statistics or details of processes that are executed individually or in process chains.
    This InfoCube is used for monitors that display all the process runtimes on the portal.
    Process Status (0TCT_VC12)
    The InfoCube 0TCT_VC12 is a Virtual Provider that specifies the status of the process chain and detailed information about the process status.
    BI Object Request Status (0TCT_VC11)
    The InfoCube 0TCT_VC11 is a Virtual Provider that provides detailed information about requests in all the Data Targets and Master Data in characteristics.
    Content Master Data
    The process chain 0TCT_MD_C_FULL_P01 is used to load the content master data.
    (e.g: Process Chain, Process Status, Web template, Process variant, Web item)
    System Master Data
    The process chain 0TCT_MD_S_FULL_P01 is used to load system master data.
    e.g:BW Object type
    Data Load Statistics – Delta
    The process chain 0TCT_C2_DELTA_P01 is used to load delta data for data load statistics.
    The following processes are included in the process chain:
    Process                         Target
    0TCT_DS22_DELTA_DATAMART (B71)               DTP Statistics [0TCT_C22]
    0TCT_DS23_DELTA_DATAMART (B71)              Info Package Statistics [0TCT_C23]
    0TCT_DS21_DELTA_DATAMART (B71)              Process Statistics [0TCT_C21]
    Query Runtime Statistics – Delta     
    The process chain 0TCT_C0_DELTA_P01 is used to load delta data for query runtime statistics.
    The following processes are included in the process chain:
    Process                                   Target
    0TCT_DS01_DELTA_DATAMART               Front end and OLAP statistics (aggregated) [  0TCT_C01]
    0TCT_DS02_DELTA_DATAMART             Front end and OLAP statistics (details) [0TCT_C02]
    0TCT_DS03_DELTA_DATAMART              Data manager statistics (details) [0TCT_C03]

  • Cancel the scheduled jobs for process chains - urgent

    Hi,
    How do I cancel the scheduled jobs for process chains which are going to run tonight.
    thanks,
    Radha

    Hello,
    Go into transaction code RSPC and then select the particular process chain by going into the edit mode and in the menu...
    Look for Execution --> Remove from Schedule.
    Let me know if that answered your question.
    Thanks
    Dharma.

  • Undefined status for process chains

    Hello,
    - when do you choose undefined status (grey) for process chains? (in what cases)
    Thanks

    Hi ,
    when you are defining the Pc in planning view , then the color will be grey . In checking view - it will be green ( Successful ) , Yellow ( warnings) Or Red ( Failure) .
    In the joboverview also , above discussed colors are stated for the Pc 's accordingly ..
    Hope this helps out

Maybe you are looking for