Period LOV in GL journal entry from r12

I am trying to do some customization for the period LOV in GL journal entry form.
In found the below SQL from the record group of the LOV:
  SELECT period_name,
         start_date,
         end_date,
         period_num,
         period_year
    FROM gl_periods
   WHERE period_set_name = :PARAMETER.period_set_name
     AND period_type = :PARAMETER.accounted_period_type
ORDER BY period_year DESC, period_num DESC
Since, I don't know how to get the values for :PARAMETER.period_set_name and :PARAMETER.accounted_period_type ....I ran the SQL
select * from gl_periods where period_name = 'APR-15' 
in toad to find values for period_set_name and values and period_type and then ran the main SQL in toad but it returned lot of records ~500.
But, in the application PERIOD LOV just displays open periods.  I am wondering if you can tell me how it works.
I checked to form to make sure there is no existing personalization for PERIOD LOV.
Thanks.

Hi,
I am pasting my comments next to yours :
These are the issues that needs to be resolved:
• Depreciated balance are over stated in Fixed Assets and needs to be adjusted to reflect what is in GL. => I wasn't sure how this was was possible, since I  assumed that your Asset depreciation journals in GL were being fed from FA. So if depreciation was thought to be incorrect in FA, its corresponding balance in GL should've been incorrect as well. But I guess that's not the case because your other questions imply that some of these assets were acquired and their might have been some conversion activity involved.
• Fixed Assets mass additions are selecting GL accounts that should not be selected. We need to know how to change the criteria for selection. +=> Check the Asset Clearing and CIP clearing accounts on your asset categories+
Later:
• We need to learn the proper way to convert assets we acquired from acquisition into our Oracle Fixed Assets system, so that depreciation start at the time we acquire the assets. => That is correct, you could change your original date placed in service to the acquisition date as part of conversion and if you have the correct prorate convention, they should depreciate the way you want it to.

Similar Messages

  • Import to journal entry from Excel

    I would like to know how user can create journal entry by importing data from excel.
    in our site we have a payroll system and when we want to create journal voucher for related transaction it takes too long , if we had aforementioned facility it would be easy to do this task.

    Hi
    When you go to DTW log in
    <p> Put your user name and password .Enter your server name and click option
    and put the necessary information and click refresh.
    You should see the list of company   </p>
    Hope this solves your issue
    Thank you
    Bishal

  • Error - Journal Entry in R12 -"This balancing segment value....."

    Hello Friends,
    On R12 -> PROD version
    When I enter an Account in Journal, I am getting Error - > "This balancing segment value is not valid for current Ledger"
    It is completly a new setup of R12 accounts.

    Hello Friends,
    Finally I was able to post to GL, ofcourse learned in process how to find where the issue lies. Anyway....still there are some questions.
    Coming back to my earlier 2 questions:
    I noticed, when I assigned Balancing Segment to the Primary Ledger, I get the problem "This balancing segment......", so I just didnot assign any this time and was able to post to GL. I understand that BS assignment might be required to balance the entries in Ledger but I then have not yet quiet grasped the concept, so for a while I might just go with this.
    The 2nd error, I did get that again but I proceeded inspite of that and it is working okay, so donot know what was that one for and now that I know have to dubug, I will keep an eye for it and post any info on that later.
    Thank you all for the help and pointers..

  • PARK & POST  Journal Entry and auto reversal

    Dear All,
    Our auditors has offered the following changes to be implemented in SAP system.
    1. JE approval: Configure the system functionality to place journal entries in a u201Choldu201D status when entered into the system, then the supervisor/manager review and approval then required to release the journal entry from the u201Choldu201D status and post the entry to the general ledger. The reviewer should not have the ability to initiate a journal entry.
    2. JE reversals:  Utilize the functionality to automatically reverse journal entries, booked in prior month as u201Creversing,u201D when new period is opened.
    3. 3-way match: Utilize the SAP functionality to perform an automated 3-way match process between invoice, purchase order, and goods receiving documentation. If invoices meet the 3-way match criteria based on established variance thresholds, invoices should automatically be approved for payment. If variances are noted, which exceed tolerance thresholds set by Management within the system, work flows should be used within the system to automatically route the invoice for the require approval.
    How this changes can incorporated in the system.
    Do suggest.
    Regards,

    For point 1, there is a functionality in SAP where all parked documents will be blocked and then released by the authorized person. There is a standard workflow for that. You may want to check Make and CHeck Settings for Document Parking. If this doesn't satisfy, then there's a need to create a customized workflow. Plus authorizations must be checked so that the users will not be able to Post but only Park. Note that, there is another functionality in Document posting called "Hold" this one, system doesn't assign any financial document. You can assign any reference/number to the document.
    For point 2, there is a Mass Reversal functionality in SAP called the F.80. For accruals, you may use FBS1 which you can input the reversal date and run F.81 to run the reversal.
    For point 3, it is a standard SAP functionality. You must set tolerance as to qty or price variance and the system automatically blocks the invoice for posting and the authorized person is required to release the approved invoices to remove the block for payment. In SAP, when you enter the PO for a particular invoice, it will give you how much or how many is actually goods received for that particular PO. in that sense you will be able to see whether the invoice is completely billed for the whole PO or not.

  • Purpose of field finncpriod when updating journal entries by DI API

    Hello,
    I have to update the project code within the journal entries on line basis. For this reason I use following code (DI API):
    public static void UpdateOjdtJdt1()
    SAPbobsCOM.JournalEntries oJE;
    SAPbobsCOM.Recordset oRS;
    string s;
    int i,j;
    oJE = ((SAPbobsCOM.JournalEntries)(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)));
    oRS = ((SAPbobsCOM.Recordset)(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)));
    string sqlStatement = "select transid from ojdt";
    oRS = ((SAPbobsCOM.Recordset)(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)));
    oRS.DoQuery(sqlStatement);
    while (!oRS.EoF)
    s = oRS.Fields.Item(0).Value.ToString();
    i = Convert.ToInt32(oRS.Fields.Item(0).Value);
    if (oJE.GetByKey(i))
    j = oJE.Lines.Count;
    for (int k=0; k < j; k++)
    oJE.Lines.SetCurrentLine(k);
    oJE.Lines.ProjectCode = "PRJNEW";
    oJE.Update();
    oRS.MoveNext();
    Executing this code, the financial period of the updated journal entry within table JDT1 may change but never in OJDT!
    This looked very strange to me, so I updated the project code simply by using the SBO application. In this case there is no change for the financial period at all (not in OJDT, not in JDT1).
    My questions:
    1) Why does DI API update the financial period within JDT1. In the above mentioned context this does not make sense for me at all.
    2) Why do the SBO application and DI API lead to other results?
    3) Is my way of updating the project code within journal entry lines conform to SAP standards?
    Thank you for your soon response.
    Martin

    Hello Martin
    You have found a BUG.
    To Do:
    . You may check in notes, that somebody has been reported in already and it has been fixed or not.
    - If it is not fixed, please report it to GSC as a message.
    I think the correct would be the SAP B1 standard ...
    Regards
    J

  • Error on trying to view journal entry

    Hi all,
    When i try to view a journal entry from a report, lets say incoming payment, i get an error saying that "You are not permitted to observe this data".
    Any reason as to why this happens?

    Check this links
    https://forums.sdn.sap.com/click.jspa?searchID=20891230&messageID=6387937
    https://forums.sdn.sap.com/click.jspa?searchID=20891230&messageID=5229191
    https://forums.sdn.sap.com/click.jspa?searchID=20891230&messageID=4876002
    Jeyakanthan

  • Import Journal Entries

    Hello,
    I'm going to import with DTW sales and purchase documents from a commercial management software and journal entries from an accounting software.
    I have seen that when I import a document, an automatic journal entry is created.
    So, when I will import the journal entries, I will have this information twice.
    Is there any way to block the automatic creation of the journal entries using SDK?
    Or is there any way to import only the journal entries not coming from sales, purchase, banking...?
    Thank you very much.
    Thibault

    Hi Thibault,
    You will not be able to stop this behavior of creating journal entries in SBO. It is a built in process and stopping it will have a major impact on the financials in the system.  You have to filter the journal entris from the commercial management and accounting software on your side in some or another way that you know which are manually created journal entries and then post them into SBO.
    Hope it helps,
    Adele

  • API FOR GL JOURNAL ENTRIES

    Hi Experts,
    In general ledger super user responsibility we are manually creating the journal entries now we need to create 1000's of entries. so, any one can please help me on this by using "*API*" how can we create the journal entries in general ledger.
    Thanks,
    Christ.

    You can also try WEB ADI to create bulk journal entries....you can copy and past the journal entries from local spreadsheet to WEB ADI spreadsheet and upload to General Ledger.
    Regards,
    Tarun

  • Debtors Aging - Journal Entries

    Hi Experts,
    I need some advice regarding omitting Journal Entries from a Debtors Aging report, particularly fluctuation journals that don't reflect a value on the debtor statement.
    Any comments will be highly appreciated.
    Regards,
    Lebo

    Hi,
    Test the following workaround on the Copy of the database and see if it works :
    Customise the template as below:
    + Create a new formula field in the repetitive area.
    + Put the formula as F_1>0, where F_1 is the amount field.
    + Make formula field as visible false.
    + Link all the repetitive area field to this formula field.
    Save the template and make it default.
    Regards,
    Jitin
    SAP Business One Forum Team

  • R12 AP create account process success while no journal entries produced

    Hi,
    Enviroment:12.0.4
    in AP, the invoice validate and create account all done successfully. while to query journal entries, there isn't any produced journal entries.
    During the create account process, there is no error message, therefore i cann't find what is the problem.
    can anyone give me a guide to how to find the problem is?or what the problem is ?
    any help will be appreaciated.
    Regards,
    Chelsea

    just to give a background of this process in R12
    As we know there are two methods to create Payables Accounting in R12,
    1.Online Accounting method
    The Online Accounting method can be called from either the Invoice or Payment workbench and has the following modes:
    Draft - The accounting is only created in the XLA Subledger tables and is not transferred to the General Ledger. Draft accounting can be recreated based on changes to the transaction data or accounting rules.
    Final - The accounting is created in the XLA Subledger tables and is not transferred to the General Ledger. Accounting created in final mode can not be recreated/altered. Run the Transfer Journal Entries to GL program to transfer these entries from the XLA subledger tables to the General Ledger tables.
    Final Post - The accounting is created in the XLA Subledger tables and is also transferred and posted to the General Ledger tables.
    2)Create Accounting process.
    The Create Accounting process has similar options, you can create accounting in Final or Draft mode and if Final mode is selected, the Transfer to GL parameter can be used to automatically transfer the accounting created by the corresponding run. When the Create Accounting process transfers the journal entries to GL it only transfers the accounting created by the process that calls it. If there is accounting created by the online option = Final or a previous Create Accounting program that was not transferred, that accounting will not be transferred. The Transfer Journal Entries to GL program needs to be ran separately to transfer any accounting created online or created by a previous Create Accounting process that did not transfer the entries.
    Based on the above cases, the following are possible causes of journal entries not transferred in R12:
    1. The accounting is created in Draft mode and can not be transferred.
    2. The accounting is created in error and can not be transferred.
    3. The accounting was created by Online Accounting with Final Mode.
    4. The accounting was created by the Create Accounting process with Transfer to General Ledger = No
    Hope this makes a clear understanding and you know the root cause.

  • Drilldown Journal Entries - R12

    Hi folks,
    On e-Business r12, to view JE transactions from GL Superuser, functions are needed for some particular sources (ex.: Oracle Purchasing).
    I'm looking for a document which defines all security functions related with Journal Entries transactions.
    Regards

    Hi Guna/BSR,
    can you send the doc. to me also pls.
    [email protected]
    Thanks in advance
    Murali

  • *Journal Entries while uploading the vendor master data from legacy system*

    hi SAP Folks,
    can any one of you tell me the journal entries while uploading the vendor master data from legacy system to SAP system.
    Eg: legacy system is having 10000 vendors list, 1 reconciliation account and $ 1000000. while uploading all these data from legacy system to SAP what are the journal entries we get.
    thanks in advance.
    Edited by: ravindranath manikonda on Nov 24, 2008 1:12 PM

    Hi
    you will be having  only one entry logically
    i.e. Opening Bal. clrng A/c Dr.
           To Vendor A/c Cr.
    regards

  • How to get Data from SAP B1 through Journal Entries objects (Excel VBA)

    Hi Genius
    i had try to login SAB B1 thorugh MS Excel VBA code and it worked well. but i need some questions regards getting the data from after login. that means i want the Posting date, Transaction No, account code, debit and credit amount from Journal entries posted in a particular day through MS excel VBA into excel sheets 1 cell A1:E1
    how i get it if any possible ways to do that
    here my code to login
    Public Sub login()
        Sheets("Login").Select  'access the login tab
        Worksheets("Login").Range("B1").Activate 'put focus on cell B1 (manager)
        B1UserID = Trim(ActiveCell.Value2) 'set Businsss One user
        ActiveCell.Offset(1, 0).Activate
        B1Password = Trim(ActiveCell.Value2) 'set Business One password
        ActiveCell.Offset(1, 0).Activate
        sqluser = Trim(ActiveCell.Value2) 'set SQL user
        ActiveCell.Offset(1, 0).Activate
        sqlpass = Trim(ActiveCell.Value2) 'set SQL password
        ActiveCell.Offset(1, 0).Activate
        Db = Trim(ActiveCell.Value2)      'set Database name
        ActiveCell.Offset(1, 0).Activate
        Server = Trim(ActiveCell.Value2)  'set Server name
        Set company1 = New SAPbobsCOM.Company  'initialate DI company object
        company1.DbServerType = dst_MSSQL2005
        company1.Server = Server
        company1.DbUserName = sqluser
        company1.DbPassword = sqlpass
        company1.CompanyDB = Db
        company1.UserName = B1UserID
        company1.Password = B1Password
        'connect to the database
         lRetCode = company1.Connect
            If lRetCode <> 0 Then
                sErrMsg = company1.GetLastErrorDescription
                MsgBox (sErrMsg)
            Else
                MsgBox ("Connected to: " & company1.CompanyName)
            End If
    End Sub
    pls help me
    advance thanks to solvers

    Gordons way is the easiest - just query the OJDT table for journal entry headers and JDT1 for journal entry lines if needed.
    But if you want to work with the business objects:
    'Journal entry
       Dim oJE As SAPbobsCOM.JournalEntries
       Set oJE = company1.GetBusinessObject(oJournalEntries)
       oJE.GetByKey(1234)
       Dim postingDate as String
       postingDate = oJE.DueDate
    'etc etc

  • Automatic reversal of journal entry into new posting period

    Is there a way to set automatic reversal of a journal entry when creating a JE in the next posting period?

    Hi,
    I do not think this requirement can be met. There is no automatic reversal of document if it is being posted in the next period.
    However, you can write a validation in order to prevent the users to post in next period in GGB0 and assign the same in OB28.
    Hope this will solve your issue.
    Regards,
    Ravi

  • How to update UDF from marketing documents to Journal Entry UDF

    Hi Experts,
    I have a UDF in the marketing documents and I want to save the value to Journal Entry UDF.
    Regards,
    Jummie

    Hello Jummie,
    If I understand correctly, the scenario is that copy the value of UDF from marketing document to the UDF its target JE from when the marketing document is created.
    if so, just listen to FormDataAdd Event for the marketing document, copy the value of udf when document is created.
    Here is the sample code.
    Private Sub FormDataEventHandler( _
        ByRef BusinessObjectInfo As SAPbouiCOM.BusinessObjectInfo, _
        ByRef BubbleEvent As Boolean) Handles oApp.FormDataEvent
            'You may add the target documents, 133 - A/R invoice.
            'Before action = true, start the transation
            If BusinessObjectInfo.FormTypeEx = "133" _
                    And BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD _
                    And BusinessObjectInfo.BeforeAction = True Then
                oCompany.StartTransaction()
                'BubbleEvent = False
            End If
            'Before Action = false,
            'Update product item tree
            'Succeed, commit, otherwise rollback
            If BusinessObjectInfo.FormTypeEx = "133" _
            And (BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD) Then
                If BusinessObjectInfo.BeforeAction = False And BusinessObjectInfo.ActionSuccess Then
                    Dim objectKey As String = String.Empty
                    oCompany.GetNewObjectCode(objectKey)
                    MsgBox(BusinessObjectInfo.Type)
                    Dim oInvoice As SAPbobsCOM.Documents = Nothing
                    oInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    If oInvoice.GetByKey(CInt(objectKey)) Then
                        'Retrieve the UDF value in documents
                        Dim udfValueInDoc As String = oInvoice.UserFields.Fields.Item("***").Value
                        Dim oJE As SAPbobsCOM.JournalEntries = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
                        'Retrieve the JE for the document
                        oJE.GetByKey(CInt(oInvoice.JournalMemo))
                        Dim succeeded = True
                        'add you code to copy the UDF from document into JE
                        If succeeded Then
                            'update the production tree succesfully,
                            oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_Commit)
                        Else
                            oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_RollBack)
                        End If
                    End If
                End If
            End If
        End Sub
    Regards, Yatsea

Maybe you are looking for

  • Error in ELM - Maintain BP - CRM_MKTLIST_STAGING013

    HI all, when i try to upload BP with ELM, SYSTEMS (CRM 7.0) show me the following error message: 0 business partners maintained message errore - CRM_MKTLIST_STAGING013 I have this problem after that i have implemented CRM_MKTLIST_BADI badi. The probl

  • OS X Maverick- Finder not opening, files not opening

    I just installed OS X Maverick, everything works apart from finder and folder. When folder are clicked the icons go missing and re boots Problem description: finder does not work, folders do not open EtreCheck version: 2.0.4 (89) Report generated Oct

  • Two computers using one Cinema display

    Howdy, is there a nice way to switch source for my Cinema Display? I currently have an Air that i just connect to the cables of my cinema display when i come home but I have ordered an iMac that i wan t to keep connected to the cinema display but whe

  • Just purchased ipod touch 4 and facetime, internet, and app store have all disappeared off the screen.  Any ideas?

    In addition I cannot pull them up by using the search button, they seem to be completely gone from the ipod.  Purchased less than one week ago and have only downloaded two apps.

  • Mapviewer11gPr1 - legend print problem

    Hi, I am dynamically changing html content in collapsible decoration (as a legend for map) this style: var element = document.getElementById("leg"); if (element != null) while (element.firstChild) { element.removeChild(element.firstChild); var html =