Error msg in running process chain

What need to be done to resolve the below error msg when running a process chain?
Diagnosis
    DataSource 0BBP_TD_SC_1 does not have the status of the source system in the Business Information Warehouse.
The time stamp in the source system is 15.10.2005 10:27:29 .
The time stamp in the BW system is 10.08.2004 12:51:06 .
System response
    Loading was terminated.
Procedure
    Copy the DataSource again and activate the transfer rules that belong to it. Activation is always necessary, even if the transfer rules are still active after replication.

hey Bhanu,
I am trying to give you reward points, but after I log on, can't find the radio button to give points, once in a while there is problem with SDN!  I will give you later.
Now I've got another error:
Diagnosis
     The application program for the extraction of data was called up using the invalid InfoSource/invalid InfoObject 0DOC_NUMBER_ATTR .
System response
     The data extraction is terminated.
Procedure
     Check for relevant OSS Notes, or send a problem message of your own.
Procedure for System Administration
How to resolve this error?
Thanks

Similar Messages

  • Error running process chain

    Hi,
    wehn we run  process chain , the result from optimizer log showing error indicator , we check the abap run time using ST22 and discovered the message
    DBIF_DSQL2_SQL_ERROR
    what the message try to tell us , how to troubleshoot it .?
    thanks

    Hi AF,
    try to look on SAP notes  978417 - Latch Monitor and Table Access Monitor: DBIF_DSQL2_SQL_ERROR. I guess this will solve your problem. It states also here on how you fix the issue.
    Let me know if this make sense. Have a nice day!
    Regards,
    SASJr

  • Error while collecting the process chain in a transport request

    Hi Gurus,
    I am getting an error while collecting my process chain in a tranpsort request.I have to transport the request from DEV to QA system.
    When in RSA1--->transport connection i drag & drop the chain from left to right side pane then the Error occurs.
    1.Object 'REQUDELZPAK_48RZW8GZX87CNEH7S897TFQSD' (RSPV) of type 'Process Variants' is not available in version 'A'
    Sap help given
    You wanted to generate an object with the name 'ZPAK_48RZW8GZX87CNEH7S897TFQSD' (in transport request RSPT) of type 'Process Chain Starter' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
    2.Object 'ZPAK_48RZW8GZX87CNEH7S897TFQSD' (RSPT) of type 'Process Chain Starter' is not available in version 'A'
    Sap help given
    You wanted to generate an object with the name 'REQUDEL   ZPAK_48RZW8GZX87CNEH7S897TFQSD' (in transport request RSPV) of type 'Process Variants' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
    From one of the threads:
    (https://forums.sdn.sap.com/click.jspasearchID=10081153&messageID=4623856)
    i though it was the problem of patch level sap note(966131).
    Accordingly i tried collecting process chain in the request where the patch level is high(24).But same error is seen.
    I have activated chain again & then tried collecting the request i the process chain.But did not solve the error.
    I have to collect Process chain in a transport request.Can you help me out to solve the problem?
    Thanks in advance!
    Regards,
    Pallavi

    Hi,
    take a look:
    Data Warehousing
    "Errors occurred during post-handling RS_AFTER_IMPORT for MPRO L "
    Errors occurred during post-handling RS_AFTER_IMPORT for ROUT L
    Try to set the Process Chain Start to Immediate(background jobs) in the schedule, because this will trigger the process chain once tranported and may cause similar errors.
    Regards
    Andreas

  • How to stop the running process chain

    How to stop the running process chains or infopackges...just qm status change is enought?

    BI - SM 37 - Kill the Job
    ECC - SM 50 - Kill the job

  • Is it possible to run process chain from the certain process/point?

    Hello
    Is it possible to run process chain from the certain process?
    How?
    Thanks

    Hello,
    yes it possible! use the following steps.
    1. Goto the process which you want the chain to start from.Goto display messages>> Chain tab. In the generated instance note the variant and instance.
    2. Goto table RSPROCESSLOG and give variant and instance and get logid details.
    3. t codese37>> run FM RSPROCESSFINISH.
    4. give the deatils u have got in RSPROCESSLOG table here and say execute.
    This will solve ur problem.
    Hope this helps!
    Reg
    Deepmala

  • Run process chain on last three days of the month

    Hello
    I need to run process chain on last three days of the month. For example , It should run on 28, 29 and 30th dates of June.
    There is no option to put a code in the start process of the process chain.
    I can run it every day and put a code in the infopackage/DTP so that empty load (0 records) will be done on other days.
    This doesnt sound as a good option.
    Do u know any other options?

    Hi
    See the code and details how to do it, and change the code as per your requirement.
    http://wiki.sdn.sap.com/wiki/display/profile/Surendra+Reddy
    Triggering  the Process Chains at Particular Date using Events
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/s-u/triggering%20%20the%20process%20chains%20at%20particular%20date%20using%20events.pdf
    BI-ABAP (Trigger Process Chains on evry month 3rd and 4th day).
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=81428842 
    Thanks
    Reddy

  • How to run process chain in day of 20 and 2 every month?

    Dear all,
    I have to run process chain in day of 20 and 2 every month,but the settting of PC just allow Scheduled start every month once
    time.
    Please tell me the way of setting process chain.
    Thanks.

    Hi,
    (1) Create an event in the BW system
    Define a system event (for example SAP_BW_TRIGGER) with Transaction SM62. Lets says it is "EVENTX". Use this even in the Process chain and execute the process chain as repeative job.
    (2) Use the below lines of code in the program for calling a Fucntion which trigeres the event created above . Here in this program you will call the the Below FM if and only id the sy-datum is 20 th or 2nd of the month ( as mentioned by our friend suggested).
    call function 'BP_EVENT_RAISE'
    exporting
    eventid = EVENTX
    exceptions
    bad_eventid = 1
    eventid_does_not_exist = 2
    eventid_missing = 3
    raise_failed = 4
    others = 5.
    endfunction.
    Regards,
    Anil Kumar Sharma .P

  • Problem with AND process in daily running process chain

    Dear Friends,
    I am currently I am facing problem with AND process. In my daily running process chain, daily the process chain is failing at AND process. Currently I am workaround and manually repairing the AND process and loading the data with below (link) steps.
    /people/siegfried.szameitat/blog/2006/02/26/restarting-processchains
    I need permanent solution for this reoccurring problem. Kindly share your thoughts and ideas to resolve this problem.

    Hi,
    The below are the job log. After this the batch job is failing.
    Job log overview for job:  BI_PROCESS_AND
    Job started
    Step 001 started (program RSPROCESS, variant &0000000190315, user ID MAESTRO)
    This AND process is not waiting for event RSPROCESS, parameter 475P4YTXTIIOA6IQ9GAZVEP24
    Job cancelled after system exception ERROR_MESSAGE

  • Error while running Process Chain

    Hello all,
    I am getting following error while running the process chain.
    "Process Activate ODS Object Data, variant PROCESS PSA_TO_ODS_ZFIGL_O1 has status Canceled (instance )".
    Due to this others are get affected..
    Plz provide solution.
    amit

    Hello all,
    I am getting following error while running the process chain.
    "Process Construct Database Statistics, variant DB_STAT_0PY_C02 has status Canceled (instance) ".
    Due to this others are get affected..
    Plz provide solution.
    amit

  • Invalid DataStore object name error when running process chain after EHP1

    Hello,
    We recently upgraded our BW Dev platform to NW7.01 EHP1 SP6. I noticed that the layout for "Delete PSA Request" process in the Process Chain has changed after the upgrade. We can no longer specify the actual PSA table to delete eg, /BIC/B0001645. Instead we need to specify the Datasource name and the Source System.
    Now after the upgrade when I run one of my process chains, it fails at "Delete PSA Request" step with error message "Invalid DataStore object name /BIC/B0001645: Reason: No  valid entry in table RSTS". This datasource is based on the flat file source system and the PSA table for this Datasource is /BIC/B0001653.
    Unfortunately the process chain is picking up an older PSA table for this datasource and there is no way for me to specify the current PSA table name after this change in layout with EHP1 upgrade. Any suggestions on how to resolve this issue.
    Many Thanks,
    Al

    Hi,
    Please implement OSS 1345331.
    If this does not help try the below steps:
    1.  Run the report 'RSAR_PSA_CLEANUP_DIRECTORY/_MS' in check mode for a 
           particular PSA table for finding the inconsistencies.
    2.   After that please analyze the logs and if there is any problems related to partition, you need to correct them using the report u2013
    3.  'SAP_PSA_PARTNO_CORRECT' in repair mode for the
          PSA tables.  Run the report again after this
    4.  'RSR_PSA_CLEANUP_DIRECTORY/_MS' in check mode to 
         double check that the invalid partitions are 
         corrected.
         Once this is done you can execute the report     
         'RSR_PSA_CLEANUP_DIRECTORY/_MS' in repair mode.
    -Vikram

  • Error when run Process Chain via BPC NW

    Hi Gurus,
    I am implementing SAP BPC 7.5 NW in a customer and I´m facing the following error when try to run a process chain via Data Manager: "Failed to analyze instruction ,TAB,%TAB% ".
    Here is the scenario: we created a process chain that will be able to capture values recorded in a BPC application, load them into an DSO (make some transformations there) and finally send those transformed values to an specific table at ECC. This process will be started after some simulations at BPC and, when the user ends its simulation, start this process chain via BPC; this process chain is named as PC_ECC.
    We made a  copy of /CPMB/DEFAULT_FORMULAS and named it PC_FORMULA and, before step /CPMB/CLEAR, I assigned my process chain PC_ECC.
    So, at Data Manager, I add this process chain (PC_FORMULA) and in Advanced button, I put this statement:
    INFO(%EQU%,=)
    INFO(%TAB%,;)
    TASK(PC_FORMULA,TAB,%TAB%)
    TASK(PC_FORMULA,EQU,%EQU%)
    TASK(PC_FORMULA,SUSER,%USER%)
    TASK(PC_FORMULA,SAPPSET,%APPSET%)
    TASK(PC_FORMULA,SAPP,%APP%)
    //TASK(PC_FORMULA,LOGICFILENAME,DEFAULT.LGF)
    //TASK(PC_FORMULA,REPLACEPARAM,TESTE3%EQU%%TESTE3%%TAB%ASARENT%EQU%%ASARENT%%TAB%SOURCE%EQU%%SOURCE%%TAB%TARGET%EQU%%TARGET%)
    As we do not have any script logic to be executed, we commented the two last statements.
    When we run this package via DM, it gives us the message error:  "Failed to analyze instruction ,TAB,%TAB% "
    Looking through SDN forum we found two posts similar to this issues:
    But the suggestion to supress the statement TASK(PC_FORMULA,TAB,%TAB%) do not work; when we comment this statement, the message error gives us the message:"Failed to analyze instruction ,EQU,%EQU% "; when we comment the statement TASK(PC_FORMULA,EQU,%EQU%) and the previous (with TAB). the DM gives us the message: TASK(PC_FORMULA,SUSER,%SUSER%) and so on, until nothing has left to comment.
    Anyone of you view or has some similar case of error?
    Thanks in advance to you all
    Best Regards
    Adriano

    Hi Rich,
    Thanks for your answer.
    I checked the parameter at my process chain and it has a variant (/CPMB/DEFAULT_FORMULAS_LOGIC) with the parameters:
    TAB
    SUSER
    SELECTION
    SAPPSET
    REPLACEPARAM
    MEMBERSELECTION
    LOGICFILENAME
    EQU
    So, when I put in the task PC_FORMULA, TAB, %TAB%, it will be able to be recognized by the task...and the other parameters too. And when I take one of them off the task instructions, the system complains.
    Any other suggestion?
    Once again, thanks..a.nd best regards
    Adriano

  • Error in PSA after running process chain

    Hello All,
    I have ran a process chain, which came back with an error.  I have checked the PSA and there is one line which has an error.  How can I resolve it and reload the data into the cube succesfully?  Is there away to delete the data from the PSA and reload it? 
    Thanks,
    Nick.

    Dear Nick,
    I will add the step by step procedure to edit PSA data and update into target (request based).
    Identifying incorrect records.
    System wont show all the incorrect records at the first time itself. You need to search the PSA table manually to find all the incorrect records.
    1. First see RSMO > Details > Expand upate rules / processing tabs and you will find some of the error records.
    2. Then you can go to PSA and filter using the status of records. Filter all the red requests. This may also wont show the entire incorrect records.
    3. Then you can go to PSA and filter using the incorrect records based on the particular field.
    4. If this also doesnt work out go to PSA and sort (not filter) the records based on the particular field with incorrect values and it will show all the records. Note down the record numbers and then edit them one by one.
    If you want to confirm find the PSA table and search manually."
    Also Run the report RS_ERRORLOG_EXAMPLE,By this report you can display all incorrected records of the data & you can also find whether the error occured in PSA or in TRANSFER RULES.
    Steps to resolve this
    1. Force the request to red in RSMO > Status tab.
    2. Delete the request from target.
    3. Come to RSMO > top right you can see PSA maintenace button > click and go to PSA .
    4.Edit the record
    5. Save PSA data.
    6. Got to RSA15 > Search by request name > Right click > update the request from PSA to target.
    Refer how to Modify PSA Data
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40890eda-1b99-2a10-2d8b-a18b9108fc38
    Hope it helps you,Revert me back if you have any queries
    Assign points if helpful
    Regards
    Bala

  • Error "Lock not set for: Generate index" while running process chain

    SAP BI 7.0
    SP 17
    I am attempting to run a new process chain and the generate index steps are failing with the below errors:
    "Lock NOT set forGenerate index"
    "RSSM PROCESS INDEX terminated, because InfoCube/DSO object could not be locked."
    The process chain just pauses. I let it finish once and it took 2 hours and then it gave the failure messages. I have looked in sm12 and can see the lock records when the process chain is running - unfortunately I can't make much of what's there - everything looks good to me. I also tried creating the indexes manually inside the cube and then re-ran, but still get the same error. Before running the process chain, I can get the indexes to check to green, but then after running the process chain they go back to red. I have attempted many things (including looking at other forum posts), but I still have the error. Please help. Thanks
    Edited by: Brett Hutchinson on Feb 10, 2009 7:50 PM

    Hello,
    So Create index is getting failed in you PS right?
    1)check  if any other loads are running to the same CUBE(May be from other PC's also)
    Goto Manage of the cube and check, some times it may happen if any Loads are running into cube I mean Load/DTP & roll up may be running.. if so wait till the others Loads(Jobs) get complete then Repeat the failed index
    2) If the Create index is running for long time, then  got RSDDV--> Select the CUBE then click on BIA index(Maintenance wizard), you can see a message if indexes are running , this will happen  only when some one would have tried to generate the indexes manually and it may got failed due to some reason , since u are running it manually u couldn't identify whether it got failed or not unless you got to RSDDV and check. So delete the index here and then rebuild them through PC
    Hope it helps!

  • Long running process chains - No Dump / error message.

    Hello,
    We have defined some steps in process chain that contains default macros. We mainly included that to ensure calculations happens even when users dont open or access the DP Planning book.
    Issue is, these steps are running endless. normally it takes some 400 n odd seconds. But its running for the last 60000 secs.
    No. of Planning objects or CVC is 2027 only. I had to cancel them and tried to re run this step or the whole chain no luck....
    I have checked active jobs in SM37, there is none. So ideally there is no load on the system. Also no change to Macro or CVC's has been done. there was only one Transport that was moved and it was on the product master.
    Also I have done the time series, Live cache, PA  Consistency checks. only in Live Cache there was some Superflous time series and it was corrected.
    I am not getting a clue of why its happening nor where to start the analsysis.
    Any help or suggestion is greatly appreciated.
    Currently I have made the subsequent events as independent,&  the chain is running execpting this step.
    Many Thanks
    Aswath Ram.

    Thanks for the reply,
    These are custom macros. It adds two KF and copies to another.
    The no. of periods is 24 time periods and roughly no. of CVC is 2100.
    Another thing, this process chain has been running for last 5 to 6 months with no issues. Since sunday, its messing up....
    I am doubting if its taking time read data from table or live cache. or is it because of some indexing. Not sure how to check that.
    have asked Basis to check the system performance, if it might cause this issue.
    Many Thanks
    Aswath

  • Error on step in process chain

    Hello All,
    I have just scheduled a process chain immediately and it is running. One step (A full update) has gone red with error "Object requested is currently locked by user DCKIBUUK" - DCKIBUUK is my username. 11 out of 26 Data Packages have processesed OK. Data Package number 12 is where the error occured. Please advise on what to do.
    Thank you and kind regards,
    Keith

    The first thing is to unlock the node of the process chain which has been locked by you. So you need to come out of the  infopackage in question.
    Now, right-click on the node that failed and use the "Repeat" option. If the repeat does not exist , you have 2 options :
    1. manually run the remaining steps
    2. Manually make the system believe that the failed node went in successfully by forcing the status of the step to "G".
    Hope this helps .

Maybe you are looking for