Is a save step neccessary in a Process Chain when loading hierarchies with an ABAP program?

We are loading hierarchies using the ABAP routine found here in the SDN. 
We have come accross the issue where the process chain loads successfully, but does not update the hierarchy (this problem is documented in the SDN).  It is not a consistent issue, but it causes problems when it does occur.
OSS note 652856 points out that a SAVE HIERARCHY step is needed after the load and before the Change Attribute run.
We have added the step to the process chain, which leads me to the question.
     In using the ABAP program to load hierarchies is the addition of the Save Hierarchy step necessary?
     Will that resolve the issue with hierarchies not updating?

Hi Bill,
Yes, SAVE HIERARCHY step is required when hierarchies are loaded as part of process chain. This step ensures that the hierarchy data loaded to BW has been saved. Then we have to run ACR so that these hierarchies will be activated and adjusted.
This is the reason why even the hierarchy data loaded using infopackage needs this step. This step is not required if the Infopackage is triggered manually.
This link will help you in better understanding
http://help.sap.com/saphelp_nw04/helpdata/en/3d/320e3d89195c59e10000000a114084/content.htm
Regards
Chandu

Similar Messages

  • Extract Process Chain ID/Name that an embedded ABAP program is run from?

    Hi all,
    I have created some Process Chains in SAP BW where I have incorporated some ABAP program Process Types that uses the same ABAP program.
    In these embedded ABAP program Process Types I need to extract the name of the Process Chain it runs from (ID, Technical Name, Descirption).
    Is there any way this is possible to do?
    One solutions that is not possible to implement (due to parallell runs of process chains that uses the same ABAP program) is the following:
    search in table RSPCVARIANT for your program as follows
    - field TYPE = "ABAP"
    - field FNAM = "PROGRAM"
    - field LOW = <program name>
    take the value of field VARIANTE and use this in table RSPCPROCESSLOG (enter a date selection for BATCHDATE as well)
    take the most recent entry (should be the one you're actually running at that moment)
    via field LOG_ID, retrieve CHAIN_ID (technical name of your process chain) in table RSPCLOGCHAIN
    So my question here is:
    -Is there any way to extract the Process Chain ID/Name that an embedded ABAP program Process Type is run from?
    Thanks beforhand for your feedback!
    regards
    Oddmar

    Hi Erik,
    I am stuck up with a similar requirement, wherein I have an ABAP program in my process chain and I need the technical name of the process chain in the ABAP program at run-time.
    Did you get a solution or work-around for this scenario?
    Thanks in advance.
    Regards,
    Chetana.

  • Trigger a process chain when user clicks on save button in web interface

    Hi All,
    This is a issue I'm facing with the BW BPS web interface.
    BPS web interface generates a BSP application so thought posting this question in BSP forum might get some responses.
    The issue is I have to trigger a process chain when the user clicks on the save button on the web interface.
    I have no clue how BSP works. So if anybody has any ideas or suggestions I would greatly appreciate it.
    Thanks,
    Harini

    Hi Dhanya,
    This is the code i have in the ABAP program in the process chain. I just included the API_SEMBPS_POST part, but still it doesn't work. Please give me your email address so that i can send some screenshots.
    REPORT  ZHTEST.
    DATA: l_subrc TYPE sy-subrc.
    DATA: ls_return TYPE bapiret2.
    CALL FUNCTION 'API_SEMBPS_POST'
    IMPORTING
       E_SUBRC         = l_subrc
       ES_RETURN       = ls_return.
    CALL FUNCTION 'RSAPO_CLOSE_TRANS_REQUEST'
      EXPORTING
        I_INFOCUBE               = 'ZMAP_TAB'
    EXCEPTIONS
      ILLEGAL_INPUT            = 1
      REQUEST_NOT_CLOSED       = 2
      INHERITED_ERROR          = 3
      OTHERS                   = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Error in process chain when running package (data manager)

    Hello experts,
    I try to run the following how to : "move date between applications using Data Manager ..."
    Yon can find the pdf here : http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0480970-894f-2d10-f9a5-d4b1160be203
    I'm looking after someone who used it successfully, on my side after implementing all steps and running the package I get the message "IMMEDIATE RUN: Request to run the package on the server was successful The package is now running"
    When I look the log for the process chain, overall status of the process chain is yellow, and steps "modify dynamically" and "clear BPC Tables" are in error.
    I can't get any usefull error messages.
    If someone has an idea to have details about those errors, it will be appreciated.
    Points will be awarded, thanks in advance.
    Guillaume P.

    Hello Experts,
    I am also facing the same issue with PC failing at Modify_Dynamically step....
    This process type is working fine when used  in standard delivered process chain to load transaction data.
    I tried using this variant in my cutsom chain, but it fails.
    Please suggest.....
    Thx....D

  • Stopping one process chain when another is running

    Hi All,
    We have two process chains which are inter dependent.
    One process chain has to be scheduled hourly & another daily.
    I would like to know the way to stop the hourly running process chain when the daily process chain is running.
    & the daily process chain run time will be varying like 1-2 hours.
    Please help me to solve this problem
    REDDY

    Hi,
    You can do it.
    1.Create one Table with Flag (Values 0 or 1), and give Table maintaince also in SM30.
    2.Craeate one program to check the Table Flag = 0 or 1. If it is 0 then trigger Event then that event will trigger Hourly Process Chain. You need to schedule this Program Hourly. (Your Hourly PC wil work based on Events)
    3. Craete Daily Process Chain, once it will start it will update teh Flag =1 then once it will reach the last node it will turn the flag = 0.
    Start
        |
    Update Flag = 1 in table (Program)
        |
    Load data
        |
    Update Flag = 0 in table (Program)
    4. So every hour your program will run (in Step 2), it will check table Entry and trigger Event.
    The code is like below
    Report1.
    IF Flag = 0 Then
    *Raise Event
    DATA: EVENTID LIKE TBTCJOB-EVENTID.
    DATA: EVENTPARM LIKE TBTCJOB-EVENTPARM.
          EVENTID = 'ZEVENT1'.
          EVENTPARM = 'ZEVENTPARAM'.
      CALL FUNCTION 'RSSM_EVENT_RAISE'
              EXPORTING
                I_EVENTID                    = EVENTID
                I_EVENTPARM                  = EVENTPARM
             EXCEPTIONS
               BAD_EVENTID                  = 1
               EVENTID_DOES_NOT_EXIST       = 2
               EVENTID_MISSING              = 3
               RAISE_FAILED                 = 4
               OTHERS                       = 5
            IF SY-SUBRC <> 0.
             MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            ENDIF.
    ELSE
    Exit
    endif
    Note: It will Work try it. Don't forget to give SE30 access to table, because some time if you want to maintain Flag value manually, you required it.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Mar 9, 2009 11:09 AM

  • Process chain stops in infopackage with yellow status

    Hi Gurus,
    We are experiencing some difficulties regarding the use of process chains with warnings. Our SAP BI system is connected to an ETL server which feeds us with data from other systems. We have a query that has a push-button functionality that starts a process chain beginning with data extraction with an infopackage and ending in a infocube. The problem we have nowadays is that whenever the ETL workflow fails the infopackage status remains yellow, while our objective would be a red status. To try and solve this problem we forced a timeout in the infopackage. Once we check the log in the process chain it displays a message containing something like "status request modified , do you wish to add subsequent processes?", if we say yes it refreshes the status of the infopackage to red and it all goes ok. What we want is to get rid of this warning and that the status is automatically changed. We've checked other posts and we didn't reach any conclusion... Note 708480 gives us a possibility of automatic desicion but how could we integrate it in our process chains since it is based on shcedulling and not triggers?
    Your help would be much appreciated,
    Thank you
    Bruno Rodrigues

    Hi,
    We have two connected links in the process, one to continue the process chain when process status is green and other link to red status. The problem is the process status remains yellow until our confirmation in pop-up.
    The process chain should be started by user in web browser. So, it isn't possible run it in background.
    Thank you,
    Regards,
    BR

  • How to stop a process chain when its running?

    Dear Experts,
    How to stop a process chain when its running? is it that a chain can be stoppend when we open an info package of that chain ?
    Thank you,
    Raj

    Hi,
    Goto the main menu process chain --> choose the remove from the Schudule...
    Regards
    sathis
    I hope it helps to u... please assign the points

  • How to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    how to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    Because it was not possible to apply a gradient to a stroke in CS5. When you open the file in CS5, it is reduced to something that can be rendered in CS5.

  • Process chains for loading data to target is not functioning

    Hi SAPians,
    Recently, we have upgraded the firmware on IBM P590 with the help of IBM on Saturday i.e. 06/12/2008 (The firmware of P5-590 was SF235_209. It was upgraded to SF240_XXX) and since then the process chains for loading data to targets are not functioning properly.  We have stopped all the SAP services, database services & OS services from our end and services have been rebooted after firmware upgrade.
    However, the problem with the process chains that load transaction data and hierarchies is solved but the chains that load master data are still not working as scheduled.
    We tried to load the master data manually, by running DTP to load data to an object analysis code (attributes) the request remained YELLOW. After refreshing it several times, the request turned into RED. The error message was - PROCESSING TERMINATED (screenshot 1 attached).
    To mitigate this we tried deleting the bad request and it prompted with the below message:
    "Cannot lock request DTPR_4C37TCZGDUDX1PXL38LVD9CLJ of table ZANLYSIS for deletion (Message no. RSMPC178)" (screenshot 2 attached)
    Please advise us how the bad request should be deleted?
    Regards,
    Soujanya

    Hi Sowjanya,
    Follow the below procedure to make yellow request to RED:
    Use SE37, to execute the function module RSBM_GUI_CHANGE_USTATE
    From the next screen, for I_REQUID enter that request ID and execute.
    From the next screen, select 'Status Erroneous' radiobutton and continue.
    This Function Module, change the status of request from Green / Yellow to RED.
    Once it is RED, you can manually delete that request...
    Releasing LocK
    Gott Transaction Code SM12 and release the lock.
    Hope It helps you.
    Regardss,
    Nagaraju.V

  • How to run change run in process chain when it fails

    HI All,
    How to run  attribute change run in process chain when it fails. Give me the procedure with clear description. Is there is any difference with 3.x versions in running this.
    Thanks,
    Pratap Reddy

    Hi Pratap.
    If BI Accelerator is not being implemented by ur company, in that case if change run fails u'll proceed by 'Repeat' process option as usual we do in 3.x.
    If BIA is exists, in this scenario u can not repeat as we do in 3.x. U have to drop the indexes on cubes effecting that change run and run the change runs. Once it is finished recreate BIA Indexes on cubes.
    Warm Regards,
    Ramki

  • Process chains data load

    Can any body help in data scheduling issue
    I am able to load data manually the issue is i selected some of the datafields  in InfoPackage  data selection field and saved .
    i put this Ip in the process chain.now the issue is i don't to load data immediately .. say i want to load the data after 3 hours for this i want to set the time .i did set up in the process chain start variant
    but it is not working can anybody give me the steps in detail please....
    Advance thanks
    Kelvin sam

    Hi Kelvin,
    This should work using the start variant in the chain but of course the infopackage variant will only run if the process
    before was successful (depending on your settings with the links joining the processes in the chain).
    If you right click on the start variant, select 'maintain variant' , on the next screen make sure 'direct
    scheduling' radio button is flagged unless you are using a meta chain as starter process.
    Click on 'change selections' button , on the next screen select 'date/Time' option and here
    you can set the start date and time. You then need to save this setting , select save
    and on the next screen save again. You then need to activate and schedule the
    chain again.
    If this still does not work can you check if there are errors messages generated in
    sm21/st22 or in the process chain log.
    Regards,
    Des.

  • Failure of Process Chain while loading master data.

    Hi Guys
    We are using BI 7.0, we have a chain which loads the data to several master data objects having a Write Optimized DSO in between those.
    The steps of the chain is like this when new/delta loads are started loadin first it deletes the all existing WO DSO requestes. starting it was running nice but, now it showing error as follow
    "Process Complete Deletion of Data Target Contents, variant Delete Contents of WriteOptimized Text DSO has status Ended with errors (instance DELC_D2YPRHNFKWTJ27DGHR825IG9V)"
    for your details pls. look below description what job loag shows.
    24.03.2008 23:31:52 Job started
    24.03.2008 23:31:52 Step 001 started (program RSPROCESS, variant &0000000025223, user ID ALEREMOTE)
    24.03.2008 23:31:54 SQL: 24.03.2008 23:31:54 ALEREMOTE
    24.03.2008 23:31:54 TRUNCATE TABLE "/BIC/AZCAGSO0100"
    24.03.2008 23:31:57 SQL-END: 24.03.2008 23:31:57 00:00:03
    24.03.2008 23:31:58 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:31:59 Request DTPR_D2YHDA9WBJZHMZR3RNDP84G27 deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:31:59 Request DTPR_D2YHDA9WBJZHMZR3RNDP84G27 not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:31:59 Request DTPR_D2YHDA9WBJZHMZR3RNDP84G27 deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:31:59 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:31:59 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:31:59 Request DTPR_D2YHASHF1RGT3PS7K15O1EC7J deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:00 Request DTPR_D2YHASHF1RGT3PS7K15O1EC7J not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:00 Request DTPR_D2YHASHF1RGT3PS7K15O1EC7J deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:00 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:00 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:00 Request DTPR_D2YHAST7Z9OI47JWNE6XYISEN deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:00 Request DTPR_D2YHAST7Z9OI47JWNE6XYISEN not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:00 Request DTPR_D2YHAST7Z9OI47JWNE6XYISEN deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:00 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:01 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:01 Request DTPR_D2YHASHF1QTQL3ZFXU5A0KG27 deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:01 Request DTPR_D2YHASHF1QTQL3ZFXU5A0KG27 not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:01 Request DTPR_D2YHASHF1QTQL3ZFXU5A0KG27 deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:01 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:01 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:02 Request DTPR_D2YHANE9BAUMXVEZORZKK4W6B deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:02 Request DTPR_D2YHANE9BAUMXVEZORZKK4W6B not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:02 Request DTPR_D2YHANE9BAUMXVEZORZKK4W6B deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:02 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:02 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:02 Request DTPR_D2YHALZE6E7KDH4I6DFWJBHER deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:02 Request DTPR_D2YHALZE6E7KDH4I6DFWJBHER not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:03 Request DTPR_D2YHALZE6E7KDH4I6DFWJBHER deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:03 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:03 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:03 Request DTPR_D2YHAKPLWART6KV46SP2B02JN deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:03 Request DTPR_D2YHAKPLWART6KV46SP2B02JN not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:03 Request DTPR_D2YHAKPLWART6KV46SP2B02JN deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:03 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:04 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:04 Request DTPR_D2YHAKMW13R2CKHMT25HKESIR deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:04 Request DTPR_D2YHAKMW13R2CKHMT25HKESIR not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:04 Request DTPR_D2YHAKMW13R2CKHMT25HKESIR deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:04 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:04 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:04 Request DTPR_D2YHAJ9TA32EPY74YY9P8ATIB deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:04 Request DTPR_D2YHAJ9TA32EPY74YY9P8ATIB not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:05 Request DTPR_D2YHAJ9TA32EPY74YY9P8ATIB deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:05 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:05 Status transition 8 / 8 to 9 / 9 completed successfully
    24.03.2008 23:32:05 Request DTPR_D2YHAJ9IZ7XK8H1KF0JEH9S6B deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:05 Request DTPR_D2YHAJ9IZ7XK8H1KF0JEH9S6B not found in IC ZCAGSO01; RSREQICODS also deleted
    24.03.2008 23:32:05 Request DTPR_D2YHAJ9IZ7XK8H1KF0JEH9S6B deleted from PSA; RSREQICODS entry also deleted
    24.03.2008 23:32:05 Overall status 'Deleted' (user ALEREMOTE)
    24.03.2008 23:32:06 Status transition 8 / 8 to 9 / 9 completed successfully
    Hope i can get solutions...
    Points are assigned for right ones..
    thanks inadvance
    peter

    Hi Chetan, thanx for your reply. pls. find the exact error below.
    1. Error while deleting content of InfoCube/DataStore object
        ZDRTSO01
    2. Drop Cube Failed In Data Target ZDRTSO01
    I am not using ECC, its BI to BI load.
    Thanks in advance..
    Peter

  • Creation of Decision in Process Chain to load data to a SPO

    Hi,
    I have a question regarding adding a Decision type to my Process chain.
    I want to load data to a SPO that contains 12 InfoCubes (Jan - Dec) from a DSO, but I do not want to start all 12 DTP's.
    Want I am looking for is a way to only start the DTP's that load to the InfoCubes that contain current month, last month and all other data should be loaded to a Infocube (nr 13) that is not a part of the SPO so I would only have 3 DTP's running at the same time and not 13.
    E.g. A delta load to the DSO contains 3 records; 1 for 2014.09, 1 for 2014.08 and 1 for 05.2013 triggers the DTP to the January InfoCube, the DTP to the August InfoCube and the DTP to the 13 Infocube.
    Is this possible by using a Decision and if so how?
    Kind Regards
    Steffen

    I haven't worked with SPOs yet, but I do work frequently with decisions, so here's my 5 cents...
    In your case you wish to have your decision based on the data contained in "a delta load to the DSO". I'm assuming you're talking InfoPackage here, because you wish to execute the DTP's afterwards.
    So basically you need to determine which "months" are in your incoming data packages. The only way I see that possible is via start/end routine. In your example, you would look the data package and find 3 records each with a different month, being 08.2014, 09.2014 & 05.2013. You could then "convert" these to just numbers ranging from 1 to 13. That makes it relatively "easy" to link the right DTP to the right "number".
    Now, how to pass that info (those numbers) back to the "decision" process? By default you base your formula on a "system" field (see basic how to link below). I don't see how this would work in your case. You'll need to somehow export your "numbers" (most likely an internal table or a "range") to memory (or fill it in a [z-]table) and then read it back in with custom code. I haven't done that yet (at least not in the context of decision steps), but I would recommend to have a look at the "experienced" way of working document below. It won't be easy, but I think it could work.
    Cheers,
    Raf
    The official documentation can be found here.
    For a "basic" how to on decision step, click here.
    For a more "experienced" way of working, click here.

  • Process Chain Data load fail /send email  is not woking

    Hello Experts,
    I have created a process chain for daily data load. And created a message variant to send an email if the data load fials, but it's not working. I am not sure what I am missing. Here are the step I did...
    1. Right click on the Info Package in the process chain and select Create Message, select errors radio button and then created new variant.
    2. In the variant screen, clicked on Maintain Recipient list and enter the Recipient names and mail options like express mail, send copy etc there and then saved.
    Didn't select any under REcip type. Not sure whether it's needed.
    I greatly appreciate your help.
    Thanks
    Ram
    Message was edited by: Sri Vani
    Solved by myself.
    Thanks a lot.
    Message was edited by: Sri Vani

    did you configure the Basis process to send external emails and the automatic output process?
    You could see this in tx SCOT
    If there´s any record in tree (SAP SERVER)->INT->SMTP
    Here.... if is not configured the automatic output you can manually send the emails.....
    If this doesn´t works you need to talk to your basis support for the email basis configuration....
    Regards

  • Problem in Process chain data loading

    Hi Experts,
    We have a Process chain in which the lists of jobs are as follows.
    1) BI_TRIGGER_PROCESS
    2) BI_PROCESS_LOADING
    3) BI_PROCESS_ODSACTIVAT
    4) BI_PROCESS_DROPINDEX
    5) BI_PROCESS_LOADING
    6) BI_PROCESS_INDEX
    7) BI_PROCESS_ABAP
         These jobs trigger the PC and load the data to ODS, activate and delete the index for cube and load data to cube and create the index and then delete the file from the FTP.
    The problem is that the Initial job (BI_TRIGGER_PROCESS) is being repeating multiple times because of which the loading is taking place for the same file repeatedly to ODS. one day it was happend repeatedly for 130 times. This is being happening on a randomly basis. We are unable to figure it out the where the problem is. Can anybody help in this regard?
    Thanks.

    Hi Rama,
    Following is my understanding of problem.
    You have Following steps in process chain
    1) BI_TRIGGER_PROCESS
    2) BI_PROCESS_LOADING
    3) BI_PROCESS_ODSACTIVAT
    4) BI_PROCESS_DROPINDEX
    5) BI_PROCESS_LOADING
    6) BI_PROCESS_INDEX
    7) BI_PROCESS_ABAP
    Some times only first two steps repeat multiple times i.e
    1) BI_TRIGGER_PROCESS
    2) BI_PROCESS_LOADING
    In such case you should see the log from process chain log view.
    I believe you should take your process chain out of schedule and reschedule it.
    Also check whether somebody has scheduled the inopackage.
    Regards,
    Ajinkya

Maybe you are looking for

  • *Maximum report in one report group (report painter)*

    Hi SAP Experts, I'm doing some job on report painter, issue on this is the number of reports in one report group,because in my case I can only insert 7 reports in one report group. Is there any possible way to extend the maximum report allowed in one

  • Purchase order replication – extended classic scenario using XML proxy via PI

    Hi Experts Question: In case of extended classic deployment is it possible to use XML proxy to transfer SRM purchase orders to ECC? As we know as of SRM 7.01 its via RFC whether SRM 7.02 onwards does SAP support XML for ECS too? Has anyone read about

  • TestStand 3.1 XML Reports in TS4.1

    I am trying to implement TestStand 4.1 in our facility as seamlessly as possible. This means I still need to run TS3.1 sequences with no modifications on both systems with TS3.1 and with TS4.1. My problem is with the creation of xml documents when ru

  • How to create 3 Front offices in winclient

    Hi I have to , create 3 front offices for Call Center Agent, Supervisor & their Manager. What steps I have to follow to make these 3 offices & Manager can access all the 3. Thanks, Sush

  • Getting "Document Dimensions" Readout to Stick

    I like to set the little status area at the bottom left of my image window to "Document Dimensions", because I like to watch the pixel count. It will stay like this during my editing session once I set it. Unfortunately whenever I go to look at the t