Multiple processing of Open PO's & PR's

Good morning All,
How to Process Multiple Open TR's which I found in LB10
Also Multiple Open TO's in LT22.
Any configuration setting is required.
Please help me out .
Thanks & Regards,
Olet Malla

Hi,
I suppose you should create a load program, there you can use BAPI_POEC_CREATE.
I hope this help
Jorge

Similar Messages

  • Multiple processes accessing a replicated database

    Hi
    I am after some help with multiple processes and replicated databases.
    I have a primary and secondary database replicated across a pair of servers and this seems to be working well. I'm trying to run another process on one of the machines that opens the environment and databases to view and/or modify the data.
    The problem is that when I run this process it causes some sort of corruption such that the server process on the same box gets a DB_EVENT_PANIC the next time it accesses the database. I would like to understand what I am doing wrong.
    The servers and standalone process all use the same code to open and close the environment and databases (see below). Just calling
         open_env();
         open_databases();
         close_databases();
         close_env();
    in the utility process causes DB_EVENT_PANIC in the server process.
    Can anybody spot what I am doing wrong? I am using DB Version 4.7
    Thanks
    Ashley
    open_env() {
    db_env_create(&dbenv, 0);
    dbenv->app_private = &my_app_data;
    dbenv->set_event_notify(dbenv, event_callback);
    dbenv->rep_set_limit(dbenv, 0, REPLIMIT);
    dbenv->set_flags(dbenv, DB_AUTO_COMMIT | DB_TXN_NOSYNC, 1);
    dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT)
    int flags = DB_CREATE | DB_INIT_LOCK |
              DB_INIT_LOG | DB_INIT_MPOOL |
              DB_INIT_TXN | DB_RECOVER | DB_THREAD;
    flags |= DB_INIT_REP;
    dbenv->repmgr_set_local_site(dbenv, listen_host, port, 0);
    dbenv->rep_set_priority(dbenv, 100);
    dbenv->repmgr_set_ack_policy(dbenv, DB_REPMGR_ACKS_ONE);
    for (x = 0; x < num_peers; x++) {
    dbenv->repmgr_add_remote_site(dbenv, peers[x].name, peers[x].port, &peers[x].eid, 0);
    dbenv->rep_set_nsites(dbenv, num_peers + 1);
    dbenv->open(dbenv, ".", flags, S_IRUSR | S_IWUSR);
    dbenv->repmgr_start(dbenv, 3, DB_REP_ELECTION);
    sleep(SLEEPTIME);
    close_env() {
    dbenv_p->txn_checkpoint(dbenv_p, 0, 0, 0);
    dbenv_p->close(dbenv_p, 0);
    open_databases() {
    db_create(&dbp, dbenv_p, 0)
    flags = 0;
    if (app_data->is_master)
    flags |= DB_CREATE;
    dbp->open(dbp, NULL, "primary", NULL, DB_HASH, flags, 0);
    ... Wait for db if slave and ENOENT ...
    primary = dbp;
    dbp->open(dbp, NULL, "secondary", NULL, DB_BTREE, flags, 0);
    ... Wait for db if slave and ENOENT
    secondary = dbp;
    while (app_data->client_sync) {
    sleep(SLEEPTIME);
    close_databases() {
         secondary->close(secondary, 0);
         primary->close(primary, 0);
         dbenv_p->txn_checkpoint(dbenv_p, 0, 0, 0);
    }

    Running recovery (DB_RECOVER flag to env->open()) must be done only in the first process to open the environment.
    This is a general rule of Berkeley DB, not specific to replication. You can read more about it in the Reference Guide, on the page entitled "Architecting Transactional Data Store applications".

  • Multiple processes in the workflow

    Hello Everyone.
    Why do we require multiple Processes in a single Workflow? I see that in the seeded workflows, if i open a process, in the flow there will be another process which again might contain several different process attached to the same flow.
    In realtime when do we require to use this functionality?
    Thanks

    It is not a requirement - it is simply a way of modularizing - just like how any piece of code can call other pieces of nested codes.
    Srini

  • Same JVM multiple processes?

    Summary: Does any one know how to get a JVM to be shared across different Windows processes, as follows:
    Context: I have created a Java ActiveX component. This is instantiated and used as an object embedded in HTML. The HTML will always be executed in Internet Explorer. When I have multiple windows open in the same Internet Explorer process with the same HTML code the static variables are shared by all the Java ActiveX components. If I have multiple process of Internet Explorer open each with the same HTML code the static variables are not shared because different instances of the JVM are running in each Internet Explorer process.
    Question: Is it possible to do any of the following:
    - Get multiple instances of the JVM to run as multiple Threads i.e. not as separate processed with separate memory segments?
    - Get multiple instances of the JVM to share variables?
    - Prevent multiple instances of the JVM being created so that all Java objects run in the same JVM regardless of the process that instantiated them.
    This is possible in C++ ActiveX components using shared segments across different Internet Explorer processes, as follows:
    // in DLL .cpp file
    #pragma data_seg (�.mydata�)
    int sharedVariable = 1;
    #pragma data_seg ( )
    #pragma comment(linker, �/SECTION:.mydata, RWS�)Therefore I would expect that if I could achieve a similar approach with Java this would not be prevented by the OS (i.e. Windows) due to memory faults, etc. I know that Java has different (less) memory handling capabilites so this may not be possible but any suggestions would be very much appreciated.
    Thanks,
    J

    Summary: Does any one know how to get a JVM to
    be shared across different Windows processes, as
    follows:
    Context: I have created a Java ActiveX
    component. This is instantiated and used as an
    object embedded in HTML. The HTML will always be
    executed in Internet Explorer. When I have multiple
    windows open in the same Internet Explorer process
    with the same HTML code the static variables are
    shared by all the Java ActiveX components. If I have
    multiple process of Internet Explorer open each with
    the same HTML code the static variables are not
    shared because different instances of the JVM are
    running in each Internet Explorer process.
    Question: Is it possible to do any of the
    following:
    - Get multiple instances of the JVM to run as
    s multiple Threads i.e. not as separate processed
    with separate memory segments? No, each instance of the VM is a seperate process. The closest you can come without hacking the VM and/or IE, is running multiple Java programs in the same VM, each in its own thread.
    - Get multiple instances of the JVM to share
    e variables?
    - Prevent multiple instances of the JVM being
    g created so that all Java objects run in the same
    JVM regardless of the process that instantiated them.
    RMI provides some means of inter-VM communication, but this is probably not suitable for your application. The combination of JNI + NIO also provide some capability for the VM to share memory with native processes, but its not immediately obvious to me how to extend this capability to multiple VM's.
    >
    This is possible in C++ ActiveX components using
    shared segments across different Internet Explorer
    processes, as follows:
    // in DLL .cpp file
    #pragma data_seg (�.mydata�)
    int sharedVariable = 1;
    #pragma data_seg ( )
    #pragma comment(linker, �/SECTION:.mydata,
    RWS�)Therefore I would expect that if I could achieve a
    similar approach with Java this would not be
    prevented by the OS (i.e. Windows) due to memory
    faults, etc. I know that Java has different (less)
    memory handling capabilites so this may not be
    possible but any suggestions would be very much
    appreciated.
    Thanks,
    JAlso, you may want to keep in mind that VM's that run in a browser have a SecurityManager installed that restricts them from performing certain restricted operations. For this reason it may be difficult to do anything really ambitious with an applet or, presumably, a Java ActiveX control, though I have no idea what that is.
    Good luck.

  • BOM Explosion for Multiple Process Orders

    Hi,
    I hope someone can assist me with the following: Is there a report I can run or transaction I can do to have BOM explosion for multiple Process Orders? I would like to input process orders for a week and see the BOM details per PO.
    Thanks

    Dear Sukendar,
    1.For this requirement you have to go for a Z report and you can give the Functional Spec's to prepare
    this report to your ABAP consultant.Prepare the input format,logic of the program and the output format.
    In the logic part you can make use of this Functional Modules's CSAP_MAT_BOM_READ or 
    CSEP_MAT_BOM_READ  or CS_BOM_EXPLOSION   or CS_BOM_EXPL_MAT_V2 .
    2.Using CEWB helps you to identify all the material that's having the BOM,but here the report does not
    shows you the level by level by BOM for a FERT.
    Check and revert back.
    Regards
    Mangalraj.S

  • Safari warning before quitting when multiple tabs are open?

    I'm a rather clumsy typist who often uses Apple+Tab to toggle through my open programs. This works great 99% of the time, but that other 1% is rather frustrating considering that the Q key is right next to Tab.
    Apple guys, please implement a pop up/drop down warning when attempting to quit Safari when multiple tabs are open (or at least the option to enable or disable it). I use this browser for work and often have many tabs open, so accidentally quitting the browser only impedes on my workday. I know I should be more accurate, but isn't that what part of progress is? The empowerment of laziness? =)
    Thanks for your time, and hopefully we see this included in soon-to-come upgrades!
    Oh, and if this feature is already available, feel free to show me the way.
    G4   Mac OS X (10.4.7)  

    jefftovar,
    I created and modified the Safari Keyboard Shortcut
    Quit (⌘+Q) command to (⌘ControlQ) by using System
    Preferences...>Keyboard Shortcuts.
    ;~)
    Great suggestion! But, the default Quit (⌘+Q) command is still in effect. I've looked about in trying to deactivate it, but can't seem to find it. How did you get rid of yours?
    G5   Mac OS X (10.4)  

  • A lot of memory is used when multiple tabs are open

    Is there anything that can be done about the insane memory usage in Firefox when multiple tabs are open? I often have 20+ tabs open and the amount of RAM that Firefox uses when I have it open with this many tabs is just ridiculous. As an example of this, I just restarted Firefox after checking the Windows Task Manager. The Task manager said that Firefox was using 1.2 GB of RAM. I did have 32 tabs open, but this seems excessive even for this many tabs. Some of the tabs were image heavy, but none of them had any video in them. I'd think 10 MB per tab of RAM would be plenty to cover these kinds of pages, maybe 20 MB at most. The upper end of that range would be 640 MB of RAM. Instead, it appears to be using an average of 40 MB of RAM per page when this many tabs are open.
    Is there anything that can be done to reduce amount of memory being used when multiple tabs are open? It really shouldn't need this much RAM to serve this many pages.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to process Customer Open Items? If that Customer is also an Vendor.

    Hi All,
    I need some help for  the below configuations,
    1. How to process Customer Open Items? If that Customer is also an Vendor to the Company. ( How to adjust these open amounts)
    1. How to process Vendor Open Items? If that Vendor is also an Customer to the Company. ( How to adjust these open amounts)
    Thanks
    Chandra

    Hi Chandra,
    In addition to all the above, if the Customers and Vendors are in different company codes, then, you would have to also do the following configuration.
    Execute transaction code <b>OBYA</b>, when prompted, type in 1st coy code, say A and then 2nd coy code, say B. This would take you to the "<b>Maintain FI Configuration: Automatic Posting - Clearing Accounts</b>" screen.
    In the first frame, where you have
    Posted in : A
    Cleared Against : B
    Under Receivable
    Debit Posting Key : <b>01</b>
    Account Debit : Account Number (The account can be a G/L account, a customer account or a vendor account)
    Under Payable
    Credit Posting Key : <b>31</b>
    Account Credit : Account Number (The account can be a G/L account, a customer account or a vendor account).
    In the second Frame
    Posted in : B
    Cleared Against : A
    Under Receivable
    Debit Posting Key : <b>01</b>
    Account Debit : Account Number (The account can be a G/L account, a customer account or a vendor account)
    Under Payable
    Credit Posting Key : <b>31</b>
    Account Credit : Account Number (The account can be a G/L account, a customer account or a vendor account).
    So, if you are using the Customer/Vendor approach, company A must be set up as both a Customer(Use Txn Code <b>XD01</b>) and a Vendor(USe Txn Code <b>XK01</b>) in Company B and vice versa.
    Once you have completed this set-up, you can then use transaction <b>F.13</b> and/or <b>F13E</b> to carry out your automatic clearing.
    However, if you intend to use the G/L approach, then the account numbers would be Inter-coy G/L account for each coy code as defined in the chart of accounts.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • Target Vs Acual Cost Comparison for multiple process orders

    Dear SAPians,
    I want to take a report for target vs actual cost for all process orders and product cost collectors created in a particular period. I have checked the standard report KKBC_ORD that serve my purpose but for a single order. I want the same report for multiple process orders and product cost collectors.
    Is there any standard report or should I create a report painter report. I have tried to create a report painter report based on library 7KO, but target cost was not showing for selected order.
    Kindly suggest.
    Shirazi

    Target Costs are available in library 601 for internal orders (and can be used for process/production orders).
    Regards,
    Adrian

  • How multiple users can open and update it same time in Sharepoint 2010, excel file

    we are using SharePoint 2010, multiple users can open and update the file at same time in SharePoint, I have searched a lot and
    read it, some suggestions were can create the file as share work book and then save on Share point and other were its supported only with Office web Apps, Excel Web App, we don't have office Web apps or excel web app, is there any other suggestion,
    any help will be great, thanks in advance

    Hi,
    You need office web apps for co-authoring, see Software version requirements for co-authoring in SharePoint 2013 and SharePoint Online section in below link -
    http://technet.microsoft.com/en-us/library/ff718249(v=office.15).aspx
    and
    http://office.microsoft.com/en-us/sharepoint-foundation-help/document-collaboration-and-co-authoring-HA102772333.aspx
    Edit: Link for SP 2010
    http://technet.microsoft.com/en-us/library/ff718249(v=office.14).aspx
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to delete multiple process at a time in a Process chain

    Hi,
    Is there any option to delete multiple processes at once in a Process chain in BI 7.0 ?

    Hi Swetha,
    If u want to stop a perticular proces go to sm37 give user ID (If process chain is schduled then give user ID as ALEREMOTE and if u have triggered it manually then give ur ID) select time and other options like type of process means whether it is active, canceled, ready etc. U will get ur running job.
    In sm37 at top of the screen u will get options to cancel or stop active job. But before deleting the active job just
    check the job log and also check the business impact.
    Also u can not use one process variant in multiple
    Regards,
    NR

  • Acrobat 9.5.5 multiple .pdf files open without toolbars displaying

    Recently, I noticed that, when I open one .pdf file, all toolbars I have selected as customized are displayed.  But, upon opening additional ,pdf files, those files do not display my toolbars at the top - only the file menu shows up.  If I try to close the limited toolbar files, I get the error "Adobe Acrobat 9.5 has stopped working," and the programs aborts.  I've searched the web to no avail for a solution.  My work requires I have multiple Adobe files open, but these additional files have extremely limited functionality without the toolbars.
    Event Viewer indicates the following errors:
    Faulting application path: C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.dll
    I'm running Win 7 Pro 64-bit, on Intel i7, with 14 GB RAM, 224GB SSD/68 GB free.  My system should more than amply support the application.
    My thought is a recent Adobe update or Windows update caused this anomaly.  Has anyone else experienced this issue?  Please advise - I'm desperate for a resolution.  Thanks.
    Message was edited by: psoberg
    Update - when you select View -Toolbars on the additional files, all the customized toolbars are check-marked, so they should be displaying.  But, they don't.

    Bill@VT,
    Thank you for your reply.  Your recommendation is not the issue for sure.  I had tested by opening numerous files on my system, which I know are not secure.  The first file opened with all toolbar functionality, and the rest of the files opened in limited view.  These are files I've created and opened numerous times in the past with no issues, until recently.
    I've since installed Adobe Pro XI Trial, as well as a couple other .pdf maker apps.  I had already remove Adobe Pro 9.5.5, so I can't reinstall while I have XI on my system - the installation aborts.  My assessment, after spending hours researching it, is that there's a conflict in my OS and 9.5.5.  At this point, I have to cut my losses (time & billable hours) and move onto a more stable, dependable application.  It's probably not going to be an Adobe product, sad to say.  Too many issues, too little accessible and timely support.
    I am grateful for your input in my scenario. Have a splendid day/evening!

  • Wireless mwirelessouse requires multiple clicks to open or maneuver around my iMAC. Tried new Magic Mouse still the same!

    wireless mouse requires multiple clicks to open or maneuver around my iMAC. Tried new Magic Mouse still the same!

    wireless mouse requires multiple clicks to open or maneuver around my iMAC. Tried new Magic Mouse still the same!

  • Create a CR for multiple processing with me as the current processor

    Hi
    How to create a change request for multiple processing with myself as the current processor.
    I have created a change request for multiple processing and the ystem throws me the error that "There are no suitable change requests"
    Display help shows the below
    For the upload you need a change request that has the status Considered
    and Approved or To Be Revised and ideally has a type that does
    not have the property Object List Is Binding. If the
    change request does have this property, all the entities that are uploaded must
    already be assigned to this object list.
    Please can someoen guide me on how to fix this.
    I found few threads related to this but cudint understand on how to assign a status to CR
    Thanks,
    Sharma

    Hi Prateek,
    Please can anyone give any pointers on how to set the status of change request (for multiple processing):-
    For assigning the statuses to the change request:-
    Go to t code:- MDGIMG->General settings>Process Modeling>Change Request>Edit status of change request.
    the path you mentioned is to create and edit the existing Change request statuses, what I am looking for is when I create a CR for Multi record processing and try to upload a file I get the error "There are no suitable change requests". and when I check the Status of the change request I created I see that the status is Changes to be executed (Set automatically).
    how can i set myself as the processor.
    tcode: MDGIMG->General settings>Process Modeling>Change Request>Create Change request type. Ucheck the single object checkbox and assign your userid for that CR step.
    Single object is already Unchecked  and I am using BRF+ so when I am the processor First approver is say X, I am not sure if we have any place where we can set ourselves as the user. Please let me know if I missed sumting
    Thanks
    Hi Shephalika,
    Yes I am trying to upload a file and Single object is Unchecked in the Change request type.
    Thanks,
    Sharma

  • Having multiple query windows open at once.

    I wasn't sure how to phrase it so after some digging I'm resorting to asking on here.
    I've been working out of the 'Joes2Pros' series and I work within SMMS with SQL standard installed locally for playing.
    Most of the time I like to have multiple query windows open to save queries to reference later just for examples.
    My question is that is there a way to ensure a query window is not using any databases so that when I run the lab setup scripts for Joes2Pros I don't encounter any errors without having to close my other query windows?
    Any help is greatly appreciated! Thanks in advance.

    You can accomplish this multiple ways:
    1. Have your windows open with the database context set to master (select master DB in the dropdown on the toolbar) 
    2. "USE master; go" statement as the first line in all your query windows
    3. Before you run your setup scripts, issue a kill command to terminate all other query window sessions (this will still keep the query windows open but they won't be connected to any database)
    Satish Kartan http://www.sqlfood.com/

Maybe you are looking for