IBE: Attachment Document Category -- Profile Option -- Update ???

We are doing a Proof of Concept for iStore Attachments and I need to update the "IBE: Attachment Document Category". The field is protected against update when attempting from System Administrator responsibility. Is there a certain responsibility/account required when modifying this profile option ??
Thanks in Advance

hsawwan wrote:
Hi,
Mark the Visible column at the Site level, and you should be able to mark the Updatable column then (at the same level). If you want to have this profile option updatable at the <A class=bodylinkwhite href="http://www.software-to-convert.com/avchd-conversion-software/avchd-to-iphone-software.html"><FONT face=tahoma,verdana,sans-serif color=#000 size=1>Application</FONT></A> level, just tick the box.
Regards,
HusseinCould you explain it more clearly? I'm a beginner.

Similar Messages

  • When i am enable the Allow Document Category Overrid Option getting error

    Hi All,
    when i am enable the Allow Document Category override option in payable option i am getting the following error.
    'FRM-40200 Field is protected against the update'. Ples help me it is very urgent.
    Regards,
    Raju.

    Hi Raju,
    Metalink note - 1364454.1 talks about the resolution.
    Thanks,
    PS.

  • Profile option update at responsibility level from backend

    Hi,
    I referred few online and oracle support document to update the profile option from backend. I was able to change the profile option at site level, but when I am trying to update the profile at responsibility ( or any level such as user etc), I am unable to do so. Though the script says that profile option has been updated, it doesn't show up when I check on frontend.
    EBS 11.5.10.2
    DB 11.2.0.1
    The script which I use to change profile at site level is this:-
    DECLARE
    stat boolean;
    BEGIN
    dbms_output.disable;
    dbms_output.enable(100000);
    stat := FND_PROFILE.SAVE('SITENAME', 'ABDVLP', 'SITE');
    IF stat THEN
    dbms_output.put_line( 'Stat = TRUE - profile updated' );
    ELSE
    dbms_output.put_line( 'Stat = FALSE - profile NOT updated' );
    END IF;
    commit;
    END;
    I tweaked the above script to include the responsibility level change, but its not changing. Both the below scripts are not making any changes.
    SCRIPT - 1
    DECLARE
    stat boolean;
    BEGIN
    dbms_output.disable;
    dbms_output.enable(100000);
    stat := FND_PROFILE.SAVE('ICX_DISCOVERER_LAUNCHER', 'http://nalinoes01.abd.ad.acco.com:8003/discwb4/html/discolaunch.htm?Connect=[APPS_SECURE]', 'RESP',51889,671);
    IF stat THEN
    dbms_output.put_line( 'Stat = TRUE - profile updated' );
    ELSE
    dbms_output.put_line( 'Stat = FALSE - profile NOT updated' );
    END IF;
    commit;
    END;
    Note: I found the responsibility id from the below query
    SELECT responsibility_id  ,application_id
         FROM fnd_responsibility_tl
        WHERE responsibility_name = 'DIRECT CA IBE CUSTOMER';
    ===============================================================================
    SCRIPT-2
    DECLARE
       stat           BOOLEAN;
       resp_id        NUMBER;
       appl_id        NUMBER;
       resp_appl_id   NUMBER;
    BEGIN
       DBMS_OUTPUT.DISABLE;
       DBMS_OUTPUT.ENABLE (100000);
       -- Set the Profile Option value at responsibility level
       SELECT responsibility_id, application_id
         INTO resp_id, resp_appl_id
         FROM fnd_responsibility_tl
        WHERE responsibility_name = 'DIRECT CA IBE CUSTOMER';
       stat :=
          fnd_profile.SAVE
             (x_name                        => 'ICX_DISCOVERER_LAUNCHER',   -- Profile name you are setting
              x_value                       => 'http://nalinoes01.abd.ad.acco.com:8003/discwb4/html/discolaunch.htm?Connect=[APPS_SECURE]',   -- Profile value you are setting
              x_level_name                  => 'RESP',   -- Level that you're setting at: 'SITE','APPL','RESP','USER', etc.
              x_level_value                 => resp_id,   -- Default NULL Level value that you are setting at, e.g. user id for 'USER' level. X_LEVEL_VALUE is not used at site level.
              x_level_value_app_id          => resp_appl_id,   -- Default NULL. Used for 'RESP' and 'SERVRESP' level; Resp Application_Id.
              x_level_value2                => NULL   -- 2nd Level value that you are setting at.  This is for the 'SERVRESP' hierarchy.
       IF stat
       THEN
          DBMS_OUTPUT.put_line ('Stat = TRUE - profile updated');
       ELSE
          DBMS_OUTPUT.put_line ('Stat = FALSE - profile NOT updated');
       END IF;
       COMMIT;
    END;

    I tried to change at SERV level and still the profile never gets updated. Kindly help.

  • Disable profile option updation at user level

    I want to disable the profile option HR: Security Profile or for that matter any other profile option at user level. The user should be able to see the value set by the system administrator (Field should be grayed out) and user should not be able to update it.
    How to do it??

    Try a personalization combined with custom PLSQL, like this:
    1) Acces System Profiles
    2) Help->Diagnostics->Custom Code->Personalize
    3) In the newly displayed Form Personalization form, create a line with a description like this: Prevent modification of USER_VISIBLE_VALUE
    4) In the Conditions tab, set Trigger Event = WHEN-NEW-ITEM-INSTANCE
    5) Set Trigger Object = PROFILE_VALUES.USER_VISIBLE_VALUE
    6) In the Condition text area, enter:
    apps.xxror_test_sysprofile(:PROFILE_VALUES.USER_PROFILE_OPTION_NAME,'USER')=1
    7) Set Processing Mode to Both
    8) Switch to the Actions tab and create two actions:
    first:
    type = property
    description = Don't update
    Language=all
    enabled=yes
    object type=Item
    target object=PROFILE_VALUES.USER_VISIBLE_VALUE
    property name=UPDATE_ALLOWED
    value=false
    second:
    type=property
    description=Don't enter
    language=all
    enabled=yes
    object type=Item
    target object=PROFILE_VALUES.USER_VISIBLE_VALUE
    property name=ALTERABLE_PLUS
    value=false
    9) Repeat steps 3-8 if desired for other levels, such as:
    Prevent modification of SITE_VISIBLE_VALUE
    Prevent modification of APPL_VISIBLE_VALUE
    Prevent modification of RESP_VISIBLE_VALUE
    Prevent modification of SERVER_VISIBLE_VALUE
    Prevent modification of ORG_VISIBLE_VALUE
    paying attention to update the corresponding names for xxx_VISIBLE_VALUE.
    10) Create the following PLSQL function:
    CREATE OR REPLACE function xxror_test_sysprofile (
    prof_opt_name in varchar2,
    lvl in varchar2
    return number
    is
    v_ret number;
    s_prof varchar2(1024);
    s_uname varchar2(100);
    s_lvl varchar2(10);
    begin
    -- returns 0 if the user "uname" must be granted access the profile named "prof_opt_name" at the "lvl" level
    -- returns 1 if the user "uname" must be forbidden to access such a profile at such a level.
    -- important assumption: the "lvl" parameter may have only one of the following values:'SITE', 'APPL', 'RESP', 'USER', 'SERVER', 'ORG'
    -- or else this function will return 1, thus forbidding the access
    s_uname:=substr(upper(trim(nvl(fnd_profile.value('USERNAME'),''))),1,100);
    if s_uname in ('MY_ADMIN_1','MY_ADMIN_2','SYSADMIN') then
    v_ret:=0; -- no restrictions
    else
         if s_uname in ('MY_POWERUSER_1','MY_POWERUSER_2') then
         -- restrict to only the below mentioned profiles
         s_prof:=substr(upper(trim(nvl(prof_opt_name,''))),1,1024);
              s_lvl:=substr(upper(trim(nvl(lvl,''))),1,10);
              if
              (s_prof like '%WHATEVER%')
              then
                   if s_lvl in ('SITE', 'APPL', 'RESP', 'USER', 'SERVER', 'ORG') then
                        v_ret:=0; -- level acceptable for these users on these profiles
                   else
                        v_ret:=1; -- unknown level, so reject
                   end if;
              else
                   -- these users may not access these profiles, so reject
                   v_ret:=1;
              end if;
         else
              if s_lvl = 'SITE' then
              -- no way any other user than those above may modify site-level profiles
              v_ret:=1;
              else
                   -- any other user than those above may modify lower-level profiles, but
                   -- for now reject all
                   v_ret:=1;
              end if;
         end if;
    end if;
    return v_ret;
    end;
    Pls be aware that testing first on a test instance is always advisable.

  • Attachment files setup profile options in Oracle Applications

    In Oracle Applications exists a functionality that allow attach files to responsibilities. This functionality works fine. But,
    I need setup two different directories for attach files and I cant do it. However, I setup the profile option "attachment
    directory" at site and responsibility level, but always look for in directory defined in site level.
    Ho can I do?.
    If you have information about this or know a workaround, it will be welcome.
    Thanks a lot.

    Here are a couple of things to try:
    1. Make sure there are no spaces in the directory name where you unzipped the installer.
    2. As Pilgrim indicated, you must be an administrator on the workstation in order to run the installer.
    3. Verify you have a clean download: check the file size and/or CRC information to ensure the download is not corrupt.
    Craig...

  • DFF in Attachement Document Category (There is no DFF column found in form)

    Hi All
    I want to enabel DFF for the form Attachment -> Document Categories in Application Developer.
    Table (FND_DOCUMENT_CATEGORIES) has attribute columns, but the DFF [] column is not found in the form.
    Is it possible to enable DFF for this form??
    Thanks
    Edited by: user12270833 on Feb 10, 2013 12:43 AM

    @Nancy O.
    Thank you so much for the information and the links!
    Removing the height from the css made the error go away.
    I did use a spry menu bar for the links. I then added in pictures for the buttons that i made in PS.
    The reason i am using the free site that i am, is that this is my first real web site. It doesnt have to be ready for months and i wanted to make sure i could do the project before it goes on a pay site.
    @hans-g.
    Here are a couple of pictures from my Fx and IE.
    Fx http://i195.photobucket.com/albums/z100/micro5797/Kommitted/homeFxupload.png
    IE http://i195.photobucket.com/albums/z100/micro5797/Kommitted/HomeIEupload.png
    In these pictures, why is the linkable lower banner section that says "Desktop" higher then the rest of the banner?
    Is that a problem that occured in the "slicing" in photoshop?
    In DW i set the border to ) trying to fix the problem, but it didn't make a difference, that is why i assume d that it may be an error listed in http://validator.w3.org/ , but now i see that it isnt.

  • Document Category not being generated Automatically for AR transaction type

    Hi,
    we have defined some transaction type in AR. But the corresponding document category is not being automatically generated
    Kindly help

    This doesn't look feasible, the only issue I ever encountered with this was the document category not being updated if the transaction type was updated. Maybe the customer has some custom triggers which are preventing the record from being inserted into FND tables. You can easily debug this by opening the form and testing in a TEST environment.

  • Applications Start Page profile option cannot be set at responsibility leve

    Note 729375.1 describes the use of the 'Applications Start Page ' profile option. It mentions an enhancement request to make this profile option updatable at responsibility level but we cannot find this enhancement request

    Log a SR and ask Oracle Support about it (and its status) as this Enhancement Request is not mentioned in the same doc.
    Thanks,
    Hussein

  • Update profile options at user level?

    Hi All,
    Need a script for,
    update profile options at user level, for example we should be able to update a profile xyz for a user abc using that script?
    or please provide the document related to that..

    Hi All,
    Thanks for all sugessions,
    i have written an script for updating profile option value from backend.
    SELECT d.level_id,c.user_name, b.profile_option_name, a.user_profile_option_name,d.profile_option_value
    FROM fnd_profile_options_tl a,
    fnd_profile_options b,
    fnd_user c,
    fnd_profile_option_values d
    WHERE d.profile_option_id = b.profile_option_id
    AND d.level_id = 10004
    AND a.profile_option_name = b.profile_option_name
    AND d.level_value = c.user_id
    AND c.user_name = '&USER_NAME'
    update query
    update fnd_profile_option_values
    set profile_option_value = '&Profile_Option_Value'
    where profile_option_id in
    (select profile_option_id from fnd_profile_options where profile_option_name
    =(select profile_option_name from fnd_profile_options_tl
    where user_profile_option_name = ('&User_Profile_Option_Name')))
    and level_id = 10004
    and level_value in (select user_id from fnd_user
    where user_name in ('&User_Name'))
    Thanks
    One

  • Update routine to populate value for field ZDOCCATG(Document category)

    Hi Experts,
       I need to populate  data for field ZDOCCATG(Document Category) based on the value of the below  two fields,
    1. 0deb_cre_lc(Debit / credit Amount)
    2. 0ac_doc_typ(Belegart)
    The logic is as follows:
    if 0deb_cre_lc > '0'.
         if 0ac_doc_typ == 'dz'.
          ZDOCCATG = Disputes.
         else
      ZDOCCATG = Invoices.
       end If.
    else
    if 0ac_doc_typ < '0'.
    ZDOCCATG = Credits.
    end if.
    I need to write the update routine to get the values assigned for Document category based on these two fields. When i open the routine for the field ZDOCCATG, i can see the below screen:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/CS80FIAR_O03 - (Communication structure)
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BIC/AZOARFSCM00-/BIC/ZDOCCATG
               RETURNCODE LIKE SY-SUBRC "Do not use!
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
    result value of the routine
      RESULT = .
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
    Please let me know the code to be inserted (based on the logic mentioned above) in the above screen . Thanks
    Regards,
    Kavitha Jagannath

    Hi Kavitha,
          Supposing the technical name of fields is /bic/0deb_cre_lc and /bic/0ac_doc_typ use the code below at the marked position.
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line -
    TABLES: ...
    DATA: ...
    $$ end of global - insert your declaration only before this line -
    FORM compute_data_field
    TABLES MONITOR STRUCTURE RSMONITOR "user defined monitoring
    USING COMM_STRUCTURE LIKE /BIC/CS80FIAR_O03 - (Communication structure)
    RECORD_NO LIKE SY-TABIX
    RECORD_ALL LIKE SY-TABIX
    SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
    CHANGING RESULT LIKE /BIC/AZOARFSCM00-/BIC/ZDOCCATG
    RETURNCODE LIKE SY-SUBRC "Do not use!
    ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line -
    fill the internal table "MONITOR", to make monitor entries
    result value of the routine                 
    <----- Paste the code below as shown here --->
    if comm_structure-/bic/0deb_cre_lc > 0.
      if comm_structure-/bic/0ac_doc_typ == 'DZ'.
       result = 'DISPUTES'.
      else
       result = 'INVOICES'.
      endIf.
    elseif comm_structure-/bic/0deb_cre_lc < 0.
      result = 'CREDITS'.
    end if.
    <----
    >
    if abort is not equal zero, the update process will be canceled
    ABORT = 0.
    $$ end of routine - insert your code only before this line -
    ENDFORM.
    Regards:
    Jitendra
    Edited by: Jitendra Gupta on Oct 15, 2009 3:05 PM

  • MIRO - Vendor not changed after change Reference Document Category option

    Hi,
    When are doing MIRO, under PO referance tab --> Reference Document Category --> select Purchase order / Schedulling Agreement option and enter PO number there, then it's line item shows. Other thing is that Vendor of that PO (XYZ) should show in the screen.
    My problem is that when we are changing the Purchase order / Schedulling Agreement option to Delivery Note, the vendor remains same...means same as PO Vendor (XYZ).
    Note: - Same problem in the changing the Delivery Note option to Purchase order / Schedulling Agreement.
    please help...
    Regards...

    We are using ECC 6.0 and we have this functionality.
    I want to clear you that this is happening is some cases not in all.. Most of the cases, it automatically changed the Vendor data...
    plz. tell now...
    Edited by: @ABAP@ on Aug 27, 2009 4:18 PM

  • Apis for attaching profile options to a responsibility in oracle apps 11i

    Hi,
    Appreciate your help.
    We are automating the process of creation responsibilities.
    1. I have created new responsibility using the fnd_responsibility_pkg.load_row and responsibilities created successfully.
    2. There are few profile options which will be used (GL set of books,HR user etc.,) and is there any api's to attach the profiles to the newly created responsibilites or can i go and directly insert a record in (apps.fnd_profile_option_values).
    Thanks
    Nethi.

    Hi,
    I believe you need to use FNDLOAD to attach those profile options.
    Note: 566865.1 - How To Download Profile Options Set On Responsibility Level Using FNDLOAD
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=566865.1
    Please note that inserting data into Oracle Apps tables directly is not supported.
    Regards,
    Hussein

  • IStore Profile Option: IBE:Recalculate Price in OM

    Hi there,
    Has anyone set up the value of profile option IBE:Recalculate Price in OM to null? Currently we have it set at yes so every time an order gets into OM from iStore it should recalculae price in OM. We are afraid that setting it to NULL might cause some pricing issue. We are on 11.5.10.
    thanks.
    techie.

    "Has anyone set up the value of profile option IBE:Recalculate Price in OM to null? Currently we have it set at yes so every time an order gets into OM from iStore it should recalculae price in OM. We are afraid that setting it to NULL might cause some pricing issue. We are on 11.5.10."
    This will indeed cause some pricing issues. It might be that a incorrect price is calculated in the iStore (or an old price is still in a saved cart). If you set the profile option to null you might run into those error's. My opinion is that you have to have it set to yes to be sure.
    Regards,
    Johan Louwers.

  • Is a update going to be added to attachment document to emails via yahoo (i.e. reply and attachment to emails)

    Is a update going to be added, which will allow me to attach documents to emails via yahoo (i.e. reply and attachment to emails)

    Is a update going to be added, which will allow me to attach documents to emails via yahoo (i.e. reply and attachment to emails)

  • API for inserting/updating system profile option values

    Hi,
    Is there any API that I can use to insert/update system profile option values via PL/SQL?
    Regards,
    Santhosh Jose

    Hi Santosh,
    You can think of using the FNDLOAD utility to download the values from one instance and upload to other instance.
    ## Now lets have a look at the profile option using oracle's FNDLOAD
    FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afscprof.lct POR_ENABLE_REQ_HEADER_CUST.ldt PROFILE PROFILE_NAME="POR_ENABLE_REQ_HEADER_CUST" APPLICATION_SHORT_NAME="ICX"
    ## Note that
    ## POR_ENABLE_REQ_HEADER_CUST is the short name of profile option
    ## We aren't passing the user profile option name in this case. Validate using ...
    ########----->select application_id, PROFILE_OPTION_NAME || '==>' || profile_option_id || '==>' ||
    ########----->USER_PROFILE_OPTION_NAME
    ########----->from FND_PROFILE_OPTIONS_VL
    ########----->where PROFILE_OPTION_NAME like '%' || upper('&profile_option_name') || '%'
    ########----->order by PROFILE_OPTION_NAME
    ########----->/
    ## Now to upload
    FNDLOAD apps/$CLIENT_APPS_PWD O Y UPLOAD $FND_TOP/patch/115/import/afscprof.lct POR_ENABLE_REQ_HEADER_CUST.ldt
    For other config components download and upload you can refer the link- http://www.apps2fusion.com/apps/scripts/19-oracle-fndload-script-examples
    Thanks,
    Sanjay

Maybe you are looking for