Is web ADI support to show DFF columns

Hi all,
Is webADI supports the Descriptove Flex Field columns to show? Any pointers would be helpful.
Thank you.

Hi,
WebADI supports both descriptive and Key flexfields. In case of descriptive flex you get one column. When you double click on the column, attributes are displayed depending on the context selected. In case of KFF, each segment is a column in the webadi spreadsheet.
Regards,
Venky

Similar Messages

  • How to enter values in Descriptive flexfield by WEB ADI

    Hi All,
    I am using GL-Journals as an integrator for uploading data using WEB ADI. I have DFF at Journal lines. There is Context Field value and also 3 lines(Attributes). I can enter the data by clicking the Line DFF Context and Line DFF manually. The entered values are shown as concatenated values in this cell. But the data is in different columns in excel file. I want to map the data from excel(which is in different cells) to this one column in the WEB ADI template.
    Does any one know how to map this.
    Thanks in advance.
    Regards,
    Pramod.

    Hi All,
    After couple of investigations, I understood that it is not possible to map and upload DFF Values unless you concatenate the data. We all know it used to work in client ADI. I have found these documents 1072689.1 and Bug 8469705.
    If someone knows any workaround please let me know.
    Thank you,
    Regards,
    Pramod

  • How to implement STANDARD Picklists in Web ADIs

    Hi,
    I have been developing, configuring and implementing Custom Web ADIs in Oracle HRMS and I have used Excel 2000 as the third party tool and were able to implenment CREATE and UPDATE type of Integrators.
    Also I am able to implement 'Standalone Queries'.
    Using BEN_INTERFACE_COLS_B Table I am able to implement POPLISTs which is one among the two types of LOVs supported by Web ADI.
    The other type is 'STANDARD' LOVs. I was trying to implement STANDARD LOVs, by using BNE_COMPONENTS_B Table.
    But I got struckup at this point on,
    1. Will Oracle Web ADI support user defined Java Class components?
    2. If so after developing the Java componenet, what all updations are required other than updating BNE_COMPONENETS_B Table?
    (How to integrate this java component with the integrator, I knew that VAL_COMPONENT_APP_ID & VAL_COMPONENT_CODE in the
    Table BEN_INTERFACE_COLS_B has to be updated but will this be enough? )
    3. Where to put the Java class component file in the Unix box to be used by the Custom Web ADIs.
    Please Advice
    thanks in Advance..
    Anil Krishnan
    [email protected]

    Hi,
    I tried updating bne_interface_cols_b for an existing column.
    In launch Journal wizard, the 'Expense Type' or 'Segment3' has some LOV attached to it. I need to point that LOV to my custom table somehow.
    I tried updating the table with the given values
    UPDATE bne_interface_cols_b
    SET val_id_col = 'VAR_FIXED',
    val_mean_col = 'MEANING',
    val_type = 'TABLE',
    lov_type = 'POPLIST',
    val_obj_name = 'MY_TABLE_NAME',
    OFFLINE_LOV_ENABLED_FLAG='Y',
    GROUP_NAME=NULL,
    SEGMENT_NUMBER=NULL
    WHERE interface_col_name = 'SEGMENT3'
    AND application_id = 101
    AND interface_code = 'GL_INTERFACE_120'
    But I am not able to see any change when i run the 'launch Journal Wizard' ADI. It still displays the old lov
    Can you please help

  • PA-How to modify Web ADI template ?

    Hi All,
    can i change the columns position in web adi template (for eg: the column order should be Description, Name instead of Name, description) and also need to modify the column heading for eg: Supplier instead of Vendor name)
    does it possible? Please help
    Thanks,

    I would advise you to make a copy of the webadi layout and modify it and then use the copy of the layout with the original untouched.
    Hope this helps!
    Sathish Raju
    www.projectsaccounting.com

  • JAEHYLEE  (R12 ADI)  How to add DFF in Web ADI

    Goal
    How to add DFF in Web ADI
    Solution
    ADI Mass Addition Template Layout Define에서 DFF를 사용하기 위해서 아래 ER이 현재 진행중이고 그 전에 사용하기 위해서는 아래와 같은 Datafix를 Workaround로 사용하여야 합니다.
    Please do the following in the test instance first and if satisfied migrate to production
    1.Setup-->Financials>Flexfields>Descriptive>Segments
    Query the Mass addition DFF and Category flexfield
    2.Both the above is to be defined exactly the same
    3.Reference field for both should be ATTRIBUTE_CATEGORY_CODE
    4)login to sqlplus apps account and run the following script
    sql
    - make sure it runs without errors, then commit. Otherwise rollback. This
    script should not be run over again, therefore verify the outcome.
    - restart the apache listener
    - login to apps and navigate to the Webadi Define Layouts page, under FA
    responsibility.
    - choose a layout for the Additions integrator, include the "Descriptive
    Flexfield" and "Context".
    - Test it.
    SCRIPT
    ===========
    set serveroutput on size 1000000
    Declare
    content_code varchar2(1000);
    interface_code varchar2(50) := 'FA_MASS_ADD_INTERFACE';
    begin
    dbms_output.put_line('Start add descriptive flexfiedl to Additions
    integrator: ' || interface_code);
    dbms_output.put_line('Updating attribute columns in bne_interface_cols_b')
    Update bne_interface_cols_b
    set display_flag = 'N' ,
    val_type = 'DESCFLEXSEG',
    group_name = 'MASSADD_DF'
    where application_id = 140
    and interface_code = 'FA_MASS_ADD_INTERFACE'
    and interface_col_name in ('ATTRIBUTE1','ATTRIBUTE2',
    'ATTRIBUTE3','ATTRIBUTE4','ATTRIBUTE5','ATTRIBUTE6',
    'ATTRIBUTE7','ATTRIBUTE8','ATTRIBUTE9','ATTRIBUTE10',
    'ATTRIBUTE11','ATTRIBUTE12','ATTRIBUTE13','ATTRIBUTE14',
    'ATTRIBUTE15','ATTRIBUTE16','ATTRIBUTE17','ATTRIBUTE18',
    'ATTRIBUTE19','ATTRIBUTE20','ATTRIBUTE21','ATTRIBUTE22',
    'ATTRIBUTE23','ATTRIBUTE24','ATTRIBUTE25','ATTRIBUTE26',
    'ATTRIBUTE27','ATTRIBUTE28','ATTRIBUTE29','ATTRIBUTE30');
    dbms_output.put_line('Creating CONTEXT');
    -- see webadi dev.guide for complete parameter documentation.
    BNE_INTEGRATOR_UTILS.UPSERT_INTERFACE_COLUMN
    (P_APPLICATION_ID => 140,
    P_INTERFACE_CODE => interface_code,
    P_SEQUENCE_NUM => 1011,
    P_INTERFACE_COL_TYPE => 1, -- indicates that column exists
    in interface table.
    P_INTERFACE_COL_NAME => 'CONTEXT',
    P_ENABLED_FLAG => 'Y',
    P_REQUIRED_FLAG => 'N',
    P_DISPLAY_FLAG => 'Y',
    P_FIELD_SIZE => 30,
    P_DEFAULT_TYPE => '', -- JAVA_EACH_ROW, SQL, TABLELOOKUP
    etc.
    P_DEFAULT_VALUE => '',
    P_SEGMENT_NUMBER => '',
    P_GROUP_NAME => 'MASSADD_DF',
    P_OA_FLEX_CODE => 'FA_MASS_ADDITIONS',
    P_OA_CONCAT_FLEX => 'N',
    P_READ_ONLY_FLAG => 'N',
    P_VAL_TYPE => 'DESCFLEXCONTEXT', -- TABLE,JAVA etc.
    P_VAL_ID_COL => '', -- Column for table LOV.
    P_VAL_MEAN_COL => '', -- Column for table LOV.
    P_VAL_DESC_COL => '', -- Column for table LOV.
    P_VAL_OBJ_NAME => '', -- Table for table LOV, class for java
    P_VAL_ADDL_W_C => '', -- where clause for table LOV.
    P_DATA_TYPE => 2, -- 1=NUMBER,2=varchar,3=date
    P_NOT_NULL_FLAG => 'N', -- Y=not null, N=null
    P_VAL_COMPONENT_APP_ID => '140', -- NUMBER
    P_VAL_COMPONENT_CODE => 'OA_FLEX', -- VARCHAR2
    P_SUMMARY_FLAG => 'N', -- VARCHAR2
    P_MAPPING_ENABLED_FLAG => 'Y', -- VARCHAR2
    P_PROMPT_LEFT => 'Context - Descriptive Flexfield', --
    VARCHAR2
    P_PROMPT_ABOVE => '', -- VARCHAR2
    P_USER_HINT => '', -- VARCHAR2' List - Text','* List -
    Text', '* Value','Text','* Date'
    P_USER_HELP_TEXT => 'US', -- VARCHAR2
    P_LANGUAGE => 'US', -- VARCHAR2
    P_SOURCE_LANG => 'US', -- VARCHAR2
    P_OA_FLEX_NUM => '', -- VARCHAR2
    P_OA_FLEX_APPLICATION_ID => '140', -- NUMBER
    P_DISPLAY_ORDER => 802, -- check
    P_UPLOAD_PARAM_LIST_ITEM_NUM => '', -- NUMBER
    P_EXPANDED_SQL_QUERY => '', -- VARCHAR2
    P_LOV_TYPE => 'NONE', -- VARCHAR2
    P_OFFLINE_LOV_ENABLED_FLAG => 'N', -- VARCHAR2
    P_VARIABLE_DATA_TYPE_CLASS => '', -- VARCHAR2
    P_USER_ID => 2 -- NUMBER VERIFY THAT 2 IS CORRCT
    dbms_output.put_line('Creating MASSADD_DF_PARENT');
    -- see webadi dev.guide for complete parameter documentation.
    BNE_INTEGRATOR_UTILS.UPSERT_INTERFACE_COLUMN
    (P_APPLICATION_ID => 140,
    P_INTERFACE_CODE => interface_code,
    P_SEQUENCE_NUM => 1012,
    P_INTERFACE_COL_TYPE => 2, -- indicates that column exists
    in interface table.
    P_INTERFACE_COL_NAME => 'MASSADD_DF_PARENT',
    P_ENABLED_FLAG => 'Y',
    P_REQUIRED_FLAG => 'N',
    P_DISPLAY_FLAG => 'Y',
    P_FIELD_SIZE => '', --?
    P_DEFAULT_TYPE => '', -- JAVA_EACH_ROW, SQL, TABLELOOKUP
    etc.
    P_DEFAULT_VALUE => '',
    P_SEGMENT_NUMBER => '',
    P_GROUP_NAME => 'MASSADD_DF',
    P_OA_FLEX_CODE => 'FA_MASS_ADDITIONS',
    P_OA_CONCAT_FLEX => 'Y',
    P_READ_ONLY_FLAG => 'N',
    P_VAL_TYPE => 'DESCFLEX', -- TABLE,JAVA etc.
    P_VAL_ID_COL => '', -- Column for table LOV.
    P_VAL_MEAN_COL => '', -- Column for table LOV.
    P_VAL_DESC_COL => '', -- Column for table LOV.
    P_VAL_OBJ_NAME => 'oracle.apps.bne.integrator.validators.
    BneDFFValidator', -- Table for table LOV, class for java
    P_VAL_ADDL_W_C => '', -- where clause for table LOV.
    P_DATA_TYPE => '', -- 1=NUMBER,2=varchar,3=date ?
    P_NOT_NULL_FLAG => 'N', -- Y=not null, N=null
    P_VAL_COMPONENT_APP_ID => '140', -- NUMBER
    P_VAL_COMPONENT_CODE => 'OA_FLEX', -- VARCHAR2
    P_SUMMARY_FLAG => 'N', -- VARCHAR2
    P_MAPPING_ENABLED_FLAG => 'Y', -- VARCHAR2
    P_PROMPT_LEFT => 'Descriptive Flexfield', -- VARCHAR2
    P_PROMPT_ABOVE => '', -- VARCHAR2
    P_USER_HINT => '', -- VARCHAR2' List - Text','* List -
    Text', '* Value','Text','* Date'
    P_USER_HELP_TEXT => 'US', -- VARCHAR2
    P_LANGUAGE => 'US', -- VARCHAR2
    P_SOURCE_LANG => 'US', -- VARCHAR2
    P_OA_FLEX_NUM => '', -- VARCHAR2
    P_OA_FLEX_APPLICATION_ID => '140', -- NUMBER
    P_DISPLAY_ORDER => 803, -- check
    P_UPLOAD_PARAM_LIST_ITEM_NUM => '', -- NUMBER
    P_EXPANDED_SQL_QUERY => '', -- VARCHAR2
    P_LOV_TYPE => 'NONE', -- VARCHAR2
    P_OFFLINE_LOV_ENABLED_FLAG => 'N', -- VARCHAR2
    P_VARIABLE_DATA_TYPE_CLASS => '', -- VARCHAR2
    P_USER_ID => 2 -- NUMBER VERIFY THAT 2 IS CORRCT
    dbms_output.put_line('Creating OA_FLEX component');
    end;
    insert into bne_components_b
    (application_id, component_code, object_version_number, component_java_class,
    created_by, creation_date, last_updated_by, last_update_login, last
    updatedate )
    values
    (140, 'OA_FLEX',1.0,'oracle.apps.bne.integrator.component.BneOAFlexComponent',
    2,to_date('20051201','YYYYMMDD') ,2, 2, to_date('20051201','YYYYMMDD') );
    Update bne_interface_cols_b
    set last_update_date = to_date('20051201','yyyymmdd')
    where application_id = 140
    and interface_code = 'FA_MASS_ADD_INTERFACE'
    and sequence_num in (1011, 1012);
    Update bne_interface_cols_tl
    set last_update_date = to_date('20051201','yyyymmdd')
    where application_id = 140
    and interface_code = 'FA_MASS_ADD_INTERFACE'
    and sequence_num in (1011, 1012);
    Reference
    559392.1

    Hello.
    The process is described in the Oracle Web Applications Desktop Integrator Implementation and Administration Guide manual.
    Octavio

  • Summary Links web part not showing correct column number

    Here is my scenario. I have a simple two server dev farm that is using a snapshot of production data. I have migrated the 2010 content db over and everything is running fine. One quirk I have noticed is with the summary links web part. If I add the webpart
    to a page, in the configuration settings for the webpart you can create named groups and the next setting is how many columns you want the links to appear in. When I select lets say "4" columns, and I create four groups. When I save and check in
    the web part only shows "3" columns instead of 4. 
    For Example. 
    I create groups: Group 1
                              Group 2
                              Group3 
                              Group 4
    In the webpart configuration I select "display number of columns" = 4
    When I save that setting and look at the web part the groups will appear as:
     Group 1             Group 2                    Group 3
    Group 4
    when in reality if the column setting is = 4, I would expect: 
    Group 1      Group 2      Group 3      Group 4
    So it appears it is behaving as if whatever column number you select, what is displayed is N-1. 
    Has anyone else had this happen in SharePoint 2013? The same webpart doesn't behave this way in the 2010 production environment where dev gets its content. Any help would be great. 
    Thanks,

    Hi againeyuga,
    Yes, I have tested in my SharePoint Server 2013 with December 2013 CU  and it  works fine. For your environment, I recommend  you install the SP1 update.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • GL Journal Import Web ADI Issue - Line DFF

    We have a requirement to add DFF values to Journal Web ADI import. We have added Line DFF Context and Line DFF fields to the layout. Document is getting created and but the upload fails with the below message,
    Upload processing did not complete
    Exception during parsing of upload document. java.lang.NullPointerException
    Any pointers/ help is highly appreciable.
    Thanks In Advance

    Hi Hussein,
    Thank you for your response. Below are the error messages that I got from the BNE log file. Can you please help me to figure out what is the wrong here.
    11/6/14 7:32 AM AJPRequestHandler-HTTPThreadGroup-34 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 101:L3_JOURNALS_120
    11/6/14 7:32 AM AJPRequestHandler-HTTPThreadGroup-34 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 101:L3_JOURNALS_120
    11/6/14 7:32 AM AJPRequestHandler-HTTPThreadGroup-34 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 101:L3_JOURNALS_120
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          BneUploader.processUpload(), fatal exception: java.lang.NullPointerException
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          java.lang.NullPointerException
      at oracle.apps.bne.integrator.upload.BneFineValidator.runTableValidation(BneFineValidator.java:946)
      at oracle.apps.bne.integrator.upload.BneFineValidator.validateColumns(BneFineValidator.java:702)
      at oracle.apps.bne.integrator.upload.BneSAXUploader.processDeepestLevel(BneSAXUploader.java:2248)
      at oracle.apps.bne.integrator.upload.BneSAXUploader.startElement(BneSAXUploader.java:1202)
      at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:181)
      at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1288)
      at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
      at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
      at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:234)
      at oracle.apps.bne.integrator.upload.BneUploader.processUpload(BneUploader.java:301)
      at oracle.apps.bne.integrator.upload.BneAbstractUploader.processUpload(BneAbstractUploader.java:114)
      at oracle.apps.bne.integrator.upload.async.BneAsyncUploadThread.run(BneAsyncUploadThread.java:149)
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          BneOracleWebAppsContext.getExtraJDBCConnection recieved the same connection as the base connection.  There may be transaction problems.

  • Web ADI HR - which forms supported?

    Hi all
    I'm looking for some information about which forms are supported by Web ADI in Oracle HR.
    For example, i know that the person and assignment forms are supported, but it doesn't appear possible to create an integrator for the address form, or the contacts form.
    If anyone can point me to a document, either here or on Metalink, I would be grateful.
    Thanks
    Alex

    If you discovered the standard cannot achieve your demand ,you must customer this api , for example ,
    step 1 create customer hr_address_api
    create or replace package body cux_hr_address_api is
    procedure create_address(p_employee_number varchar2
    ,p_last_name varchar2
    ,p_effective_date date
    ,p_primary_falg varchar2
    ,p_date_from date
    ,p_address_line1 varchar2
    ,p_country_city_sar varchar2
    ,p_country varchar2
    ,p_postal_code varchar2) is
    v_person_id per_all_people_f.person_id%type;
    l_address_id per_addresses.address_id%type;
    l_object_version_number per_addresses.object_version_number%type;
    begin
    /*bug: person_id */
    select person_id into v_person_id
    from per_all_people_f
    where employee_number = p_employee_number
    and rownum = 1;
    hr_cn_person_address_api.create_cn_person_address(
    p_effective_date => trunc(p_effective_date),
    p_person_id => v_person_id,
    p_primary_flag => p_primary_falg,
    p_date_from => p_date_from,
    p_address_line1 => trim(p_address_line1),
    p_province_city_sar => p_country_city_sar,
    p_postal_code => p_postal_code,
    p_country => p_country,
    p_address_id => l_address_id,
    p_object_version_number => l_object_version_number);
    end;
    end cux_hr_address_api;
    step 2 login application
    1. webadi => create documents
    1.1 select office version
    1.2 select HR Integrator Setup
    1.3 use default
    1.4 select None
    1.5 create documents (button)
    1.6 save and open WebADI.xls
    1.6.1 METADATA_TYPE => CREATE
    APPLICATION_ID => Must be entry your customer application id
    INTEGRATOR_USER_NAME => Your name
    FORM_NAME => GENERAL
    API_PACKAGE_NAME => cux_hr_address_api
    API_PROCEDURE_NAME => create_address
    INTERFACE_USER_NAME => your name
    INTERFACE_PARAM_NAME => your parameter name
    API_TYPE => PROCEDURE
    1.6.2 menu => oracle => upload
    step 3
    1. webadi => define layout
    1.1 choice step 2 create integrator
    1.2 all filed name, placement are Line
    1.3 apply
    step 4
    1. webadi => create documents
    2. choice step2 create integrator
    3. choice step2 define layout
    4. choice None
    5. create documents (button)
    6. save and open WebADI.xls
    7. entry your data
    8. menu => oracle => upload

  • Need to show DFF Values on Web Form

    Hi All,
    I need to show DFF values on Web Form without customization , is it possible with Personalization?
    Regards,
    Sajid

    This is quite Possible with Seeded OAF page.
    Check first if DFF already on page using the personlization.
    If It is not available you can include flex item using personlization for enabling the DFF.
    Check this notes
    How To Add Descriptive Flexelds (DFF) To An Oracle Appplication Framework Page By Personalization [ID 430310.1]
    Thanks

  • Web ADI is not certified for IE7 and Windows XP...Supportable?

    SR: 7615910.992
    TACONIC FARMS INC
    MSP Integration
    12.06
    The following error is received when trying to install MS Projects Integration:
    Error
    The following error has occurred
    Exception Name: oracle.apps.bne.exception.BneFatalException
    Cause: Microsoft VBScript runtime error: 429 - ActiveX component can't create object.
    Action: Assure is installed, and check your browser's security by navigating to the Internat Explorer Tools Menu > Internat Options...
    They follow the steps given and yet the error remains. The customer is using Windows XP and Internet Explorer 7.0. According to the certify tab, this is NOT a certified combination for Web ADI. When the customer tries this exact same thing using IE 6.0, no error is received. Does not running a cerified combination become a showstopper from development's perspective or should I continue my research?
    Thanks, Elizabeth

    Hi,
    Please refer to the following documents, and see if it helps.
    Note: 561095.1 - The Error "MICROSOFT VBSCRIPT RUNTIME ERROR: 429 - ActiveX component can't create object" Appears when "Create Document" is Used on 11i with BND.D
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=561095.1
    Note: 416321.1 - Using Web ADI with Internet Explorer 7
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416321.1
    Regards,
    Hussein

  • Web ADI Report set, excel is not showing the data for any of the three repo

    We are currently working on 11.5.10.2 and moving from Desktop ADI to Web ADI. At the time of publishing report in Web ADI the excel is empty.
    AFter successfully running the WEB Adi reportset for Consolidate Balncesheet ( for a period ex: APR-2012), there were 3 reports that were publlished as a set. Then I went to Repository Management and went to the folder and subfolder where I saved all the above 3 reports. When I click on view on one of the reports, the excel spreadsheet opens and try to load something for a while but finally ends up loading nothing.
    I am unable to figure out what went wrong. Do you have any idea.
    If someone can help me, I really appreciate.
    Thanks
    Uday

    Hi ,
    In u r query what I observed was unit cost*gross profit is Amount Sold. Can u make this calculation with Physical calculation rather than and logical calculation.
    See if u have kept logical joins for both the tables with the fact and set the content level at detail level in the content level of fact.
    Then it will work
    Thanks
    S

  • Web ADI- Modification of FA Additions standard template problem

    Dear Gurus,
    We are on Oracle EBS 11.5.10.2. DB 10g On Oracle Enterprise Linux 5.8 BOX..
    I have modified the custom template of FA Addition.. Here is what I needed and what I have done..
    1. I excluded the mandatory Clearing Account Field from the template.
    2. I enabled Attribute 1 to Attribute 6 columns for display.
    3. Enabled those fields for mapping as well.
    4. Created a new template.
    All these I have done is by adjusting back end information.
    Problem:
    I am getting the attributes in layout creation page there I can select them for showing it on web adi spread sheet lines
    but when I create the document the Attribute Columns does not appear in the sheet.
    I have bounced the machine after doing the changes Still no result.
    Technical Changes I made for doing this :
    update bne_interface_cols_b x
    set x.DISPLAY_FLAG = 'Y'
    where x.INTERFACE_COL_NAME in ('ATTRIBUTE1','ATTRIBUTE2','ATTRIBUTE3','ATTRIBUTE4','ATTRIBUTE5','ATTRIBUTE6')
    and x.INTERFACE_CODE = 'FA_MASS_ADD_INTERFACE'
    update bne_interface_cols_b x
    set x.MAPPING_ENABLED_FLAG = 'Y'
    where x.INTERFACE_COL_NAME in ('ATTRIBUTE1','ATTRIBUTE2','ATTRIBUTE3','ATTRIBUTE4','ATTRIBUTE5','ATTRIBUTE6')
    and x.INTERFACE_CODE = 'FA_MASS_ADD_INTERFACE'
    Please let me know what I need to do for making these visible.
    Regards,
    Rubayat Newaz

    Leo thanks your reply was really helpful.
    here is what I did,
    update bne_interface_cols_b
    set val_type = null, group_name =null
    where application_id = 140
    and interface_code = 'FA_MASS_ADD_INTERFACE'
    and interface_col_name in ('ATTRIBUTE2','ATTRIBUTE4','ATTRIBUTE5','ATTRIBUTE6','ATTRIBUTE7')
    Walla it is showing in web adi. I am able to upload data..
    but I am facing a new kind of problem.. When I upload data using pre validate
    data is uploaded but I get this warning
    No concatenated descriptive flexfield value to validate.
    how to get rid of it ?
    Regards,
    Rubayat

  • Cannot display values in LOV when using oe_transaction_types in Web ADI Template in R12

    Hi,
    I use BNE_INTEGRATOR_UTILS.CREATE_TABLE_LOV to create a POPList by using the view oe_transaction_types, but there is no any data displayed in the order type column,  while can use table oe_transaction_types_tl to create the POP List and display value. Does the Web ADI LOV not support the MOAC? Here is the API:
      BNE_INTEGRATOR_UTILS.CREATE_TABLE_LOV(P_APPLICATION_ID     => 20009, --IN NUMBER,
                                            P_INTERFACE_CODE     => 'XXX_UPL_ORD_INTF', --IN VARCHAR2,
                                            P_INTERFACE_COL_NAME => 'P_ORDER_TYPE', --IN VARCHAR2,
                                            P_ID_COL             => 'NAME', --IN VARCHAR2,
                                            P_MEAN_COL           => 'NAME', --IN VARCHAR2,
                                            P_DESC_COL           => 'DESCRIPTION', --IN VARCHAR2,
                                            P_TABLE              => 'OE_TRANSACTION_TYPES', --IN VARCHAR2,
                                            P_ADDL_W_C           => 'TRANSACTION_TYPE_CODE = ''ORDER'' AND NVL(END_DATE_ACTIVE, SYSDATE) BETWEEN START_DATE_ACTIVE AND SYSDATE',
                                            P_WINDOW_CAPTION     => 'Order Type', --IN VARCHAR2,
                                            P_WINDOW_WIDTH       => 500, --IN NUMBER,
                                            P_WINDOW_HEIGHT      => 400, --IN NUMBER,
                                            P_TABLE_BLOCK_SIZE   => 10, --IN NUMBER,
                                            P_TABLE_SORT_ORDER   => 'NAME', --IN VARCHAR2,
                                            P_USER_ID            => -1, --IN NUMBER,
                                            P_TABLE_COLUMNS      => 'NAME,DESCRIPTION', --  IN VARCHAR2,
                                            --P_TABLE_SELECT_COLUMNS IN VARCHAR2,
                                            --P_TABLE_COLUMN_ALIAS   IN VARCHAR2,
                                            --P_TABLE_HEADERS        IN VARCHAR2,
                                            P_POPLIST_FLAG => 'Y');

    Duplicate post.
    How to restrict the display of Integrator in Web ADI
    How to restrict the display of Integrator in Web ADI

  • Useful Web ADI custom integrators docs

    I have recently started to look at creating Custom Integrators and thought it might help others if I listed the Oracle Docs I have found since they don't go out of their way to explain how to create custom integrators
    WebADI Implementation and Administration Guide
    http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115bneig.pdf
    Document explaining how to create custom integrators - Note 360105.1 (this also lists a number of downloadable viewlets showing how to do a number of standard web adi tasks such as layouts, form function registration
    The following Viewlets are available for download from Metalink to help with the HR Integrator setup.
    Patch 3196431 - Disabling integrators
    Patch 4125542 - Creating standalone integrators
    Patch 3196360 - Mail merge example
    Patch 3196357 - Upgrading ADE to Web ADI
    Patch 3196355 - Download example
    Patch 4125537 - Creating integrators
    Patch 4112747 - Associating Form Functions with integrators
    Change column names or enter details for LOVs - Note 389624.1 (might need Note 394680.1 if get "Connection to server unavailable error"
    Oracle HRMS ADI FAQ - Note:240142.1

    Thanks for sharing the Info.
    -Satya

  • Creating Web ADI custom integrator for AR

    Anyone create a Web ADI custom integrator to load receipt applications?

    hello Paul
    I am aware that in Journal Imports if using "line DFF" and if Line DFF is double licked on , it will not pop up unless Category and Source are populated. Something similar to what ur looking at.
    On another note , I have been trying to create a LOV similar to Source and Category LOV for an Attribute field which show on the Excel sheet . I have been able to have the Java screen pop up with the Data Populated but when I click on the "Select Button " the data does not show up on the Excel Sheet. Cant figure where to look future. Any idea.
    thanks
    Payam

Maybe you are looking for