Pre-payment with F-47 and F110

Hi all
We make for the first time a vendor pre-payment with the transaction F-47 so the document is a Noted item. Now the FI office must make the automatica payment with F110, but the noted item document aren't take in the generation. The F110 simply don't see them.
What wrong? Some particular set are necessary in F110 for noted items?
Thanks
Davide
Edited by: Davide Dall'Angelo on Feb 18, 2008 1:19 PM

Hey Davide,
When u go to the transactiion of F110. Are u succesfull to make the payment run with the Run Date nd Identification.
If u are succesfull then u should be able to see the documents in the Proposal TAb in the GUI of The F110 TRansaction.
DOUBle CLick the Vendor Number and u will get the LIst of Documents for which u carry the Payment RUn.
HOpe this helps...IF not Let me know..........!

Similar Messages

  • A/R Installment Payments with Sales Taxes and Freight in 1st payment

    Our sales dept. wants to offer our customers Installment Payment plans (6, 12, 24 mths) for product sales which is easy enough to set up using Payment Terms and the Installment Payment flag.
    But our Accounting Dept wants to collect the Sales Taxes and Freight "up front" in the first payment.
    We do not want to use Milestone billing since Accounting wants to recognize the revenue of the sale during the month of the sale ... so a single Invoice to the customer with the Payment Plan printed on the invoice is the option they want done.
    I have not been able to find any way to set up the Installment Plan configuration to do such a thing.  The Terms of Payment refer to the total Invoice amount.
    Has anyone here be able to accomplish such configuration (without doing custom coding in a User Exit)?
    Example:  $60,000 item, %5,000 tax, $100 frieght = $65,100 total invoice.  (6 month payment plan)
       Payment #1 = $15,100
       Payment #2 = $10,000
       Payment #3 = $10,000
       Payment #4 = $10,000
       Payment #5 = $10,000
       Payment #6 = $10,000

    I have already set up the installment plan in OBB9 with 6 entries (1 - 6) for my IP Payment Term of IPM1.  I have the percentages setup as 16.67 for each of the installments and the last set at 16.65 (equaling 100%).
    The problem with Sales Tax and Freight is that you can not simply assign an arbitrary percentage to the 1st installment (for example make the 1st installment 25% and break up the remaining 5 installments fromt he other 75%).
    We need to make sure that the first Installment from the customer is for the Sales Tax, the Freight, and exactly 1/6 of the material cost (if it is a 6 month payment plan).
    I have activated User Exit EXIT_SAPLV60B_007 to intercept table generation of the installment plan that is sent to Accounting to fix this problem.  Now the Accounting document connected with the customer invoice is correct.  My next step is to fix the SmartForm print of the Installment Plan on the customer's Invoice.

  • Vendor Pre-Payment with FX implications

    For a pre-paid invoice, is there a way that the exchange rate (FX) that is applied to the pre-paid invoice can
    be also be applied for the goods receipt, since at the time of entering the pre-paid invoice, the merchandise belongs to our company?
    I have done some testing and found that:
    Date     FX Rate
    June 1   1.8000
    July 1    2.0000
    Aug 1    1.4000
    ·         Created PO on June 2nd u2013 FX rate 1.8000
    ·         Pre-pay Invoice (F-48) on July 6th u2013 FX Rate 2.000
    ·         Receive Goods (MIGO) on August 4th u2013 FX rate 1.4000
    ·         Posted invoice (MIRO) on August 6th u2013 FX Rate 1.4000
    Has anyone come across a BAPI or user-exit, etc that would apply the FX rate of the Pre-Payment (2.0000)
    to the Goods Receipt (MIGO)?
    Thanks in advance
    Doc

    Hello,
    The userexit:
    The enhancement does not write any data to the material document, that is, it is not possible to change material document data before the update posting takes place.
    Review BADI  LE_SHP_GOODSMOVEMENT.
    Regards
    Waza

  • How to downgrade 10.8 ML to 10.7 Lion, My Mac was pre-install with 10.7, and the Copy of M.L was not purchased for app store .

    I am bit confuse, how to deal with it, somewhere i read that I should erase the Hardrive and use Internet recovery but not sure. If I reinsatll it form 10.8 Recovery disk it ask for apple ID , but I didn't purchase ML.

    Great! Then it came with Lion pre-installed and all you have to do is Internet Recovery as mende1 pointed out. COMMAND+R+OPTION keys held until you see a spinning globe then you can erase the drive using OS X Utilities and Disk Utility then reinstall Lion from the OS X Utilities menu.
    I'm running ML that I got from the App Store on a mid-2011 Mac Mini. Internet Recovery ALWAYS gives me the ability to reinstall Lion which is what was pre-installed.
    You don't want to use the current Recovery HD which is Mountain Lion. You want to use Internet Recovery.

  • Calculate the total value of payments with the procedures and triggers?

    Hello!
    I work for a college project and I have a big problem because professor requires to do it by the examples he gives during the lecture. Here's an example that should be applied to its base, so please help!
    I have three table with that should work:
    Invoice (#number_of_invoices, date, comm, total_payment, number_of_customer, number_of_dispatch)
    where:
    number_of_invoices primary key (number),
    date (date),
    comm (var2),
    total_payment is UDT (din - currency in my country) - in this field should be entered value is calculated
    number_of_customer and number_of_dispatch (number) are foreign keys and they are not relevant for this example
    Invoice_items (#serial_number, #number_of_invoices, quantity, pin)
    serial_number primary key (number),
    number_of_invoices primary key (number),
    quantity (number),
    pin foreign keys (number)
    Item (#pin, name, price, tax, price_plus_tax)
    pin primary key (number),
    name (var2),
    price, tax, UDT (din) not relevant for this example
    price_plus_tax UDT (din)
    These are the triggers and procedures with my calculation should be done:
    trigger1:
    CREATE OR REPLACE TRIGGER  "trg1"
    BEFORE INSERT OR UPDATE OR DELETE ON Invoice_items
    FOR EACH ROW
    BEGIN  
         IF (INSERTING OR UPDATING)
         THEN     
              BEGIN Invoice_items.number_of_invoices := :NEW.number_of_invoices; END;
         ELSE
              BEGIN Invoice_items.number_of_invoices :=: OLD.number_of_invoices; END;  
         END IF;
    END;trigger2:
    CREATE OR REPLACE TRIGGER  "trg2"
    AFTER INSERT OR UPDATE OR DELETE ON Invoice_items
    DECLARE
    doc NUMBER := Invoice_items.number_of_invoices;
    BEGIN  
         entire_payment (doc);
    END;procedure
    CREATE OR REPLACE PROCEDURE  "entire_payment" (code_of_doc IN NUMBER) AS 
    entire NUMBER := 0;
    BEGIN 
         SELECT SUM (a.price_plus_tax * i.quantity) INTO entire
         FROM Item a join Invoice_items i on (a.pin = i.pin) 
         WHERE number_of_invoices = code_of_doc;
         UPDATE Invoice
         SET total_payment = entire
         WHERE number_of_invoices = code_of_doc;
    END;As you can see the procedure is called from the triggers, I have a problem at the first trigger, and I think it will be even higher in procedure because UDT, field "total_payment".

    I was not here a few days because I was trying to get additional information related to this problem. Professor gave me the information that I need to introduce a package and variable to get this thing work. But including that I still have problem. I hope that this time is less of a problem and that someone will be able to help me.
    I also noticed that it was not a smart idea to try to translate the names of tables and attributes. That make trouble for me, especially you who are trying to understand and to help me, and absolutely nothing that will change the attribute and the table name will be. So this time I will set out the problem with the original name again to avoid confusion.
    So, I try to base Implement optimization technique called: Repeating Single Detail with Master (so writes the slides that I received from professor, I hope that will mean something to you)
    These are the lines of code that we get on the slides and should implement in the base, again I remind you that at this time in its original form, without translation.
    - First create the package variable:
    create or replace
    package paket
    AS
    sifra number(10):=0;
    end;This part is ok and it works.
    - Secondly, it is necessary to create the first trigger:
    create or replace
    TRIGGER aktuelna_cena1
    BEFORE INSERT OR UPDATE OR DELETE ON cena_artikla
    FOR EACH ROW
    BEGIN
         IF (INSERTING OR UPDATING)
         THEN      
              BEGIN paket.sifra := :NEW.sifra_artikla; END;
         ELSE
              BEGIN paket.sifra := :OLD.sifra_artikla; END;
        END IF;
    END;This part is ok and working.
    Now the problems begin.
    - It is necessary to create another trigger that will call the procedure:
    create or replace
    TRIGGER aktuelna_cena2
    AFTER INSERT OR UPDATE OR DELETE ON cena_artikla
    DECLARE  
         s NUMBER := paket.sifra;
    BEGIN  
         aktuelnacena (s);
    END;I suppose the trigger have problem because procedure is not ok.
    I will copy error that I get from the compiler:
    Error(7,2): PL/SQL: Statement ignored
    Error(7,2): PLS-00905: object NUMBER6.AKTUELNACENA is invalid
    And finally, it is necessary to create the procedure:
    create or replace
    PROCEDURE  aktuelnacena (SifraPro IN NUMBER) AS 
    aktCena artikal.aktuelna_cena%type;
    BEGIN aktCena:=0;
                    SELECT cena INTO aktCena
                    FROM cena_artikla 
                    WHERE sifra_artikla=SifraPro and datum_od=
                                    (select max(datum_od)
                                    from cena_artikla
                                    where sifra_artikla = SifraPro and datum_od<=sysdate); 
                    UPDATE artikal
                    SET aktuelna_cena = aktCena
                    WHERE sifra_artikla = SifraPro;
    END;I will copy error that I get from the compiler:
    Error(10,57): PLS-00103: Encountered the symbol " " when expecting one of the following: ( begin case declare end exception exit for goto if loop mod null pragma raise return select update while with << continue close current delete fetch lock insert open rollback savepoint set sql execute commit forall merge pipe purge The symbol " " was ignored.
    Tables I work with are:
    Artikal (sifra_artikla, naziv, aktuelna_cena),
    Cena_artikla (sifra_artikla, datum_od, cena)
    You will notice that this differs from the first problem, but my task is to implement the two optimization techniques and my base. Both techniques are quite similar and I hope that I now have enough information to help me. I suppose that when this problem is solved the othet one will too!
    Thank in advance!

  • Posting pre-payment (Recurring) AP Invoice and subsequence cost allocation

    Hi all
    We're trying to find the best solution to processing Rent/Rates AP invoices, where we receive an invoice at the beginning of the year for 12 months worth of costs.  We're OK with paying the invoice either by instalments or immediately, however once posted how can we get the costs to the correct forward period.
    We are not using the Accruals Engine, Real Estate Module nor Service Purchase Orders.
    We would like to create a purchase order, goods receipt and process the invoice via MIRA, however we're facing some challenges!
    Would anyone have a solution to:
    1. Would it be advantagous to have the goods receipt as valuated or not?
    2. How can we ensure that the costs are being allocated into the correct forward period?
    Any help would be much appreciated.
    Kind regards
    Elaine

    Hi Elaine
    You can set up recurring entry invoices that will execute on a certain day of the month and be paid as per the pay terms
    Hope this helps
    Deepa

  • 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

  • F110 Auto payment with Check in foreign currency and Doc currency is LC

    Hi Guru,
    When I try to use auto payment for document currency in local currency, while check is foreign currency, it always in the expception list, could you advice how to handle this scenario. thanks.

    Hi
    From the log you mentioned check for the following things:
    In FBZP -bank determinationin Ranking order---Pymt-C with currency USD and rank order 1 and housebank has been mentioned.
    In bank accounts in the dialogue module below ranking order the entries are made for bank account for the above.
    and in available amounts make the suficient amount available for this bank
    Also Check whether the Payment method C and the housebank details are mentioned in Vendor master record.
    Regards
    Aravind
    Assign points if useful

  • Rolling back of Quick Pay Pre-payment and Quick Pay in case of void cheque

    Hi All
    I am facing an issue if you can help me out of if
    Here is a scenario
    a payroll manager runs the following processes.
    1. Payroll run
    2. Pre-Payments
    3. Payroll Archiver
    4. Payment Output file
    After running all these process payroll manager finds that he also has to make an adhoc payment on account of car loan of AED 150,000.
    So he runs following processes
    1. Quick pay for Car loan
    2. Quick pay pre-payments (payment made through check)
    3. payroll archiver
    4. Cheque Writer.
    Now due to some technical fault, alignment on printing of cheque becomes disturbed there for cheque misprinted.
    Payroll manager runs Void Cheque process to cancel the cheque.
    After all these processes which has run successfully, order comes from upper management to rollback quickpay for adhoc payment of loan.
    Now question is how it can be achieved.
    I tried different things as follows
    On Assignment Process results screen i queried the assignment which all the processes in descending order.
    I tried to start roll back from cheque writer but system didn't allowed to do this because of check Void process.
    I tried to start rollback from Magnetic report, system allowed to roll it back.
    Then i tried to rollback Quick-pay prepayment, system did not allow me be do it. There fore i couldn't run rollback for Quick-pay.
    There is an another thing i tried.
    On "Assignment Process Result" screen i queried assignment. Then i delete the first entry of Void cheque by using delete option from menu bar on top and saved the record. then i delete cheque writer entry and saved the record. Then i run rollback for quick pay pre-payments and ran it successfully and then lastly i ran rollback for quick pay run.
    One thing cautioned me that if I delete the void cheque entry then its history may be lost or have lost and on the other hand with out deleting void cheque i cannot proceed to rollback quick pay.
    Kindly tell me the best way to run rollback for quick pay in this situation.
    Regards
    Majid

    Bt do not provide broadband only so you need existing account holder to add broadband to phone account and then you can pay back the account holder - probably not what you want
    the 12 months advance applies to the line rental not the broadband - as I said BT do not sell broadband only you buy a package which includes phone
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Pre payment to vendor with invoice

    We have a vendor who sends us an invoice in order to make a 30% pre payment on a Purchase Order.
    We need to post this invoice against the PO and make the payment to the vendor.
    When receiving the final invoice and executing invoice receipt using MIRO we want a pop up that a pre payment exists against this PO, in order to check the PO with the Goods Receipt and Invoice Receipt.

    This kind of scenario is taken care by an alternative reconciliation account.
    The process flow is :
    Down payment request
    Down payment
    Invoice
    Down payment clearing
    Payment and clearing
    T-Codes for the process flow are:
    F-37 ( not part of doubel entry book keeping) - Down payment request to alternative reconciliation account.
    F-29 ( Down payment) Dr Bank Account( making the payment), Cr Alternative Reconciliation Account.
    FB60 - Invoice Entry
    and then clearing and payment.
    Hope that helps - let me know if you need more info.
    Thanks,
    Nandita

  • Debit Items not getting picked while making payment with F110

    HI,
    When making payment with F110, items with Debit balance is not getting picked.
    Example:
    Payment method is assigned in the Maser data.
    For a particular vendor one item has a credit balance- posting key 31.
    We have posted another JV with F-02 and debited that vendor with Posting key 21. (Payment Method is not entered in the line item)
    When we run F110 the credit balance is picked and debit balance is being shown in exception list.
    When we got to FB02 and insert payment method in debit line item and then again run the F110 then system pickes all line items and pays the net amount.
    The question is why system is not considering Payment Method from Master Data in debit  line item, while in credit line item it is picking payment method from the master data.
    Do I need to do any setting for it so that it should automatically take payment method from master data even in case of Debit line items.
    Regards
    Sanjay

    Hi All,
    Thanks for your quick replies.
    But it does not solve my problem.
    When I am not assigning any payment method to either Debit or credit line items, system picks (payment method from Master data) for only credit line items and ignores debit line items.
    But the problem is that when I assign payment method to debit line item (which is similar to what has been assigned to vendor Master Data) system groups both debit and credit line items and makes payment of only net amount.
    My question was why system considered the debit line item for making payment if I manually enter payment method in the line item, if system has been designed only for out going payment. In my opinion It should have reacted similarly irrespective of whether payment method entered in the line item or not.
    Regards
    Sanjay

  • Bapi for vendor payment with details of tunover and blocked payment

    Dear all
    I want to know whether any BAPI available for the details of vendor payment made and the open item with  blocked payment (with the reason for the blocked payment) and the turnover of the vendor for a particular fiscal year...................
    The client want to get the output as mentioned below.
    e.g...
    PO no : 45629810
    Inv.No : 73409 (Vendor's Invoice no.)
    Payment : Paid amt with date and details
    Payment : Outstanding (Due and Over Due with no.of days)
    Blocked Payment : Amt with the reason for blocking the payment.
    Turn Over : Total turn over for that fiscal year.
    This is an urgent req. from my client,i will be very grateful if any one can  help me over this issue ..............
    Appreciate for any relevant answers and suggestion ...........
    I am in ECC 6.0
    Regards
    Praveen

    Hello Raj,
    Unfortunately there is no BAPI for payment detals and other company code data. The only possibility is via direct input (external data transfer).
    Please have a look at the following Easy-Access-path:
    SAP Menu
    -> Accounting
      -> Bank Applications
       -> Loans Management
        -> Environment
         -> External Data Transfer
    Within this menu entry you find diverse functions. Please start the function KCLJ to transfer data. Before you can do this you need to
    prepare the transfer by creating your own transfer structure and so on. You can get further information on what to do here by navigating to
    "Help   > Application help" within transaction KCLJ. From here you get to the right area of SAP library.
    Thanks Amber

  • Issue with Information broadcasting and pre-cal server in SAP BI

    Hi Experts,
    I have issue with information Broadcasting and Pre-cal server. I have a worrkbook whcih runs from information broadcasting in pre-cal server. Workbook is desinged on single query and workbook contains visual basic code. workbook has a variable which is controlled by Control query in information broadcasting.
    I have 20 employees every month I need to send workbook via e-mail from information broadcasting.  The problem is sometimes all 20 employees will recieve e-mails and sometimes not. I identified there is something wrong in workbook or in pre-cal server.
    because after workbook calculation in pre-cal server is not pushing to SOST so there is something wrong in workbook or in pre-cal server.
    I closely observed pre-cal server front end log. There are few operations performing on workbook in pre-cal server
    like Open workbook, Calculate workbook, Save woorkbook and close workbook. In success case pre-cal sever is performing all the operations but in failure case pre-cal server is missing Close workbook case.
    Below log In pulled from pre-cal server
    Can you please tell what could be the problem.
    Successful job
    3/11/2011 9:29:46 AM (3) -> RS_PREC_LAUNCH_EXCEL i nvoked in thread 3 and job 'BIBCAST4L4EIS7TOR5BWG0
    2PCUG9ZPPP'. nvoked in thread 3 and job 'BIBCAST4L4EIS7TOR5BWG0
    3/11/2011 9:29:46 AM (3) -> InitConnection in thre ad 3
    3/11/2011 9:29:46 AM (3) -> Trying to open "C:\Pro gram Files\Common Files\SAP Shared\BW\BExAnalyzer.
    xla" gram Files\Common Files\SAP Shared\BW\BExAnalyzer.
    3/11/2011 9:30:18 AM (4) -> RS_PREC_GET_SERVER_STA TUS invoked.
    3/11/2011 9:30:18 AM (4) -> RS_PREC_GET_SERVER_STA TUS finished
    3/11/2011 9:30:35 AM (3) -> Using Version 7100.4.1 200.35 of BExAnalyzer.xla
    3/11/2011 9:30:35 AM (3) -> PID of Excel process: "2504"
    3/11/2011 9:30:35 AM (3) -> EndOfInitConnection in  thread 3
    3/11/2011 9:30:35 AM (3) -> RS_PREC_LAUNCH_EXCEL f inished
    3/11/2011 9:30:36 AM (0) -> Calculation Request 91 1A35ED029D4D79DD7A000200000000 received for job 'B
    IBCAST4L4EIS7TOR5BWG02PCUG9ZPPP'. 1A35ED029D4D79DD7A000200000000 received for job 'B
    3/11/2011 9:30:52 AM (6) -> RS_PREC_GET_SERVER_STA TUS invoked.
    3/11/2011 9:30:52 AM (6) -> RS_PREC_GET_SERVER_STA TUS finished
    3/11/2011 9:31:22 AM (0) -> Opening workbook: C:\W INDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECMML4NN
    DVLYAPC2SYIC7F1AAIO_0.xls INDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECMML4NN
    3/11/2011 9:31:43 AM (0) -> Refresh BExAnalyzer.xl a!MenuRefreshPrecalc returned with 1.
    3/11/2011 9:31:43 AM (0) -> Calculated workbook C: \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    4NNDVLYAPC2SYIC7F1AAIO_0.xls saved. \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    3/11/2011 9:31:43 AM (0) -> Calculated workbook C: \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    4NNDVLYAPC2SYIC7F1AAIO_0.xls closed. \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    3/11/2011 9:31:44 AM (0) -> Excel based operations  finished.
    Failure job
    3/10/2011 10:22:58 AM (1) -> RS_PREC_LAUNCH_EXCEL invoked in thread 1 and job 'BIBCAST4L41566ZBZDN2N
    TGJR0462ZFX'. invoked in thread 1 and job 'BIBCAST4L41566ZBZDN2N
    3/10/2011 10:22:58 AM (1) -> InitConnection in thr ead 1
    3/10/2011 10:22:58 AM (1) -> Trying to open "C:\Pr ogram Files\Common Files\SAP Shared\BW\BExAnalyzer
    .xla" ogram Files\Common Files\SAP Shared\BW\BExAnalyzer
    3/10/2011 10:23:20 AM (3) -> RS_PREC_GET_SERVER_ST ATUS invoked.
    3/10/2011 10:23:20 AM (3) -> RS_PREC_GET_SERVER_ST ATUS finished
    3/10/2011 10:23:44 AM (1) -> Using Version 7100.4. 1200.35 of BExAnalyzer.xla
    3/10/2011 10:23:44 AM (1) -> PID of Excel process:  "2544"
    3/10/2011 10:23:44 AM (1) -> EndOfInitConnection i n thread 1
    3/10/2011 10:23:44 AM (1) -> RS_PREC_LAUNCH_EXCEL finished
    3/10/2011 10:23:44 AM (5) -> Calculation Request 9 11A35ED02654D789871000900000000 received for job '
    BIBCAST4L41566ZBZDN2NTGJR0462ZFX'. 11A35ED02654D789871000900000000 received for job '
    3/10/2011 10:24:27 AM (0) -> RS_PREC_GET_SERVER_ST ATUS invoked.
    3/10/2011 10:24:27 AM (0) -> RS_PREC_GET_SERVER_ST ATUS finished
    3/10/2011 10:24:31 AM (5) -> Opening workbook: C:\ WINDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECQB2VE
    A8O8D8FBHYCR4HVB5UI8_0.xls WINDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECQB2VE
    3/10/2011 10:24:52 AM (5) -> Refresh BExAnalyzer.x la!MenuRefreshPrecalc returned with 1.
    3/10/2011 10:24:52 AM (5) -> Calculated workbook C :\WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECQB
    2VEA8O8D8FBHYCR4HVB5UI8_0.xls saved. :\WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECQB
    Thanks in advance
    Narendra

    Hi Ravikanth,
    Thank you very much for the reply
    I went into RSPRECADMIN and clicked on 'Display Current Queue'.  There we have 3 sections
    1) Queue Overview of Open Precalculations
    I can see this section is always blank after running IB also
    2) Queue Overview of Current Precalculations
    In this section I can see an entry after running IB and duration is changing. but some time workbook in this section will never processed but the duration column is changing may be something is happening at this stage.
    If the entry is not proccessed in this section and IB SM37 job will never end. I manually cancelled the job from SM50.
    Don't why the workbook is taking long time and will never end even though I cancelled the SM37 IB job.
    3) Queue Overview of Proccessed Error-Free Precalculations
    All the error free workbooks which means all pre-cal server completed workbook calculation and sent to SOST.
    I manually ran the workbook for all the 20 employees I can't find any pop-up message (earlier we have pop-up windows appearing because of VB code and when report returns no data and we fixed the pop-up issues)
    Can you please help me further to trace the error.
    Thank you
    Narendra

  • Advance payment and down payment with two diffierent tax code

    HI expert!!!
    i have one scenario that advance payment and down payment with different tax code.
    in this time, advance payement post to vendor with po number,  we do not know how to use tax code V1(deductable tax) or VF(Non-deductable tax),  so we post advance payement amount by tax code V1(deductable) even though the amount included both. but we must know how amount is defined deductable tax or non-deductable tax when invoice.
    when we want to post down payment with VF , we could not post it because advance payement posted with V1 tax code.
    this is main problem with my scenario.
    and  as i know,   can i post two advance payement to  same vendor and same po item?, i can't do it with my system.
    only one advacne payment  is possible with one vendor and one po item. or  amount of  advance payment is all cleared by down payment, then i can post another advance payment to same vendor.  is it standard process with po?
    thank you in advance!!

    hi,
    As per my knowledge their is no difference between  advance payment and downpayment.
    and tax code is used for taxes purpose not for the payment terms.
    taxcode is created in ftxp.and related percentages are maintained in fv11.
    ex:-
    if i want  excise duty  - 10% on basic value
    education cesse 2% on excise duty
    sec.education cesses 1% on excise duty
    then fitst i have to create 3 condition types and that 3 condition types are used in my taxprocedure  and that taxprocedure is assigned to country code..
    after that i am created one taxcode in ftxp like v1= exciseduty10%educatiocess2%sec.edu.cesses1% with this description.
    and given the values for that conditions in fv11.
    and used that v1 taxcode in your p.o in invoice tab.
    and payment terms are came from vendor not from taxcode.
    Thanking you.

  • I bought a pre-payment cards and we could not filling

    Dear Sir / Madam
    Good Day
    I bought a pre-payment cards and we could not filling.
    Best regards
    Hussain Aviation

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple.
    By 'pre-payment cards' do you mean iTunes gift cards ? If you do then what happens when you try to redeem them e.g. do you get any error messages ? They are country-specific, they can only be used in their country of issue.
    If you mean a pre-paid visa card, then part of the validation when adding a credit card to an iTunes account is that it is registered to the name and address that is on the iTunes account - which pre-paid cards won't be, so will fail that validation.
    If you mean something else ... ?

Maybe you are looking for