New Payment display Closed invoices and amount error ?

Hi experts,
Help, I have a serious stupidity after data migration, I changed the invoices by SQL and at a new payment document it display the invoices already closed and their amounts not corresponding with the real invoices amounts or or retrieves the amount of other invoices.
After a error with an Invoice, I removed this (DocEntry 1removed) in SQL to recreate it by SB1 With an other DocEntry.
How to Resolve this problem with SQL
Thanks,

yes I reformatted the card, and after it was finished, I ran Maps.  When it told me I need to download the maps (and gave me 3 options), I exited and connected the phone to my computer, browsed and deleted the cities folder and the qf file.  Waited a little bit and reran Maps.  This time I used the WiFi connection from the phone to download.
I gave me an error when I tried to download the entire USA maps, so I selected Texas and Pennsylvania state maps.  Those downloaded ok.  Next when I tried to download New Jersey, it started a little bit and the disk error message came up again so I hit stop.  Ran Files and saw the memory card is grayed-out (did not indicate and free space), I know the same problem is happening again.

Similar Messages

  • How to display total "items" and "amount " in header.jsp in CRM ISA B2B

    Hi,
    I am modifying “header.jsp” in standard CRM ISA B2B application.  Here we have summary of total number of items and total amount but it is coming in to button and for that below code is there in “header.jsp” and it display it as button text.
    if (!ui.homActivated) { %>
    !!" alt="" border="0" height="16" width="20">
    </td>
    <td class="vertical-align-middle" name="miniBasket" value="<isa:translate key="b2b.header.minibasket.default"/>" >
            <form name="basketForm" action="javascript:show_basket();">
         <input class="green" name="miniBasket" type="button" value="<isa:translate key="b2b.header.minibasket.default"/>"/>   
        </form>
    </td>   
    <% } else { %>
    <!-- HOM scenario - minibasket displays collective order -->
    <td  class="vertical-align-middle" align="right">
    !!" alt="" border="0" height="16" width="20">
    </td>
    <td  class="vertical-align-middle" name="miniBasket" value="<isa:translate key="b2b.header.collorder.default"/>">
    <form name="basketForm" action="javascript:show_collective_order();">
        <input class="green" name="miniBasket" type="button" value="<isa:translate key="b2b.header.collorder.default"/>"/>   
    </form>
    </td>
    <% } %>
    Now I want to display total number of items and total amount separately in two different <td> element.
    How I can get total number of items and total amount in “header.jsp” I tried below code but did not get any success.
    Insert below line in “header.jsp” with respective page import statement for class or let me know which class I have to import.
    <%
         HeaderSalesDocument  hdr =
                (HeaderSalesDocument) request.getAttribute(MaintainBasketBaseAction.RK_HEADER);
        ItemList items =
                (ItemList) request.getAttribute(MaintainBasketBaseAction.RK_ITEMS);
    %>
    And then I use
    <td><%= hdr.getNetValue() %></td>
    <td><%= items.size() %></td>
    But it is not printing any thing and header page not display at all.
    Pl. tell me how to get total amount and number of items in header area. Which class or object I have to use here.
    I really appreciated any help from any one.
    Thanks and regards.
    Ashish Patel.

    Hi, I tried another logic. I took value from  Standard button, in which B2B application display total items and amount and I hide this field, to another text element.
    Now I Am breaking that value in words and stored them in array  and then trying to display that array with particular number which contains total item and amount through Java Script on Focus.
    But problem here is, It is not getting updated automatically I have to click on new text files to trigger Onfocus event. How I can achieve effect like as soon as Standard button changes it's value which is now hidden filed my new text box should update automatically.
    Thanks.
    Ashish

  • I just bought a new Retina Display macbook pro, and I plugged in my iPod touch (4th gen) into the new computer, but it will not show up, even after I typed in the passcode. How do I get my iTouch to sync with my new computer without restoring my itouch?

    I just bought a new Retina Display macbook pro, and I plugged in my iPod touch (4th gen) into the new computer, but it will not show up, even after I typed in the passcode. How do I get my iTouch to sync with my new computer without restoring my itouch?

    iOS: Device not recognized in iTunes for Mac OS X

  • Check duplicate invoice and amount

    Hi All,
    Can anyone help me with this issue.
    In T.code FB60 (invoice input field), I want the system to check the duplicate invoice and amount (If invoice number and amount are same) and it should not allow the user to proceed further.
    Please help..
    Regards,
    Vinay

    Thank you...
    But this is not an automatic posting.  Using FB60 manual posting.  Also in the vendor master if we check the double invoice field it will give a warning and proceed further and allows user to post entries.
    But my concern is "If the amount and invoice number matches the system shouldn't allow user to proceed further"  hope i am clear now.....
    Regards,
    Vinay

  • Payment document  having invoices and credit memos

    How to identify when a payment document has both invoices and credit memos in it?Is there any criteria?

    Hi Savitha,
    This can be identified by document type.
    Ashven

  • Display file name and remove error from log output

      This script is working great from the GUI but when I call it from a cmd file from a job scheduler it throws out errors. I also want to display from is location the file name and it's byte count(ForEach($File in $Files)) so I can tell if any of the
    files being combined where actually empty. It wants to search the current location from the sever not just-Locations parm..
    Error message in LOG file:
    Get-ChildItem : Cannot find path 'F:\powershell\-SearchFor' because it does not
     exist.
    It's trying to find file install.cmd from where script starts and all the -Locations(which is only the search parm)
    Function Search-Files{
    Param([String[]]$Locations, $SearchFor, $AppendTo)
    Begin
    If(-Not (Test-Path $AppendTo)){New-Item $AppendTo -ItemType File -Force}
    Process
    ForEach($Location in $Locations)
    $Files = Get-ChildItem -Path $Location -Filter $SearchFor -Recurse
    ForEach($File in $Files)
    Get-Content -Path $FIles.FullName | Out-File $AppendTo -Append
    End{}
    Search-Files -Locations "\\Server1\c$\Temp", "\\Server1\c$\Test1" -SearchFor "Install.cmd" -AppendTo "C:\Temp\Search.log"
    Thanks.

     I search multiple shares to find a common file name then create a single output file. I will be doing this search and file creation
    for 5-10 different file names. If there is a better way .. certainly open for suggestions. It's working but having issue with
    the cmd file for every file and folder I check. It puts this error out for each run of the process.
      Error message in LOG file:
    Get-ChildItem : Cannot find path 'F:\powershell\-SearchFor' because it does not exist.
     Thanks.
    I tried your code with little changes and saved in Temp folder.
    My CMD file has the below code
    PowerShell C:\Temp\Untitled1.ps1
    It worked.
    Regards Chen V [MCTS SharePoint 2010]

  • Trying to setup new iCloud in system preferences and get error message: "iCloud encountered an error while trying to connect to the server."

    Here's the sequence of events:
    Setting up a new iMac.
    Migration Assistant was aborted during setup and a normal setup was completed.
    Then ran Migration Assistant from the newly setup account.
    It ran fine, but put all the data in a new account called "user".
    Renamed "user" to a new name, renamed the home folder to a new name following these instructions: OS X: How to change your account name or home directory name
    Delete the account we originally created, so just have one account with the name we want and all the data, email. Works fine.
    Sign into the App Store with the account we share for purchases.
    Now, the problem:
    Go to System Preferences to setup iCloud with a new Apple ID
    Get this error: "iCloud encountered an error while trying to connect to the server."
    So I'm unable to setup iCloud for photo stream, FaceTime, etc.
    Internet works fine, we can get mail, etc.
    Rebooting doesn't help
    Ideas?

    never mind the problem is gone this morning.

  • Tried to download new version of BB OS and recieved error message

    the download went all the way to 99% then a error message saying "602_b043_multilanguage.exe" popped up and wouldnt finish. is there something i needed to uninstall first?

    Hello,
    I cannot tell for sure...are you attempting this directly on your device, over the air? If so, I recommend you STOP and instead use these procedures.
    From a PC, you can install any OS package to a BB via this procedure:
    http://supportforums.blackberry.com/t5/BlackBerry-​Device-Software/How-To-Reload-Your-Operating-Syste​...
    Note that while written for "reload" and the Storm, it can be used to upgrade, downgrade, or reload any BB device model -- it all depends on the OS package you download and install to your PC. You can even use a different carriers OS package by simply inserting, between steps 1 and 2, the deletion, on your PC, of a file named VENDOR.XML. Be sure that you remove, from your PC, any other BB device OS packages as having more than one installed to the PC can cause conflicts with this procedure.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I got my phone repaired by apple a few weeks ago and got a new glass display put in and the entire screen is falling out of the housing and the home button is not working I'm more than disappointed with this service

    I paid for this service to fix my glass on my phone and now the entire LCD display is not working and after my repair the home button stopped working and I went back and they told me it was like that before the repair which it wasn't and they are telling me I need to pay 300 plus for a replacement phone that's refurbished now I don't understand apples support is suppose to be the best in the business and I have been more then ripped of the service I got damaged my phone more than it was before I would like to know where I can go to talk to someone who will help me not tell me it's my fault this is outrageous!!!

    Take the issue up with whomever replaced the device, whether that is Apple or another company.
    There is nothing that we, your fellow users, in these user to user support forums can do for you.

  • Installed new iPod + iTunes, closed iTunes and can't open it

    I was running on 10.3.8, and QT 6.5.2 and iTunes 4.6. Installed to 10.3.9, QT 7.0, and ran the iPod installer, and installed QT 7.0.3, everything seemed to work fine. My iTunes updated and I pulled my music over to the iPod, then I ejected the ipod, checked and the music was there, then I closed out of iTunes. When I went back, I couldn't open it. When I tried it would seem like it wanted to open, but nothing would show. I would have to force quit, same thing with my QT now. If anyone can help, I would appreciate it.

    I figured out something. I uninstalled my Protools and my iTunes worked, then I reinstalled QT 7.0.1. At one point, my QT read 'QT Version 7.0.3, but my player still read 6.5.2 after all the iPod updating, so I reinstalled to make both 'version' and 'player' read the same, then updated to 7.0.3 and added Pro key, and everything seems fine.
    Hope it helps.
    Now, I'm trying to figure out why I can drag a m4v to my iTunes?

  • 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

  • Is There any API in receivables payment will made against closed invoices ?

    Hi ALL,
    i have requirement as below.
    i am doing AR Invoice Data Migration for Instance 11.5.5 (as a Source Instance) to the new instance R12 (as a target instance).
    Both open and closed invoices will have to be migrated from 11.5.5 to R12 to provide the drill down facility for audit purpose.
    To meet the above requirement all the open and closed invoice will be picked up from 11.5.5 ; and imported into R12..
    Subsequently, full payment will be made in R12 against all closed invoices in 11.5.5 to close those invoices by using any APIs?
    can some one explain is there any API in receivables payment will made against closed invoices.
    Thanks,
    VSR.

    Hi,
    Can you be clear on your question: You want any API to make payment against closed invoices?
    To me, You are making things complex. We can achieve the Migration of Closed invoices using following two procedures:
    Procedure: 1
    Ask Functional Guy to create a Transaction Type 'Closed Invoices' with Open to Receivables Flag not checked. +(You can uncheck Post to GL flag also, if required depending on your migration strategy)+. Status at Transaction Type if taken as 'Closed' it will be appropriate.
    Invoices migrated using this Transaction Type shall not be shown as Outstanding but will be useful for Audit.
    Procedure: 2
    Consider the amount due Original of Closed Invoices and migrate them with the amount as Amount due remaining.
    While migrating populate Receipt Method,Payment Method and Instruments useful for Automatic Receipts.
    Once Create Automatic Receipts Program is run, it will close all these invoices. Note: We require dummy bank here which points to a Clearing account.
    Automatic Receipts program is also an API.
    In the above 2 ways, we are acheiving the Goal by using Functional knowledge rather than Technical. And I think following Functional way is better and less time consuming.
    Please discuss with your Functional consultant if required. You can succeed.
    Regards,
    Sridhar

  • Invoice and Invoice amount in FI/CO When enter check number

    Hi  All,
       I have a requirement like this. We have custom t-code ZF04 ( FAST CASH ) to post payments to customer accounts. In this t-code, we have one field for Check#.  When they enter Check# number and click on 'SEARCH' icon i need to display list of invoices and amounts with in a check.
    I have no idea about tables,. Where to look? What tables do i need to look when enter check number, which returns invoice details.
    Please let me know ASAP....
    I appreciate your help!
    Thanks,
    Suneetha

    Hi,
    One question - Are you getting customer payment trrough <b>LOCKBOX</b>? If yes, then following are the tables
    Check tables <b>FEBKO</b> and <b>FEBEP.</b> The field is <b>FEBEP-CHECT</b> for check number. For this check number take <b>FEBEP-KUKEY</b>. With this KUKEY read table FEBRE. <b>FEBRE-VWEZW is the invoice number</b>.
    So, sequence is
    1. Put Check# --> FEBEP-CHECT  and get FEBEP-KUKEY
    2. Put FEBEP-KUKEY into --> FEBRE-KUKEY
    3. FEBRE-VWEZW is invoice no.
    If you are not using LOCKBOX, How are you getting customer payment? Let me know so i can give you exact answer.
    Regards,
    RS

  • Standard Invoice and a Credit Memo with the same amount

    Hi,
    I have a AP standard invoice with an amount of 100 € and the credit memo with -100 €.
    The standard invoice and the credit memo have the same Supplier and distribution, and the status are Validated and Accounted is Yes.
    How I can match this credit memo to that invoice?
    If I try to create a payment with this invoice and credit memo, I get an error because I can not make a payment to zero.
    I do with a suspense account? How I can do it?
    Thanks in advance!

    Hi.
    Enter a zero amount payment and select both documents.
    Octavio

  • About AP Down Payment Request, AP Down payment invoice and AP reserve inv.

    Hi:
    Which are the main differences? I need to pay in advance to my supplier 100% of the invoice, the purchase invoice would be received one month later. How can i link them? And what about the payment, how can i remember easily that invoices are missing when the account balance is = 0 because the payment is done.
    Best regards,
    Alberto.

    Hi,
    There is a business need for companies to issue/receive Invoices including tax (or
    VAT) for Down Payments made or received. These Invoices can then be cleared with
    partial or final Invoices. Companies can record a Down Payment received in SAP
    Business One by creating a Payment not based on an Invoice. However, due to legal
    requirements in certain countries the recording of a Down Payment requires an Invoice
    or a billing document.
    Down Payment Request and Down Payment Invoice documents have their own numbering series. The Down Payment Invoice
    resembles a regular Invoice and the Down Payment Request resembles a Sales
    Quotation. The user may define a different series under Invoices to be used in the
    Down Payment document. Neither of these two documents affects the On Hand stock
    or the stock valuation. They can be of Items or Service type.
    The process for them are:
    Down Payment Invoice>Payment of Down Payment Invoice >Regular Invoice> Payment of Regular Invoice.
    Down Payment Request>Payment of Down Payment Request > Regular Invoice >Payment of Regular Invoice and Clearing of Down Payment.
    For the invoice paid, you can find a Payment Means icon from Invoice window, click on it, there is payment information and a link for it.
    Hope this helps,
    maggie an

Maybe you are looking for