F110 - clear debits in one vendor with credits in another vendor

Hi Experts
We have a scenario where there are two vendor accounts created in SAP for two different business processes done with same vendor.
For example -
Vendor A  created in SAP for all finished goods purchases from XYZ ltd
Vendor B created in SAP for all raw materials purchased from XYZ ltd
Both Vendor A & Vendor B have same payment details using the concept of alternate payee.
So it is possible some times that Vendor A has debit balance  and Vendor B has credit balance.
In such circumstances, we want to net off Vendor A balance with Vendor B and make only the net payment to XYZ limited.
We want to achieve these through F110 as we need to reflect these details on payment remittance sent to vendor.
We do not want to use F.13 functionality by setting up OB74 configuration.
Please let me know if it is possible. Any inputs on this will be helpful.
Regards,
Santosh

Hi
Thanks for your reply. Alternate payee will work only to ensure that payments are made to the desired vendor. However it does not help clearing in credit and debits in different vendor accounts though they have same alternate payee. It consider each vendor as different and makes payment individual even though they have same alternate payee. Could you please suggest if there are any other work around.
Regards,
Santosh

Similar Messages

  • Using one counter with FiniteSamps and another with ContSamps

    I am trying to use 2 counters on the USB-6229 (or USB-6259), where one counter is set up for FiniteSamps and another for ContSamps. I have the following MeasurementStudio code:
    ErrChk DAQmxCreateCOPulseChanTicks(hCnt0, "Dev1/ctr0", "", "20MHzTimebase", DAQmx_Val_Low, 0, 400, 400);
    ErrChk DAQmxCfgImplicitTiming(hCnt0, DAQmx_Val_FiniteSamps, 100);
    ErrChk DAQmxStartTask(hCnt0);
    ErrChk DAQmxCreateCOPulseChanTicks(hCnt1, "Dev1/ctr1", "", "20MHzTimebase", DAQmx_Val_Low, 0, 400, 400);
    ErrChk DAQmxCfgImplicitTiming(hCnt1, DAQmx_Val_ContSamps, 2);
    ErrChk DAQmxStartTask(hCnt1);
    When I run it, I get a run-error 50103 "The specified resource is reserved". If I change the FiniteSamps to ContSamps on the first counter, everything works fine.
    If I use only one counter with FiniteSamps, everything also works fine.
    Is this a bug in DAQmx or the dual counter use on M-series devices is limited to ContSamps?
    Vic
    Solved!
    Go to Solution.

    Hi Vic,
    This is actually expected on an M Series device.  Here's a timing diagram from the M Series User Manual that might make this a bit more clear:
    The device actually uses one counter to gate the other so the result is a finite pulse generation.  If you can provide the gate from another source, you may configure a continuous pulse generation on both counters and gate them (DAQmx calls this a "Pause Trigger") from this external signal. 
    You might also want to look into using Correlated Digital I/O to generate multiple finite pulses (up to 32 lines on your 6229 and 6259).  You could use one of the counters to generate a timebase for the digital lines, and build the waveform accordingly.
    One thing to note is that our new X Series boards can generate a finite pulse generation on a "single" counter (there is actually a paired internal counter that allows for this).  There are four user-accessible counters on X Series devices, meaning you could generate four finite pulse trains.
    Best Regards,
    John
    John Passiak

  • SYNC iTunes on one computer with iTunes on another computer

    I have two computers and I have used home share. But I would like to be able to bring my playlist and ratings over to another computer and be able to "SYNC" between the computers so when I change a rating is is reflected on the other computer.
    The two computers have Windows 7 Ultimate 64bit and Windows home server (windows server 2003).
    I realize that iTunes doesn't have this built in but if there are other suggestions I would like to hear them.

    You can only sync music and videos for an iTunes library other than the one you synced with normally if y use the manual method of syncing
    iTunes: Syncing media content to iOS devices and iPod        

  • Updating one table with colum of another one

    Oracle 11g
    Hi,
    i'im trying to update two colums from SUPPORT (SUPPORT_X, SUPPORT_Y) table with two colums of POST_HTA_BT( POSTHTABT_GPS_X, POSTHTABT_GPS_Y ) table
    Understand that the two tables have the colum below:
    SUPPORT(SUPPORT_ID,SUPPORT_PLAQUE,POSTHTABT_ID,SUPPORT_X, SUPPORT_Y,....)
    POST_HTA_BT (POSTHTABT_ID,POSTHTABT_GPS_X, POSTHTABT_GPS_Y,..)
    The SUPPORT_PLAQUE has the varachar type. Except the keys, other colums are varchar type in the two tables.
    The point here is to update the support_x, support_y with posthtabt_gps_x and posthtabt_gps_y.But before update we must cheik if the fifth number of support plaque is a character number between "0" to "9' and if the rest of the caracter of the support_plaque is '00000'
    Please note that the support_plaque is stored in the table with the form: "0025800000"!!!
    So i did the script below i'm trying to execute in sql developper.
    SET SERVEROUTPUT ON
    DECLARE
       chiffre_liste varchar(200):= '0','1','2','3','4','5','6','7','8','9';
       CURSOR CUR_GPS_SUPPORT IS
           select SUPPORT.SUPPORT_X,SUPPORT.SUPPORT_Y,POSTE_HTA_BT.POSTHTABT_ID,SUPPORT.EXPL_ID,
                  SUPPORT.SUPPORT_PLAQUE,POSTHTABT_GPS_X,POSTHTABT_GPS_Y
              from   SUPPORT,
                   POSTE_HTA_BT
            where
              SUPPORT.SUPPORT_X  IS NULL and
              SUPPORT.SUPPORT_Y  IS NULL and
              SUPPORT.POSTHTABT_ID   = POSTE_HTA_BT.POSTHTABT_ID and
              SUPPORT.EXPL_ID  = POSTE_HTA_BT.EXPL_ID
              order by SUPPORT.POSTHTABT_ID;
           w_POSTHTABT_ID         POSTE_HTA_BT.POSTHTABT_ID%type;
           w_SUPPORT_X            SUPPORT.SUPPORT_X%TYPE;
           w_SUPPORT_Y            SUPPORT.SUPPORT_Y%TYPE;
           w_EXPL_ID              SUPPORT.EXPL_ID%TYPE;
           w_SUPPORT_PLAQUE       SUPPORT.SUPPORT_PLAQUE%TYPE;
           w_POSTHTABT_GPS_X      POSTE_HTA_BT.POSTHTABT_GPS_X%TYPE;
           w_POSTHTABT_GPS_Y      POSTE_HTA_BT.POSTHTABT_GPS_Y%TYPE;
    BEGIN
        DBMS_OUTPUT.PUT_LINE('Chargement des coordoonnées GPS -Mise à jour Coord GPS des supports de Départ');
         FOR CUR IN  CUR_GPS_SUPPORT LOOP
              w_POSTHTABT_ID    :=   cur.POSTHTABT_ID;
              w_SUPPORT_PLAQUE  :=   cur.SUPPORT_PLAQUE;
              w_SUPPORT_X       :=   cur.SUPPORT_X;
              w_SUPPORT_Y       :=   cur.SUPPORT_Y;
              w_POSTHTABT_GPS_X :=   cur.POSTHTABT_GPS_X;
              w_POSTHTABT_GPS_Y :=   cur.POSTHTABT_GPS_X;
            if substr(cur.support_plaque,5,1)  in chiffre_liste  and substr(cur.support_plaque,6,5)='00000'
               w_SUPPORT_X := CUR.POSTHTABT_GPS_X
               w_SUPPORT_Y := CUR.POSTHTABT_GPS_Y
            END if;
            EXCEPTION WHEN NO_DATA_FOUND THEN w_SUPPORT_X := NULL and w_SUPPORT_Y := NULL;
            END;
            --Update de la table des supports
             update SUPPORT
                set SUPPORT_X            = w_SUPPORT_X,
                    SUPPORT_Y            = w_SUPPORT_Y
             where  SUPPORT_PLAQUE       = w_SUPPORT_PLAQUE;
             -- On valide imm?diatement
             commit;
             EXCEPTION when no_data_found then null;
             -- Pas de coordonnées trouvées
             END;
    END;
    and i got the following errors:
    Rapport d'erreur :
    ORA-06550: Line 2, colum 34 :
    PLS-00103: Symbole "," rencontré à la place d'un des symboles suivants :
       * & = - + ; < / > at in is mod remainder not rem
       <exposant (**)> <> or != or ~= >= <= <> and or like like2
       like4 likec between || multiset member submultiset
    ORA-06550: Ligne 2, colonne 52 :
    PLS-00103: Symbole ";" rencontré à la place d'un des symboles suivants :
       ) , * & = - + < / > at in is mod remainder not rem =>
       <exposant (**)> <> or != or ~= >= <= <> and or like like2
       like4 likec between || multiset member subm
    ORA-06550: Line 38, colum 48 :
    PLS-00103: Symbole "CHIFFRE_LISTE" rencontré à la place d'un des symboles suivants :
    Symbole "(" a été substitué à "CHIFFRE_LISTE" pour continuer.
    ORA-06550: Line 39, colum 12 :
    PLS-00103: Symbole "W_SUPPORT_X" rencontré à la place d'un des symboles suivants :
       ) , * & - + / at mod remainder rem <exposant (**)> and or ||
       multiset
    ORA-06550: Line 40, colum 12 :
    PLS-00103: Symbole "W_SUPPORT_Y" rencontré à la place d'un des symboles suivants :
       . ( ) , * @ % & = - + < / > at in is mod remainder not rem
       <exposant (**)> <> or != or ~= >= <= <> and or like like2
       like4 likec between || mult
    ORA-06550: Line 41, colum 9 :
    PLS-00103: Symbole "END" rencontré à la place d'un des symboles suivants :
       . ( ) , * @ % & = - + < / > at in is mod remainder not rem
       <exposant (**)> <> or != or ~= >= <= <> and or like like2
       like4 likec between || multiset memb
    06550. 00000 -  "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    I verified the line number, but don't see the error in my code.
    Please could you help me?
    peace

    Here the new  script
    SET SERVEROUTPUT ON
    DECLARE
       TYPE chiffre_liste IS TABLE OF VARCHAR2(10);
        my_list  chiffre_liste;
       CURSOR CUR_GPS_SUPPORT IS
           select SUPPORT.SUPPORT_X,SUPPORT.SUPPORT_Y,POSTE_HTA_BT.POSTHTABT_ID,SUPPORT.EXPL_ID,
                  SUPPORT.SUPPORT_PLAQUE,POSTHTABT_GPS_X,POSTHTABT_GPS_Y
              from   SUPPORT,
                   POSTE_HTA_BT
            where
              SUPPORT.SUPPORT_X  IS NULL and
              SUPPORT.SUPPORT_Y  IS NULL and
              SUPPORT.POSTHTABT_ID   = POSTE_HTA_BT.POSTHTABT_ID and
              SUPPORT.EXPL_ID  = POSTE_HTA_BT.EXPL_ID
              order by SUPPORT.POSTHTABT_ID;
           w_POSTHTABT_ID         POSTE_HTA_BT.POSTHTABT_ID%TYPE;
           w_SUPPORT_X            SUPPORT.SUPPORT_X%TYPE;
           w_SUPPORT_Y            SUPPORT.SUPPORT_Y%TYPE;
           w_EXPL_ID              SUPPORT.EXPL_ID%TYPE;
           w_SUPPORT_PLAQUE       SUPPORT.SUPPORT_PLAQUE%TYPE;
           w_POSTHTABT_GPS_X      POSTE_HTA_BT.POSTHTABT_GPS_X%TYPE;
           w_POSTHTABT_GPS_Y      POSTE_HTA_BT.POSTHTABT_GPS_Y%TYPE;
    BEGIN
        DBMS_OUTPUT.PUT_LINE('Chargement des coordoonnées GPS -Mise à jour Coord GPS des supports de Départ');
        my_list := chiffre_liste('0','1','2','3','4','5','6','7','8','9');
         FOR CUR IN  CUR_GPS_SUPPORT LOOP
              w_POSTHTABT_ID    :=   cur.POSTHTABT_ID;
              w_SUPPORT_PLAQUE  :=   cur.SUPPORT_PLAQUE;
              w_SUPPORT_X       :=   cur.SUPPORT_X;
              w_SUPPORT_Y       :=   cur.SUPPORT_Y;
              w_POSTHTABT_GPS_X :=   cur.POSTHTABT_GPS_X;
              w_POSTHTABT_GPS_Y :=   cur.POSTHTABT_GPS_X;
            if substr(cur.support_plaque,5,1) in (my_list) then
                 if substr(cur.support_plaque,6,5)='00000' then
                     w_SUPPORT_X := CUR.POSTHTABT_GPS_X;
                     w_SUPPORT_Y := CUR.POSTHTABT_GPS_Y;
                 End if;
            END if;
            --EXCEPTION WHEN NO_DATA_FOUND THEN w_SUPPORT_X,w_SUPPORT_Y := NULL ;
            --END;
            --Update de la table des supports
             update SUPPORT
                set SUPPORT_X            = w_SUPPORT_X,
                    SUPPORT_Y            = w_SUPPORT_Y
             where  SUPPORT_PLAQUE       = w_SUPPORT_PLAQUE;
             -- On valide imm?diatement
             commit;
             --EXCEPTION when no_data_found then null;
             --Pas de coordonnées trouvées
             --END;
          END LOOP;
    END;
    And i got the error:
    Rapport d'erreur :
    ORA-06550: Ligne 40, colonne 12 :
    PLS-00383: non-concordance de type détectée à 'SUBSTR' dans une clause IN ou NOT IN
    ORA-06550: Ligne 40, colonne 9 :
    PL/SQL: Statement ignored
    06550. 00000 -  "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    I think to do a loop with your i idea, something like this:
    DECLARE
    TYPE liste_1 IS TABLE OF NUMBER INDEX BY VARCHAR2(10);
    my_list  liste_1;
    Begin
       my_list('0') := 1;
       my_list('1') := 1;
       my_list('2') := 1;
       my_list('3') := 1;
       my_list('4') := 1;
       my_list('5') := 1;
       my_list('6') := 1;
       my_list('7') := 1;
       my_list('8') := 1;
       my_list('9') := 1;
        for i in my_list  loop
           if substr(cur.support_plaque,5,1) in my_list(i)  then
                 if substr(cur.support_plaque,6,5)='00000' then
                     w_SUPPORT_X := CUR.POSTHTABT_GPS_X;
                     w_SUPPORT_Y := CUR.POSTHTABT_GPS_Y;
                 End if;
           End if;
       End loop
    END;
    What do you think?

  • Moving from one ISP with Fibre to another

    Can anyone tell me is it possible to move to another ISP if they do Fibre when I already have Fibre with BT Thanks Michael

    Thanks,
    For a start mate do not go to Sky or even think of Virgin or even worse Be, Talk Talk, orange etc.. they all restrict P2P much more than BT Infinity does, it's a fact every ISP restricts P2P, some totally, some different ways than others, some use shaping of speeds, for example you may connect with Sky at 20000Kbps downstream, say a transfer rate of 2.0MB/s, you start downloading then your speeds end up going write down to about 2 - 3000Kbps downstream, transfer rate of 200KB/s or even worse sometimes to a rate of 1.5KB/s, without you even realising its changed. check out there forum pages you will see. If you think moving to another ISP for better speeds on P2P think again. Someone else will probably confirm the same as me. BT does ristrict but only from 4.00p.m. to 12.00a.m., weekdays, weekends totally free all uk times, these times you should be good to go, remember BT own the network they can do pratrically whatever they want within reason, so if you cannot do it with BT forget about other providers!. Please do not switch providers bcause of P2P transfer rates, you will be alot worse off. Trust!. Just a quick question to you, how much are the rates going up by, I do not know myself? I am on Option 2, Unlimited as well but do not know what the rise is?. I hope not too much.
    Just a point when do you feel you are being restricted with P2P, what times and when?.
    Please click on pink star to the left and say thanks if I have helped you at all!. Thank you. Home Hub Page- http://bthomehub.home/
    BT Speed test- http://www.speedtest.btwholesale.com/
    Speedtest:-http://diagnostics.bt.com/login/?workflow=Speed
    Net Connect test- http://netalyzr.icsi.berkeley.edu/index.html

  • There has GOT to be a way to sync Entourage on one mac with Entourage on...

    There has GOT to be a way to sync Entourage on one mac with Entourage on another mac! So far, the only way I can find to keep my mail synced on two macs using Entourage is to kill the Daemon on one machine and copy over the contents of the Microsoft directory to the other machine, but this is NOT a sync, it's a replacement. This will not work if email has been exchanged on both machines before the copy can be done. So what are we supposed to do? Thx for any help on this perplexing problem.
    coocoo

    Wait, I'm confused. Chronosync is just a fancy filecopy no? I think i tried it once moons ago just for folder syncing. it worked, but i did not see much advantage of that over just dragging the files. It still won't sync the individual emails right? (ie. add new, leave old alone). But u say using an imap server will help there? I don't even know what that is, but I guess I can install it on one of my macs right? Or do I have to pay to subscribe to one (like mac.com or whatever that thing is)? not an option here in Nepal. Well thanks for ur help so far!

  • Can we clear more line items with different currency within one Vendor

    Dear All,
    Please guide us the following issue is
    Can we clear two line items with different currency within one Vendor (i.e., Down Payment entry passed in EUR and Invoice in JPY).
    Thanks in advance.
    Regards
    Srinivas

    Hi
    I suppose this should be possible in F-44, for any difference in forex enter a new line item 'Charge off diff.' to Dr/Cr Forex gain/loss account
    Thank You,

  • Reversing Landed Cost document with more than one vendor

    Hi Experts,
    Reversing Landed Cost document with more than one vendor:
    My client can reverse a landed cost document with One Vendor, but cannot with multiple vendors. I have also tested this in 8.8 PL10. Here is a brief description:
    Created Landed cost by selecting 2 vendors in the Vendor field.
    After you picked one vendor, you go to the vendor code/name again then choose another vendor you
    need, once you picked, the system will ask you whether you want to delete the previous data, then
    you say no, after then you will see the vendor name became "different vendors" and code be "********"
    (on the vendor tab: you will see two vendors)
    To Reverse Landed Cost we do the following with Landed Cost documents that only have one vendor:
    I can copy from the Landed Cost document (on the right-bottom corner) while creating new one with
    zero amount to reverse, which is ok; but for multiple vendors, the list of vendors onlyshows one of
    the vendors for Good Receipts & Landed Cost.
    Cannot copy from a Landed Cost document wioth more than one vendor to reverse this Landed Cost.
    To be albe to copy from a previously created Landed Cost document (with multiple vendors) as you
    can with one vendor to reverse the transaction.
    Can this functionality be added to future versions?

    Take a look at business area and groupings in they payment program settings...
    I am not sure what version you are on but the following link for 4.7 should provide some valuable information...
    http://help.sap.com/saphelp_47x200/helpdata/en/01/a9be64455711d182b40000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/01/a9be64455711d182b40000e829fbfe/frameset.htm
    Grouping Open Items and Individual Payments
    Wherever possible, the payment program will always group items together for payment.
    The payment program can only group together open items for payment if the open items in an account have the same:
    1. Currency
    2. Payment method in the item
    3. Bank in the item
    4. Contents of the grouping fields (if a grouping key is specified in the customer or vendor master record)
    You can also pay open items from different company codes together, as well as customer and vendor line items.
    Items in an account are not grouped together if you:
    1. Make payments separately per business area. This procedure entails separate payments being created per business area.
    2. Want to make individual payments
    Items in which a payment method is specified are not grouped with items in which no payment method is specified.
    You define the required grouping key in the IMG for Financial Accounting under Accounts Receivable and Accounts Payable -> Business Transactions -> Outgoing Payments -> Automatic Outgoing Payments -> Payment Method/Bank Selection for Payment Program -> Define Payment Groupings.
    In our system, if the business area is the same, there will be one ZP document with one line with a posting key of 25. Otherwise there will be many individual 25 posting key lines with.

  • Does USD NACHA CCD Plus Format support one single payment with one vendor?

    Hi,
    We are implementing USD NACHA CCD Plus Format file for my customer.
    Have the following query:
    Does USD NACHA CCD Plus Format support one single payment with one vendor and another single payment with
    different vendor in single file or will it generate two files for two payments or will it support single payment only.
    Can anyone help us in this regard.
    Thanks,Venkat.

    I have created one invoice1 with one vendor and another invoice 2 with
    different vendor processed the PPR using USD NACHA CCD Plus Format .
    Both two payments came single file.
    But we know that USD NACHA CCD Plus Format support Single Payment only.
    Can anyone help us in this regard.
    Thanks,Venkat

  • One vendor master with different recon posting while accounting of the bill

    I have one vendor master, where we can able to give only one recon. account.  But the vendor supplies various materials like rm, pm and capital material.  I want to change the recon account while accounting the invoice.

    Hi,
    Changing the Recon. while doing the transaction is not possible and not advisable as later on Recon a/c wise reports(FBL3N) won't tally with(FBL1N).
    Better to create different Vendor codes for different Recon. a/c.
    Regards
    Swapna

  • How to maintain one vendor with differant plants at differant states.

    Dear All,
    i have one scenario with me in that my client purchasing his goods from one vendor that vendor is having two plants one at mumbai & one at gujarat. Now how i will maintain these two address with the same vendor. Along with that i need to mainatin the tax structure for both in one vendor. While creating purchase order how buyer will pick the tax structure.
    Regards,
    Nandkishor Nachane

    Hi,
      You can create one main vendor code and use partne function to add address of different plant location.
    regards,
    zafar

  • How to maintain one vendor with two addresses

    Hi All,
    I have to set up vendor master data for a given vendor in this way that when a PO is created, the user could select from several addresses.
    I have assigned two vendors with different addresses as a partners (Ordering address - partner funcion) of the main vendors(this two are from different account group with assigned partner scheme  and partner functions "Ordering address" and "Invoicing party").
    After that  for the main vendor I have created two vendor subranges which includes in their partner function screen the new vendors as ordering address partner function. I have also created an info record for the main vendor in which one of the subranges is include.
    During the creation of the PO, when I entered the vendor number I can make selection between the 3 vendors, I am selecting one of them (not the main vendor) in the partner tab I can see it as ordering address but when I go to Address Tab the address of the main vendor hasn't change, although item level I can see in the material tab that it has took the correct sub range.
    It is not very common to maintain several addresses for one vendor,and having in mind the fact that the address can be changed manually,  but has somebody of view met this problem before?
    Thanks
    Desi

    Hi,
    I understand you that you have multiple ordering address.If a vendor is having multiple orderig addreses system pops up the list ordering addresses at the time of creating a purchase order. In this list you can select one of the ordering address.
    In the address tab you cannot see the ordering address. You can only see the main vendor address.
    In the purchase order print layout you need to make the changes so that it select ordering address partner address which was availabe in the purchase order.
    I hope this will resolve your problem. If this helps award me the points

  • One Vendor With Multiple address

    Hi,
    We have a scenario, we have one vendor which has multiple adresss. Means one address for correspondence (PO, reminder etc) another address for sending payment etc.
    How to map in sap.
    Regards
    Ishu

    >
    ishu 2002 wrote:
    > Thanks all of you for the answer, but my problem is that We don't want to open new vendor for partner function. We want to use the same vendor code for both the addresses.
    > Regards
    > Ishu
    SAPs design solution is to use partner functions.
    There is no other solution in SAP that could make your wish become true.

  • F110 - Clearing of Credit Memo and Invoice Document in Customer account

    Hi,
    The scenario is, the customer is posted with invoice amount of 3000 and a credit memo of 500. Instead of clearing this manually using f-32 can we use F110 to clear the debit and credit with in a customer account which must create a residual document for the differential (2500)
    please advice,  and the steps to be performed to achieve the scenario.
    Best regards
    Abishay

    Hi All,
    we have activated Business Function " LOG_MMFI_P2P " and Switch "MM_SFWS_CI_01 - Enhanced Functions in EhP4 for Applications in Materials Management" using Tcode SFW1. And followed all instructions documented when activated Business Function " LOG_MMFI_P2P ". The Busines function is activated to order to clear downpayments at the time of invoice posting in MIRO or MIR7. When I post the invoice in MIRO system is posting 2 indepedent document as below.
    1. Invoice posting,
    Dr GR/IR
    Cr Vendor
    2. Downpayment Recovery
    Dr Vendor
    Cr Vendor with SP GL Indicator "C"
    My point is, as per the link http://help.sap.com/erp2005_ehp_04/helpdata/EN/48/b42c22e8603095e10000000a421937/frameset.htm, it says "You can use the Down Payment Clearing function to clear down payments that you have posted with reference to a purchase order without going to the relevant financial accounting transactions, directly in logistics invoice verification."
    But, in my case, the system is not clearing the downpayment but instead is just posting a Credit memo account entry with SP GL indicator (refer to th Downpayment Entry).
    Please advice if SAP is designed to clear the downpayment in LIV or just to post the downpayment recovery entry.
    If advice on any corrections to be applied.
    Best regards
    Abishay Solomon

  • Transfer of Credit from one Vendor to another Vendor

    Dear Freinds,
    Can I transfer credit of one vendor to another vendor ?
    eg I have entered vendor inv thru fb60 & posted as well  , say for vendor "A", further I want to transfer the amount payable to vendor "A" to some other vendor say vendor "B"
    <u><b>In sap 5.0/ 6.0 ver is it possible , if yes how & what is the t code ? Once transfer takes place open items of vendor "A" should be cleared & transfered to vendor "B"</b></u>
    Thnks
    Vinod

    Dear Vinod Chincholkar 
    Yes it is possible through alternative payee.
    Please input the vendor B in the mster record of vendor A in the filed of alternative payee ( Document level)
    also try with transaction f-51 with option of transfer with claring.
    Thanks

Maybe you are looking for

  • Mail quit unexpectedly when upgrading mail database

    Hi there, Mail keeps on quiting unexpectedly during upgrading mail database after I upgraded  to OSX 10.9. I've tried tricks I could find on the net, including removing com.apple.mail, without good luck. It's really frustraing. Anything I could try t

  • DAQ card works with NIDAQ test panel but not with VB app/Component works

    I am seeing this problem with 2 different DAQ cards. The card works fine with the NIDAQ test panel, but acts like the return lead is lifted with my VB app. The plotted signal appears to be little more than noise. Channel scan is internally triggered;

  • Updating to iTunes 6.0.3 Problems

    I recently upgraded my iTunes player to version 6.0.3 (as prompted by Apple) ... when I started iTunes up after the installation I noticed my entire library and all playlists have gone missing. Is there a way I can synchronize my iTunes with my iPod

  • Flat file Hieararchy load issue

    Hi all, I have loaded flatfile hierarchy of 0profit center and load was successful. But I came to know that there was some data swapped for Link name and Parent ID in flat file. so I deleted the data from PSA and made changes in flat file and then tr

  • ITunes 9 Default Import Settings

    Hi. I have a Mac with iTunes 9.0.2. What are the default import settings in kbps? I want the best quality even if it means larger files. I couldn't find a way to change the quality of the imported files, although my other Mac with iTunes 7 has that f