How to know the error in the goods movement

Hai gurus,
a) while doing goods issue and goods receipt , if there is any
    error  in the goods movement how to know the same and correct it.
Regards,
sekar chand

Hi,
If You are doing GR and GI during order confirmation then you will find a tab for Display Error(Bell Ikon).At the time of any error you will find this icon highlighted.press it you will find details error description and proposed solution.
Regards,
Dhaval

Similar Messages

  • TS4291 I can't send mail from my iPad apps, I just get the error message, 'The recipient- was rejected by the server because it does not allow relaying.' Does anyone know what this means and how to fix the problem.

    I can't send mail from my iPad apps, I just get the error message, 'The recipient… was rejected by the server because it does not allow relaying.' Does anyone know what this means and how to fix the problem.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/group-email!-mail-client-attachments/id380690305 ?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • How to know which table in the database a form is accessing

    Actually Im new to oracle applications,
    Im getting an error when i open a form from system administrator responsibility saying that table doesnot exist.
    My basic doubt is, how to know which table in the database a form is accessing.
    Any response is higly appreciated.
    Thanks,
    Praveen
    Edited by: user10239520 on Sep 10, 2008 7:07 AM

    Take a look at the following thread:
    Is there a query log in EBS?
    Re: Is there a query log in EBS?

  • How to know about Description from the TransType...?

    Hi All,
    I have used SBO 2005 A PL 43 SP1 and have some queries below:
    SELECT     TOP 100 PERCENT T0.DocDate, T0.TransType, CAST(T0.BASE_REF as char) AS BASE_REF, T0.Warehouse, T0.CardCode, T0.CardName, T0.xInQty, T0.xOutQty, T0.Price, T0.Currency , T1.ItemName, T1.SuppCatNum, CAST(T0.InvntAct as char) AS InvntAct, T2.AcctName, T0.StatusDescr
    FROM         vwOINM_DEL0_02 T0 INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode LEFT OUTER JOIN OACT T2 ON T0.InvntAct = T2.AcctCode
    WHERE (T0.ItemCode = 'RO00 0465') AND (CAST(T0.TransType AS char(3)) + CAST(T0.CardCode AS char) IN ('13 ZZ0 Cash&Carry') OR (T0.TransType <> 13))
    AND (T0.xDocDate BETWEEN CONVERT(DATETIME, '2008-01-01 00:00:00', 102) AND CONVERT(DATETIME, '2008-11-25 00:00:00',102)) ORDER BY T0.DocDate, T0.TransNum
    TransType -
    > is a field name on table "OINM"
    How to know about Description from the TransType and where can we relate to the table?
    example :
    TransType     Description
    ====================
    15          Delivery
    13          AR Invoice
    59          Goods Receipt
    60          Goods Issue
    Please anybody can help me...?
    Regards,
    Agung

    You can use function on sql side which to proper transid returns desciption.
    The function is as
    create FUNCTION [dbo].[trans](@trans integer)
    RETURNS varchar(100)
    AS
    BEGIN
    DECLARE @ret varchar(100)
    select @ret =
    case @trans
    when     1     then     'oChartOfAccounts'
    when     2     then     'oBusinessPartners'
    when     3     then     'oBanks'
    when     4     then     'oItems'
    when     5     then     'oVatGroups'
    when     6     then     'oPriceLists'
    when     7     then     'oSpecialPrices'
    when     8     then     'oItemProperties'
    when     12     then     'oUsers'
    when     13     then     'oInvoices'
    when     14     then     'oCreditNotes'
    when     15     then     'oDeliveryNotes'
    when     16     then     'oReturns'
    when     17     then     'oOrders'
    when     18     then     'oPurchaseInvoices'
    when     19     then     'oPurchaseCreditNotes'
    when     20     then     'oPurchaseDeliveryNotes'
    when     21     then     'oPurchaseReturns'
    when     22     then     'oPurchaseOrders'
    when     23     then     'oQuotations'
    when     24     then     'oIncomingPayments'
    when     28     then     'oJournalVouchers'
    when     30     then     'oJournalEntries'
    when     31     then     'oStockTakings'
    when     33     then     'oContacts'
    when     36     then     'oCreditCards'
    when     37     then     'oCurrencyCodes'
    when     40     then     'oPaymentTermsTypes'
    when     42     then     'oBankPages'
    when     43     then     'oManufacturers'
    when     46     then     'oVendorPayments'
    when     48     then     'oLandedCostsCodes'
    when     49     then     'oShippingTypes'
    when     50     then     'oLengthMeasures'
    when     51     then     'oWeightMeasures'
    when     52     then     'oItemGroups'
    when     53     then     'oSalesPersons'
    when     56     then     'oCustomsGroups'
    when     57     then     'oChecksforPayment'
    when     59     then     'oInventoryGenEntry'
    when     60     then     'oInventoryGenExit'
    when     64     then     'oWarehouses'
    when     65     then     'oCommissionGroups'
    when     66     then     'oProductTrees'
    when     67     then     'oStockTransfer'
    when     68     then     'oWorkOrders'
    when     70     then     'oCreditPaymentMethods'
    when     71     then     'oCreditCardPayments'
    when     73     then     'oAlternateCatNum'
    when     77     then     'oBudget'
    when     78     then     'oBudgetDistribution'
    when     81     then     'oMessages'
    when     91     then     'oBudgetScenarios'
    when     97     then     'oSalesOpportunities'
    when     93     then     'oUserDefaultGroups'
    when     101     then     'oSalesStages'
    when     103     then     'oActivityTypes'
    when     104     then     'oActivityLocations'
    when     112     then     'oDrafts'
    when     116     then     'oDeductionTaxHierarchies'
    when     117     then     'oDeductionTaxGroups'
    when     125     then     'oAdditionalExpenses'
    when     126     then     'oSalesTaxAuthorities'
    when     127     then     'oSalesTaxAuthoritiesTypes'
    when     128     then     'oSalesTaxCodes'
    when     134     then     'oQueryCategories'
    when     138     then     'oFactoringIndicators'
    when     140     then     'oPaymentsDrafts'
    when     142     then     'oAccountSegmentations'
    when     143     then     'oAccountSegmentationCategories'
    when     144     then     'oWarehouseLocations'
    when     145     then     'oForms1099'
    when     146     then     'oInventoryCycles'
    when     147     then     'oWizardPaymentMethods'
    when     150     then     'oBPPriorities'
    when     151     then     'oDunningLetters'
    when     152     then     'oUserFields'
    when     153     then     'oUserTables'
    when     156     then     'oPickLists'
    when     158     then     'oPaymentRunExport'
    when     160     then     'oUserQueries'
    when     162     then     'oMaterialRevaluation'
    when     163     then     'oCorrectionPurchaseInvoice'
    when     164     then     'oCorrectionPurchaseInvoiceReversal'
    when     165     then     'oCorrectionInvoice'
    when     166     then     'oCorrectionInvoiceReversal'
    when     170     then     'oContractTemplates'
    when     171     then     'oEmployeesInfo'
    when     176     then     'oCustomerEquipmentCards'
    when     178     then     'oWithholdingTaxCodes'
    when     182     then     'oBillOfExchangeTransactions'
    when     189     then     'oKnowledgeBaseSolutions'
    when     190     then     'oServiceContracts'
    when     191     then     'oServiceCalls'
    when     193     then     'oUserKeys'
    when     194     then     'oQueue'
    when     198     then     'oSalesForecast'
    when     200     then     'oTerritories'
    when     201     then     'oIndustries'
    when     202     then     'oProductionOrders'
    when     205     then     'oPackagesTypes'
    when     206     then     'oUserObjectsMD'
    when     211     then     'oTeams'
    when     212     then     'oRelationships'
    when     214     then     'oUserPermissionTree'
    when     217     then     'oActivityStatus'
    when     218     then     'oChooseFromList'
    when     219     then     'oFormattedSearches'
    when     221     then     'oAttachments2'
    when     223     then     'oUserLanguages'
    when     224     then     'oMultiLanguageTranslations'
    when     229     then     'oDynamicSystemStrings'
    when     231     then     'oHouseBankAccounts'
    when     247     then     'oBusinessPlaces'
    when     250     then     'oLocalEra'
    when     280     then     'oSalesTaxInvoice'
    when     281     then     'oPurchaseTaxInvoice'
    when     300     then     'BoRecordset'
    when     305     then     'BoBridge'
    when     260     then     'oNotaFiscalUsage'
    when     258     then     'oNotaFiscalCFOP'
    when     259     then     'oNotaFiscalCST'
    when     261     then     'oClosingDateProcedure'
    when     10     then     'oBusinessPartnerGroups'
    when     278     then     'oBPFiscalRegistryID'
    else '?' end
    return @ret
    end
    and call it as
    SELECT TOP 100 PERCENT T0.DocDate, dbo.trans(T0.TransType), CAST(T0 ....

  • When trying to udate iTunes on my PC, I recieve the error message "The older version of iTunes cannot be removed"  How do I correct this error and not lose all the music I have in iTunes?

    When trying to update my version of iTunes on my PC with Windows 7,  I receive the error message "The older version of iTunes cannot be romoved".  How do I correct this problem without losing all the music that I have in iTunes on my PC?

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • How to fix this error message The backup disk image "/Volumes/AirPort Disk/FARES DEL VALLE's iMac.sparsebundle" could not be accessed (error -1).

    how to fix this error message The backup disk image “/Volumes/AirPort Disk/FARES DEL VALLE’s iMac.sparsebundle” could not be accessed (error -1).

    The troubleshooting C17 is the specific article.
    http://pondini.org/TM/Troubleshooting.html
    This is generally a Lion error.. and you will need 5.6 utility to get access to the disk area.
    So download the real utility. Run it instead of v6 toy version.
    http://support.apple.com/kb/DL1482
    Go to the manual setup, disk page and click on disconnect all users.. that will unmount all users connected to the disk and allow it to start working. But there are a number of other issues that are possible cause. Pondini lists some of them.

  • How I know my answer to the security question, How I know my answer to the security question

    How I know my answer to the security question, How I know my answer to the security question

    Click here for information. If you can't reset them through the method described in that article or by sending yourself a rescue email(the email may take a few hours to arrive), contact the iTunes Store staff via the link in the 'Additional Information' section.
    It isn't possible to create a rescue email address without correctly answering two of the questions. Nobody on these boards can reset them for you.
    (94895)

  • How do I get iTunes back when I get the error message ; the application "I Tunes" unexpectedly quit while trying to restore it's windows. Do you want to restore it's windows?

    how do I get ITunes back when I get the error message :
    The application "ITunes" unexpectedly quit while trying to restore it's windows.  Do you want to restore it's windows?
    I already tried reloading ITunes and it still doesn't startup.

    You didn't mention but are you still running a version of iPhoto older than iPhoto 11?
    If yes, then go to the App Store and purchase the iP 11 app and install it. Back up your photo library first.
    Once iP 11 is installed and has imported all your photos do a restart of the Mac.
    This should resolve most issues with iTunes 10.6 and you should be able to run iTunes and sync up your iOS devices.

  • TS2529 The error msg "The iPad "User's iPad" cannot be synced.  You do not have enough access privileges for this operation." appears when I connect my ipad to itunes.  How to resolve?

    The error msg "The iPad "User's iPad" cannot be synced.  You do not have enough access privileges for this operation." appears when I connect my ipad to itunes.  How to resolve?

    If you're running Windows, close iTunes, right-click on the iTunes icon and choose Run as Administrator, then try syncing again.

  • Question!hi!i try to install mac os x lion from 10.6.8. the system apprear the error message, the recover system can not be created . how should I do?

    question!hi!i try to install mac os x lion from 10.6.8. the system apprear the error message, the recover system can not be created . how should I do?

    Peruse the hits from a google search for recovery system can't be created site:apple.com

  • Replaced HD yesterday  Was able to restore from Time Machine Now, it won't back up to Time Machine.  I removed the TM and tried to add it- the error is "The disk image for "computername.sparsebundle" is in use.  Try ejecting the disk image - How do I do?

    Replaced HD yesterday  Was able to restore from Time Machine Now, it won't back up to Time Machine.  I removed the TM and tried to add it- the error is "The disk image for "computername.sparsebundle" is in use.  Try ejecting the disk image - How do I do?

    Hello jfilbey,
    Thanks for using Apple Support Communities.
    Power cycle the disk Time Machine is backing up to.
    For more information on this, take a look at:
    Time Machine: Troubleshooting backup issues
    http://support.apple.com/kb/HT3275?viewlocale=en_US&locale=en_US
    Best of luck,
    Mario

  • My problem is on my Windows PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help?

    I use both a Mac and a PC.  My problem is on my Windows 7 PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help out there?  Thanks

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • When I try to move files from my mac (v10.8.5) to my external harddrive I get the error message The operation can't be completed because an unexpected error occurred (error code -50).

    When I try to move files from my imac (v10.8.5) to my external harddrive I get the error message "The operation can’t be completed because an unexpected error occurred (error code -50)." How can I resolve this? Thank you.

    Some other things to look at.
    https://www.google.com/search?btnG=1&pws=0&q=The+operation+cannot+be+completed+b ecause+an+unexpected+error+occurred+(error+code+-50

  • I've been getting the error message "The disk you inserted was not readable by the computer". I can't open system preferences, disk utility, or Time Machine. I'm guessing it has something to do with my external hard drive, although it hasn't been touched.

    I've been getting the error message "The disk you inserted was not readable by the computer". I can't open system preferences, disk utility, or Time Machine. I'm guessing it has something to do with my external hard drive, although it hasn't been touched lately, but I can't figure out how to solve the problem. Any suggestions? Thank you!

    Thanks for your quick response. I had a look at your discussion... I tried it on a Windows machine and I thought that was compatible with ExFAT?
    Therefore I need to attempt to use my external hard drive with a machine that boasts OS X 10.6.5 or above and then it should work?
    Thanks

  • The error is " The Mapping to Node has not been completed

    Hi All,
    I am getting a strange type of error and need help immediately.
    The error is " The Mapping to Node COMPONENTCONTROLLER.1.PLANNING_ENTITY Has Not Been Completed" for the node that exists in the Parent component and is being used in all the child nodes thru reverse mapping.
    I have done mapping in all the child nodes but still the message is coming.
    Could anybody tell me the reason .
    Regards,
    Arti.

    Basically somewhere you have defined a context node 'PLANNING_ENTITY'  to be an Input-Element. At the same time you did not define (through a component usage at design time) where the input to that node is coming from. This means the mapping path to the node is not complete, and the node does not know where it is mapped to.
    Either:
    - You untick the checkbox 'Input-Element (ext.)' inside the controller context, or
    - You find the component that uses the component with the node 'PLANNING_ENTITY' and select Component_Usage->'Name of Usage'->'Add controller usage'. Inside the controller menu you see then, you can now provide a mapping to the context node.
    I realise this now sounds a little confusing, but I'm happy to provide more details should you need them.
    Cheers,
    Robin

  • I just installed ITunes 11.0.4. I get the error message: "The Itunes Library cannot be saved. A folder was specified instead of a file." When I sign on next, it says the library can't be found. Running Windows Vista with Mcafe protection

    I just installed ITunes 11.0.4. I get the error message: "The Itunes Library cannot be saved. A folder was specified instead of a file." When I sign on next, it says the library can't be found, and Itunes wont open. I'm running Windows Vista with Mcafe protection

    Hi there Br0x,
    You may want to try rebuilding the iTunes library as an initial troubleshooting step. Take a look at the article below for more information.
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    -Griff W.

Maybe you are looking for

  • Quicktime video looks different in Firefox and Safari, is there a fix?

    My full problem is described in this thread: http://discussions.apple.com/thread.jspa?messageID=4451761 but to keep it simple, my immediate issue is that Safari and Firefox are displaying my video differently. Firefox appears darker and Safari appear

  • Error trying to use OLTCommandLine.jar

    I have an error trying to run an OLT Scenario from command line using OLTCommandLine.jar as described in Chapter 4.3.6 of the OLT Load Testing Users Guide. (OATS 12.1) If anyone has input please let me know. I am attempting to invoke OLTCommandLine.j

  • OBIEE 11.1.1.1.7

    Hi, I'm having problems exporting a logo in an analysis or dashboard to excel but fine works for PDF. The logo is referenced using fmap. The files are located under two directories and i've restarted /u01/app/oracle/product/fmw/Oracle_BI1/bifoundatio

  • Simple question re: Avoiding null pointer errors

    In my program, I ask the user to enter a 3-letter code, then try to determine whether that code belongs to one of a list of objects. I keep getting null-pointer errors. I understand why, but don't know how to get around it. I don't know how to format

  • ONC/RPC XDR fragment length is not a multiple of four

    Dear friends, I am using SUN RPC for the communication between a client and a server. But, sometimes, i am getting an error message saying *"ONC/RPC XDR fragment length is not a multiple of four"*. What could be the reasons for it and how to remedy i