How to run the Invoices in different groups within the batch in AP

Need to know that how to run the Invoices in different groups within the batch. This will be of very helpful when we deal with lot of lines under one batch. (e.g) like somewhere we issued a Corporate Card to all the employees Via Bank Of America. Every Month they will send the complete details of all the employees who ever swiped the corporate provided BOA. Accordding to Natco all those lines should be loaded as One Invoice so that a Single Payment can be provided to BOA and it will also makes their life easier. This standard program sometimes it works normal sometimes it will run like a TORTOISE. So thats why in the manual they suggested to use GROUP ID to split the Invoice Load.
So plz tell me how we can run it
plz give me the solution
thanks

can you give me some material or document on that so that i can read actuaaly i need to make doc on it..

Similar Messages

  • HT2506 After I save my pdf document, the links to different pages within the pdf take me to the wrong page. How do I fix it?

    After I save my pdf document, the links to different pages within the pdf take me to the wrong page. How do I fix it?

    May you please elaborate... How are you creating the pdf documents (procedure, software, etc.)? How are you inserting links into your documents?... etc., etc.

  • Why is the INVOICE date different than the ORDER date?

    Something odd is happening... I'm receiving workflow notifications from Business Catalyst for Invoices, but sometimes the date of the order is the day before I receive the invoice. This is causing havoc on the shipping side because when I print out the invoice packing slips and export the order files, they don't match up and sometimes customers get missed.
    Any idea why the invoice date would be different than the order date and how do I fix it to make them the same?
    Thanks in advance!

    Hey there,
    An invoice is not an order. That is an important thing to know.
    An order is generated through a few means but mainly as soon as one product is added to a cart - that order exists and the date marked. An invoice is a purchase and comes from an order.
    Create an order in the admin yourself and save it but add no invoice number. You can see you just made an order and you will see the button to generate invoice.
    API can make an order and no invoice, a person can add items to cart and finish it the next day if they have their session open that long... Lots of reasons why these dates may differ.

  • How can i share documents with different users on the same mac?

    How can i share documents with different users on the same mac?

    Shared how? The other users can read the documents or you all can read and write the documents?
    The first is easy just place the documents in /Users/Shared anyone can access the files there and the other users will be able to read them.
    The second is a bit trickier.

  • How to run a remote windows dll files and the drivers of the system using j

    Dear Friends,
    I need some valuable info regd how to run a remote windows dll files and the drivers of the system using java
    reply regd thanking you

    Please don't make duplicate posts like this.

  • How to run others application in Oracle Forms on the web version?

    How to run others application in Oracle Forms on the web version?

    Pang,
    guess that you want to start client side programs from Forms on the Web. There is a sample on OTN (host bean) that allow you to acces sthe client and start executables.
    Frank

  • Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    is this a windows in bootcamp question ?

  • How can I go to different positions within the video

    Hi,
      I need to be able to play a video at different positions within the video.  Can someone tell me how I can do this?

    in case you using a netstream object you can call:
    ns.play(startinms);

  • How to make the symbol to be resolved within the shared library ?

    I have two definitions of a symbol, one is in the main code, the other in a shared library. I want the symbol to be resolved within the shared library if it needed in the shared library.
    From the 'C++ User�s Guide', use the option '-Bsymbolic' to build the shared library is a choice. But it also said 'Never use -Bsymbolic with programs containing C++ code, use linker map files instead. So I have to try to use the map file, but I did not get more useful information from 'Linker and Libraries Guide'.
    I want to know what should be included in the map file and how to generate the map file?
    Additionally, from the 'Linker and Libraries Guide', the 'Direct Binding' also could resolve this problem. And I tried to build the shared library by the '-B direct' option, it works.
    Could anybody tell me what's the difference between the '-Bsymbolic' and '-B direct'?
    Any comments are appreciated.

    You didn't provide fun.h, and you didn't show all the commands that you must have used -- there are no commands that compile the source code into .o files. So I can't tell why the -xldscope option didn't work for you.
    Problems and errors that I see in your example:
    Functions func and swap are referenced from C code, but swap and one of the func functions are compiled by the C++ compiler and will get mangled names. If you compile a function with the C++ compiler that is to be called from C code, you need to declare the function as extern "C". But the extern "C" in a shared header needs to be guarded by +#ifdef __cplusplus+, since a C compiler won't understand the declaration.
    When you build a shared library, you must explicitly list the libraries it depends on, since no dependencies are created by default. For a C++ library, you need at least -lCrun -lc in that order. Otherwise, in a real-world program you can have program failures due to incorrect library initialization order. To be sure you have listed all needed libraries, use the -zdefs option, which causes the linker to complain about missing definitions.
    To be sure the shared library is picked up at run time, provide a RUNPATH via the -R option when you build the executable.
    The -xldscope option must appear on compile commands for the files where you want it to take effect. It has no effect on a link command, because the option affects how code is generated.
    Here is my rewrite:
    % cat fun.h
    #ifdef __cplusplus
    extern "C"
    #endif
    void func();
    #ifdef __cplusplus
    extern "C"
    #endif
    void swap();
    % cat fun.c
    #include <stdio.h>
    #include "fun.h"
    extern "C" void func()
        printf("func in the shared lib\n");
    extern "C" void swap()
        func();
    % cat fun_in.c
    #include <stdio.h>
    #include "fun.h"
    void func()
        printf("func in the main code\n");
    % cat main.c
    #include <stdio.h>
    #include "fun.h"
    int main()
        func();
        printf("invoke the swap:\n");
        swap();
    % CC -G -xldscope=symbolic fun.c -Kpic -o liboutside.so -lCrun -lc -zdefs
    % cc -o run main.c fun_in.c -L. -loutside -R .
    % ./run
    func in the main code
    invoke the swap:
    func in the shared libAs you can see, it works as advertised.
    Please note that the -xldscope option affects all functions in the module. If you need more fine-grained control, you must add declarations to the source code, or use a mapfile instead of -xldscope .

  • How to get absolute path of a form within the Forms

    Aslam o Alikum (Hi)
    How to get absolute path of a form within the Forms 6i or 9i
    For example
    i am running a from "abc.fmx" from C:\myfolder directory
    can i get the form path 'C:\myfolder' by calling any any function from "abc.fmb"

    There is no direct call that will always work. What you need to do is call get_application_property(current_form). This may have the full path in it, depending on if that path was defined when the form was launched. If there is no path, then you need to use TOOL_ENV.GETVAR to read the Forms<nn>PATH and the ORACLEPATH, parse those out into individual directories and then check for the FMX in each.
    I already have some code to do all this for you see:
    http://www.groundside.com/blog/content/DuncanMills/Oracle+Forms/?permalink=4A389E73AE26506826E9BED9155D2097.txt

  • How to make use of adjacent data elements within the same buffer

    Hi,
             Does anyone know how to make use of adjacent data elements within the same buffer? To make my question clearly, I would like to give you an example. In my application, I set "sample to read" as 10 which means at each loop 10 data samples will be taken into a buffer. Now, what I would like to do is to do some calculations on adjacent data samples in same buffer. I tried to use "shift register" for this, but it seemed to me that it only can deal with the calculation between data from adjacent loops. In other words, it skips 9 data elements and take the 10th one for the calculation.
             Here I also attach my VI showing what I did.
        Thank you very much in advance,
                            Suksun
    Attachments:
    wheel_encoder_1.vi ‏98 KB

    Hi Suksun,
          I hope you'll forgive me for distilling your code - mainly to understand it better.  I tried to duplicate your logic exactly - which required reversing the "derivatives"-array before concatination with the current samples array.  As in your code, the last velocity is being paired with the first position.  If first velocity is really supposed to be paired with first position, just remove the "Reverse 1D Array" node.
    cheers
    Message Edited by Dynamik on 01-07-2006 03:17 AM
    Message Edited by Dynamik on 01-07-2006 03:19 AM
    When they give imbeciles handicap-parking, I won't have so far to walk!
    Attachments:
    encoder2.GIF ‏14 KB
    encoder2.vi ‏102 KB

  • I bought an iphone 5 about 4 months ago and got applecare. yesterday I had to get on a different plan within the same company so i traded in my phone and got a new iphone 5. can i transfer my applecare to this new phone or would I have to buy it again?

    I bought a 16gb iphone 5 about 3 months ago and got applecare. yesterday I had to get on a different plan within the same company so i traded in my phone and got a new 32gb iphone 5. can i transfer my applecare to this new phone or would I have to buy it again?

    As this is a WW forum with different AppleCrare offerings you need to specify which Country
    as in North America has AppleCare+ and everywhere else AppleCare ,very different products
    So to avoid incorrect guidance suggest you specify Country

  • Querying for the members of a group using the PRC

    I've been combing through the PRC API for a way to query for the members of a group (not the ACL, but the member users and groups).
    I can't find anything that seems to do this for Plumtree 5.0x using the PRC. Am I missing something or is this just not implemented? Seems like a major oversight to me. If any Plumtreevians are listening, can I add a feature request for those methods in your next release of the WS Server?
    Thanks!
    Chris Bucchere | bdg | [email protected] | http://www.bdg-online.com
    Like blogs? Check out http://bdg-plumtree.blogspot.com

    If you go into the Calendar section and select the Edit option for that calendar and then change the permissions for that calendar people should be able to subscribe to it.

  • A PO has posted,goods r received but the invoice is not matching with the..

    hi
    A PO has posted,goods r received but the invoice is not matching with the PO as the TAX was reduced after posting. PLz clarify
    can some explain the issue plz

    Hi,
    1. You are talking about which tax (Is it Excise Duty + CST/VAT) if yes then you can post the Excise invoice with correct duty amount in J1IEX and then same will get defaulted in MIRO as per the duty posted in Excise Invoice not as per PO.
    If you have already posted the  excise invoice then go for cancellation of same in J1IEX and then cancel GR and Post excise invoice to reverse Part 2 entries and then again do GR and Post Excise invoice with correct amount and then do LIV.
    2. If it is only CST / VAT then simply use the appropriate tax code in MIRO as per the revised tax rate.
    For e.g. if in PO Tax code is 4% VAT and now if you get invoice of say 1% VAT from vendor then simply select the tax code of 1% VAT in MIRO similarly can be done in case of CST and Service Tax also. Only in case of Excise duty you have to follow the above method.

  • HT1657 I rented a movie on apple tv, how do I watch it on my iPad within the 30 days?

    I rented a movie on apple tv, how do I watch it on my iPad within the 30 days?

    If you rented it on your Apple TV, then from http://support.apple.com/kb/HT1657 :
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer.

Maybe you are looking for

  • Problem with submit report for transaction LT23

    Hi, I want to submit report for transaction LT23 based on the double click on a field in the output of my report. I am using selection table to pass values. The problem is I have  something called dynamic selections. I am using some selection fields

  • Problem in Mail with signatures

    Has anyone experienced this? I'm running Leopard and using two different user identities("A" and "B" on my macbook. In one identity "A", I use signatures in Mail for two different email accounts. Sometimes I log out of identity "A" and use Mail in id

  • How to get SlingScriptHelper in servlet?

    I need to get a SlingScriptHelper instance from within my servlet. Either a ComponentContext or BundleContext will do as well, as my only goal is to get sling services using it. Using SCR @Reference injection is not a solution for me, because I will

  • Ipod Photo and Video Problems

    my Ipod 5th generation recently got the IOS 8 update. Don't get my wrong i love it but it's deleting my pictures as I get more. It's driving me insane. It's deleted my pictures from the time I got it (March 25ish) to about 3 weeks ago. i went from a

  • Finding BADI

    Hey, I want to find whether i can enhance the standard code using badi. how do i find which badi is available also i need some basic help in badi as i havent worked on it before. please help. Paola.