Is it possible to make MIRO against multiple documents???

Dear experts ,
Is it possible to make an invoice verification against multiple delivery notes / or multiple POs??
Pls let ma  know
Thanks & regards
Anis

HI,
It is possible with Multiple allocation criteria in MIRO, but be sure multiple documents should possess the same vendor in the Purchase orders.
Also it is really not advisable as because after posting if you found or want to rectify an error wrt to a single PO you need to cancel the Invoice document which will result in cancelling the document for the entire PO's listed and after correction you need to repeat the process again which will be a real cumbersome process.
Regards,

Similar Messages

  • Process multiple documents in zip file without using ccBPM in PI

    Hi,
    Is it possible for PI to handle multiple documents within a zipped source file without the use of ccBPM?
    For example, I have an incoming source zip file containing 0.pdf, a,xml, z.pdf respectively,  After having the sender communication channel uncompress the zip file, each pdf file should be pushed to a directory on a file server, and the xml file should go through a message mapping.
    Is this possible to process all of the files without the use of ccBPM?
    Regards,
    Jim

    Hi Michal,
    Thank you for your response.  The example I provided is just one potential case.  In general, the zip file will always contain 1 xml file and 0-n PDFs, Word docs, or other types of documents.  Also, the first file in the zip may not always be the xml file, which is what I was trying to portray by my example.  Since I am not sure how many non-xml files will be included, I did not know if I could handle all of them directly, without ccBPM.
    At this point, I am leaning towards using a script preprocessor to uncompress the zip, then for each file found, push the xml file to an NFS channel which will process/map the xml, and push every other file type to another NFS channel to copy these documents to a predetermined directory on a predetermined server.
    What are your thoughts on this approach?
    Thanks and Regards,
    Jim

  • It's possible to make Hierarchical Tree from multiple tables ?

    the famous example for Hierarchical Tree is about employee_id and manager_id field in employees table ............ so I was wondering it's possible to make[b] Hierarchical Tree from multiple tables ? and How ??
    if the answer associate with example that will be so kind of you :D
    and thanks in advance.

    HI
    use curose in when new form instance or procedure then u can got data more then one table like that
    DECLARE
    htree ITEM;
    top_node FTREE.NODE;
    new_node FTREE.NODE ;
    child_node ftree.node ;
    item_value VARCHAR2(30);
    cursor prime_cur is select main_desc mgr_name, main_code dept
    from pur_item_group_mst;
    cursor child_cur(v_dept number) is select sub_desc,sub_code
    from pur_item_group_dtl where main_code = v_dept ;
    BEGIN
    htree := Find_Item('tmp.tree4');
    for dummy in prime_cur loop
    new_node := Ftree.Add_Tree_Node(htree,
    ftree.root_node,
    Ftree.PARENT_OFFSET,
    Ftree.LAST_CHILD,
    Ftree.EXPANDED_NODE,
    dummy.mgr_name,
    'D:\ORYX_POLYBAGS\accept',
    dummy.dept);
    for child in child_cur(dummy.dept) loop
         child_node := Ftree.Add_Tree_Node(htree,
    new_node,
    Ftree.PARENT_OFFSET,
    Ftree.LAST_CHILD,
    Ftree.EXPANDED_NODE,
    child.sub_desc||' '||'('||child.sub_code||' '||')',
    'D:\ORYX_POLYBAGS\next',
    child.sub_code);
    end loop;
    end loop;
    END;
    Rizwan Shafiq
    www.rizwanshafiq.blogspot.com

  • Is it possible to make Multiple Broadband connecti...

    Hi
    I have been using BT broadband for some years using a BT Homehub 1.5.  
    My Freesat box is plugged in to my Homehub, so that I can reliably get BBC iPlayer on the main household TV, so I am unable to move the hub to improve wireless reception elsewhere in the house. 
    The wireless connection in most of the house is OK, but in one room the reliability is poor and often signal strength shows as low. There is a phone line in this room and I was wondering whether it is possible to make a connection to this line using either a separate modem (Speedtouch 330), or a second hub.
    If this is a possible solution then the computer connected to the new modem would affectively be a wired connection, leaving the wireless option still available to the homehub. Both the new modem and the homehub would need to be able to access my BT Broadband account.
    If this is technically not possible I seem to have options of using an ethernet connection from the 'poor reception' room to my hub (not really practical as the house has solid floors and routing the cable would be a nightmare), or perhaps upgrading my hub (and wireless dongle) to a later version. Any advice would be very welcome.
    thanks
    MalcDu   
    Solved!
    Go to Solution.

    MalcDu wrote:
    Hi,
    this looks good.
    Would it be worth upgrading the hub and dongles at the same time or is this overkill
    MalcDu
    No, I would strongly advise that you keep using the home hub 1.5, as in my opinion, the version 1.0 and 1.5 are the most stable of the home hubs, and do not have some of the problems of the later versions.
    If you want to add extra wireless coverage, then an additional wireless access point is the best option, connected to the far end of the powerline adapters.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Is it possible to make a button with multiple paths?

    Hello and good day Everyone
    I want to make a flash game with a map leading to various places for example school or beach like this http://www.yotreat.com/sites/default/files/190-160_1286.jpg
    if the player goes to the school she will find the teacher, and if the player goes to the beach se will find the coach.
    How can I make the player (for example) talks to the teacher at school, returns to the main map, and goes to the beach to talk with the coach, yet if she goes to the school again, the dialogue with the teacher won't be the same with first dialogue?
    =>>> Is it possible to make a button with different paths to go? As if you've watched frame A, then you push the same button again it will take you to frame B??? <<<=
    Sorry for my confusing description... I hope you get the idea >,<
    Im so desperate... I've been searching for articles about this since yesterday and I still can't find one to solve this problem of mine.
    Making games is my dream... I've made some very simple games, but I want to try a new level of difficulty
    Please help me? (>o<

    Thank you for the advice, sir Ned Murphy!
    Yes, I try to use variables now, but face another problem with it... would you please tell me what's wrong with my script?
    Here, in label: "School" I type:
    on (release) {
    if (point = 0){
    gotoAndStop("dialogue1");
    else if (point = 10){
    gotoAndStop("dialogue2");
    else {
    gotoAndStop("dialogue3");
    (it's only a testing, so I only use these 4 labels)
    and in label: "dialogue1", "dialogue2",and "dialogue3" I type:
    on (release) {point += 10;}
    on (release) {
    _root.gotoAndStop("school");
    The result when I test movie:
    1. At "School" (shows point=0), I click the button,
    2. then occurs "dialogue2" (shows point=10), I click the button,
    3. then back at "school" (shows point=20), I click the button,
    4. then occurs "dialogue2" again (shows point=10)
    even the first shot is wrong
    point=0 should be the entrance to "dialogue1", but all I can get is "dialogue2"...
    Please tell me what's wrong with my script, sir Ned Murphy,
    Thank you very  much
    Regards,
    Tami

  • Single Excise Invoice Posting against multiple Goods Receipt.

    Hi,
    We made a Purchase Order, say 4500000753, of 100 Qty,
    The Vendor sent us the Material in two different Challans but in same date and two created two Material Documents,say 5000000772 & 5000000773 for Goods Receipt.
    The Vendor sent us single Excise Invoice for both the Challans (goods receipt). Please advise how to post the Excise Invoice.
    We tried to capture Invoice against Purchase Order, but the system is giving the following message:
    Document 4500000753   does not contain any selectable items
    My Queries / doublts
    1. Is it possible to post excise document against multiple goods receipt documents.
    2. In what case we excise posting against Purchase Order and what is configuration required.
    3. Can we post excise invoice with two different Invoice Numbers like 123-A & 123-B
    Please guide.
    Regards,

    Hi Jeyakanthan,
    Thanks for the reply.
    I have gone thru the "Multiple Goods Receipts for a Single Excise Invoice " in Sap Help Documentation, what I have understood is that we can do multiple Goods Receipt against a Single Invoice. Here in this case we do the Goods Receipt against Purchase Order , do the Invoice Capture for first goods receipt againts Purchase Order and we enter the Invoice Number (say 745, sent by the Vendor) while capturing excise invoice. When the second shipment (against the same PO) comes, we do goods receipt and we refer the "Only Refer Excise Invoice" while doing the goods receipt. Finally after when we have entered all the shipments for the PO, we do the Excise Posting.
    Here in our case we have already posted the Goods Receipt (without entering the Invoice Number in first goods receipt) and now we want to capture & post excise invoice for a Single Excise Invoice (Invoice No. say 745,).
    Please correct me if my understanding is wrong.
    Here we have got two options:
    a. Reverse all the goods receipt & re-enter the goods receipt .
    b. post two separate excise invoice against each goods receipt mentioning dummy excise invoice number like 745-A & 745-B.
    Option a seems difficulty as we will have to reverse all the subsequent goods receipt & transfer posting documents.
    Option b seems legally wrong, as per understanding.
    Request you to please advise.
    Regards
    PK

  • Is it possible to make a partition in Windows 7 and then place OS X on that partition?

    My employer just gave me a new MBP 13" with Windows 7 on it.  It has bootcamp running, but no option to boot in Mac OS.  IT dept. said they deleted Mac OSX Lion due to security concerns (?).  In any case, as I travel quite a bit and have and ipad and iphone, I would like to use Mac OSX for personal use and Windows 7 for work.
    Is it possible to make a partition in Windows 7 and then place Mac OSX Lion on the partition so that I do not need to reinstall Windows?   I know it would be possible to wipe the HDD and then add Mac OS, then bootcamp, then Windows 7, but adding again would get my IT dept involved which would put me back to square one.
    Any help would be appreciated!!
    JF

    Ok let me ask you IF the IT department of your workplace does NOT want OS X installed on "THEIR" (The Companies) computers because of what they think is some type of security issue why are you trying to go against their wishes and install OS X on a computer that is NOT owned by you.
    That could cost you your job.
    If you continue down this path you will screw up the Windows install and have to take the system back to the IT department to get it fixed. What do you think they will say at that point?
    Do as you like but you would be better off just buying your own Mac computer if you are set on using OS X as your personal operating system.

  • Is it possible to make an air application maximizable/non-maximizable programmatically at runtime?

    Is it possible to make an air application maximizable/non-maximizable programmatically at runtime?

    Sort of. Technically it's a NativeWindow which is maximizable or not, not the app itself. A NativeWindow is created as maximizable or not via NativeWindowInitOptions, and it can't be changed after it's created. Now, when you setup the "default content" window options with AIR, the runtime is basically creating the first window for you as a convenience, with those settings. However, there's nothing stopping you from making your initial content nothing more than a hidden window which will create a new window as maximizable or not. At this point, it would not be hard to re-create your main window with different maximizable values. (This is also how I implement multiple-instance/window apps, since only 1 AIR app can be running at a time.)
    Hope that helps!
    -Aaron

  • Hello, i created 5 different books (photo album) and i would like to know if it's possible to make one single order (and pay the transportation fees only once...) i couldn't find how

    hello, i created 5 different books (photo album) and i would like to know if it's possible to make one single order (and pay the transportation fees only once...) i couldn't find how

    Soory, no, it is not possible. You can only combine multiple copies of the same book into one order.
    Regards
    Léonie

  • OEM12c Job - Run a SQL Script from a central location against multiple targets

    Hi All:
    I need to execute a SQL script that can be run as OEM Job against multiple targets from a single location so that the output csv files are all in that central location. My problem is that the sql script job documentation says "Make sure that the script file is installed in the appropriate location on all targets". Is anyone aware of a way I can do this so that the SQl script is executed from a location on my OMS console?
    Cheers

    Hi
    Create SQL job to run against on the server. Save those results (csv) file in local target. And crete one OS job, to collect all csv files into your OMS Console.
    Regards
    Krishnan

  • Query in  Receipts application against multiple invoices

    Hi,
    There is a requirement to apply a single receipt against multiple invoices pertaining to different customers.For these customers ,relationship has been already set in the customer master.How to achieve the same?
    Breifing: Inv.1 of Customer A.= $50
    Inv.2 of Customer B= $100
    Receipt1 for $150 to be applied against Inv.1 and Inv.2
    Customer A and Customer B relationship set up already.
    Regards,
    Bala.

    Hi Bala,
    Create a receipt with the customer from whom the money has been received and apply it to both the invoices by selecting the same in LOV.
    Make sure that the "Bill To" type relationship has been created in the customer master for these two customers.
    Gajendra

  • MIRO against delivery note

    Hi,
    I want to do the MIRO based on the outbound deliveries created for stock transfer
    process, I'm using the option delivery note for MIRO but system is not permitting and
    an error coming "No (suitable) item found for purchase 0006004520"-"PO item 0006004520
    00010 does not allow invoice receipt". Plz suggest how I do this.Actually my requirement
    is that stock transfer orders are being delivered more than 3-4 times and we can not
    take PO no for MIRO because vendor will be changed in each transaction.Plz advice
    any better solution.
    regards,
    SPS.

    Hi
    In case of STO ,
    MIRO for material is done on receiving plant
    while for freight it may be done supplying plant.
    But you make sure that DCGR gets created when you done PGI for your outbound delivery.You can see it fromPO History.
    Then only supplying plant can able to do MIRO against DCGR for freight amount.

  • The reporting point backflush is not possible for make-to-stock repetitive

    Hi All,
    we are using the assembly backflush in the MTS REM process. we are need to do the reporting point backflush
    if we tick against the RP backflush. what will be the effect in the process while confirmation.
    i read the sap library . it say like
    The reporting point backflush is not possible for make-to-stock repetitive manufacturing.
    is it correct.
    Thanks
    VRaj

    Hi mangal,
    i did all the setting as you said. but when click on the reporting point.
    system thru error
    Error reading reporting point information
    Message no. RM111
    Diagnosis
    The repetitive manufacturing profile is set for the reporting point procedure. However, either no reporting points exist for the material or they are incorrect. Two common reasons for this are:
    The repetitive manufacturing profile has been changed in the current session.
    You have not defined any milestone operations in the routing.
    When creating the product cost collector, no reporting points were created.
    Procedure
    Two alternative solutions are possible:
    Assign a repetitive manufacturing profile with no reporting point procedure to the material in the material master record.
    Recreate the reporting points by recosting the product cost collector. To do this, the following prerequisites must be met:
    In the material master record, in the production version, you must enter a routing under either detailed planning (first priority) or under rate-based planning (second priority).
    Milestone operations must exist in this routing. The system ususally automatically creates the reporting points from these milestones when creating a product cost collector or when creating a production version.
    how to create the REPORTING POINT

  • How to create a single business service against multiple Queues in OSB

    Can I create one business servcie against multiple jms queues.
    and based on content routing i want to pass the queues' JNDIname
    for example
    jms://localhost:7001/jms.cf/$variable_queueName
    and in runtime i want to provide the queue name for variable "variable_queueName" in the above endpoint URI.
    is it possible?.
    Thanks,
    Narasimha.
    Edited by: user13154768 on Jun 2, 2010 5:03 AM

    You can use routing options action to achieve this.
    see Dynamic Service Invocation sample under OSB code samples :
    http://www.oracle.com/technology/sample_code/products/osb/index.html
    Dynamic Service Invocation Sample:
    http://www.oracle.com/technology/sample_code/products/osb/samples/DYNAMIC-DISPATCH.zip

  • Is it possible to make a planning on a cost element group?

    Is it possible to make a planning on a cost element group? I have created several cost element groups with the appropriate hierarchy. Now my aim is to try to allocate cost on an element cost group.
    Thank you in advance for your reply.
    Best regards
    Pascal Cuenin

    Yes you can - There are multiple ways of doing it.
    If you have the BPS module, you can do it over there - If you want to do it in R/3, you can there too. Go to KPZ3 to view previous budget planning for Cost Center Groups.
    Hope that helps.
    Thanks,
    Nandita

Maybe you are looking for