Need help in process chain *need help immdtly*

I need help in creating one process chain.
1. i have to load one infopackage to a PSA.
2. then have to do load for one infocube from two different infocubes one after the other.
for all these loads one restriction of fiscal year period  to be common value.
this value may either be allowed to user to select or loaded automatically taking the previous fiscal year value .. any of these two options are fine.
it would be helpful if anyone can help me out.

Here is the code for Z program...you can create Tcode thr SE93 where user can enter value .
parameters: fsper type /BI0/OIFISCPER DEFALUT 2010008.
data: wa_tvarvc type tvarvc.
wa_tvarvc-NAME = 'FISCPER'
wa_tvarvc-TYPE = 'P'.
wa_tvarvc-NUMB = '
wa_tvarvc-SIGN = 'I'.
wa_tvarvc-OPTI = 'EQ'.
wa_tvarvc-LOW = FSPER
INSERT TVARVC FROM wa_tvarvc.
Code for DTP's in Field Level.
data: wa_tvarvc type tvarvc.
select single from tvarvc into wa_tvarvc where NAME = 'FISCPER'.
L_T_RANGE-low = wa_tvarvc-LOW
L_T_RANGE-SIGN = 'I'.
L_T_RANGE-OPTION = 'EQ'.
APPEND L_T_RANGE

Similar Messages

  • Need to delete process chain

    Hi Experts,
    I developed some new testing process chains in my development system, now i need to delete Process chains?
    i cannot find out the way? can any one help on this?
    Thanks in advance
    David

    Thanks Mti my problem is solved
    Edited by: david Rathod on Nov 23, 2010 3:29 PM

  • Do we need to create process chain explicitly nor system generates process

    Hi all,
    Do we need to create process chain explicity in bpc netweaver nor the system generates it internally when we run data managment packages
    thanks
    Pooja

    When you install BPC, there is a set of delivered process chains which are installed as well.  You create the data manager packages from the BPC Excel clicent based on these process chains.  You can of create custom BPC process chains in NetWeaver and create packages from those as well(for example via a How-To guide).   So to answer your question, no, you do not have to create the "standard" process chains, and they are not generated by the system either, they are delivered as part of the BPC installation.
    Regards,
    Rich Heilman

  • Process Chain - Need Help

    Hello Gurus,
    I need to create a process chain for the following:
    1.Load to PSA through infopackage.
    2.Load to ODS through DTP.
    3.Activate ODS.
    4.Load cube from ODS through DTP.
    I am not much familiar with process chains. If you can let me know the steps it should be great. As always thanks for the help.
    Senthil

    Your Pchain shud luk like below :
    1. Start
    2. Execute Infopackage ( loads till psa )
    3.Execute DTP ( to load DSO frm PSA  )
    4.Activate DSO
    5.Further Processing
    6.Delete Indexes for Cube
    7.Execute DTP ( to load Cube frm DSO )
    8.Create Indexes for Cube
    Infopackages n DTPs shud all be delta in update type.

  • Process Chain: Urgent help needed!!!

    Hi Guru's,
    I need to change the process chain:
    We are currently loading the data form 000000 to 100000 in a single process but now the customer asked us to change it to 4 packages:
    000000 to 250000, 250001 to 500000, etc..
    Could any one help me in this pls???
    your help much appreciated.
    regards,
    BH

    Hi Varma,
        I am assuming you are using generic extractor using function module.
    Create a z-control table which maintains ranges 250K records. In future use can even change the range if you want .
    below is piece of code from function module
    Auxiliary Selection criteria structure
      data: l_s_select type srsc_s_select.
      data : l_lines type i.
    Maximum number of lines for DB table
      statics: s_s_if type srsc_s_if_simple,
    counter
              s_counter_datapakid like sy-tabix,
              counter type i.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      if i_initflag = sbiwa_c_flag_on.
    Check DataSource validity
        case i_dsource.
          when  <check your datasource name>
           when others.
            if 1 = 2. message e009(r3). endif.
            log_write 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      i_dsource            "message variable 1
                      ' '.                 "message variable 2
            raise error_passed_to_mess_handler.
        endcase.
        append lines of i_t_select to s_s_if-t_select.
    Fill parameter buffer for data extraction calls
        s_s_if-requnr    = i_requnr.
        s_s_if-dsource   = i_dsource.
        s_s_if-maxsize   = i_maxsize.
      else.
        if s_counter_datapakid = 0.
    read z-table to know the size i.e. 250K
    first read
           z-ctr_frm  =  0.
           z_ctr_frm  = z_ctr_frm + 250000.
    endif.
         if z-ctr_frm > 0.
           z_ctr_frm = z-ctr_frm + 250000.
           z_ctr_to   = z_ctr_frm  + 250000.
        endif.
    ***Generate data packets 
        select data from table with the number range variables z_ctr-frm and z_ctr_to.
        s_counter_datapakid = s_counter_datapakid + 1.
      endif.
    ENDFUNCTION.
    I hope this help you.
    Rgds,
    Se Vu

  • Process Chain  Issue Help needed!!!!!!!!!

    Hi all,
    Please help me in creating process chains, Requirement is
    Process Chain1
    Infosource --> ODS1 (Delta Load) From ODS1 --> Cube 1 (Delta Load)
    Process Chain 2
    from same above ODS1 --> ODS2(Full Load) and ODS2 --> Cube2(full Load)
    What is the sequential flow?
    I created the chain 1 as
    Delete Index(Cube) > Infopacakge from Infosource to ODS1> Activate ODS1 > Update ODS1-> Generate Index(Cube).
    For Chain 2
    Delete Index(Cube) > Infopacakge from Infosource to ODS1> Activate ODS1 > Update ODS1->Activate ODS2 > Update ODS2> Generate Index(Cube).
    My question is for Chain1 from ODS1 it should be Delta and for chain2 from ODS1 it should be full load,
    i have chacked the ODS1(8ODS1) infopackages the full load infopackage data target is ODS2 and Delta Load data Target is Cube1.
    Thanks in Advance,
    Sudha.

    Below..i believe is a better design for the process chains..
    Chain 1
    Start variant> Infopacakge from Infosource to ODS1> Activate ODS1 --> Delete Index(Cube) >Update ODS1-> Generate Index(Cube).
    (drop cube indexes just before cube gets loaded)
    Chain 2
    Start variant> <b>Infopacakge from Infosource to ODS1> Activate ODS1</b> > Update ODS1->Activate ODS2--> Delete Index(Cube) > Update ODS2> Generate Index(Cube).
    (i think we can remove 2 steps(in bold)..right?ODS1 already got loaded in first chain..just we need to keep dependency that 2nd chain runs after the 1st chain has run)..
    U can have a 3rd chain..a meta chain like..
    start variantchain 1chain 2..
    (for both chain 1 and chain 2..i mean the local chains...set start variant parameter as 'start using meta chain or API)..
    doing so..chain 2 will kick off only after chain 1 is successfully run..
    (also check if the process type 'further update from ODS to data targets..allows you to choose data targets..and choose full/delta..i doubt it..
    if it doesnt allow..then place the infopackage steps instead of this 'further update' process..i have done this earlier..)
    Vishvesh
    Message was edited by:
            Vishvesh Bahirat

  • Need help regarding process chains

    Hi all,
    Can any one tell me how to create process chains,
    i have to create the process chains for
    controlling area
    business area
    plant
    company code
    material
    pack size
    brand
    flavour
    how do i select these things and where can i select these things please tell help me out
    these are all attributes as well as texts
    thanks in advance
    sidhartha

    Hello...
    http://help.sap.com/saphelp_nw70/helpdata/en/87/13843b74f7be0fe10000000a114084/frameset.htm
    I understand the help topics are difficult to find...
    Some tips:
    - use only local objects (create infopackages localy in the production client to build the process chains, so you don't have to transport them).
    - the secret for good process chain is organization. Separate texts, attributes and transactional data in separated process chains. Use a "master" global process chain to call the sub-process chains.
    - careful assure the necessary precedences. Make sure you load attribues and activate the master data before the transactional data.

  • Problem in Process chains - Need help

    Dear Experts
    I have a problem in Process chains
    I have  ODS1  from which Iu2019m updateing the  ODS2 and ODS3 with same Delta infopackage.
    The difference between ODS2 and ODS3 is in ODS2 Iu2019m loading with Local Currency
    And in ODS3 is getting loaded with Group Currency
    When Iu2019m running with Process chain  its executing twice as below
    First time : It is showing only ODS2 as the Datatarget  and loading all the delta records to ODS2
    Secondtime: Its showing both ODS2 and ODS3 in Datatarget and loading with 0 Records.
    In this way No record is getting updated in ODS3.
    Could you please share your thoughts on why it is triggering twice ? And how we can avoid this.
    Thanks
    Lakshminarayana

    Thanks Shambu for quick reply
    The variant  is being used to load the ODS2 & ODS3  and Automatic further processing tick also removed.
    Thanks
    Nerusu

  • Help needed in creating process chains

    hi friends...
    iam unable to work on process chains..
    can anyone plz give me detail description on creating process chains and working on them.....

    Hi,
    check this forum
    Re: Steps for the process chain creation]
    regards
    babu

  • Urgent help regarding process chain error

    hi experts ,,
    one of the process chain is not running properly for last 5 days ....
    now current status of process chain is red ...and msg is last delta isrunning/has errors ..couldnt process request
    msg of yester days chain ........
    Errors have been reported in Business Information Warehouse during IDoc update:
    Could not find code page for receiving system
    error msg in bd87 (with idoc status 02 )
    tried to process idoc manually but it didnt happen ...throughing same error....
    one more thing here is same process chain status on 16th is in yellow status .....
    its in yellow status at dtp load step ....on right click on dtp_load variant --->in batch montior --->job overview
    dtp_laod job was is ready status ....
    i thought this status effecting others so tried to schedule the job couldnt ....
    so deleted job in confession....
    now and process which is bfr dtp_load is in yellow and whole chain is in yellow ....
    what shall i do now ??how to correct this ??
    shall run dtp manually and dso activation manually ???and shall i make process into green  status ???
    or shall retrive deleted job wit basis ppl help???
    please help me...
    whoever helps me to fix this issue will rewarded wit full points and i will be greatful to them ...
    Regars, \
    Harry...

    Yes, as rightly said you need to run the previous delta before updating new records in the latest request. If possible de-schedule the chains for a while, delete the old deltas (assuming you are using flexible updates?) and try to repeat the loads manually & proceed to activate & schedule once the delta has finished processing. If you still think this is an issue related to idocs processing, you can do the re-processing, provided they do not create fresh batch of idocs in the source system. You can re-process the idocs both inbound & out bound using reports like RBDAGAIN (But again, use extreme caution on these!). Please refer the #scn wiki on http://goo.gl/njVLS for more information on the idocs. For reprocessing please check this http://goo.gl/8aAcz. Thanks.

  • "Still waiting for replays Issue In process chain please help me"

    Hi Xpertz
    Could any one clarify me in the following aspect .I have a process which is having
    4 infopackages updating to a single ods and then in to a cube I copnverted it in to
    a process chain evry thing seems to be fine how ever one issue is ther .I am not
    getting any repeat option on the failed infopackage .But if the ods activation fails
    then am able to see the repeat option on that activation process.
    How can we get the repeat option on the failuere info package .
    Other than segis weblog is ther any other option to restart the process chain.3
    ITs in BW 3.5
    Thanx in advance
    Regards
    R M K
    No need to say good answers willl get full pointz***

    Hi..
    I have worked on process chains..and I too have seen this..that when chain fails..often repeat option does not appear at infopackage step..
    but then this does not cause an issue..as I simply double click on the step..open the infopackage and run it..
    Siggi's blog is very useful..I havent found another method to kick off a chain from the failed step..(other than repeat)..
    sometimes..u manually correct the failure..but the process chain step remains RED..
    as per the blog..change the field on the table..so that step goes GREEN and kicks off further steps of the chain..
    Vishvesh

  • Help in Process Chains?

    Hi Guru's,
    I am new to Process chain topic.we have almost 60 PC's , My question is ,chain steps are START ->LOAD(clentnumber)->ACR->Abend program,this is flow of data in chain ,alternatively the chain was failes only on load step?As per my knowledge due to duplicats recordes loading .but i want permanent solution for this resason ,why it fails only on load step?
    so plz could any body help on this.
    Thanks&Regards,
    Goodyear,

    Hi Good year,
       You are having problem with your data(duplicate records) thats why it is failing at loaing. Some times PC's fails at ACR(attribute change run), bcoz of ACR locking.
    For more info..see the below links.. similar posts
    Re: Master data load: Duplicate Records
    Hope this Helps
    Srini

  • Need to find process chain from event

    Dear Experts,
    I need to find out all process chains which are getting triggered by a certain event.
    ( I have an event name , need to find corresponding process chain ).
    Kindly suggest.
    Regards
    Vaibhav Halde

    Hi,
    In SM37 you can find it, give event in SM37 an dsee the log. In the following blog you hav esome comments on the same so see the comments.
    How to trigger the Process Chains in BW from ECC
    /people/surendrakumarreddy.koduru/blog/2009/03/18/how-to-trigger-the-process-chains-in-bw-from-ecc
    Thanks
    Reddy

  • Help with Process Chain - Stop remaining Processes if Package returns 0 rec

    Hi, i have a Process Chain that starts with a single InfoPackage.  Then it goes on to distribute the load to multiple DSO's and then onto DSO Activation.  I would like the Process Chain to stop right after the InfoPackage if no records are loaded. 
    Is this possible using the decision variant somehow?  Any details on how to achieve this are greatly appreciated!

    Hi ,
    The request is goin to red status when 0 records are pulled in. There is a option in info package so that even when 0 records come in the request status would be green.
    Open your info package , then in the menu goto "Scheduler > Treatment of warnings > Select Green" so that in future even if the info package pulls 0 records the status would be green . then the activation step in the process chain would also be carried out smoothly.
    In this way you need not manually change any request status to green . Saves you time.
    regards
    Venky

  • HELP: Creating Process Chain flag

    Good Morning,
        I was wondering if someone could point me into the right direction on how to create a flag on a process chain that will activate user's reports after selected cubes have loaded. I tried searching the forums but couldn't find anything...mainly found stuff to do with email alerts.
             Thanks,
                       Thomas

    Hi Tom.
    You can use the process "Trigger Event Data Change" at the end of your process chain.
    All Broadcast configurations will start after this event is triggered.
    Regards,
    TP

Maybe you are looking for

  • Need help in creating multiple signature forms?

    need help in creating multiple signature forms that can be digitally signed in adobe reader

  • How to upload RAW images from Nikon 600 into Elements 11?

    Hi recently purchased Elements 11 and cannot load Raw images from also recently purchased Nikon D600. Is there a download and if so where is it and how does it work? Many thanks in advance trevor

  • Buttons enabling and disabling

    Hello, I'm developing a web based project based on JSP 1.2, MySQL and TOMCAT with Java2 SDK these days. So,now I had a question reguarding user authentication.I want to do this. I have a login form to log into the system by providing his username and

  • Sql*loader field length issue

    so I'm loading a file and it's rejected a record where "field in data file exceeds maximum length" the record it's failing on has data length of 625 characters. I'm loading it into a table with a field type of varchar2(1024). for the life of me, I ca

  • Intermediate result between two message mappings

    Hi, we have a Scenario with an Interface mapping, which is created from two message mappings. The first one receives the source message and the second one sends the target message. I have a trouble with finding the intermediate result between the two