Parallel process define for batch job

Hi,
I would like to run a batch job with a few processes run parallel together. May I know where can i define it ? T-code ?
Regards
Lauran

Hi Lauren,
First of all there is no transaction code as such.
First of all the report that  needs to be run in background should enable you to do parrallel processing. For that code has to be written accordingly.
Check this link:
http://help.sap.com/saphelp_nw2004s/helpdata/en/fa/096e92543b11d1898e0000e8322d00/content.htm
It gives details of function modules needed for this purpose.
After this you need to create a variant for the report and schedule it to run in background using either SE38 (dirrectly) or by creating a job explicitily- SM36.
A standard report that has parallel processing feature available is RBDAPP01.
Also check transactions like BD18. They also make use of parallel processing.
Regards.
Ruchit.

Similar Messages

  • No process defined for form appraisal template

    when in IMG path "define tabs and process configuration for template",  on the "process configuration tab", I enter data and click Save. I now get the warning message "No process defined for form ..." as a consequence I cannot perform my configuration. the process is not showing up. and no phases/steps can be assigned to the process for configuration.
    T.

    Hi,
    Please go thro' following link. Excellent material on performance appraisal is available. This will solve most of your queries in performance appraisal in EHP4.
    Re: Flexible appraisal processes & predefined Performance Management process.
    Thanks!
    Best Regards,
    Chetan Shriraj Wahane

  • QM In-Process Inspection for Batch Managed Material

    Hi,
    I have a issue related to UD of In-Process inspection for batch managed material. The production process is discrete manufacting for a cold rolling mill. A production order can have mutiple coils as per the production amount. To track the individual coil , batch management has ben activated. We have both in-process as well as inspection after production here.
    For inspection after production we are fine as we are doing partial confirmation after every coil and have separate inspection lot having different batch number.
    But for in-process I can have only one inspection lot for the production order (created on release of the production order). I can do the result recording but while trying to do UD u2013 it is asking for a batch number as the material is batch managed. W/o entering the batch number system is not allowing me to do the UD.
    Is there any solution/work around of this problem.
    -Regards
    ashim

    Hi Ashim,
    you raised a very good question? i am helpless here to execute same scenario,
    but i disussed with my QM guy here, he said, once the material is batch managed then it has to ahve batch in UD.
    so i discussed ur case, which is very much valid for heavy ind like cement and all,
    so what i suggest, u create a dummy batch in the UD for in process (no inventory posting)
    and at confimation give ur usual batch (if system propose the dummy batch which u give in the UD for inprocess, try to change there--- i hope it should allow)
    i would really like to here answer from u for this.
    try to do as suggested, and let me know the results.
    REgards,
    Pravin mukkawar

  • End-to-end monitoring No process defined for this domain

    Hi,
    I'm having problems to configure the end-to-end monitoring (RWB)on the XI.
    When the button Display is choosed by mouse click, the following message appears:
    ! No process defined for this domain!
    Thanks
    Regards

    Hi,
    First you need to configure the End to End monitoring.
    For this , go to RWB->COnfiguration and do the configuration
    Some links-
    http://help.sap.com/saphelp_nw04/helpdata/en/82/9e8dfe9eadbd4b9194c433e646b84e/frameset.htm
    end-to-end monitoring
    Hope this helps.
    Regards,
    Moorthy

  • No process defined for this domain  in End-to-End Monitoring  IN RWB

    Hi all,
           i have problem with Runtime Workbench in End-to-End Monitoring  .if i dispaly the End-to-End Monitoring  Dispalyed is <b>No process defined for this domain </b> but remaining all compent wroking fine,so pls sugest me.
    ramesh

    Hi,
    Pls go thru following link, it will help you solving your problems.
    Authorization for End-to-End Monitoring in RWB
    RWB End-to-End monitoring problem
    Hope this helps..
    Regards
    Moorthy

  • Parallel processing in background using Job scheduling...

    (Note: Please understand my question completely before redirecting me to parallel processing links in sdn. I hve gone through most of them.)
    Hi ABAP Gurus,
    I have read a bit till now about parallel processing. But I have a doubt.
    I am working on data transfer of around 5 million accounting records from lagacy to R/3 using Batch input recording.
    Now if these all records reside in one flat file and if I then process that flat file in my batch input program, I guess it will take days to do it. So my boss suggested
    to use parallel processing in SAP.
    Now, from the SDN threads, it seems that we have to create a Remote enabled function module for it and stuf....
    But I have a different idea. I thought to dividE these 5 million records in 10 flat files instead of just one and then to run the Custom BDC program with 10 instances which will process 10 flat files in background using Job scheduling.
    Can this be also called parallel processing ?
    Please let me know if this sounds wise to you guys...
    Regards,
    Tushar.

    Thanks for your reply...
    So what do you suggest how can I use Parallel procesisng for transferring 5 million records which is present in one flat file using custom BDC.?
    I am posting my custom BDC code for million record transfer as follows (This code is for creation of material master using BDC.)
    report ZMMI_MATERIAL_MASTER_TEST
          no standard page heading line-size 255.
    include bdcrecx1.
    parameters: dataset(132) lower case default
                                 '/tmp/testmatfile.txt'.
       DO NOT CHANGE - the generated data section - DO NOT CHANGE    ***
      If it is nessesary to change the data section use the rules:
      1.) Each definition of a field exists of two lines
      2.) The first line shows exactly the comment
          '* data element: ' followed with the data element
          which describes the field.
          If you don't have a data element use the
          comment without a data element name
      3.) The second line shows the fieldname of the
          structure, the fieldname must consist of
          a fieldname and optional the character '_' and
          three numbers and the field length in brackets
      4.) Each field must be type C.
    Generated data section with specific formatting - DO NOT CHANGE  ***
    data: begin of record,
    data element: MATNR
           MATNR_001(018),
    data element: MBRSH
           MBRSH_002(001),
    data element: MTART
           MTART_003(004),
    data element: XFELD
           KZSEL_01_004(001),
    data element: MAKTX
           MAKTX_005(040),
    data element: MEINS
           MEINS_006(003),
    data element: MATKL
           MATKL_007(009),
    data element: BISMT
           BISMT_008(018),
    data element: EXTWG
           EXTWG_009(018),
    data element: SPART
           SPART_010(002),
    data element: PRODH_D
           PRDHA_011(018),
    data element: MTPOS_MARA
           MTPOS_MARA_012(004),
         end of record.
    data: lw_record(200).
    End generated data section ***
    data: begin of t_data occurs 0,
          matnr(18),
          mbrsh(1),
          mtart(4),
          maktx(40),
          meins(3),
          matkl(9),
          bismt(18),
          extwg(18),
          spart(2),
          prdha(18),
          MTPOS_MARA(4),
        end of t_data.
    start-of-selection.
    perform open_dataset using dataset.
    perform open_group.
    do.
    *read dataset dataset into record.
    read dataset dataset into lw_record.
    if sy-subrc eq 0.
    clear t_data.
    split lw_record
       at ','
    into t_data-matnr
          t_data-mbrsh
          t_data-mtart
          t_data-maktx
          t_data-meins
          t_data-matkl
          t_data-bismt
          t_data-extwg
          t_data-spart
          t_data-prdha
          t_data-MTPOS_MARA.
    append t_data.
    else.
    exit.
    endif.
    enddo.
    loop at t_data.
    *if sy-subrc <> 0. exit. endif.
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                 'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '=AUSW'.
    perform bdc_field       using 'RMMG1-MATNR'
                                 t_data-MATNR.
    perform bdc_field       using 'RMMG1-MBRSH'
                                 t_data-MBRSH.
    perform bdc_field       using 'RMMG1-MTART'
                                 t_data-MTART.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                 'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '=ENTR'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(01)'
                                 'X'.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '/00'.
    perform bdc_field       using 'MAKT-MAKTX'
                                 t_data-MAKTX.
    perform bdc_field       using 'BDC_CURSOR'
                                 'MARA-PRDHA'.
    perform bdc_field       using 'MARA-MEINS'
                                 t_data-MEINS.
    perform bdc_field       using 'MARA-MATKL'
                                 t_data-MATKL.
    perform bdc_field       using 'MARA-BISMT'
                                 t_data-BISMT.
    perform bdc_field       using 'MARA-EXTWG'
                                 t_data-EXTWG.
    perform bdc_field       using 'MARA-SPART'
                                 t_data-SPART.
    perform bdc_field       using 'MARA-PRDHA'
                                 t_data-PRDHA.
    perform bdc_field       using 'MARA-MTPOS_MARA'
                                 t_data-MTPOS_MARA.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '=YES'.
    perform bdc_transaction using 'MM01'.
    endloop.
    *enddo.
    perform close_group.
    perform close_dataset using dataset.

  • Parallel Process Option for Optimization in Background.

    Hi,
    I am testing the SNP Optimizer with various settings this week on  demo version from SAP for a client.  I am looking for information that anyone might have on the SNP Parallel Processing Option in the execution of the Optimizer in the background.   The information that I could find is very thin.   I would be interested in any documentation or experience that you have.
    Sincerely,
    Michael M. Stahl
    [email protected]

    Hello,
    While running the transaction /SAPAPO/SNPOP - Supply Network Optimization  in the background, In the variant of it you can enter Parallel Processing profile in the field Paral. Proc. Profile.
    This profile you will require to define in the Customization(SPRO) before use it in the variant.
    Path to maintain it is as below Use transaction SPRO
    Advanced Planning and Optimization --> Supply Chain Planning -->Supply Network Planning (SNP) --> Profiles --> Define Parallel Processing Profile
    Here you will require to define your profile... e.g. as below
    Paral. Proc. Profile SNP_OPT
    Description          SNP OPTIMIZER PP PROFILE
    Appl. (Parallel Pr.) : Optimization
    Parallel Processes   2
    Logical system :
    Server Group :
    Block Size:
    You will require to take Basis team's help to enter value for Server Group and Block size.
    I hope, above information is helpful for you.
    Regards,
    Anjali

  • Skipping transaction for batch job on streams

    We need to run a batch job on streams soruce side. I would like to skip this transaction from streams to capture & apply.
    Then run the batch jobs on source & target seperately. How to do it?

    There are plenty of valid reasons to execute a batch job independently of replication, not the least of which is that it's a recommended best practice from Oracle.
    Minimize the Performance Impact of Batch Processing
    For best performance, the commit point for a batch processing job should be kept low. Also, if a large batch processing job must be run at a source database, then consider running it at each Streams replication database independently. If this technique is used, then make sure the changes resulting from the batch processing job are not replicated. To accomplish this, run the DBMS_STREAMS.SET_TAG procedure in the session that runs the batch processing job, and set the session tag to a value that will not be captured by a capture process.
    Unless you have made explicit changes to the tag used in your streams rules they are all configured to only replicate if the streams tag is null. If you set this to not-null in a session, changes within that session will not be replicated. For example
    exec dbms_streams.set_tag(hextoraw('99'));
    You can turn it back on in that session (if needed) with
    exec dbms_streams.set_tag(null);
    So, if you set the tag in your batch job you can execute it independently of replication.

  • Runn time error "CNTL_ERROR" for batch job created for program RBDAPP01

    We have encounter run time error and the batch job for program RBDAPP01 was terminated.
    Information on where terminated
        Termination occurred in the ABAP program "CL_GUI_CUSTOM_CONTAINER=======CP" -
         in "CONSTRUCTOR".
        The main program was "RBDAPP01 ".
        In the source code you have the termination point in line 62
        of the (Include) program "CL_GUI_CUSTOM_CONTAINER=======CM001".
        The program "CL_GUI_CUSTOM_CONTAINER=======CP" was started as a background job.
    Can any member reachout help in identifying the reason.

    Hi Amol,
    Check the following link.
    Call Transaction 'VL32N' in background: termination with Exception
    Regards,
    Raju.

  • Where to update spool Title for batch job

    Dear Experts,
    We have a requirement to update spool title for a batch job. I have updated spool title under step--> print specifications --> Title. But the spool title is not updated. Can u pls. guide me is there any place where I have to update the spool title.
    Thanks,
    Vinay

    Hi Vinay,
    In SM36 in STEP definition after the report name is filled, press button Print specifications, then button Properties. There you can change the Spool request properties, such as Name, Title and Authorization.
    Regards,
    Prathyusha Malempati

  • Program for Batch Job

    Hi,
    How can i find a program attached to a batch job in sm37.
    Points will be rewarded definitely.
    Thanks

    (1) If you want to know the program used by the job
    go to SM37, select a job and click on "step", each step used a program or an external command/program.
    (2) If you search for job using a program*
    On the initial screen of SM37, put the name of the program you search for.
    Regards

  • BDC_OKCODE for batch jobs

    Hi everyone
    I am modifying an existing program that creates a batch job.  Does anybody know what the possible values are for the BDC_OKCODE field eg. /00, BACK, =PDE3 and so on.  I see that they tend to relate to function codes from the Gui status - is there an easy way to find out what they do?
    Thanks
    Andy

    Hi Andrew,
    BDC_OKCODE identifies the command field.
    it can use function key number or function code
    / for function key number and = for function code
    '/3' -->Back function key
    '/15'-->Quit function key
    '/11'--> save
    All functions in menus and buttons are identified by function codes.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • I Need to Create a report for batch jobs Based on Subject Area.

    Hi SAP Guru's,
    I need to create a report , that it must show the status of batch jobs Completion Times based on Subject area(SD,MM,FI).
    Please help me in this issue ASAP.
    Thanks in Advance.
    Krishna.

    You may need to activate some additional business content if not already installed but there are a lot BI statistics you can report on. Have a look at this:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/46/f9bd5b0d40537de10000000a1553f6/frameset.htm

  • Dynamic Variant -Current date  in selection screen - for batch jobs

    Hi Experts,
    My report runs in batch job with a variant, daily.
    One of the filed in selction screen should hv CURRENT DATE, with out providing as input explicitly by user.
    So, How Can I get it done?
    Its some thing with Dynamic variants + Selection Variables +  date selection, but, I forgot the navigation etc.
    pl. let me know
    thanq

    thanq.
    and pls. let me further clarify that,
    programitically am populating the date as current date minus 1 in the field of my_date in the selection screen.
    now, they wanna to run the report in back ground, daily.
    now, I followed ur tip/link and saved with_date_variant, fine.
    so, pls. let me know that,
    1) if the report runs in back ground tomorrow with with_date_variant(which is i created by seeing ur link), Is the selection screen my_date(prog. populates as June 5th) will be override with current date(i.e. June 6th)?
    In broad, Is the selection criteria wuld be over writes with the Dynamic varints?
    thanq

  • Error in Process Chain for DTP- Job not finished

    Hi Experts,
    We have an issue with one of our process chains. When we execute the chain manually, there is no problem. BUt if we schedule the chain, issues arise. the last part of the chain is DTP. But the job doesnt finished even if the DTP step si already green. Locks occur for the DTP and the infoobject. When we look at the job log in SM37, it is still active. But this should not take a long time, since if we execute it manually it is ok.
    Pleas help experts

    Guys, I am also facing the same issue.
    When DTP is completed successfully, it has the job log blow :
    Job started
    Step 001 started (program RSPROCESS, variant &0000000391261, user ID BWREMOTE)
    Performing check and potential update for status control table
    Status 'Executable' (user BWREMOTE)
    Status 'Active' (user BWREMOTE)
    Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BIDTPR_335754_1 with ID 06532200
    Job finished
    When it fails or remain yelllow for long time and then turn into red.
    Job started
    Step 001 started (program RSPROCESS, variant &0000000391306, user ID BWREMOTE)
    Performing check and potential update for status control table
    Status 'Executable' (user BWREMOTE)
    Status 'Active' (user BWREMOTE)
    EXTRACTION OF DATAPACKAGE 000001
    EXTRACTION OF DATAPACKAGE 000002
    Job finished
    The question is, why the program  RSBATCH_EXECUTE_PROZESS is not scheduled.  Is it because there is no free resource? Or poor response from SAP ECC?
    Finally what does "EXTRACTION OF DATAPACKAGE 000001" mean? Its not scheduled?
    Regards
    MultiABAP
    Edited by: MultiABAP on Oct 6, 2010 10:32 AM

Maybe you are looking for

  • Yoga 13 after Win 8.1 update - apps for Netflix, CNN, ESPN, etc. will not play video - WTH?

    Can someone point me to where I can download the right driver(s) / updates that fix thw Windows 8.1 mess that crippled video playback in the Modern/Metro Win8 interface please?   I had other issues with wireless (which I fixed by buying a Linsys 802.

  • Pwr Over

    Hi NetPro, anyone knows this ? i have no any device using PoE, but i still have this error. Nov 1 07:53:07: %C4K_IOSMODPORTMAN-4-INLINEPOWEROVERWARNING: Inline power exceeds threshold: Module status changed to 'Pwr Over' Nov 1 17:51:13: %C4K_IOSMODPO

  • RE:run Solaris 8 on X86 laptop

    Hi Gurus, Anyone know which laptop can run Solaris 8 for Intel well? I just ordered Solaris 8 for Intel and am thinking to buy a laptop. i'd highly appleciate your help Gary

  • Import/Export Button in designer grayed out

    Import/Export button in designer is grayed out for one user. it is not his security setting, since he doesn't have this issue using other machines. I am wondering what is wrong on his machine? Could any body help us. Thanks

  • Looking for function modules

    Hello All, I m looking for function modules for the following functionalities : 1. Returns a list of purchase orders. 2. Returns a list of vendors of a metarial/materialgroup. 3. Getting details of a vendor evaluations Thanks all Moderator message: d