Web ADI Parameter

Please guide me I wnat to create integrator which take parameter value from user according to this parameter Excell sheet download the record after update this record upload to this system
how i can acchive this I search many thing but I did not found, beore I create many custom integrator but take input for insert upload now I wnat to download the data as per parameter such as in Launch Budget Wizard in GL Module one fuction

Have you tried to log a SR and see if Oracle support can help?
Thanks,
Hussein

Similar Messages

  • SQL exception occurred during PL/SQL upload in WEB ADI Upload

    Hi All,
    I created Custom Integrator with META DATA as Update. This Integrator Downloads the data and will update the date. Once it is updated, I am uploading the same. For Quite Some Time, Everything is working fine and no issue.
    All of Suddenly , I am getting the error message 'SQL exception occurred during PL/SQL upload.' When I am trying to update and upload the values in the same custom integrator.
    My Oracle Apps and DB Version are
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.3
    Any Help is appreciated.

    I found the issue. If you check read only check box for the mandataory parameters that Package is using, then we get this issue. Try to avoid read only check box for mandatory parameters in th epackage.
    For Example.
    I am using hr_person_extra_info_api.update_person_extra_info API in my custom package, In this API, p_person_extra_info_id is the mandaory parameter.
    I am trying to download the data and updating the data and uploading the values with the custom WEB ADI. In the custom layout, I checked ready only box to parameter 'p_person_extra_info_id '. With this I am getting issue 'SQL exception occurred during PL/SQL upload in WEB ADI Upload'.
    again I unchecked the read only button to this 'p_person_extra_info_id ' Parameter. It is uplaoding and working with no issues.
    Thanks Guys for all your help.

  • 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

  • Unexpected Error - Web ADI having more than 800 lines in an invoice.

    Hi All,
    I am trying to upload an invoice having more than 800 lines through a custom build "AP Invoices WebADI". I am getting "Unexpected Error"; where Error message may be different in each unsuccessful run.
    I have tried decreasing the lines step by step; by decreasing 25-50 lines per run. I was able to load an invoice with 450 lines but couldn’t load invoice with 500 lines.
    What can be the reason ? Is there any limitation in open interface to load particular number of lines per invoice OR some sort of Web ADI limitation ?
    Please advise.
    Regards,
    MH

    Hi Yoonas,
    Thanks for your reply.
    I have checked the log file and found the issue:
    BneBaseSQL.executeQuery:Stack trace: java.sql.SQLException: ORA-01000: maximum open cursors exceeded
    I can understand its due to limit of open cursors. Before making change to db parameter I am troubleshooting code if I can find something to close the cursors properly.
    One thing I have noticed is that this message is coming, every time (after 450 records), when Web ADI calls Java LOVs to validate the given values. All other code is fine.
    I have 8 java based LOVs (java components attached in Web ADI). As per my understanding, during validation of each record, it calls the SQL Code for 8 LOVs hence open 8 cursors for each record. After 450 records, limit of maximum open cursors exceeds hence causing the issue.
    What do you think, Is it true in this case? If yes, is there any solution to it ? The thing I am worried about is; how I can control the call of Web ADI to Java LOVs ??
    Thanks & Best Regards,
    MH

  • Adding field to custom web ADI

    Hi All,
    I am new to web ADI. I need to add a column to existing custom web ADI which is fetching data from view and after editing it allows to upload data and make changes. I have added a column to the view from which web ADI is fetching but i am not able to fetch the newly added column in mapping under source column. Can anyone please help me.
    Thanks,
    Ravali

    Hi Yash,
    Have you tried using a web link field on the object you wish to pass the field from to access the custom web tab? i.e. if you want to pass Account Name as a parameter into the contents of a custom web tab you can configure a web link field to launch a URL in a custom web tab and pass the %%%AccountName%%% as a parameter on the URL.
    As Deepak has already pointed out, you must have the context of a specific record in order to pass a value into a custom web applet so you must be on the detail page of the selected record first.
    Thanks,
    Sean

  • 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

  • Getting error while trying to create a document using oracle web ADI resp.

    Hi All,
    When I am trying to create a document using Oracle Web ADI Responsibility and using "Ben Ri Process Bnf" integrator, it is showing me error
    "The following error has occurred
    Exception Name: oracle.apps.bne.exception.BneParameterException - No parameter list definition at parameter list id 800:PER_RI_JPG_PARAM_LIS
    Log File Bookmark: 868035"
    Can anybody tell me the cause of this error?
    Thanks.

    Please see the solution in (The Descriptive Flexfield With Application Name Receivables (AR) and Name Party Site Information (HZ_PARTY_SITES) Is Not Frozen [ID 743262.1]).
    Thanks,
    Hussein

  • Problem on Web ADI importer (Order Import)

    Hi all,
    I have been trying to import data with Web ADI (custom integrator). I use Synchronous Concurrent with "Order Import" program.
    The excel returns error of:
    1 rows successfully uploaded.
    No concurrent import requests have been submitted
    The import program could not be started. Contact your system administrator.. 
    Parameter 5 from the CONCURRENT_REQUEST import step parameter list 660:TSTNUPL_CP has the following error:
      API Parameter name is not defined in Attribute 1.
    The bne.log file records error as:
    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: 660:TSTNUPL_XINTG
    It would be very much appreciated if anyone can provide a hint on solving this problem, which exists for a long time.
    Thank you for your kind attention.

    10/7/14 12:54 PM AJPRequestHandler-HTTPThreadGroup-16 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: 660:TSTNUPL_XINTG
    10/7/14 12:54 PM AJPRequestHandler-HTTPThreadGroup-16 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: 660:TSTNUPL_XINTG
    10/7/14 12:54 PM AJPRequestHandler-HTTPThreadGroup-16 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: 660:TSTNUPL_XINTG
    10/7/14 12:55 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/7/14 12:55 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneAsyncUploadPage.renderPage Empty value for parameter cannot be interpreted as a Boolean.
    10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneAbstractConcurrentImporter.validateConcurrentRequestStep validation error: An exception was thrown while validating the PL/SQL parameters... see the above messages
    10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneSyncConcurrentImporter.uploadImport - Generic exception caught: Parameter 5 from the CONCURRENT_REQUEST import step parameter list 660:TSTNUPL_CP has the following error: API Parameter name is not defined in Attribute 1.
    10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneSyncConcurrentImporter.uploadImport - Stack Trace: oracle.apps.bne.exception.BneUploadException: Parameter 5 from the CONCURRENT_REQUEST import step parameter list 660:TSTNUPL_CP has the following error: API Parameter name is not defined in Attribute 1.
      at oracle.apps.bne.integrator.upload.BneAbstractConcurrentImporter.validateConcurrentRequestStep(BneAbstractConcurrentImporter.java:349)
      at oracle.apps.bne.integrator.upload.BneAbstractConcurrentImporter.runConcurrentRequest(BneAbstractConcurrentImporter.java:121)
      at oracle.apps.bne.integrator.upload.BneSyncConcurrentImporter.uploadImport(BneSyncConcurrentImporter.java:467)
      at oracle.apps.bne.integrator.upload.BneSAXUploader.endElement(BneSAXUploader.java:1793)
      at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:210)
      at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)
      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:235)
      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)
    10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneOracleWebAppsContext.getExtraJDBCConnection recieved the same connection as the base connection.  There may be transaction problems.

  • 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

  • Load testing of Web ADI in EBS R12

    Hi,
    I am currently testing Oracle E-Business Suite R12. Has anyone load tested the Web ADI integrator for Oracle EBS R12? What tool did you use?
    Did you use QTP or Oracle ATS functional testing? I was not able to do a POC using LoadRunner or OATS load test tool.
    Basically Web ADI is an integration that allows data to be uploaded/downloaded between Oracle EBS R12 and local excel.
    Any help is appreciated.
    Regards
    CP
    Edited by: oracletest on 14-May-2012 07:17

    Hi,
    I have found that OATS does not work easily with Web ADI in my case.
    Regards
    CP

  • How to load a Query in the  bne_stored_sql in WEB ADI table.

    Hi folks ,
    I have a unique requirement as follow.
    I have created an VIEW , which is given in the Download WEB ADI integrator defintion.
    I am trying to query this view based in few search conditions thoughr a CO code. I am not used any time loading the Query in the bne_stored_sql table to achieve such funcaitonality.
    Please folks any inputs on this would be greatly appricaited.
    Thanks and Regards
    Raghu

    Hi,
    I am creating the layout for a sales order which will be send to a customer.
    In that order the customer can see the payment conditions.
    It should look like this:
    net price: 1000,00 EUR
    19,00% taxes: 190,00 EUR
    gross price: 1190,00 EUR                          
    payment conditions:
    payable within 30 days net: 1190,00 EUR
    payable within 14 days with discount of 2 %: 1166,20 EUR
    to get the bold marked digits I need to have access on the following tables:
    OCTG and CDC1
    In the OCTG table I get the days (in this example 30)
    In the CDC1 table I get the days of cash discount and the percentage (in this example 14 and 2)
    but in the sales order layout in PLD only the OCTG table is shown when I create a database field and the CDC1 table isn't.
    So what can I do to get this?

  • 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 INTEGRATOR FOR Bill of Material

    I am developing a WEB ADI integrator for Bill of material upload. The integrator will populate the data in a temporary table, validate it & write the error messages back to the table . On succesful validation the data will be sent to interface tables & then to base table.
    The integrator uses a procedure & sends data to the procedure. Procedure then loads data in temporary table & does the rest of work.
    To do this i need to know the following thinngs:
    1. How i can track the line no of Excel?
    2. How do I know that all data are loaded in temporaray table because the validation & rest of work will be done once all the rows of excel are transfered to temporaray table. i.e. How do i determine the End of File in Excel?
    3. How do i write error messages from the table to the excel in web adi?
    Any help will be appreciated. Please send me the sample scripts & web adi developer guide at [email protected],[email protected]

    If you check the XML that Web ADI generates to upload a document you will note that each row gets a row number. It would be a matter of being able to keep track of that number in your table so that when you are reporting the error back you can include that number in the message so the code in the Excel spreadsheet can assign it to the correct row.
    I would suggest trying to use even some of the basic validation mechanisms provided within Web ADI, as these will automatically return the error messages for bad data to the correct row in the spreadsheet.
    Web ADI will take the uploaded data, perform any validation check defined within meta-data then push the data to your Interface table. There are plenty of examples in th shipped code of product teams then using the Import phase of the upload to perform additional checks and then push the data further. But if you can utilize the existing Web ADI functionality. The data never ends up in the table in the first place to require any clean up on your part.

  • 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

  • How to restrict the display of Integrator in Web ADI

    Hi,
    I have developed two Integrators using Web ADI in Oracle application R12.First Integrator is used for download the data and second for
    Update the data in system.
    For both integrator separate two function are created and tagged with single menu.Whenever I want to access Download the excel (via download integrator)
    then Update Integrator is also shown (in LOV) during navigation ,its happening vice versa as well.
    Here my concern about restriction for indivisual integrator, becasuse always integrator is tagged to a perticualar function So in call of perticular Integrator other Integratior should not be available in list values.
    Please help and advise on the same.
    Regards,
    Deepak Sahu

    Hi Deepak,
    the scenario you are describing should not happen. WebADI deals with security entries and this shall be rather restrictive.
    Please check the following:
    - How many entries do you have in BNE_SECURED_OBJECTS referencing your integrator and/or referencing your function?
    => in your case you should have exactly 2 lines, one for every integrator and the function shall be different.
    If this is the case the next step is to check how often the function is assigned to a menu, also here to limit the access you should have two different menus, linked to the two functions. Assuming the menu isn't your main menu, make sure that for the different users always only one of the menus is linked.
    If all the prerequisites are fulfilled, one person with one menu should see only one integrator.
    Please let me know if this approach helps.
    br, Volker

Maybe you are looking for

  • Loadihng from ODS to Cube failed in process chain

    Hi All, I have a process chain for SD loads scheduled every night. It gave me an error while loading data from Billing ODS to Billing Cube(via Further Processing, and the data is not available in PSA). The error it gave is as follows: Error while upd

  • Songs I have on iPhone now no longer appear with iTunes Match

    I had some albums on both my Mac and my iPhone. Now with Match, the album doesn't appear on my iPhone-even though I manually had uploaded it. Match also doesn't load up all my music: I have a mere 2,400 songs-and the last 100 songs have been a nightm

  • Contact Person for Vendor in SRM/CUA

    Hello SRM Expert, We are using Central user administration (CUA and like other system SRM is connected to CUA. I am getting the error 'Central system not accessible' while creating the employee (manage business partner) for business partner (Vendor).

  • Front row & shared libraries on same computer

    Hey My girlfriend and I dont have the same music taste, which is why we like to keep our music on different accounts. However recently I've bought a Mac Mini intended to work as a mediacenter. I've planned to use Front Row along with the remote contr

  • Form settings problem

    Hi Experts I have a user defined form with 4 folders inside each folder there is a matrix(total 4 matrix). But my problem is that when i select form settings every time first matrix form settings will be displayed. I have to access the form settings