How to put APD into process chain ??

Hi all,
I have created a analytical process in the transaction RSANWB. And I would like to incorporate it into process chain. Is it possible ??
Thank in advance
JJ

Hi JJ,
did you get your process chain runing?
I've got the same problem: I want to trigger an analysis process through a process chain. Thanks to this posting and help.sap.com I've added the ABAP programm RSAN_PROCESS_EXECUTE to the process chain and created a program variant for the analysis process to be called. When I 'activate and schedule' the process chain I can only see the job 'BI_PROCESS_TRIGGER' in sm37. The APD won't start...
What am I missing in my process chain?
Thanks in advance,
Alex

Similar Messages

  • How to include RSRT into process chain

    Hi Gurus ,
    I need to include the RSRT into my process chain,
    Can anyone guide me
    Thanks in advanvce

    Hi,
    first of all the report should be regerated only if you have changes in its definition.
    More over, generating a query will empty its cache; OK, if you are loading one of its IProvider during this chain then the cache will be invalidated anyway.
    I don't get the point of the variables at this stage; the generation of the report is like a "compilation of its code"; not an execution of it.
    If you need to execute it once after the loading by the chain (or any other process within your chain) then you can use the reporting agent in order to precalculate it (search this forum for precalculation or help.sap.com).
    If you really want to regenerate your query, you'll have to write an ABAP report and add it to your chain;
    here you go:
    TYPE-POOLS: RRO01.
    data: l_s_rkb1d   type rsr_s_rkb1d,
            l_sx_report type rro01_sx_report,
             i_s_repkey LIKE RSZCOMPKEY.
    *BREAK-POINT.
    SELECT SINGLE GENUNIID INTO i_s_repkey-GENUNIID
    FROM RSRREPDIR
    WHERE COMPID = 'ZRT_ZICRT_C07_003' "the techname of your query
      AND OBJVERS = 'A'.
    check sy-subrc = 0.
    call function 'RRI_REPDIR_READ'
         importing
            e_s_rkb1d  = l_s_rkb1d
        changing
            c_s_repkey = i_s_repkey
        exceptions
            others     = 1.
    check sy-subrc = 0.
    call function 'RRI_REPORT_GENERATE'
        exporting
            i_pretty_print = ' '
        changing
            c_sx_report    = l_sx_report
            c_s_rkb1d      = l_s_rkb1d
        exceptions
            others         = 0.
    hope this helps...
    Olivier.

  • How to create document in process chain

    Hi,
    can u plz tell me how to create document in process chain and wat i need to edit the text for particular info package when document.

    Hi Anil,
    Goto Tcode:RSPC and select your load data process type where you have to right click on the process chain and select Select create message,there are three types of messages
    1>Successful
    2>Error
    3>Always
    If you already created message then go to maintain message
    Where you have two buttons
    1>is for Edit Document
    2>Maintain Recpiants
    Goto Edit Document and put your comment and set their mail address in Mail recipiants.
    Note there are 2 types of messages you can kept at execution of infopackage process type.
    If load is successful send the mesaage to recipients
    If load is failed send the message to mail recipt.
    It would help you.

  • Explain: how to include Infospoke in Process Chain where destination is  DB

    Explain: how to include Infospoke in Process Chain where destination is  local machine database [NOT Flatfile]

    Hi vijay,
    First you create an Infospoke with destination as a DB table in your local BI or BW Machine. Now add this infospoke by going through below steps.
    1. Call up the process chain maintenance. Choose This graphic is explained in the accompanying text Process Chain Maintenance from the Administrator Workbench toolbar. The Process Chain Maintenance Planning View screen appears.
    2. In the left-hand screen area of the required This graphic is explained in the accompanying text display component, navigate to the process chain in which you want to insert your InfoSpoke. Double-click to select it. The system displays the process chain plan view in the right-hand side of the screen.
    If no suitable process chain is available, you need to create a new process chain. You can find additional information under Creating a Process Chain.
    3. To insert a process for extraction by means of an InfoSpoke, choose This graphic is explained in the accompanying text Process Types in the left-hand area of the screen. The system now displays the process categories available.
      4.In the process category Loading Process and Post Processing, choose the application process type This graphic is explained in the accompanying text Data Export into External Systems.
      5.Insert the Data Export into External Systems application type with Drag&Drop into the process chain. The dialog box for inserting a process variant appears.
      6.In the Process Variant field, enter the name of the InfoSpoke that you want to include in the process chain, or select it by means of the input help.
    Once You have added the infospoke you have to write a program which will fetch the database table that you filled and transfer the data fetched to other legacy system with the help of XI System
    For more information on how to infospoke on 3rd party pls find the link below
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5f12a03d-0401-0010-d9a7-a55552cbe9da
    Hope this help
    Harish

  • APD in Process chain

    Hi All,
    I have created 2 APD and include both APD in a process chain. however when i execute my process chain no extract has been generated. Below are the step i have take to create APD and Process chain.
    Steps:
    1. Created 2 APD
    2. Created 2 Variant for RSAN_PROCESS EXECUTE
    3. Created Process Chain and 2 Abap program to call Variant 1 and Variant 2.
    4. Started process and no extract
    If someone have done this  before could you tell me how to do this.
    Regards K

    Hi,
      Loading a PC file in background wont work. Try to load it to a file in application server. If you execute the APD directly it should work.
    Regards,
    Raghavendra.
    Edited by: Raghavendra Padmanaban on Sep 24, 2010 10:18 AM

  • How can we delete a process chain?

    Dear Ones,
    By Mistake I have converted an infopackage group into process chain in Quality system. How can we delete a process chain?
    Thanks,
    Raj

    Hi Bhanu,
    I've doubt that what is the difference between cancel with core and cancel without core with respect to process chain.
    Could you please advice how do we start a process chain daily without using the schedular window for transaction data.
    Thanks in advance...
    Amarnath.

  • How to put data into a RFC import parameter structure from portal

    Hi, All,
    I have a RFC in which an import parameter is a structure (not a table). I want to put data into that structure. I know how to put data into a table or a string. I tried to use
    IRecordSet MyTABStr = (IRecordSet)structureFactory.getStructure(function.getParameter("MYTABSTR").getStructure());
    MyTABStr.setString("FIELD1", value1);
    MyTABStr.setString("FIELD2", value2);
    importParams.put("MYTABSTR",MyTABStr);
    But it works for table not structure.  Is there anybody know how to do that?
    Thanks in advance!
    Meiying

    Hi,
    You can try the following code -
    IRecord structure = (IRecord)structureFactory.getStructure(function.getParameter("MYTABSTR").getStructure());
    structure.setString("FIELD1", value1);
    structure.setString("FIELD2", value2);
    importParams.put("MYTABSTR",structure);
    Regards,
    Sudip

  • 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

  • How to put checkbox into sap grid display

    hi,
         how to put checkbox into sap grid display ,when i am selecting the check box it should move to second secondary list.
          could u plz explain clearly

    Hi,
    In the layout fill
    is_layout-box_fieldname = 'CHECKBOX'
    is_layout-box_tabname   = 'I_OUTPUT'.
    The internal table that you are passing as I_OUTPUT, should have an extra field called CHECKBOX of length 1.
    Also refer to tutorial Easy Grid :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an%20easy%20reference%20for%20alv%20grid%20control.pdf
    Cheers,
    Simha.

  • How to check the parent process chain of a meta chain

    Hello Friends,
    Recently I joined a new project, which is of environment BW 3.0. I am trying to find the dependent process chain's parent, but could'nt able to find them. I went through all the process chains manually to check whther the dependent process chain is mentioned in them, but could'nt find any......
    Can any of you help me to know how to find the parent process chain of a meta chain ?
    I really appreciate your time, will be awarding points to any answers.......
    Thanks,

    Hello Radhan,
    thanks for your quick reply. I searched the table based on your advice, but i could'nt get the parent process chain's name. Can you throw some more ideas please..........
    Thanks,

  • E mail how to put photo into body of e-mail without recipient having to click downloadload

    e mail how to put photo into body of e-mail without recipient having to click downloadload

    What and how an email is seen on the other person's machine is dependent on their settings and not what you do. You can, for instance, send a HTML email, but if they haven't set their machine to deal with those, it won't work. It's all down to them.

  • How can we set a process chain to trigger the nodes w/o manual intervention

    SDNers,
    We have a Master PC which has the loading & activation of some Hierarchies.Wats happening is some of the hier activations are failing (we got track of the root cause as well) and the nodes below are not getting triggered automatically, eventhough they have been designed to get triggered irrespective of success or failure of this hierarchy activation. The chain prompts for the u2018Status change & trigger the following eventsu2019 opo-up and only when it was said u2018yesu2019, the subsequent node gets triggered in the chain. If this manual intervention was not there, the Chain gets struck at the activation node, whic is running in yellow status for long, though a short dump - error has already been thrown.
    My query is how can we set a process chain not to anticipate the manual intervention of chnaging the status & trigger events pop-up

    Hi ravi,
    i'm not sure abt the query but what i got thru ur qustion is u have to automtaically go to the next load/step even the proceess chain fails in the step......
    for that we have the same master meta chains with link of so many local chains...for this even if there are some interventions/fails in between the process chains it never gets stopped....
    it goes to the next step and we'll work, analyse and finish the failed load manually....the next day it'll be
    fine...
    b4 to this make sure that there is no dependency for the previous loads....
    And now the solution i found for this is in the process chain design itself.......
    while giving the links itself we'll be getting the options as status RED,GREEN and RED(or)GREEN.....now if u got for the third option the event goes to the next step even it is unsuceesful....
    rgds,
    nkr.

  • How can u know the process chain total time, individual time?

    Hi guru's
    How can u know the process chain total time, individual time?
    and what options will available in sm37?
    Thanks
    prabha reddy

    Hi Prabha
    Iam not very sure about total time and individual times.
    But you can go to tcode rspcm for monitoring the daily process chains. it gives you details like 1. status  2.start date & time  3. Log ID  of each process chain.
    or you can go to log view of particular individual chain to know how long it has run.
    SM37: tcode for simple job selection.
    here you check the status of job.
    you can select for certain conditions like
    1. scheduled
    2. released
    3. ready
    4.active
    5. cancelled
    Assign points if it was helpful
    Revert back if you need further info/
    regards
    AP

  • And i enhanced these objects into process chains also

    Hi All,
                      as per my requirement i created infopackage and dtp in development system. and i enhanced these objects into process chains also. now i want to send this infopackage ,dtp and enhanced process chains(at the process chain level i want to add only this infopackage and dtp).i dont want to collect total chain.please guide me.
    Regards,
    chandra.

    Hi,
    The Process Chain definition will be collected with the Infopackage & DTP automatically when you make the change (It will prompt for a Transport Request).
    But the other Process Variants which is used in the Process Chain will not come, but if you need them then u need to collect it using Transport Connection.
    PS. Make sure the Start Variant is set to "Start using Meta-Chain" so that the chain is not scheduled automatically after Transport.
    Regards,
    Chathia.

  • How can I insert the RSCRM_BAPI into Process chain?

    Dear all:
    Now I Use RSCRM_BAPI(RSCRM_REPORT) ,excute a query , Get the result in a table, I use this table as a datasource,and then next steps,upload data. all of this runs well.
    But  I want inset this process into a process chain. now I don't know how to do it.
    who can help me?

    Hi,
    Now I'm using RSCRM_BAPI in Process chains..
    1. I set the report name RSCRM_BAPI  and then in schedule I select EVENT there I given Event is
    'ZE_GR' and parameter is  'ZEP_GR'. and then I created a program and there I given Event and Parameter. And then I inserted this program in Process chain. And I scheduled the Process chain.
    You need to create the event in SM62
    REPORT  ZE_GR_RP.
    DATA: EVENTID LIKE TBTCJOB-EVENTID.
    DATA: EVENTPARM LIKE TBTCJOB-EVENTPARM.
    EVENTID = 'ZE_GR'.
    EVENTPARM = 'ZEP_GR'.
    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.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Dec 2, 2008 5:09 AM

Maybe you are looking for

  • The font size is so big my desktop doesn't fit on the screen

    The font size is so big my desktop doesn't fit on the screen and can't figure out how to fix it.

  • SCCM 2012 R2 - Software metering Reports Parameters Value not appear to choice

    Hello Every Body I hope to get answer as soon as possible I have SCCM 2012 R2 & SQL Server 2012 SP1, my problem is ( all software metering Reports Parameters Values Not appear so I cannot select Note:- ( All parameters Available Value set to Get Valu

  • IWeb slow publish

    I'm curious about why iWeb publishes certain sites so slowly while others publish at a reasonable rate. I ran across an article in this forum about a program called iWebSites that separates the different files and allows you to work with one at a tim

  • Business One PHP access

    Hi, I'm trying to access SBO with PHP Connecting to the company object is working fine But the next step (getbusinessobject) is not working Does anybody have tips ? This is the current code : <?php echo "SBO PHP TEST<br>"; $vCmp=new COM("SAPbobsCOM.c

  • Index in GLPCA

    Hi all, We need to do extracts from GLPCA by an external connector (Qlickview) on a regular basis (daily or weekly) but we dont have any good indexes to use. Currently we are searching using fields RLDNR, RRCTY, RVERS, RYEAR, RBUKRS and perhaps POPER