Customer LOV Account Description

In release 12 there account description on the sales order form, but it's not available in 11i. Is there any way we can add without using the custom.pll?
Srini C

Hi,
Is this what you want ?
FND_FLEX_VALUES_TL.description
join with
FND_FLEX_VALUES where flex_value = GL_CODE_COMBINATIONS.<segment1> or <segment2> .... <segment8>
join with
FND_FLEX_VALUE_SETS
where flex_value_Set_name = <company>
HTH

Similar Messages

  • Where does EBS store customized LOV elements?

    Dear All,
    We are developing a report on EBS r12 >> Payables >> Payments screen.
    The Functional Consultants Team added a DFF ( view_inv_pay.DESC_FLEX ) with only 1 segment and its description at the Invoice Payment block level ( VIEW_INV_PAY )
    which synchronizes with each matched row in this block.
    The values of the DFF come by selecting from an attached customized List of value that the Functional Consultants Team had populated its elements using data loader.
    We have a requirement to display the DESCRIPTION of DFF segment in the report not its actual value.
    So the question is:
    Where does EBS store the data related to a customized LOV ?
    And how to join between the LOV’s under laying tables and the below report tables
    ( AP_CHECKS_ALL AC , HZ_PARTIES HZP , AP_SUPPLIERS PV , GL_DAILY_CONVERSION_TYPES GDCT , AP_INVOICE_PAYMENTS_ALL  AIP , AP_INVOICES_ALL AI ) to display the DFF description?
    Since, only the actual DFF values are stored in AP_INVOICE_PAYMENTS_ALL table.

    Dear Sandeep,
    That is great, but what about the joining condition.
    I know that i can join by the segment value in the AP_INVOICE_PAYMENTS_ALL table
    to be like below:
    SELECT ffv.flex_value, ffv.description
    FROM fnd_flex_values_vl ffv, fnd_flex_value_sets ffvs , AP_INVOICE_PAYMENTS_ALL API
    WHERE ffvs.flex_value_set_id = ffv.flex_value_set_id
    and API.SEGMENT1 = FFV.FLEX_VALUE ;   -- Assuming that the actual DFF value stored in SEGMENT1
    AND ffvs.flex_value_set_name LIKE '&value_set' But for tuning issues is there any an alternative to previous condition?
    Edited by: 670612 on Mar 21, 2012 1:47 AM

  • Offset account Description in fbl3n report

    Hi,
    I have used the BTE 1650 (Standard Functionality) and brought the values of Offset Accountnumber (GKONT) & Offset Account Type (GKART)  in fbl3n report... now the user want to add additional field " offset account description" in the same fbl3n report.. I have gone through the below link
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b96fed-eb5d-2e10-1792-f3ff9f65df8a?QuickLink=index&…
    but am not getting the logic of adding additional filed "offset account description".. Plz suggest how to create the component, and component type..
    Plz let me know the the highlighted " ZOFFSET DES" how to create
    Thanks

    First read documents like Note 984305 - Line item: Definition of special fields (T021S) and Note 1323512 - Line items: BADI FI_ITEMS_CH_DATA, add missing standard fields via Customizing in T021S or use an append for other fields as described in the note and Customizing documentation. (NB: The BAdI is better for performance, as it manages the full internal table, when BTE is called for each item)
    Then append your zz fields to RFPOS AND RFPOSX  and execute report RFPOSXEXTEND.
    Regards,
    Raymond

  • Offsetting Account Description

    Dear All,
    In FBL*N, we get fields for Offsetting account. But it does not show the description of offsetting account. How can i add field for offsetting account description
    Regards,
    Shreya

    Hi
    If you wish to add description of offsetting account (GL account long text) against a vendor document (FBL1N) then go to table SKAT and search for field TXT50  ,
    If you wish to add offsetting account (vendor description) against a GL document (FBL3N) then go to Table LFA1 and search for field NAME1 and if you wish to add customer account description then go to KNA1 and search for the field NAME1.
    Please note field name will not be identical in all the table , field name for a same field may differ from table to table .
    Cheers
    Mukta

  • Offsite account description

    Hi Guys,
    Can any one tell me how can get offsite account description in my layout.
    Regards
    Ashish

    OKie, putting the text of this OSS note as below. Your ABAPer can code this for you:-
    *Summary*
    *Symptom*
    You want to be able to display offsetting account information in the line item display.
    This is not possible in the standard system.
    *Other terms*
    FBL1, FBL3, FBL5, RFEPOS00, GET_GKONT, FBL1N, FBL3N, FBL5N
    *Reason and Prerequisites*
    No standard functionality
    *Solution*
    The solution requires the use of Business Transaction Events (previously: 'OPEN FI - Event) and, therefore, is not a modification.
    Procedure:
    1. Define fields RFPOS-GKONT and RFPOS-GKART.
    Prior to Release 4.6x
      If the fields do not yet exist in the structure RFPOS:
      Use Transaction SE11 to display structure RFPOS.
      Choose Go to -> 'Append structures'.
      Specify a new name (e.g. ZZAS) in the customer namespace,
      and create the following fields:
                FIELD            DATA ELEMENT
              ZZGKONT              GKONT
              ZZGKART              GKART
      After saving, enter a customer development class (for example Z001).
      Then activate the structure.
    As of Release 4.6x
      Implement Note 217189 in your system, if it has not already been
      applied by means of one of the following Support Packages:
                    RELEASE    PACKAGENAME
                    4.6B      SAPKH46B08
                    4.6C       SAPKH46C01
    2. You can use function module LINE_ITEMS_GET_GKONT.
    If this module is not available in the system, proceed as follows:
    Use SE37 to copy function module SAMPLE_INTERFACE_00001650 in the customer namespace under any name (e.g. ZZ_GET_GKONT).
    Sample coding for ZZ_GET_GKONT:
    (code}    FUNCTION zz_get_gkont.
          e_postab = i_postab.                <-- important
          CALL FUNCTION 'GET_GKONT'
               EXPORTING
                belnr           = i_postab-belnr
                bukrs           = i_postab-bukrs
                buzei           = i_postab-buzei
                gjahr           = i_postab-gjahr
                gknkz           = '3'
           IMPORTING
                gkont           = e_postab-zzgkont
                koart           = e_postab-zzgkart
           EXCEPTIONS
                belnr_not_found = 1
                buzei_not_found = 2
                gknkz_not_found = 3
                others          = 4.
    ENDFUNCTION.
    **Meaning of parameter: gknkz
      *1 Display offsetting account if clearly specified
      *2 Always display offsetting account with the highest amount
      *3 As case 2, but including line items generated automatically
    This source code is an EXAMPLE and can therefore also be implemented differently. For example, you can also program that other data on offsetting account (master record data) is read here.
    3. Call Transaction FIBF.
    Choose 'Settings -> Products -> ...of a customer'
    You can choose the product name and the description at will.
    Set the 'active' indicator and save.
    Go to Settings --> P/S modules -->
    ...of a customer, and add the following entry:
      Event:              00001650
      Product:            Product name from item 3
      Lnd/Appl:          blank
      Function module:    Module name from item 2
    Save the entry.
    4. In addition, you need to create a variant containing the offsetting
    account information:
    Prior to Release 4.6x
    You can define special fields in Customizing (FAKP: Menu: Account -->
    Display Items --> Special Fields) that show the offsetting account
    information. You do this by adding the fields from item 1 to the
    variant. All functions such as search, sort, summarize are available.
    After Release 4.6x
    Call the line item display and start ist.
    Via button 'Change Layout' or
    'Settings --> Display Variant --> Current', copy the offsetting
    account information to the display variant.
    Save this variant under any name.
    All functions such as search, sort, summarize are available.

  • Accounts Descriptions in Report Painter

    If I have a set with a range of accounts and no description, for example:
    SET [345,899]
    I link this set to be output in a report using report painter...
    How do I do to see the accounts descriptions about this range in ReportPainter.
    I mean:
    Something like this......
    345 description 345
    346 description 346
    347 description 347
    368 description 368
    390 description 390
    etc etc

    Hi
    To create a Transaction Code for a Report Painter/report writer report
    Tcode for Report Painter
    To create a TCode, follow the steps below.
    1) Go to Transaction code SE93, Enter TCode Name and Press Create.
    2) Give short Description and select Parameter Transaction, Press Enter
    3) Select Transation Radio Button and write START_REPORT in the next text
    box Also Check the box Skip Initial Screen.
    4) On the bottom of Screen (default Values), Enter Parameters
    i) Name = D_SREPOVARI-REPORTTYPE. Value = RW
    ii) Name = D_SREPOVARI-REPORT Value = Your Report Group Name (Say 1SIP)
    5) Save and Execute.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Difference in Stock account , Custom clearing account

    Hi All.
    I found the amount difference issue when GR document is reversed. The background is as follows.
    1. Material is procured from import vendor for which PO order currency is CNY.
    2. The conditions maintained in PO are indian standard customes conditions.
    3. After GR was made , user realised error and reversed the material document.
    4. Upon reversal it is found that
                      a. Stock Account adjusted with amount greater than GR account docuement.
                      b. GR/ IR account is perfectly adjusted as in GR account document.
                      c. Custom clearing account adjusted with amount greater than GR account docuement.
    5. Exchange rate is maintained properly for CNY to USD
    Thanks in advance.
    Regards,
    Deepak Dalvi

    Thanks for the reply.
    POSTING date for GR and reversal document is same i.e today.  As I said in previous mail, the GR/ IR account is properly adjusted. Stock account and CENVAT account shows difference.
    Thanks & Regards,
    Deepak

  • Post Directly To Customer Reconciliation Account

    Dear Experts,
    We are facing the following problem in one of our Clients system.
    They have uploaded the opening balance in a Customer Reconciliation GL Account ( Its an alternate reconciliation account ), here onwards reffered to as XYZ.
    Now after 6 months of Go-Live they realized that the opening balance was uploaded incorrectly.
    Their original entry was like this:
    Dr. XYZ                      100
    Cr. Data Migration GL 100
    When the try to reverse the above entry they get the following error: "Account XYZ in company code ABCD cannot be directly posted to" Message No: F5354
    Now i have two questions ( Disclaimer: These questions might sound very silly, but trust me I am seriously lost here. )
    1. How was this entry posted in the first place? I have checked the change logs for GL XYZ, no data exists that shows that the reconciliation indicator has been changed. The reconciliation Indicator is customer from beginning.
    2. How to reverse the above entry?
    Any usefull suggestions will be generously rewarded.
    Regards,
    Priyank.

    Dear All,
    I am sorry for replying so late to this Thread.
    We found the root cause of the problem. Some one has changed the Table Entries (SKB1-MITKZ) for  the GL Master of Customer Reconciliation Account. This was the reason that the GL account was showing as Customer Reconciliation Account.
    Now when we tried to reverse these changes the system didnt allow us as it needed some entry in that field and keeoing it blank was not an option. Even the input help didnt show any blank field.
    So in order to overcome the above shortcoming, we wrote an ABAP program to change the field value to Blank.
    So learning is that you should never use Table Edit without having proper knowledge of how Tables behave.
    Thanks all for your Support.
    Am Closing the thred.
    Good Bye.

  • Can we change customer rec. account after transaction

    Dear Sap Guru,
    Is it possible for us to change the customer rec. account which we set in company code data. Once we perform transaction from the customer account then later we thought of changing the customer rec account?
    Waiting for positve reply. Points will be ..........
    nikhil

    Dear Sir,
    What about my old data base? Is there any impact on that? Weather I have to change the customer code or in the same I can change the rec. account? If u can provide me the procedure it will be helpful to me.
    I have n number of transaction on the customer account and I should be able to see the old history.
    Nikhil

  • How to generate a report based on account description

    Hi Experts,
    How to generate the report based on account description, that means
    i want to generate a report on G/L account and which account numbers are having 'CASH' description.
    for Ex: G/L a/c no: 25010026-Cash and Bank balance(des)
    G/L a/c no: 101000-Cash-freight
    like this.
    please help to do this,
    good answer will be appreciated with points,
    Thanks in advance
    Venkat

    Hi shana,
    my requirement is
    I have G/L account numbers, that account numbers having some descriptions, in these some descriptions are belongs to cash transactions, i want to generate the report on these cash transactions, and the report is " G/L account, debit cash, credit cash, balance".
    is it possible or not,
    thanks in advance,
    Venkat

  • Unable to Create a Customer in Accounts Receivable

    Hi,
    I am unable to create a customer in Accounts Receivable module (in Ver 12.0.04). I am getting the following error message.
    FND_SESSION_MANAGEMENT.UPDATESESSIONCONTEXT SQLException: java.sql.SQLException: OALL8 is in an inconsistent state
    Could some one help me on resloving the issue.
    Thanks
    Vijendra

    hi
    USE tcode <b>VD01</b> in order to create a customer for SD which will have sales area data.
    for centrally itis XD01
    regards

  • Sales order not recongnizing customer reco account

    Hi Gurus,
    User created Customer without reconciliation account somehow. On that account user created Sales order and in the incomplete log there is error that no GL account is mentioned for that customer.
    We have not changed customer master and updated with reconciliation account. Even though there is reconciliation account in customer master, in sales order its still coming up with the error that  no GL account is determined for the customer.
    How do we update the sales order with customer GL account? We can not change sold-to-party in the sales order so don't know how system will update information in the background.
    Many thanks

    Hi,
    The question is contradictory. Initially you mentioned that customer account doesn't have reconciliation account. Sales order is created and is in the log with error. Later you said the customer account is updated? can you please post it again?
    Thanks
    Giridhar

  • Translation of G/L account description

    HI all,
    can any one explain  the steps for doing translation of GL account description in t.code: OB_GLACC13?
    regards,
    ramesh b

    Hi Ramesh
    This transaction is to do a Mass change on with the same values for all the g/l accounts you selected.
    Like change all the fields status group for these account in ZZZZ
    The translation you have to do with the normal transaction for de master data G/L acounts.
    When you habe a lot of entries you can create an LSMW for it
    Paul

  • Customer GL Account Updates by Creating a Sales Order

    Dear all,
    I would like to know detailed information about customer GL Account updates based on Sales Order creation.
    We have a POS system, there we are creating Sales Orders for the customers.
    As per my knowledge by creating a sales order system is performing the following jobs.
    Debiting Customer Account
    Crediting Sales Account.
    Please suggest me that my understanding is right or not.
    What else job is performed with regards to financial accounts for the customer.
    Where can I see these updations at each level starting from Sales Order creation, Delivery and Invoice.
    Please educate to get a clear idea of the process. your suggestions will be highly appreciated.
    Thank you
    Raghu Ram

    Hi,
    there will no accounting entry at sales order creation.
    Here is the sd cycle:
    sales order no accounting effect
    goods deleivery to customer
    COGS a/c dr
    to stock
    Billing to customer
    customer a/c dr
    to sales revenue
    Hope this is clear
    pls assign points if it was
    Thanks
    Vamsi

  • Customer bank account detail in istore.

    In istore ,one customer is place order a item using the same credit card number (EX:visa .XXXXXXXXXXX4444) .After the place order ,in customer bank account screen having the credit card information and customer account name.
    Again same customer is place order the item using the exiting credit card number. (EX:visa .XXXXXXXXXXX4444) . So what was the out put in customer bank account screen. in this process credit card number is updated in exiting credit card or creates a new credit card account in customer bank account screen.
    Thanks
    prabu

    Hi;
    ll APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

Maybe you are looking for