A negative balance in the account Apple ID.

A negative balance in the account Apple ID.
I want to release the apple id us to Thailand.

Hi Cindy,
Do you read the negative amount from G/L report or from Inventory Audit report? If you manage the item cost per company, not per warehouse, there is a possibility that your inventory amount for certain warehouse will be minus. But, if you manage the item cost per warehouse, shouldn't possible your inventory amount is minus.
Next thing to do is, you should check using query to JDT1 table, and check whether exist a journal entry transaction which post directly to your inventory account. If exist, no wonder if your inventory account is minus, since the journal entry transaction won't update the item cost for particular item. You should consider to amend your sp notification transaction to block such thing happened in the future.
If you need any correction regarding item cost, you should use inventory revaluation module instead of creating a journal entry directly to inventory account. Your G/L and your inventory ledger won't tied up. Hope this can help.
Best Regards,
Hendry Wijaya

Similar Messages

  • I would like to reset my balance on the account. Help please.

    I would like to reset my balance on the account. Help please.

    Contact iTune Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Negative balance in Cash Account

    Is there any way to view only Negative balances in Cash Account???

    Hi,
    Check Account balance window of the the Cash Account G\L and the column Cumulative Balance. When the cumulative balance is negative, the Cash Account have gone below zero.
    If you want only those specific days, then you have to query using the SQL tables.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Hello how I want to help get rid of the remaining balance in the account, I want to change the state

    Hello how I want to help get rid of the remaining balance in the account, I want to change the state

    Go to www.apple.com/emea/support/itunes/contact.html and ask the iTunes Store staff to zero your account balance.
    (108244)

  • Negative balance in inventory account

    Company is setup to not allow negative inventory, but one of my inventory accounts shows a negative balance. Ideas on how this could happen?

    Hi Cindy,
    Do you read the negative amount from G/L report or from Inventory Audit report? If you manage the item cost per company, not per warehouse, there is a possibility that your inventory amount for certain warehouse will be minus. But, if you manage the item cost per warehouse, shouldn't possible your inventory amount is minus.
    Next thing to do is, you should check using query to JDT1 table, and check whether exist a journal entry transaction which post directly to your inventory account. If exist, no wonder if your inventory account is minus, since the journal entry transaction won't update the item cost for particular item. You should consider to amend your sp notification transaction to block such thing happened in the future.
    If you need any correction regarding item cost, you should use inventory revaluation module instead of creating a journal entry directly to inventory account. Your G/L and your inventory ledger won't tied up. Hope this can help.
    Best Regards,
    Hendry Wijaya

  • How do I change the account apple ID for my Icloud on the ipad?

    I recently changed my apple ID. But the icloud account information won't update to the new id on my ipad and iphone. Suggestions?

    To change the iCloud ID on your iPad, you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPad, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPad on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How to check the balance of the accounts in a specific dates

    Hi all
    I am using GL, AP and CE. My customer wants some reports or functionality in the system to check the balances of specific accounts in specific dates.
    So the user has to enter the beginning and the ending date for example:
    Beginning date: 13-JAN-2010
    Ending date: 21-FEB-2010
    Select some range of the accounts
    And he wants back this information: account number, account description, the beggining balance (the balance of each account chosen in 13-JAN-2010), ending balance(the balance of each account chosen in 21-FEB-2010)
    Please tell me where to find this information. Is there any standard report in the system.
    I checked Trial Balances reports, but they all do not give you the possibility to choose some range of accounts and they do not give you the possibility to choose specific dates.
    Almost the same comments for Account Analysis reports: they do not show balances, but movement for accounts.
    Almost the same comments for General Ledger reports: they do not allow you to choose specific dates.
    Please tell me how can i find this, because my customer is complaining that the old system did this and he really wants this information even in the new system which is Oracle Financial.
    Thank you and best regards
    Ernest

    Hello Ernest.
    You will need to know the FLEX_VALUE_SET_ID corresponding to your accounts 1110001 and 1110004. Also check if these values belong to segment2 of the Chart of Accounts. If not, you will need to change it in the query.
    For the Beggining balance:
    SELECT cc.segment2 "Account",
    f.description "Description",
    nvl(sum(l1.accounted_dr),0) - nvl(sum(l1.accounted_cr),0) "Beg Balance"
    FROM gl_code_combinations cc,
    fnd_flex_values_vl f,
    gl_je_lines l1
    WHERE cc.code_combination_id = l1.code_combination_id
    AND cc.segment2 between '1110001' and '1110004'
    AND cc.segment2 = f.flex_value
    AND l1.effective_date <= '13-jan-10'
    AND f.flex_value_set_id = <value you will need to find>
    AND l1.set_of_books_id = <your set of books id>
    GROUP BY cc.segment2, f.description
    For the ending balance:
    SELECT cc.segment2 "Account",
    f.description "Description",
    nvl(sum(l1.accounted_dr),0) - nvl(sum(l1.accounted_cr),0) "End Balance"
    FROM gl_code_combinations cc,
    fnd_flex_values_vl f,
    gl_je_lines l1
    WHERE cc.code_combination_id = l1.code_combination_id
    AND cc.segment2 between '1110001' and '1110004'
    AND cc.segment2 = f.flex_value
    AND l1.effective_date <= '21-feb-10'
    AND f.flex_value_set_id = <value you will need to find>
    AND l1.set_of_books_id = <your set of books id>
    GROUP BY cc.segment2, f.description
    Let me know if it worked.
    Octavio

  • Negative Balance with cash account not allowed

    Dear Expert,
    I want to stop transaction with negative cash balance in Cash account.
    How do I do it? Please help me.

    Hello sujankjana ,
    Please try this in SP_Transactionnotification procedure.
    IF @transaction_type = 'A' ANd @object_type ='46'
    Begin
    Declare @Amount decimal(10,3)
    Set @Amount = (Select T3.CurrTotal from OACT T3  where  T3.AcctCode  = (Select CashAcct from OVPM where DocEntry = @list_of_cols_val_tab_del ))
    if @Amount < 0
    Begin
    Select @error = 17 ,@error_message =N'We have not sufficiant Cash Amount '
    end
    end
    if any query kindly revert back.
    Thanks & Regards
    Manvendra Singh Niranjan

  • Possiblity Expiration of the account apple under 48 hours?

    Hello,
    I received an e-mail saying to me that my account expires within 48 hours, and so that it is not deleted, I have to confirm my identity by clicking a link.
    Knowing that the sender is oscaro.com... I conclude that from it it is a virus but have they my account ID (bank details)?

    It is a phishing attempt to get your account id and card details (other people have also posted about receiving similar emails). If you clicked on the link and 'logged in' then you should change the password on your iTunes account (e.g. by logging into your account via the Store > View Account menu option on your computer's iTunes and then clicking the Edit button next your account id at the top of your acocunt's screen, or by logging into it via http://applied.apple.com). If you also gave your card details then you should also contact your card issuer and get the card cancelled and replaced.
    If you still have the email then you could forward it to Apple : [email protected]

  • How can I change the country with 0.59 cents balance in the account

    How can I change the country of my account wtih 0.59 cents in the balance

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I bought my Apple products in Belgium though I now live in the UK. I would like to transfer the account (Apple ID etc) to the UK so the correspondence is in English. How can I do this?

    How do I transfer my Apple ID from Belgium to the UK?

    You can log in to https://appleid.apple.com/ and click on "Manage your Apple ID" to change preferred language.
    There is also a language and time zone preference setting for iCloud at https://www.icloud.com/#settings
    Most Apple sites (including this one) have a country setting (circular flag icon) at the lower right of the page -- usually need to scroll all the way down to see it.

  • AP Negative Balance

    Hi Experts,
    I ahve a client who now wants to change the Negative Balance in the AP Accounts. They went live earlier this year and have entries in the System already.
    I see that the 'Display Credit Balance with a negative sign' ois ticked and greyed out. How can I get this AP accounts not to display as negative?
    Thanks.
    Marli

    Hi Marli,
    This initial setting might not be changeable as soon as you posted any transactions. You need to create a new database to solve the problem.
    Thanks,
    Gordon

  • Moving assets with negative balance to zero.

    Hello everybody
    I have an asset account with negative balance because the monthly depreciation, but now the settings for this account must be zero and not allow negative balances. Which could be the procedure to don't have this account in negative balance anymore and move it to zero and what do I have to change or configure to don't allow any more depreciation for this account.
    Thanks a lot

    Hi Paul, I'm sorry to reopen this post again but I got an error when I did what you said, the situation was that I couldnu2019t change de depreciation key Trans: AS02, because I got an error message saying "Depreciation key xxxx should no longer be changed because the asset has been posted to already". Do I have to make something before in customizing or movement to make this change?
    Thanks a lot
    Regards
    Felipe

  • Clearing balance in Bank account

    Hi Guys,
    I have bank account with EUR curreny but my local currency INR, now we are closing account and made the clearing document with EUR currency.The clearning document is posted in EUR and now if we go FS10N system is showing some balance in the account INR currency due to exchange rate difference. (Note: Balance is showing only local currency and not EUR currench in Same account).
    It should be go to exchange rate loss/ Gain account, now i can not transfer the amount to exchange rate loss/ Gain account because the account is maintaing in EUR.
    Kindly suggest me in this regard.
    Reg,
    Raj.

    Raja,
    Please use transactin F-03 to clear the trasnactions in your bank ledger.
    In selection screen of F-03 give currency as EUR, since you have 0 balance in EUR currency.Then system will get the net balance in local currency as exchange rate diff.
    May be while doing your F-03 entry, you might get one error also like....
    Exch rate diff accounts not maintained for GL account <your bank GL acc no> for currency INR
    So for this you need to maitntain the exchange rate diff accounts for your bank accounts through OB09.
    This will fix your issue.
    Thanks,
    Srinu
    Edited by: Nathan Genez on Sep 29, 2009 7:43 AM

  • Time Balance = First for account in HFM

    Hi All!
    Is it possible in HFM to get correct results in summary time periods for "Opening" account (like in Planning when you setup account Time Balance property as First).
    For example:
    I have such accounts: CFOpening (Balance type), CFFlow (Flow type), CFClosing (Balance type)
    and amounts
    for Jan:_
    CFOpening = 100
    CFFlow = 50
    CFClosing = 150
    for Feb:_
    CFOpening = 150
    CFFlow = 50
    CFClosing = 200
    for Mar:_
    CFOpening = 200
    CFFlow = 50
    CFClosing = 250
    for Q1_ I want see this results:
    CFOpening = 100 (amount from Jan)
    CFFlow = 150 (sum of Jan-Mar)
    CFClosing = 250 (CFOpening + CFFlow)
    but now I have:
    CFOpening = 200 (amount from Mar)
    CFFlow = 150 (sum of Jan-Mar)
    CFClosing = 350 (CFOpening + CFFlow)
    How can I get correct result for Q1 in such case?
    Thanks a lot in advance!

    In HFM balance accounts behave as ending balances, so that the YTD value is always equal to Periodic value. Your CFOpening account is declared as balance, accordingly HFM understands that March value (200) behaves like ending balance of this account. Therefore Q1 ending balance of the account is 200, it cannot be 100 unless you redefine your rules to set your CFOpening account always to the year beginning value (or previous year's ending balance). That is for all months CFOpening will be 100 for all months. But then you would have a problem of adding up balance and flow accounts. Because flow accounts unlike balance accts have different YTD and Periodic values. Usually, we overcome this problem by declaring all accounts as balance, at the expense of losing the Periodic values of the CFFlow account.

Maybe you are looking for

  • AP Line Item issue

    Hi Gurus, I have an AP report which I need to generate using some fields from the purchasing area which are not available in the AP line item cube.The fields am missing which are going to be needed are : PO # - Purchasing order Number from EKBE  -sou

  • How to - Build a report based on dynamic query

    I am using this how to and find out that there is an syntax error on this example, where the and should be where. I got an SQL parsing error when I followed this example until I debugged with the debug while on this page. Has any one using this how t

  • Vendor code and Contract no determination in CJ20N

    hi guys, we have this problem , whenever user entries material no 20024970, plant FN66 via CJ20N, system will automatically propose contract no 56001127 and vendor code 300164 .. i have checked ME13 and there is no data exists for mat 20024970 and pl

  • Enterprise manager in rel (10.1.0.2.0)

    hi I have error in Enterprise manager console. MY database is up and working. when i start (emctl start dbconsole) EM. It's successfully started. But as i open http://localhost:5501/em IT is working but database is not open here! I tried to make it u

  • I've lost my photo's off my ipod

    I was trying to sync my photo's from my ipod to my laptop, 3000 family photo's from when my children were babies, and they have gone, they are not on my ipod anymore and I can't find them on my laptop, can someone please help, can I get these back???