Journal Voucher with Description---URGENT

When i am loading Journal voucher template through FDQM, I am not able to View Description of each line in HFM. HFM displays same description entered in the first line of the Journal Voucher Template in all the line items of the Journal Voucher. How is it possible to get view of each individual description line by line. Please respond

Hello Costas,
Basically yes, but take care: The G/L account should set to all currency (multi currency) to be able to post in FC. Go into sap, and try to add values on Vouchers.
Here is a sample code for issuing in FC a voucher.
Dim oJV As SAPbobsCOM.JournalVouchers = oCompany.GetBusinessObject(BoObjectTypes.oJournalVouchers)
        oJV.JournalEntries.SetCurrentLine(0)
        oJV.JournalEntries.VatDate = Today
        oJV.JournalEntries.TaxDate = Today
        oJV.JournalEntries.DueDate = Today
        oJV.JournalEntries.ReferenceDate = Today
        oJV.JournalEntries.Reference = "REF"
        oJV.JournalEntries.Reference2 = "REF2"
        oJV.JournalEntries.Memo = "MEMO"
        oJV.JournalEntries.Lines.SetCurrentLine(0)
        oJV.JournalEntries.Lines.AccountCode = "38610100"
        oJV.JournalEntries.Lines.FCDebit = 0
        oJV.JournalEntries.Lines.FCCredit = 100
        oJV.JournalEntries.Lines.FCCurrency = "EUR"
        oJV.JournalEntries.Lines.Add()
        oJV.JournalEntries.Lines.SetCurrentLine(1)
        oJV.JournalEntries.Lines.AccountCode = "38610100"
        oJV.JournalEntries.Lines.FCDebit = 100
        oJV.JournalEntries.Lines.FCCredit = 0
        oJV.JournalEntries.Lines.FCCurrency = "EUR"
        If oJV.Add <> 0 Then
            sbo_application.MessageBox(oCompany.GetLastErrorDescription)
        End If
Regards,
J.

Similar Messages

  • Importing a journal voucher with GL Codes and BP Codes

    Hi Experts,
    I'm trying to get a DTW import for Journal Vouchers working on 8.8 PL05. I have a journal voucher template with GL Codes and BP Codes that I need to import as this is part of some integration.
    If I leave out the BP Codes it works fine but if I add them into the sheet is gives a DTW error "invalid account code application-defined or object-defined error 65171".
    I have tried to add BP code to shortname and add contra account.
    Please any help would be appreciated.
    Regards
    Lou van Wyk

    Welcome to SAP forum Lou...
    I do not know about 8.8 Journal vouchers, but some time ago we were importing with BP codes and we ran into a somewhat similar situation.  I believe we had to format the BP codes to Text in Excel before saving the file to CSV.
    Another time I was working with an individual who had not set up two BP Master Data records before doing transactions like it states in SAP's User Guide titled Data Migration and Opening Balances...
    Maybe that helps?
    Regards,
    Zal

  • Journal Voucher w/DTW

    Hello,
    I'm trying to upload a journal voucher with multiple transaction without success.
    Wich field is used to define the OBTF.transID in JournalEntries.csv and JournalEntries_Lines.csv.
    Thanks

    Hi,
    You may check this thread for mandatory fields:
    Re: DTW for Uploading A/P Invoices
    Thanks,
    Gordon

  • Journal Voucher SDK bug?

    Hi guys,
    I have created an add-on that reads data from a text file and creates a journal voucher. The add-on works well, but I have noticed a bug when I create a journal voucher with more than one currency. The bug does not seem to be from my code. I would just like someone to verify that I am doing it all correctly.
    I have for example 2 multicurrency business partners. and 2 accounts one is EURO and the other is USD.
    eg
    BP1 - All currencies
    BP2 - All currencies
    Acc1 - EURO
    Acc2 - USD
    When I try to create a journal voucher through the SDK all business partners are displayed with USD as well as EURO, even though only one transaction was in USD. This causes the USD to be unbalanced.
    so it would look like this:
    Account |     Debit(FC) |    Credit (FC) |    Debit    |     Credit   |
    BP1     |               |USD 517.50      |             |  EUR 360.00  |
    Acc1    |               |                |EUR 360.00   |              |
    BP2     |               |USD 11,571.76   |             |EUR 8,050.00  |
    Acc2    | USD 11,571.76 |                |EUR 8,050.00 |              |
    I would like it if the USD at BP1 did not appear. There is nothing in my code  that puts USD on that line, but it appears in the journal voucher.
    Can anyone verify this bug?
    Edit: It appears that I should have posted this in the SDK forums. Could someone please move it?
    Edited by: Costas Ioannou on Mar 24, 2010 11:33 AM

    I have recreated this in the SDK forums here:
    Journal voucher SDK bug?

  • Loading journal with description through FDM

    Can journals be loaded with line level description (not header level description) through FDM?
    System is taking the file with descriptions, when you generate the upload .jle file manually and use load journals in workspace. But when you trying to load the journals through FDM, it does not work.
    Any idea how to do it? Any settings that we are missing?

    This is currently not possible.
    The Description will be the description in the first line of the journal template.

  • JOURNAL VOUCHER APPROVAL PROCESS

    Dear Experts,
    I want to create an approval procedure for Journal Vouchers.
    I did the following:-
    I created a UDF - MD-Approval on accounting - Journal transactions header with valid values of Pending, Declined and Approved. Pending is the default value. The field is a mandatory field.
    I made the MD the only user who can edit this field by creating a category in Settings- Fields - setup that is relevant to him only
    I created a stored procedure to block posting of journal Vouchers unless the UDF status reads "approved"
    --------- Block unapproved Journal Voucher-----
    if @object_type = '30' and @transaction_type IN ('A', 'U')
    BEGIN
    IF Exists (Select T0.TransID  from dbo.OBTF T0
    WHERE T0.TransId=@list_of_cols_val_tab_del and U_MD_APPROVAL <> 'Approved')
    select @error = 101, @error_message = 'This Journal Voucher requires MD Approval'
    End
    The stored procedure above is not working and journal voucher are processed irrespective of the udf field status. Kindly review and let me know what is wrong with it.
    Regards
    George Njuguna

    Hi
    U have to amend it like this :
    if @object_type = '30' and @transaction_type IN ('A', 'U')
    BEGIN
    IF Exists (Select T0.TransID  from dbo.OJDT T0
    WHERE T0.TransId =@list_of_cols_val_tab_del and t0. U_MD_APPROVAL <> 'Approved' and  Transtype='30')
    select @error = 101, @error_message = 'This Journal Voucher requires MD Approval'
    if @object_type = '30' and @transaction_type IN ('A', 'U')
    BEGIN
    Set @Transtype =(Select  Transtype from OJDT WHERE T0.TransId =@list_of_cols_val_tab_del )
    declare @Transtype as int
    If Transtype='30'
    Begin
    IF Exists (Select T0.TransID  from dbo.OJDT T0
    WHERE T0.TransId =@list_of_cols_val_tab_del and t0. U_MD_APPROVAL <> 'Approved' )
    select @error = 101, @error_message = 'This Journal Voucher requires MD Approval'
    End
    END
    Thanks
    TAruna

  • Journal voucher print

    Hi, expert
    my client wants when i take a print out of a journal voucher it should be print the details like company name & address of the header, in SAP standard format it is not showing ? can it be make any changes or not ?
    regards
    gk

    i already discuss with my ABAPER he told that , its a Standard report & there is no space for details so i cant do any change

  • How to change the cash journal voucher

    Hi
    Pls advice how to change  the cash journal voucher lay out , that is auto generated in the system.
    I need to add some fields.
    Thanx

    Hi,
    U need to develop your own layout with the help of your ABAPer with the required fields.
    Then Go to the following path
    Display IMG --> Financial Accounting --> Bank Accounting --> Business Transactions --> Cash Journal --> Setup Print Parameters for Cash Journal.
    Hope you are clear.
    Cheers
    P O I N T S

  • How to create Journal Voucher ?

    I 've tried the sample codes from the SAP Help and other with the same result.  I can't create a Journal Voucher.  Either the errors "-5011 Error Msg:Tax account has not been defined for the selected tax", "-5002 Error Msg:Date deviates from permissible range"
    How can i overcome all these errors ? 
    thanks in advance

    Where to put the JournalEntries.Add line was the key!

  • Error from Microsoft Visual C++ while importing a Journal Voucher

    Hi Experts:
    We are requesting your Help because we getting the following error from  Microsoft Visual C++ Runtime Library while importing a  Journal Voucher throught DTW:
    Runtime Error!
    Program:  This application has requested the Runtime to terminate it in an unusual way. Please contact the application support team for more information
    We are working with SAP Busines One 8.8 SP00 PL18
    Thanks Very Much in advanced
    Claudia

    Hi Claudia,
    Your question belongs to SAP Add-on forum.
    Based on the error message, you may have to log a support message.
    Thanks,
    Gordon

  • Journal voucher and sundry invoice

    Hi ,
    can any one please tell me what is journal voucher and sundry invoice
    in FI .

    Hi,
    let us start with the SAP definition - or rather: the use of the journal voucher. It is actually nothing more than a specific posting document:
    Journal Vouchers
    Use
    If, after you have entered and cleared a vendor invoice and you have discovered that you have posted the wrong amount of tax or that you have posted the tax using the wrong official tax key, you have to enter a journal voucher (JV) to correct the error.
    To access the function, from the SAP Easy Access screen, choose Accounting ® Financial Accounting ® Accounts Payable ® Withholding Tax ® India ® Extended Withholding Tax ® Journal Vouchers ® Enter.
    Sundry invoice has not been defined within the SAP framework. Imagine it to be an invoice for several vendors, several materials...
    Kind regards,
    Rudolf

  • Journal Voucher Query

    Hi Expert,
    Can I generate a query from Journal Entry Voucher with an open status that will show the following:
    1. Posting date
    2. Ref1
    3. Account Code
    4. Debit
    5. Credit
    6. Transaction Code
    7. Profit Code
    Thanks and looking forward for your immediate feedback.
    Regards,
    ArlmiPJ

    Hi,
    Run this Query,
    SELECT * FROM OBTF T0 WHERE T0.[BtfStatus] = 'O'
    pick the fields you need
    regards,
    Fidel

  • Journal Voucher Problem

    Hi Experts,
    Good day!
    I have a problem posting the journal voucher. The status of transaction is closed, but did not reflect on journal entry. How come?
    But when I created the same accounts posted in journal voucher in journal entry, it authomatically  reflected. Meaning, is the journal voucher not functioning... PLease help me on this asap pls. Thanks .
    Mari

    Dea Mari,
    If you had created the journal voucher using the journal voucher screen by adding an entry to the journal voucher and then you had chosen this 'open' journal to 'Post Voucher' then Its strange that the voucher is closed with no transaction created in the jounal entry.
    Please try again the above procedure on a test database, and if this issue still exists, then post your query to SAP or your local SAP partner.
    Thanks
    Asif

  • How to make a query to list out Journal voucher that hasn't been posted

    Hi, do you know how to make a query to list out Journal voucher that hasn't been posted?
    By what code name identify that?
    Thanks.
    Raymond
    Edited by: Rui Pereira on Aug 6, 2008 3:57 PM

    jack,
    there is no link with OBTD to OJDT and JDT1.
    voucher number in obdt is different,
    after posting voucher is saved as journal entry seperate
    number is generated.
    you can link OACT,OCRD WITH OJDT,JDT1.
    Jeyakanthan

  • J1INJV-TDS Journal Voucher

    Hi
    I am trying to use J1INJV to post a Journal Voucher where i want to correct the basic, Surcharge and Cess TDS amount. However, i am only able to select only one line item of the three i want to correct. If i post a journal voucher after selecting the basic line item, the system is not allowing me to post any other voucher for the correction. Its saying that an adjustment entry has already been posted for this document.
    can anyone kindly help me as to how can i correct all the line items.
    Regards

    Hi
    Can you guide me when the T-Code J1INJV needs to be used with an example for both value adjustment and tax code adjustment each.
    I understand that the posted document needss to be cleared before any adjustment can be done. If it is not cleared, then SAP standard system suggests to reverse the original document itself.
    Regards
    Abhishek

Maybe you are looking for

  • Mavericks 10.9.1 won't shutdown or restart

    Just upgraded to 10.9.1 Mavericks. Since upgrading, my MacBook Pro won't shutdown or restart; nothing happens after instigating, then after a few minutes a dialogue box appears saying an open application prevented the action. I have tried to upgrade

  • Error Executing Database

    I am familiar with the 400 and 500 custom error page setup option in the control panels of many shared server hosts, but I have other error pages that come up infrequently that I'd like to mask. Every now and again, I'll get a situation where one of

  • Excel shows strange characters over Remote desktop

    Hi, Experiencing this weird issue were when I  RDP to my computer , the characters in excel sheet display weird characters For instance the letter A looks squished When opening the same excel sheet locally, the normal text is displayed. Repaired offi

  • NetBeans and SQL

    Im trying to make netbeans link to a SQL DB but i get an error "no suitable driver" I have mysql-connector-java-3.0.8-stable-bin.jar mounted but it doesnt seem to work. I've also tried with mysql-connector-java-3.0.16-ga-bin.jar and get the same prob

  • I getting mistake for Update Photoshop CC and AE CC, but Photoshop CC(2014) and AE CC is right. Why is happening?

    I getting mistake for Update Photoshop CC and AE CC, but Photoshop CC(2014) and AE CC is right. Why is happening?