Fixed Assets Has created Unbalanced Journal Entry

Hi  All,
Have you faced the following problem?
We have Run FA depreciation by Projects and Profit centers on our test system (B12007 PL 49) and the result journal entires are booked as unbalanced.
Regards,
J.

Hello Jitin
I have already checked the note 1227200.
All G/L Accounts set to MultiCurrency, and the Posting of Depreciation is set as suggested.
The depreciation has been run, and there was no error message. Now in the books i see the unbalanced transactions on the application.
If I look the transactions by SQL, I can see that the transaction is balanced.
Currency settings: without decimal.
Any other idea?
Regards,
J.
Edited by: János Nagy on Feb 2, 2010 1:49 PM

Similar Messages

  • "Trying to create a journal entry of the local BP with foreign amounts" error

    I have an addon that needs to set the Total (LC) field on the invoice form when a Delivery is copied to an Invoice. In this case, it's $169,978.62. The original Unit Price on the row is $7,000.00, with quantity of 5 MT (selling UoM). After populating the line total field through SDK UI, it calculated discount% to be -385.653. When I press Add, it gives me red bar error "Trying to create a journal entry of the local BP, with foreign amounts [message 3530-11]". This BP uses local currency and there is no foreign currency involved on this document. If I perform the same action through normal UI without SDK, I can add the invoice without a problem. I know it probably has to do with rounding, but how can I get past this error if I have to set the line total through SDK?

    Hi Ronnie,
    Glad you have found the issue
    Regardss,d
    Eric

  • Goods Issue creates no Journal Entry

    Hello-
    I'm in something of a unique situation in that (not going into any details) I've been given an only partially complete add-on to Business One and must now finish it.  I've had no formal training in the SDK; everything I've learned has been through this forum, the help files and simply experimenting with the code.  Given this, there are probably many things of which I'm not aware.
    My question, then:
    Is there some sort of way to "turn off" the creation of Journal Entries, either in the SDK or in a company's settings, when a Goods Issue is made?  I ask because right now no Journal Entry is being created, even though one is made for all other documents (Goods Receipt, Inventory Transfer, etc.).  I'd like to turn it back on again, because not creating a Journal Entry doesn't seem like the right thing to do.
    Thank you.

    Hi Van,
    There is no setting that will turn off GL postings and a Goods Issue will create journal entries unless it is saved as a draft.
    Have you logged this will SAP Support?
    Kind Regards,
    Owen

  • Error in creating GL journal entry

    Hi all,
    I'm looking for some help with an error code. I'm trying to Add a direct time entry that is currently saved in draft form only, and I encounter the following message:
    Error creating GL Journal entries: 10000415 - Linked value 1329 does not exist
    Presumably the 'linked value' refers to the first column of our time entry form, where we enter one of our old format reference numbers and sap brings back its own version of that reference number - so there must be a typo here somewhere? and if this is the case, is there a way sap will point out the relevant entry?
    Thanks

    HI.....
    Where you are saving this Journal Entry as Draft?
    Is it in Posting Voucher. If yes then is this entry still exists in Posting Voucher?
    Please check that first.....
    Regards,
    Rahul

  • Fixed Assets - Acquisition created doesn't show

    Hi all,
    i am having a strange problem while using the SAP Business One Fixed Assets module. Basically i have created a Fixed Assets Acquisition (with no supplier). As soon as i press 'Add' the system shows a message at the bottom saying 'Acquisition posted successfully'. Even though this message is created when i go back on the Acquisition screen that Acquisition which I have just created doesn't show. In fact if you go on the Fixed Assets Master Data details for that Fixed Asset which you used in the Acquisition document, nothing shows under the Documents tab.
    Do you have any idea of what might be going wrong?
    Thanks

    Dear Marvin,
    After you create the acquisition, go to journal entries and check the last journal entry to verify if posting has been done in terms of accounting
    Regards
    Kentish

  • B1if - Create a journal entry

    Hello everyone,
    i hope this is the right section for that scenario, which should be easy but i cannot get it to work. I am trying to create a simple journal entry with the given structure from the B1if Object list. It all works like a charm, except for the scenario when i am trying to use a business partner in the
    <AccountCode>K123456</AccountCode>
    results in: Exception : DI Error: (-5011) Invalid Account Code
    It is necessary for me, to be able to do so. Help is greatly appreciated. Here my full xsl. As of right now it is all hardcoded.
    <AdmInfo xmlns="">
    <Object>30</Object>
    <Version>1</Version>
    </AdmInfo>
    <QueryParams xmlns="">
    <JdtNum/>
    </QueryParams>
    <JournalEntries xmlns="">
    <row>
    <!--multiple such elements are allowed-->
    <ReferenceDate>12.08.2014</ReferenceDate>
    <Memo>Memo</Memo>
    <Reference>Ref 1</Reference>
    <Reference2>Ref 2</Reference2>
    <TaxDate>13.08.2014</TaxDate>
    <DueDate>13.08.2014</DueDate>
    </row>
    </JournalEntries>
    <JournalEntries_Lines xmlns="">
    <row>
    <AccountCode>K123456</AccountCode>
    <Debit>1.00</Debit>
    <Credit>0.00</Credit>
    <DueDate>13.08.2014</DueDate>
    <LineMemo>string</LineMemo>
    <Reference1>R1</Reference1>
    <Reference2>R2</Reference2>
    </row>
    <row>
    <AccountCode>102000</AccountCode>
    <Debit>0.00</Debit>
    <Credit>1.00</Credit>
    <DueDate>13.08.2014</DueDate>
    <LineMemo>string</LineMemo>
    <Reference1>R1</Reference1>
    <Reference2>R2</Reference2>
    </row>
    </JournalEntries_Lines>

    I found the solution myself. You need to use the <ShortName> for the business partner and in the <AccountCode> you need to put your Accounts Receivable account.

  • How to create a journal entries by sdk

    hi Experts
    I know how to create invoice or order by sdk . but I do not know how to create Journal Entry by sdk. i mean what fields are required. Plz send me a basic template for Journal Entry.
    Regards
    Gorge

    Dim oJounalEntry As SAPbobsCOM.JournalEntries
                ''Passing Jounal Entry
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oRecset)
                oJounalEntry = Me.SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
                oJounalEntry.Series = 14
                oJounalEntry.DueDate = Now
                oJounalEntry.ReferenceDate = Now
                oJounalEntry.TaxDate = Now
                oJounalEntry.Lines.ShortName = bpcode
                oJounalEntry.Lines.Credit = amount
                oJounalEntry.Lines.Debit = 0
                oJounalEntry.Lines.DueDate = Now
                oJounalEntry.Lines.TaxDate = Now
                oJounalEntry.Lines.ReferenceDate1 = Now
                oJounalEntry.Lines.Add()
                oJounalEntry.Lines.AccountCode = AccountCode
                oJounalEntry.Lines.Credit = 0
                oJounalEntry.Lines.Debit = amount
                oJounalEntry.Lines.DueDate = Now
                oJounalEntry.Lines.TaxDate = Now
                oJounalEntry.Lines.ReferenceDate1 = Now
                oJounalEntry.Lines.Add()
                lRetCode = oJounalEntry.Add()

  • How to default Ledger to SLA.: Create Subledger Journal Entry

    Here we have default the ledger for Data access sets , but also here not default the ledger.
    steps:
    1. AP-> ACCOUNTING
    Subledger Journal Entry Headers:
    Ledger[  ]

    Dear SAP Student
    It is just like inter unit cash transfers.  Also each department is spending cash on its own.  Now that I would like to know the balance cash departmentwise.
    As you said if I receive and pay through vendors I would be in a position to know only vendor wise balances.  It does not serve my very purpose of deparmentwise balance of cash. 
    I agree with Selva to go in for creating deparmentwise cash journals in the company code since each deparment is incurring expenses also and each department wise balance is also required. 
    Aravind

  • FM for creating Cash Journal Entries

    Hi guys,
    What is the FM for making Cash Journal Entries?
    Thanks,
    Chirantan

    Hi Chirantan,
    I am sure you mean FI-CA Cash Journal, so I have listed below some of the useful FMs in CJ
    FKK_CD_PAYMENT_CREATE
    FKK_S_CASH_JOURNAL_COMMIT
    FKK_CJ_CASHDESK_OPEN_OR_CLOSE
    FKK_CJ_CHECK_BUKRS_VALIDITY
    FKK_CJ_CHECK_BVRKO_VALIDITY
    FKK_CJ_CHECK_ROLE_AKTIVITY
    FKK_CJ_CREATE_GIVEN_BACK_DATA
    FKK_CJ_CREATE_SPECIAL_TASK_DOC
    FKK_CJ_GET_DATA_FOR_PRINTING
    FKK_CJ_POST_TRANSFER
    FKK_CJ_PROHIBIT_RVRSL_OF_DOCS
    FKK_CJ_PROHIBIT_SPECIAL_DOC_70
    FKK_CJ_READ_ROLE_ACTIVITIES
    FKK_CJ_READ_SPECIAL_DOCUMENTS
    FKK_CJ_SELECT_DATA
    FKK_CJ_SET_AND_CHECK_DATA_CIC
    FKK_CJ_SHLP_OFFIC
    FKK_CJ_SHOW_ALV_TREE_DETAILS
    Best of luck,
    David

  • Creating new Journal entry

    hi,
    i am trying to add a new line using DI API in the journal entry lines.
    i want to add the partener code but when i insert it i get the chosse from list of G/L acount opened.
    Is there somthing special to do to insert the BP Code ?
    Thanks for your help.

    when you want to add the business partner code to your journal entry you
    should set the shortname to the businesspartner cardcode:
    oJnl.Lines.ShortName = "C1000"

  • To find out user who has created or deleted entries in a database table

    Hi,
    I have a scenario where i have many entries for t001w table and somehow a new plant is created and existing plant is deleted , Now I need to know
    how to find out which user on what date has done these changes to the database table.
    Thanks
    Srikanth

    Hi,
    Go to the transcation  SCU3   and click on evaluate the changes log click yes  and then
    evalute log then enter ur table name ,don't forget to check the radio button evaluate for "TABLES" and then execute
    you will find details like this
    arameters for Analysis:
            System ID:            D60
            SAP Release:          700
            Client:               730
            Date :                28.04.2010
            Time:                 16:09:09
            User:                 DEVELOPER01
    elected Period:
            From (date/time)      22.04.2010 00:00:00
            To (date/time)        28.04.2010 16:07:51
    o logs found for the selected period
    o authorization group containing the following tables:
    zFEED_QUES_MASTR

  • How can I know if a manually created Journal Entries has not been paid yet?

    Hi There.
    I'm passing through the following situation: I need to find out which Journal Entries that have been manually created ( TransType = 30 ) don't have an Outgoing Payment record associated
    Lets suppose that I manually created a Journal Entry. Let's call it OJDT_MAN
    Then, I went to the Outgoing Payments Form ( Modules -> Banking -> Outgoing Payments -> Outgoing Payments ) and paid OJDT_MAN.
    This process will create another Journal Entry. Let's call it OJDT_AUTO.
    I can't find in the database anything that indicates that OJDT_MAN has already been paid. I tried looking for a Status field; Checking if OJDT_AUTO had some code that could get me to OJDT_MAN ( I found BaseRef and TransType = 46, that can guide me to the new OVPM record ); Tried looking at the new OVPM record for some field that could lead me to OJDT_MAN, but I had no success at all...
    So, in resume, and again, how can I know if a manually created Journal Entry hasn't been paid?
    (When I go to the Outgoing Payments Form and select a Business Partner, it B1 shows me only the not paid ones... How does he knows it? )

    Just to make it more clear, the SQL we were looking for is this:
    Select
    From
      OJDT
    Where
      OJDT.TransId Not In ( Select VPM2.DocEntry From VPM2 Where VPM2.InvType = 30 )
      And
      OJDT.TransType = 30

  • I have two lists. The first is "Tasks", second is "Journal". I need a "Create Journal Entry" link in the Tasks list. How do I do that?

    Let's say I have a Task named "Build SSIS for Duke Energy" and it has another column called Active. Now every day I look at my task list and If I worked on that task I want to create a Journal entry of what I have done. So from the Task
    list I'd like a third column that calls the "Journal Entry" list's new form page and pass it in the ID of the task. I have found several TextToHtml scripts out there, but they have to be stored in a script library, and then sourced to a content
    editor web part. The problem is they don't fire when I have my list grouped. In addition to, every time someone creates a new view, I have to go in and add the Content Editor web part, point to the script....
    Any thoughts. It is the grouped view that really bug me.

    Hi,
    If you only want to add a hyperlink to create a Journal entry in the task list, I recommend to add a Hyperlink column in the task list and then create workflow to update the column.
    You can follow the steps as below:
    Open the task list, add a hyperlink column named Create Journal Entry.
    Create a workflow associated to the task list, start the workflow automatically when an item is created.
    Add actions as below:
    Then when a task is created in the task list, the workflow will be stared automatically to update the “Create Journal Entry” column.
    Thanks,
    Jason             
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Fixed Exchange Rate in Journal Entry- How to use?

    Hi Expert,
    We need to create a journal entry with different rate VS exchange rate table.
    Is there any way to ovirride the exhange rate during the journal data entry?
    I hv already reads discussion on this topic but i want like following Scenario
    In Exchange rate And indexes i hv define EUR=80 And INR=1
    Now i want following Manual JE
    GL/BP code                   Debit(FC)                Credit(FC)                 Debit                       Credit
    Any Foreign Curr Acc       EUR 10.00                                            750.00
    Any INR Curr ACC                                          EUR 10.00                                             750.00
    I have already make tickmark on Fixed Exchange rate    EUR       75.00  
    but it is not working it shows following JE
    GL/BP code                   Debit(FC)                Credit(FC)                 Debit                       Credit
    Any Foreign Curr Acc       EUR 10.00                                           800.00
    Any INR Curr ACC                                         EUR 10.00                                               800.00
    Plz Replay i m waitting.......my client want result on urgent basis.....
    Regards,
    Sandy

    Hi Sandesh,
    Do you mean after you have added JE, you review it and it is not similar to the JE when you add?
    Toan

  • Manual journal entries created in Ap did not see in Accounts Payable Trial

    Hi Experts,
    Report Accounts Payables Trial Balance, with parameter Include SLA/Manuals/Other Sources Flag set to Yes, does not show manual journal entries.
    These Manual journals entries are created in AP
    Navigation: Payables -->Accounting --> Subledger accounting --> Journal Entries.
    Ofter creating the journal entries i ran Accounts Payable Trial Balance, when i go through the output i did not see the Manual journal entries which are created in AP.
    Please help me it is very urgent.
    Regards,
    Raju.

    Pl check your 'Report Defintion' once to ensure that liability accounts that you are using in manual entries are included in report definition.
    Regards,
    Tarun

Maybe you are looking for

  • Multiple domains names and web sites with only one SLS and one static IP

    I tried to find a post on this topic but I still can't find what needs to be done. SLS is configured for one domain with one web site and it's working well. We will call it domain1.com. Here is the config: Static IP: 69.x.x.x DNS setting under Server

  • Sales office and sales group should greyed out..

    Hi All, I have a requirement here where the sales office and sales group in sales order should  greyed out once billing is done for the sales order. Kinldy suggest how can we achieve this. Thanks, Pavan.

  • Why can't I 'Export Using Compressor Settings' in FCPX?

    It keeps telling me I have to buy Compressor, which I did from the App Store.

  • Why do I lose memory every time I click on an app on my ipad2

    Since I got my new iPad, I have been having a problem with the space on my iPad, I have only downloaded a few apps yet I still lose memory every time I click on the app. I first thought that it would be because I save new missions on games.... But I

  • No Sound with .smi files

    Greetings, I have authored a program that creates .smi files. When I open these files with Quicktime, about 1/4 to 1/3 of the time the file appears to be playing, but there is no sound. If I open the same file repeatedly, sometimes it plays properly