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

Similar Messages

  • Custom WEB ADI for Item Category Assignment

    Hello,
    We created following custom WEB ADI .
    1.) Item Update  ( No Security )
    2.) Item category assignment ( WITH Security of Organization Access )
    Created custom responsibility XX_INVENTORY with custom Menu (subset of INV_NAVIGATE)
    Added responsibility/organizationsfor XX_INVENTORY using organization access form.
    NOW
    POINT 1: Both ADI works as expected when added as function to Standard Inventory responsibility with menu INV_NAVIGATE.
    POINT 2: Item Update ( with No Security) Works fine from custom responsibility
    POINT 3: Item category assignment (with organization security) fails with "invalid integration key" error from custom responsibility. But if the user has "System Administrator" responsibility to his account it works fine, which makes me think that it has to do something with custom responsibility.
    Applicatio: R12.1.3
    Excel 2010
    BNE Allow No Security Rule to Yes at user level
    Any help is appreciated.
    Thanks

    Hussein,
    Still the same even after bouncing application. But if application bouncing was issue then none of the custom ADI should have worked from custom application. But ONLY ONE of the two is not working. Item update ADI is working just fine but Item Category assignment is not.
    Any more clues??
    I tried by adding Create Document, adding Desktop Integration menu to custom responsibility menu, nothing works. As soon as I add "System Administrator" responsibility to User  OR add the custom ADI function to standard inventory responsibility with INV_NAVIGATE menu, it works.
    Please let me know if anybody has any clue on this issue.
    Thanks

  • Uploading rows more than 10 in Custom Web ADI

    Hi All,
    We are using Apps R12.1.3.
    I created one new Custom Web ADI Integrator and uploading rows into custom table.
    It is uploading only 10 rows, and message after uploading showing as 'Uploaded 10 rows successfully', even if the rows are more than 10 rows.
    Kindly let me know how to upload rows more than 10..
    I did search and found to give profile option BNE Upload Batch Size to 10000, still no use.
    Kindly suggest.
    Regards,
    Afzal.

    Found the solution
    1. Desktop Integrator Resp> Define Layout. (if already created, then select your layout and press update button else Create new by selecting your integrator)
    2. Click Next, Next,
    Field:
    'Data Entry Rows' = 10  ---change here.
    Thanks...
    Regards,
    Afzal.

  • Error when using LOV wildcard(%) in custom web ADI

    Hello,
    I'm getting the following error on a custom Web ADI integrator.
    There are a number of LOVs on the form, and they're all working fine except one.
    The LOV is populated correctly, however, once the wildcard (%) search is used, the following error is shown:
    The following error has occurred
    Exception Name: oracle.apps.bne.exception.BneSQLException -
    Error occurred when setting bind value G% on SQL Statement at index 3.
    Cause: A low level API call failed.
    Action: Please note this error to your support
    representative.
    Statement: SELECT DISTINCT alias_value_name P_ALLOWANCE_NAME,
    alias_value_id, pel.element_type_id P_ELEMENT_TYPE_ID FROM apps.HXC_ALIAS_VALUES
    hav , apps.PAY_ELEMENT_LINKS_f pel , apps.per_all_assignments_f paaf ,
    apps.per_all_people_f ppf WHERE pel.ELEMENT_TYPE_ID = hav.attribute1 AND SYSDATE
    BETWEEN paaf.EFFECTIVE_START_DATE AND paaf.EFFECTIVE_END_DATE AND paaf.person_id
    = ppf.person_id AND ppf.employee_number = :1 AND ( (paaf.business_group_id =
    pel.business_group_id AND paaf.business_group_id =
    fnd_profile.value('PER_BUSINESS_GROUP_ID') AND LINK_TO_ALL_PAYROLLS_FLAG = 'Y')
    OR (pel.payroll_id = paaf.payroll_id ) ) AND hav.ENABLED_FLAG = 'Y' AND
    hav.ATTRIBUTE3 = 'PJ' AND HAV.ATTRIBUTE4 =
    DECODE(:2,'Quantity','Q','Amount','A','@') AND TRUNC(SYSDATE) BETWEEN
    HAV.DATE_FROM AND NVL(HAV.DATE_TO,HR_GENERAL.END_OF_TIME) AND TRUNC(SYSDATE)
    BETWEEN pel.effective_start_date AND
    NVL(pel.effective_end_date,HR_GENERAL.END_OF_TIME)
    Bind values used in SQL statement: G%
    Log File Bookmark: 964273
    Please help.
    Thanks,
    Mina

    Hi,
    maybe this is the problem. The type is byte and not binary.
    But I have the same problem as mentioned in the other thread: I can't change the type.
    The type in the WSDL of my web service is "base64binary". Is there maybe a possibility to import a jar-file for this type?
    Christian

  • How to create Custom WEB ADI using API Only for both Dowload/Upload process

    I am able to create custom WEB ADI using API for upload process. I have written the following code to create custom WEB ADI using API for upload process.
    DECLARE
    v_application_id NUMBER:= 20003;
    v_object_code VARCHAR2(255):='WEBADI_API_DEM_17';
    v_int_user_name VARCHAR2(255):='WEBADI_API_DEM_17';
    v_language VARCHAR2(255):='US';
    v_source_lang VARCHAR2(255):='US';
    v_user_id NUMBER :=1345;
    v_integrator_code VARCHAR2(255);--:='WEBADI_API_DEM_17_INTG';
    v_param_list_code VARCHAR2(255);
    --v_interface_code  VARCHAR2(255);
    v_interface_code VARCHAR2(255);--:='WEBADI_API_DEM_17_INTF';
    p_layout_code VARCHAR2(255):='WEBADI_API_DEM_17_LAYOUT';
    V_MAPPING_CODE VARCHAR2(255);
    BEGIN
    BNE_INTEGRATOR_UTILS.CREATE_INTEGRATOR(P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_USER_NAME =>v_int_user_name,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_INTEGRATOR_CODE =>v_integrator_code);
    BNE_INTEGRATOR_UTILS.CREATE_INTERFACE_FOR_API (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_API_PACKAGE_NAME =>'XXDH_PRICE_LIST_POC_PKG',
    P_API_PROCEDURE_NAME =>'CREATE_PRICE_LIST',
    P_INTERFACE_USER_NAME =>'WEBADI_API_DEM_17',
    P_PARAM_LIST_NAME =>'WEBADI_API_DEM_17',
    P_API_TYPE =>'PROCEDURE',
    P_API_RETURN_TYPE =>NULL,
    P_UPLOAD_TYPE =>2,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANG =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_PARAM_LIST_CODE =>v_param_list_code,
    P_INTERFACE_CODE =>v_interface_code);
    BNE_INTEGRATOR_UTILS.CREATE_DEFAULT_LAYOUT
    (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_INTERFACE_CODE =>v_interface_code,
    P_USER_ID =>v_user_id,
    P_FORCE =>FALSE,
    P_ALL_COLUMNS =>TRUE,
    P_LAYOUT_CODE =>p_layout_code);
    BNE_CONTENT_UTILS.CREATE_CONTENT_COLS_FROM_VIEW (P_APPLICATION_ID =>v_application_id,
    P_CONTENT_CODE =>'WEBADI_API_DEM_17'||'_CNT',
    P_VIEW_NAME =>'XXDH_PRICE_LIST_POC_V',
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id);
    BNE_CONTENT_UTILS.CREATE_CONTENT_TO_API_MAP (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_CONTENT_CODE =>'WEBADI_API_DEM_17'||'_CNT',
    P_INTERFACE_CODE =>v_interface_code,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_MAPPING_CODE =>V_MAPPING_CODE);
    END;
    I need to know what are API we can use to create download+upload ADI? anyone has already prepared script....please share it it me. My email id - [email protected]
    Thanks

    Use FNDLOAD, it's the only way.
    There are 2 seperate scripts, 1 for the Integrator and 1 for Layout.
    FNDLOAD apps/<pw> 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bneintegrator.lct <your name>.ldt BNE_INTEGRATORS INTEGRATOR_ASN="XXX" INTEGRATOR_CODE="<your code>"
    FNDLOAD apps/<pw> 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnelay.lct <your name>.ldt BNE_LAYOUTS LAYOUT_ASN="XXX" LAYOUT_CODE="<your code>"
    Cheers
    Jeroen

  • Help needed with Custom Web ADI Integrator for Mail Merge

    Hello,
    I've created a custom web adi integrator to generate letters to advise of end of probationary periods.
    The problem is that at the end of the process when the letter is opened in Word 2007, it only displays one record, and does not allow me to "preview results" and cycle through the records (this part is greyed out). It appears that the letter is not merged with the data spreadsheet although it does display one record from it.
    Our EBS version is 12.1.3 and we are using Office 2007.
    These are the steps I have followed so far (in brief):
    - Create a view to provide data (names, addresses etc).
    - Set up a new custom function (similar to seeded function HR Integrator Setup).
    - Add the custom function and other functions to Desktop Integration responsibility.
    - Add the relevant functions to end user's responsibility menu.
    - Add new category "other" to HR_ADI_DOCUMENT_TYPE lookup.
    - Create Download Excel Integrator by choosing Desktop Integration -> HR Integrator Setup. Enter "PER" for application and my view for the View Name. Upload.
    - Create another Excel document by choosing Desktop Integration -> HR Maintain Form Function Associations, and choose the integrator created above. Enter my custom function name in the generated spreadsheet and upload.
    - Define a layout for the new integrator.
    - Run the integrator under the end user responsibility and save the resulting spreadsheet, which is full of data as expected.
    - Create the letter in Word, using the saved spreadsheet as the data source for the merge. At this point the merge is successful.
    - Go to Desktop Integration -> Document Management and upload the Word mail merge document. Associate it with the custom document type created earlier.
    - Link this document to my integrator.
    - Go in as end user responsibility and run the integrator.
    At this point after enabling macros it loads 2 spreadsheets (one full of data) and the Word document, but the Word document only displays one record (approx the 10th in the list - there are about 100 in total). All of the relevant merge-related menu items on the "Mailings" tab are greyed out.
    Can anyone offer any pointers please?
    I did wonder whether it mattered if I changed the names of documents, e.g when I download and save the resulting spreadsheet full of data which I then use to merge to in the Word Doc, is it OK to call the spreadsheet anything or should it be left as the default name?
    Many thanks,
    Hazel

    Hi Nandhakumar.P,
    thanks for your response. Please find the answers below:
    - Set up a new custom function (similar to seeded function HR Integrator Setup).
    System Administrator -> Application -> Function. Query back the seeded User Function Name = "HR Integrator Setup", make a note of the details, then add a custom function entitled "NTC_HR_LETTERS" with the same details.
    - Add the custom function and other functions to Desktop Integration responsibility.
    System Administrator -> Application -> Menu. Query back User Menu Name = "Desktop Integration Menu" and add the following functions:
    WITHOUT PROMPT
    a. HR Integrator Setup
    b. HR Maintain Integrator Form Functions
    c. HR Disable Integrator
    d. HR ADI Document Overwrite Page
    e. HR ADI Document Upload Page
    f. The custom function created in previous step ("NTC_HR_LETTERS")
    WITH PROMPT
    g. HR ADI Document Management Page
    - Add the relevant functions to end user's responsibility menu.
    System Administrator -> Application -> Menu. Query back menu attached to custom responsibility of end user that will perform the action once set up.
    Add the following:
    a. The custom function "NTC_HR_LETTERS" as created previously (without prompt)
    b. Desktop Integration - Create Document (With Prompt. This function will be used to generate letters)
    - Add new category "other" to HR_ADI_DOCUMENT_TYPE lookup.
    SA_Application Developer -> Application -> Lookups -> Common. Query back Type = HR_ADI_DOCUMENT_TYPE and add a new entry entitled "Other". This document type is later assigned to the Word document I upload and link to the integrator.
    I hopoe that answers your questions.
    Regards,
    Hazel

  • Adding fields to custom idoc type

    Hi,
    i have a query regarding adding fields to custom idoc type.
    To add fields to custom idoc type we are trying to cancel the release from we30, but we are facing error that 'The release of basis type cannot be reset'
    When we are trying to cancel release from we31we are facing error 'Error while ressting release of segment z type'.
    Kindly suggest the solution to add fields in basic idoc type.
    Thanks & regards,
    Farheen.

    Reason that you are getting these errors is that you cannot cancel
    the release of an extension made in previous version . Instead you have to create a new extension.
    1.It is not possible to change a segment definition which is released in a
    lower release.
    2.You must create a new segment definition for the new release e.g. 620 with a new segment
    field with the appropriate length.
    In transaction WE20, outbound parameters, you can specify
    the "segment release in IDoc type" for the communication.
    Please read the F1 help of this field for further information.
    3.For your own segments you can define a new version of the segment
    tcode  WE31 -> Add Version
    Thanks!

  • Custom Web Adi doesn't donwload data 11i

    Hi,
    I've developed a custom web adi for download/upload data to a custom table in ebs 11i. The integrator works fine for upload: I create new records in excel and upload api works for upload them to custom table... The only problem is initial download o data: when excel is retrieving data, the progress window shows that records are being downloaded ("100 Records ...", "200 Records ...", "300 Records"...) but excel doen't show any data.
    I've checked other "factory" integrations (such as "HR People Details") and they download data with no problems.
    Do you know wich can be the problem?
    Tanks in advance.

    Can you find any errors in the BNE.log file? -- How to Create a BNE Log For Web Adi Issues and Errors? [ID 817023.1]
    Please see if the solution in (Unable To Download Data Into Spreadsheet Using Custom Integrator [ID 555639.1]) helps.
    If none of the above helps, please enable trace and see if you get more details about the error -- How to enable tracing for WEBADI [ID 294739.1]
    Thanks,
    Hussein

  • Custom web adi integrator

    I am developing a custom web adi integrator for uploading Bill of materials details from excel to oracle apps. I have created a custom integrator. I am able to see it while defining layout. I have defined layout,too. But after that when i am going to create a document, I am unable to see it in the select integrator drop-down list. Can anyone help me in this?
    Can anyone send me a document for creating custom integrator?

    You haven't included what version of Web ADI. But I'm going to guess that from your problem you are on Release 12.
    Web ADI included additional security options in the later versions of 11.5.10 and Release 12. You have run into one of these. All Integrators are now required to be secured by a form function. When the Create Document Page Flow runs in Release 12. All integrators are cross-checked against the assigned form functions in the current menu assigned to the responsibility. Only the integrators that have a match are shown in the list (11.5.10 the full list was shown, the check was then performed when attempting to navigate to the next page).
    BEGIN
    BNE_SECURITY_UTILS_PKG.ADD_OBJECT_RULES
    (Product Application Id,
    'Integrator Code',
    'INTEGRATOR',
    'Security Code',
    'FUNCTION',
    'List of Form Function Code Names',
    User Id
    END;
    COMMIT
    Subsituting
    Product Application Id - The Custom Application ID you are using for your dev,
    Integrator Code - Integrator Code for the integrator you are securing
    Security Code - for your use, just use the same value as Integrator Code
    List of Form Function Code Names - 'BNE_ADI_CREATE_DOCUMENT,BNE_CREATE_DOCUMENT'
    User Id - the Applications User Id you are using for development.
    You will need to bounce Apache or use Bne Admin Servlet to clear the Web ADI caches before this will be uptaken.
    Also - The Define Layout and Define Mapping flows don't perform the same check if you have the System Adminstrator privilleges. Which would be why you can see your custom integrator in those flows.

  • Adding Fields to Custom Infotype Using Custom Infoset in SAP QUERY

    Hi All,
    We have a requirement to add fileds to a custom infotype for querying Custom Infoset in SAP Query.
    We are facing problem as the added field is not getting displayed in the Query set so that we can select and display it in the Basic List along with the other filds.
    Kindly suggest a solution.
    Full points will be rewarded.
    Thanks in Advance
    Kumar

    Hi Salman,
    Thank you for your valuable information. I haven't Configured Dynamic Actions yet. Is it simple to write the Logic for Dynamic Actions. Is this the only way to solve this Issue?
    I tried by adding the standard fields, but they are not populating the values; but just appearing as Input Fields with Input help option.
    Please let me know if you have any suggestion in this direction?
    Regards,
    Hems.

  • Collections Management - Adding Field to Customer Invoice Level View

    Hello,
    Has anyone successfully added additional fields available in FBL5N to the invoice level view of a customer when drilling into the customer invoice detail from a worklist?
    Thanks, Kevin

    Hi Kevin,
    The BadI for adding fields when displaying worklist items is UDM_WL_ITEM_DISP_C. You will need to add your fields to the customer include C_ATTRIBUTES in order to get them to display. Drill into the changing parameter of the method BEFORE_ALV_DISP to see more detail on that.
    Once you have added your new fields you will need to fill them with data within that BadI method and also add the field to the displayed ALV when you go into your worklist from the front-end.
    Any questions just let me know.
    Cheers,
    Brenton.

  • Adding field from Custom Infotype in Screen Header-PA30

    Hi all,
    Can we add the fields from custom infotype to the screen header in PA30? When I tried through Change Screen Modifications, I could not see the custom infotype in the Infotype column, so I could not select the required field.
    Please guide.
    Thanks in advance.

    Hi,
    When you take a drop down from the infotype column, you will see a window with infotypes. By default, it is restricted to 500 entries. To change that, click on the narrow bar under u201Crestrictionsu201D (has a downward arrow) and change the maximum number of hits to 999. You will then get all the infotypes including the custom ones.
    Hope this helps.
    Donnie

  • Adding field in the WEB UI

    Hi All,
    The field Batch that is available in the sales order UI under Item. I want to add the same field in the Claims UI in the item level. I'm aware that I can use AET and EEWB. Here is the scenoria.  How do I tie the batch field of the sales order to the claims using AET or EEWB. Should I do additional coding or this can be achieved by the tool  itself.
    Sujatha

    Hi,
    I do not think you got the target view correct, please check that. It would not be a view set.
    After that you need to enhance the component, view and the context node of the view. This will create a Z-context node class.
    In the z-class add getter-setter methods manually, you can do that by copying any standard getter-setter method and later renaming it.
    This will add the attribute to the node. After that add the attribute to the config. Let me know when you are done upto this.
    Regards
    Prasenjit

  • Web ADI works only when cache is cleared

    I have created a custom integrator and the web ADI component works only when I clear the cache from the functional administrator responsibility in Oracle Apps. The component has a lot of validations for the fields and is expected to insert upto 2000 lines, It works fines for a small number of lines but the web ADI hangs for a large number of lines (>500). But if I clear the cache, it works fine. Anyone has a solution for this, cause I cant clear the cache always and I cant tell my customer to do the same.
    G. Arun
    Oracle SSI

    The WebADI caching can be very confusing. I made a little summary of what you can do to avoid caching problems like:
    "ORA-06508: PL/SQL: Could not Find Program Unit being Called in Custom Web ADI" or
    "SQL exception occurred during PL/SQL upload"
    A) clear cache with http://<machine>:<port>/OA_HTML/BneAdminServlet
    B) clear IE cache & restart
    C) clear the cache from the functional administrator responsibility
    D) Bounce the Apache server
    E) SQL command: Alter system flush shared_pool
    F) Download another WebADI spreadsheet (but you can re-use your old spreadsheet)
    G) log out and log back in EBS
    H) login at another computer and try it there
    ...or sometimes just wait for a while till it works again.
    Jeroen

  • Web ADI Run a database sequence per row

    Hi,
    I'm new to Web ADI and I'm trying to call a database sequence for column A to generate value per row for the upload in a custom web ADI, but every time the sequence runs once for the whole batch generating duplicate values.
    This is what I've tried so far:
    1. Called the sequence in the interface section as default SQL Query for a column A. Made the column to appear at Line in the layout.
    2. Added an import rule sequence
    3. Wrote a database trigger for the temp table and called the sequence before insert: in this case the sequence runs fine and generates values per row but $PARAM$.ColumnA is null.
    I need this for row identification, otherwise if there is duplicate rows the error message overlaps.
    Please help.
    Regards
    Arnab

    Hi,
    What was the workaround for this problem?
    Please share.
    Thanks

Maybe you are looking for

  • Maximum charge rate for Sony Xperia Z2?

    Hi Does anyone know whats the maximum input charge for a Sony Xperia Z2?

  • How much data in a datafile

    Hi, in 11g R2, is there any column in DBA_DATA_FILES showing the quantity of data present now in the datafile ? Does the column user_bytes show that ? In documentation it is said :USER_BYTES NUMBER The size of the file available for user data. But th

  • Ipod problems! backing up music

    I just got a new ipod and I want to put all my songs from my old ipod onto my new one but I manually manage my ipod so it is connected to a pc and a laptop. I download songs onto my pc, connect my ipod to the pc and have to drag the songs i want into

  • Password Autofill does not function on Windows 7 netbook using Large Password Manager

    I have installed a portable version of Large Password Manager on my Windows 7 netbook. Firefox does not allow the LPM autofillin plugin to instal, requiring the standard plugin. This works fine on my XP Pro (32 bit) Desk Top.

  • Insert database problem

    i have got this error Error inserting valuejava.sql.SQLException: General error dring inserting record in databse here is my code import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.util.*; import java.sql.*; import jav