Remarks field in Journal Entry form

Hi All,
  I am wondering how is created the Remarks field in Journal Entry form? It contains a string which describes the journal entry origin and sometimes it contains the Business Partner Code. I would like to know the origin table, field of the string (only the string without BP Code).
I would like to write a query which contains all available TransType, and one string remark field for every TransType field.
I wrote the following, but it is not good because the string contains Business Partners Code, more than one line for each TransType field, and doesn't contain every existing TransType type.
SELECT DISTINCT convert(integer,TransType) As TransType, LineMemo from JDT1 ORDER BY TransType
Thanks,
Zoltan

Zoltan,
there is not any single table which determines the remarks or memo for Journal entry. in the documents from which, account posting happens (such as invoice) , you will find a field called jrnlmemo in accounting tab (in master table such as OPCH). also, the transtype in OJDT can help you build the case for your query.
HTH,
regards,
Binita Joshi

Similar Messages

  • User field in goods entry form

    Is it possible to create a user field in goods  entry form production? I tried but It's possible  only to fill the order  production. thanks

    To add user defined fields to either the issue from production or the receipt from production then you need to add the user fields to the marketing document rows.  Then if they are not visible in the forms you will need to use the form settings.
    Regards,
    Adrian

  • Pld on journal entry

    hello sap experts
    how can i track     Booking Document No.( SO & PO DOC NO's)     
                                 Document date     (SO & PO DOC date)
                                   Posting Date     (SO & PO DOC posting date)
                                 vendor name
                                 vendor address in journal entry pld  pls answer asap
    regards
    Jenny

    Hi Jenny,
    IF you need to get the SO (or) PO No, Doc Date & Posting Date(invoice based) on Journal Entry.
    Try this,
    When you add the invoice at that time
    you can add the SO (or) PO No, Doc Date & Posting Date in Journal Remarks Field in invoice.
    Journal Remark field value will be store to Remarks field on Journal Entry document.
    Table -> OJDT - Journal Entry.
    Column -> Memo - Details.
    Try this,
    ->> Open the Journal Entry(System) PLD and Save as the New PLD.
    ->> Open the New *J.E *PLD and Create Database Field then Assign the Journal Entry Remarks field.
    Table -> OJDT - Journal Entry.
    Column -> Memo - Details.
    Save the PLD and run Print Preview.
    Else,
    Try to Create QPLD
    Regards,
    Madhan.

  • How to display certain field permanantly on AP Invoice entry form

    Dear All,
    I want to hide few fields and want to show certain fields in Invoice Entry form.
    When I go to Folder-Show Field and search for the field The required field get displayed but this activity I need to perform everytime I open the form.
    Is there any way to default this field in Oracle form, So that whenever I open the form That field should get displayed automatically.
    Waiting for your reply.
    Thanking you in advance.
    Regards,
    AJ

    If the condition is met you can fire off a line of script that sets the "presence" property of the Copy tag to either "invisible" (if you want to preserve the space taken up by the tag) or "hidden" (if you want to remove the space taken up by the tag).

  • Triger value from outgoing payment to journal entry

    Hi all,
    I add an UDF in outgoing payment form ( system form)for example i call it area. In the same time i also add an udf with the same name ( area) in journal entry form ( system form). When I entry data in outgoing payment, i also entry the area field in out going payment. for example i fill "Boston" in area field in Outgoing payment. How can i show it in journal entry also? As we know in journal entry , we don't need entry  the data anymore. What i fill in outgoing payment , also will post in journal entry. I just want my area value also can post in journal entry.
    thanks for the help

    Hi Janos,
    thanks for your posting in my thread. Actually i have make my own codes for this issue. i don't know if my codes is similar with your post.
    If pVal.ItemUID = "1" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED And oForm.Mode = SAPbouiCOM.BoFormMode.fm_OK_MODE Then
                        ' If pVal.Action_Success Then
                        Debug.Print("OJDT")
                        Try
                            Dim JEDoc As SAPbobsCOM.Documents
                            'Dim headerCode As Long
                            oCompany.StartTransaction()
                            'headerCode = LastEntry("OIGE")
                            JEDoc = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
                            Dim docnum As SAPbouiCOM.EditText
                            Dim docnum1 As Integer
                            docnum = oForm.Items.Item(3).Specific
                            docnum1 = docnum.Value
                            Debug.Print(docnum1)
                            JEDoc.GetByKey(517)
                            Dim area As SAPbouiCOM.EditText
                            area = oForm.Items.Item("tArea").Specific
                            JEDoc.UserFields.Fields.Item("U_ST_Area").Value = area.Value
                            JEDoc.Update()
                            oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_Commit)
                        Catch ex As Exception
                            If oCompany.InTransaction Then oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_RollBack)
                            SBO_Application.SetStatusBarMessage(ex.Message, SAPbouiCOM.BoMessageTime.bmt_Short, True)
                        End Try
                        'End If
                    End If
    so , i get business object for the journal entry in outgoingpayment. the problem is i still confuse with the getbykey method.
    I must fill the getbykey with a value which the value is also link to Journal Entry. I fill the value with docentry in outgoing payment. but it's still problem.
    thanks in advance
    best regards
    bodhi86
    ( i'm sorry with my bad english)

  • How to Save State on an Entry Form prior to Submitting the Form?

    I want to be able to save the values the user enters to fields on the entry form if they navigate away from the page and come back (without the user clicking the submit button for the form.) For example, one of the input fields has a goLink to go to another page to lookup a field value - when the user returns from the page, all other form field values are cleared. If the user does submit the form by clicking the command button, then all form field values are saved (if the user navigates from the page and comes back, all values are retained.) What I'm trying to do then is somehow save the values (passivate the state) for the field the user has filled in when the user navigates from the page without submitting the form. Any suggestions?
    I am using a read-only View Object with all transient values. The VO is configured to passivate state including all transient values. The initial row is created programmatically; there will only be one row for the VO used as an entry form. I am not using a backing bean for the values and would prefer not to use one, but would rather use the VO's capability to passivate state to save the data values. The question then seems to be how to force the VO to passivate state prior to the form being submitted.
    thanks
    Message was edited by:
    javaX

    "My hunch is that the real problem is that the fields are not being set into the bindings due to the use of immediate="true"."
    Yes. Now I see that is the real problem. Is there anyway to force setting the bindings from the input form field values if the user navigates from the page using a goLink, or commandButton with immediate="true" other than overriding the default FacesPageLifecycle classes?
    I'd prefer not to have to do that unless necessary, and, if I over-ride that method, then how could I get it to work normally when the user presses the commandButton at the end of the form and I do want all validation checks to be performed (immediate=false for the form's submit button; immediate=true only for lookup commandButtons used for certain fields)?
    Here's an overview of how I set the page up:
    1. create transient view object; all attributes marked as always updateable; passivate state=true for VO and all transient values; no key id field selected (will only ever be one row - just using VO to save values that will eventually be used to do an insert to the database);
    2. transient VO added to Application Module
    3. Add data control to .jspx page as an ADF Form (not an ADF Creation Form)
    4. Add code to AM to create the initial row for the input form
    protected void prepareSession(Session session) {
    super.prepareSession(session);
    insertTransientViewObjRows();
    private void insertTransientViewObjRows() {
    ViewObject transientvo = getViewObj1();
    transientvo.clearCache();
    transientvo.insertRow(transientvo.createRow());
    --- Entry Form .jspx pagedef.xml snippet ---
    <executables>
    <iterator id="MyIterator" RangeSize="10" Binds="MyView"
    DataControl="AMDataControl"/>
    </executables>
    <bindings>
    <attributeValues id="sponsorid" IterBinding="MyIterator">
    <AttrNames>
    <Item Value="sponsorid"/>
    </AttrNames>
    </attributeValues>
    --- Entry Form .jspx page snippet ---
    <h:form>
    <af:panelForm>
    <af:panelLabelAndMessage label="#{bindings.sponsorid.label}">
    <af:panelGroup layout="horizontal">
    <af:inputText value="#{bindings.sponsorid.inputValue}"/>
    // state will not be saved for other form field values if use immediate="true" when temporarily navigate away from page and return; don't want to validate other form fields here
    <af:commandButton text="Lookup Details"
    action="lookup-page" immediate="true"/>
    </af:panelGroup>
    </af:panelLabelAndMessage>....
    // state will be saved with immediate="false" when user submit forms at end of entry (need to perform validation of form's required fields here)
    <af:commandButton text="Continue to Next Step" immediate="false"
    action="nextpage"/>
    Message was edited by:
    javaX

  • 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.

  • Create trigger in UDF on Journal Entry

    Hi  SAP Users,
           Need help for this ...
           I add User Defined Fields in Journal Entry module, I want this field not to leave blank/empty. Can somebody teach me on how to create a code in SP that will trigger the module to avoid adding the journal entry data if this field in UDF is blank. And where specifically in SP will I put the code if I am pertaining on Journal Entry module
            Thanks
    Vissia

    Hi,
    Try Below...
    IF @transaction_type = N'A' AND (@Object_type = N'30')
    BEGIN
    if Exists ( select T0.TransId from OJDT T0 where  T0.Transtype='30' and
    t0.transid = @list_of_cols_val_tab_del and (T0.UDF-NAME is null or T0.UDF-NAME= ''))
    BEGIN
    SELECT @Error = 1, @error_message = N'Please select UDF Name !!'
    END
    END
    Apply this in sql server >>choose Data base>>Programmbility>>stored procedure>> SP Transaction notification>> Copy above code and paste and execute
    Note: Above code is for header level UDF. If your udf is row level then just replace the table name OJDT by JDT1 in above code
    Edited by: Deepak Tyagi on Sep 22, 2011 7:30 AM
    Edited by: Deepak Tyagi on Sep 22, 2011 7:33 AM

  • Order Entry Form - OEXOEORD.fmb

    Hello everyone,
    I have added the one Text_Item_Display_Only field in Order entry form(OEXOEORD), it's compiled succesfully but I cannot see this field when I run this form from application.
    Any help would be apprechiate.
    Thanks,
    Zeeshan

    Go to Examine and check whether the item name is coming in the appropriate box. If it comes check its property visibility, x axxis,y axis

  • Provide automatic Remark in detail part of journal entry by FMS

    I am going to use FMS in journal entry. I want to provide automatic remark base on ref2 in detail part of journal entry .  I also provided  FMS for ref2 and it's value is base on employee list . I mean there is a look up in ref2 and it retrieves  employee's  Code. I would like to calculate remark values from ref2 as Employee' name and employee's last name.  I donu2019t know how I must write SQL script for this purpose and retrieve employee' Name and last name base on ref2 value in journal detail.  I would be grateful if some body help me in this matter.
    Thanks

    Dear Farhadn,
    I am not sure of what information you are trying to add in the UDF. If I understood correctly, you have already a FMS on the field ref2 of the JE that shows name and surname of the employee. According to this data, a value will show up in the other FMS.
    Can I ask you where this value comes from? Is it a calculation?
    I have to warn you that if you want this value to appear before the JE is added in the system I am afraid what you are asking it is not possible.
    The FMS can work if there is a value in the field ref2 in the table, but this value is stored in the table when the user clicks update on the JE. Until then, the FMS will not have the name of the employee.
    Kind Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Is there a way to create entry form/fields in Numbers.

    Can anyone let me know if there's a way to create an entry form/field in Numbers. The idea would be to have already created a list of contacts, then at an event on an iPad, people can check off if that person is there and also enter new contact info. Thanks in advance.

    Isnt this just a table? A list of people, with a check box field in the second column, followed by a few columns for contact info to be entered in?
    Jason

  • Journal Entry Remarks not comming

    Hello Everyone,
    I am trying to create Journal Entry using  DI API .The problem i am facing is that  the remarks at the row level is not coming in certain cases.
    Code:-
    /*this is to add remarks at header level*/
                           _journalEntries.ReferenceDate = Convert.ToDateTime(_dataRowHeader["EntryDate"]);
                               _journalEntries.Memo = Convert.ToString(_dataRowHeader["Description"]);
    /**This is to add remarks at row level/
                                    _journalEntries.Lines.PaymentBlock = SAPbobsCOM.BoYesNoEnum.tNO;
                                   _journalEntries.Lines.Credit = Convert.ToDouble(row["CreditAmount"]);
                                   _journalEntries.Lines.Debit = Convert.ToDouble(row["DebitAmount"]);
                                   _journalEntries.Lines.CostingCode = Convert.ToString(row["CostCenterCode"]);
                                   _journalEntries.Lines.LineMemo = Convert.ToString(row["Remark"]);
                                   _journalEntries.Lines.Add();
    By default  in SAP B1 the remarks at the header level gets filled at the row level..so is this issue because of this reason.is there any way i can prevent the remarks at header level to be filled at row level..??
    Thanks and Regards,
    Anuj Kumra

    Hi Anuj,
    With this code I got the remarks on the line. Even when setting Memo to null.
    var je = oCompany.GetBusinessObject(BoObjectTypes.oJournalEntries) as JournalEntries;
    je.Memo = null;
    je.Lines.AccountCode = "100000";
    je.Lines.Credit = 0;
    je.Lines.Debit = 150;
    je.Lines.LineMemo = "some string";
    je.Lines.TaxDate = DateTime.Now;
    je.Lines.Add();
    je.Lines.SetCurrentLine(1);
    je.Lines.AccountCode = "101000";
    je.Lines.Credit = 150;
    je.Lines.Debit = 0;
    je.Lines.LineMemo = "some string";
    je.Lines.TaxDate = DateTime.Now;
    if(je.Add()!=0)
      throw new Exception(oCompany.GetLastErrorDescription());
    So I guess in your case it might be that the row["Remark"] has no data in it.
    Best regards,
    Pedro Magueija

  • Change the field 'StornoToTr' in new journal entry.

    6.50.098 SP:01 EF:14
    Hi,
    When I reverse (Cancel) a journal entry (Storno), I create a new one with
    opposite values and then I insert it (with oJournalEntries Object). But in table 'OJDT' the field 'StornoToTr' in new journal entry, must be changed with transID of cancelled Journal Entry.
    How can I do that with 'oJournalEntries' Object?
    Best Regards,
    Ricardp Pereira

    hi,
    Here is a nice piece of code that set the journal entries for reversal on a certain date. So when a user logs into B1 on that date they will be shown a list of journal entries that are scheduled to be reversed. The user click execute and the journal entries are revered and the functionality you are looking for will be implemented.
    Dim journal As SAPbobsCOM.JournalEntries                             
    journal =                                                            
    oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)                                                                               
    If journal.GetByKey("665") = True Then                                                                               
    journal.StornoDate = "1/11/04"                           
                journal.UseAutoStorno = SAPbobsCOM.BoYesNoEnum.tYES      
                lErrCode = journal.Update()                              
                '// Check for errors d                                   
                oCompany.GetLastError(lErrCode, sErrMsg)                 
                If lErrCode <> 0 Then                                    
                    MsgBox(sErrMsg)                                      
                End If                                                   
            End If                                                       
    Its an alternative way to reverse journal entries.
    Thanks,
    Cormac

  • Add Customer Field while posting Journal Entry

    BSEG-KUNNR is not exposed while posting journal entry using FB01. It is not available in the field status group also. How to add customer number field in the field status group to make it available during posting journal entry using FB01.

    Hi Jac,
    1, There is a known issue in a lower version before  2005A SP01 PL30when you try to run a retirement operation for a fixed asset with Net Price equal to the Net Book Value, it failed and you got the following error message:
    21141 error while posting journalentry: -5012 /Unbalanced Transaction.
    If you are in this scenario, please upgrade your Fixed Assest to the latest patch.
    2. If you are not in above scenario, this problem is possibly caused by the incorrect configuration of accounts in G/L
    Account Determination.
    There should not be 'Default VAT Group' related to these accounts except for account 'Default Revenue Acc. Retirement' in G/L Account Determination.
    1) Go to Administration - Setup - Fixed Assets - Open G/L Account Determination;
    2) Select an Account Determination Group;
    3) Under the G/L Account Determination window, open the account linked to 'Balance Sheet of Asset Acc.' by clicking on the yellow arrow;
    3) The Chart of Accounts window will open, click on the'Account Details' button beneath the window to open G/L Account Details;
    4) Empty the field 'Default VAT Code';
    5) Execute the Retirement functionality again.
    You can also refer to SAP Note 1050423 for reference. https://service.sap.com/sap/support/notes/1050423
    I hope it is helpful!
    Regards,
    Ivy Zhang
    SAP Business One Forums Team

  • How to link Azure database tables and fields to VS2012 C++ entry form

    We are using Visual Studio 2012 C++ and have successfully connected to the database on Azure, but do no know how to associate the database tables and fields with the C++ application data entry forms.  Can anyone help?  Thanks

    Hello Roxanne,
    You could use Entity framework to map classes to Azure tables. Please refer http://www.codeproject.com/Articles/363040/An-Introduction-to-Entity-Framework-for-Absolute-B to
    learn more. Hope this helps.
    Regards,
    Kumar Bijayanta

Maybe you are looking for

  • DVD Writer won't read disks

    I have a problem with my DVD Writer in Windows 8.1 (64 bit)...after inserting disk (either blank or readab le), the computer hangs, and the only exit is to shut down the machine.  Device Manager   shows the unit as installed and working correctly. I'

  • Change vendor House Bank - prevent

    Dear All, Can any one tell me, how i can prevent user from changing house bank from vendor master. Is there any config for that, or do i need look for enhancements. Regards, Suresh Patipati.

  • Help installing Illustrator CC to Mac OSX 10.6.8

    Hello, The online subscription says my illustrator is up to date however I cannot find the Illustrator cc in downloads, on my applications, or when I click the trial version, it just askes me to purchase the subscription, although I have, and I downl

  • BAPI Exception Handling  + JCA

    Iam having problems handling exceptions of a BAPI connecting thru JCA. MappedRecord exportParams =     (MappedRecord) interaction.execute(interactionSpec, importParams); IRecord exportStructure = (IRecord) exportParams.get("RETURN"); if (exportStruct

  • How to clear cache from apps

    Is there a way to clear cache from apps to free up space on my iphone4 without having to delete the app then install it back?