Unable to set/update custom profile option value in R12.1.3

Hi All,
I have defined a custom profile. After querying the custom profile and I select a value from the resulting LOV(popup).
Whenever I am trying to save the changes the LOV again pops up for selecting the value.

Hi,
I think this is the wrong forum for this question. This forum is for questions about Oracle Enterprise Data Quality.
Regards,
Mike

Similar Messages

  • 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

  • Setting profile option values using Java Concurrent Program

    Hi,
    I have a java concurrent program in which i am trying to update a profile option which is enabled only at site level, but the values are not getting committed once the CP completes.
    1. I am using CpContext.getProfileStore().SetProfile(<name>,<value>) to set the value.
    2. I am printing CpContext.getProfileStore().getProfile(<name>) in the same run and this works.
    3. BUt once the CP completes, the values are gone. Seems we have to issue a commit.
    3. So i used CpContext.getJDBCConnection().commit; Even this doesn't commit.
    Pls. suggest. Has anyone used these APIs to update profile options?
    Thanks,
    Suresh.

    I am not not a java expert, but pl see if MOS Docs 305710.1 (A SAMPLE JAVA CONCURRENT PROGRAM) and 827563.1 (How To Create a Java Concurrent Program?) can help
    HTH
    Srini

  • Not able to get the profile option value

    Hi,
    Not able to get the profile option value after i changed the new value in the application.
    I am using fnd_global.apps_initialize to initialize the apps from PLSQL code to get the updated profile option value. But fnd_profile.value is not getting fetched the updated value. Still it is fetching the old one. I mean it is stored in database cache. Please any one let me know how to get the new value every time after i changed the value.
    Thanks

    What is the application release?
    Is this a custom or seeded profile option?
    Can you confirm that the value got changed from the application (query the profile option and verify the value)?
    Can you reproduce the issue if you use an API to update this profile option as per (How to Change Profile Option Value Without Forms? [ID 943710.1])?
    Thanks,
    Hussein

  • Custom Profile option.

    Hi,
    I need to make custom profile option whose values will come from a sql query.
    Could you pls tell me the steps to make profile option values from a sql query..and how to add those values to the profile option???
    Thanks,
    Nil.

    Hi,
    Please see these documents.
    Note: 201945.1 - How to list E-Business Suite Profile Option values for all levels using SQLPlus
    Note: 282382.1 - How to Search all of the Profile Options for a Specific Value
    Note: 367926.1 - How To Find All Users With A Particular Profile Option Set?
    Thanks,
    Hussein

  • How to capture profile option value in Controller in OAF?

    Hi,
    I have a requirement to capture the value of profile option value in Controller in OAF?
    How to write the code for this?
    Thanks

    Hi ,
    You can get the profile option value in following ways.
    String customprofile = transaction.getProfile("XXXX");
    if(customprofile == null)
    throw new OAException("The custom Profile Option Named XXXX has not been defined. Contact " +
    "your IT Support Group. , (byte)0);
    if(customprofile.length() == 0)
    throw new OAException("The custom Profile Option Named XXXX does not have a value assigned" +
    ". Contact your IT Support Group. "
    , (byte)0);
    Thanks
    Deb

  • User Profile Option Values

    The concurrent report User Profile Option Values, is only site value levels. Are user level values more powerful, i.e. do they overide such values. How can I determine profile option values set at user level? Is there a similar report?

    hsawwan wrote:
    The concurrent report User Profile Option Values, is only site value levels. Are user level values more powerful, i.e. do they overide such values. A profile option can be set at one or more levels, depending on its hierarchy type. Most profile options use the Security hierarchy type, meaning that they can potentially be set at the four levels Site (lowest level), Application, Responsibility, and User (highest level). A higher-level option value overrides a lower-level value.
    How can I determine profile option values set at user level? Is there a similar report?Note: 367926.1 - How To Find All Users With A Particular Profile Option Set?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=367926.1
    Note: 201945.1 - How to list E-Business Suite Profile Option values for all levels using SQLPlus
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=201945.1
    Do you know if the Utilities: Diagnostics is our powerful/risky profile option to grant a user in PROD, I cant find much information on it??

  • Fetch Profile Option Values

    Hi,
    We have a requirement in which we want to fetch the output of a query for specific inventory org set in profile option from fornt end.
    Please let me know if there is any specific API which will help me fetch the value of the Inventory Org Profile Option(MFG_ORGANIZATION_UNIT) for the report query.
    I was trying with FND_PROFILE.VALUE('MFG_ORGANIZATION_ID') but it doesnt seem to be working.
    Please help.
    Thanks,
    Ramendra.

    We are calling the report as a discoverer report and the workbook is attached to a custom function.
    So basically we want to use the value fetched from the profile option in the SQL query of the disocverer report.
    Unfortunately i made a simple program and tried tot it didnt work fetch the value but it doesnt work.
    CREATE OR REPLACE
    procedure rr_test(errbuf OUT VARCHAR2,retcode OUT VARCHAR2) IS
    v_organization_id VARCHAR2(100);
    --v_org_id number;
    begin
    v_organization_id := fnd_profile.value('MFG_ORGANIZATION_ID');
    --v_org_id := fnd_global.org_id;
    /*select organization_id into v_organization_id PO: MFG Organization ID
    from hr_organization_units where
    organization_id = fnd_profile.value('MFG_ORGANIZATION_ID');*/
    fnd_file.put_line(fnd_file.log,'PROFILE VALUE IS :'||v_organization_id);
    End;
    When i registered it as a concurrent program.Set the change organization and run the program it doesnt show any value for the value of the profile option.
    The output is like this:
    RR_TEST module: RR Test
    Current system time is 23-FEB-2009 20:17:51
    **Starts**23-FEB-2009 20:17:52
    **Ends**23-FEB-2009 20:17:52
    Start of log messages from FND_FILE
    PROFILE VALUE IS :
    End of log messages from FND_FILE
    Executing request completion options...
    Please advise.
    Thanks,
    Ramendra.

  • Unable to get the customer profile in CSC .

    Hi Guys,
    I'm unable to get the selected customer profile in CSC when i make an AJAX call to some jsp.
    Thanks,
    Ayan

    Hi Kanth
    "This page is not available because the necessary security providers have not been configured, or those configuration changes are pending and not yet activated. Please activate the changes and (if necessary) restart the Admin Server to make this page available"
    any deployment did you done..did you release those changes...!!! can i ask to restart all the server components & try to login again in Console...!!!!. I hope if you restart one more time..it will set up..
    please mark helpful if this helps out

  • API to update Customer Profile Info for Customer

    Hi ,
    Can anybody tell me how to update the customer profile information for a customer.
    For ex: A Group of Customers are having different Profile class, statement cycle, Payment Terms, collector.
    I have to update those with same Profile Class values..
    Is there an API to do this, if so can you tell me the process of updating.
    Where can I find the API.
    Thanks a lot for the Help....
    Regards,
    JDev...

    Hi,
    You can use "HZ_CUSTOMER_PROFILE_V2PUB.update_customer_profile" public api to update the required information in the Customer Profile.

  • How to get profile options & values at user & responsibility level by SQL?

    Experts, How to get profile options and values at user and responsibility level using SQL?

    SELECT
    po.profile_option_name as name
    , po.user_profile_option_name
    , decode(to_char(pov.level_id),'10001','SITE','10002','APP','10003','RESP','10005','SERVER','10006','ORG','10004','USER', '???') as "LEVEL"
    , decode(to_char(pov.level_id),'10001','','10002', app.application_short_name,'10003', rsp.responsibility_key,'10005', svr.node_name,'10006', org.name,'10004', usr.user_name,'???') as context
    , pov.profile_option_value as value
    FROM
    fnd_profile_options_vl po
    , fnd_profile_option_values pov
    , fnd_user usr
    , fnd_application app
    , fnd_responsibility rsp
    , fnd_nodes svr
    , hr_operating_units org
    WHERE 1=1
    AND pov.application_id = po.application_id
    AND pov.profile_option_id = po.profile_option_id
    AND usr.user_id (+) = pov.level_value
    AND rsp.application_id (+) = pov.level_value_application_id
    AND rsp.responsibility_id (+) = pov.level_value
    AND app.application_id (+) = pov.level_value
    AND svr.node_id (+) = pov.level_value
    and org.organization_id (+) = pov.level_value
    ORDER BY 1, pov.level_id, 5
    You'll need to apps initialize your SQL session before running this ...
    Regards,
    Jon

  • New Profile Option in Purchasing R12

    I need to know the name of the purchasing profile option that allows a requisition or PO to reference a global contract purchase agreement from any supplier site.
    Any help will be highly appreciated.
    Pascal

    Amy,
    Your question is best asked in the Oracle EBS General discussion forum. However, to set the value of a profile variable you would use FND_PROFILE.PUT ('ProfileName','Value');
    Hope this helps.
    Craig...

  • How to set "embed icc Profile" option  to export document as JPEG

    Hi All,
    While exporting the document as jpeg, through File->Export, there is an option "Embed ICC Profile" as figure shows.
    How to set it if I am exporting the document through my program in which I rasterize the document and used 
    the sAIImage->AsJPEG(raster, jpegDataFilter, params);
    I didn't find any option in AIRasterizeSettings or AIImageOptJPEGParams to set this flag.
    plz anyone suggest me how to do so.
    Thanks,
    Rud.

    thanks for you through out help.
    I use the folowing code which executing properly,but there is no effect on JPEG whether the value of jpegparam.s.jpeg.embedICCProfile is 0 or 1.
    /////Start
    ASOptimizationSettings jpegparam;
    jpegparam.fileFormat = asffJPEG;
    jpegparam.s.jpeg.embedICCProfile = isICCProfileEmbeded;
    ASInt32 optID;
    optID = sAIOptSet->GetUniqueOptimizationSettingsID();
    error = sAIOptSet->SetOptimizationSettings(optID, &jpegparam); // after executing this line error = 0
    /////End
    I guess it would  work when we export document as jpeg through AIActionManagerSuite
    not with  rasterizing the layer's art and then exporting them as JPEG  using AsJPEG().
    thanks

  • I'm unable to set a custom footer in print setup of "Page 2-#" so I would get 2-1, 2-2, etc.

    I have tried "Page 2- #" (note the space) as well. This doesn't work in FF4 either.

    Hello Sebastian,
    you can get the Age column from Task 1 and then update the Task 2 Age column with that value. I am not sure why you want to run another workflow on Task 2.
    You can perform below steps to set Age column from Task 1 to Task 2.
    1.  Create Task 1 using Assign a task , wait till the task is completed.
    2. Get the Age column value based on Task 1 once the task is completed.
    3.Create Task 2 using Assign a task ,  uncheck wait till the task is completed option.
    4. Update the Task 2 with Age column in Task1.
    5. Use Wait for the field to equal value , check for Task Status is completed or not.
    >>The problem with this approach is that I can't get a reference to the list item that started Task2 to read the Age from the list item.
    you can get the related item from task list item to get the main list item.
    Other option is, Use Javascript and CSOM  in task edit form to get the Age column from Task1 and prepoluate the Age value when Task2 is opened.
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Need Help: How to configure/set-up custom interchange code values in B2B

    Hello All,
    Hope everybody is doing well.
    We are currently facing a problem in implementing Inbound 850 Purchase Orders in B2B from one of our Trading Partners (Customer).
    The Customer will be sending us EDI ANSI X12 ver 4010 Purchase Order files, but in the file they are sending a custom GS08 (8th element of GS Segment having Version/Release/Industry Identifier Code) value i.e. "004010RIFMAT".
    The above value is not present in the Standard Code values when we define an ECS using B2B Document Editor.
    Hence the document is failing in B2B since it is not able to identify the Trading Partner.
    If anyone has faced similar issues, I would appreciate if you could let me know on how to configure the same in B2B. Please let me know the steps in detail.
    Thanks In Advance.
    Regards,
    Dibya

    Hello Dibya,
    Can you create a new group ecs with appropriate codelist for GS08 and use it while modelling B2B flow. Make sure to undeploy and validate the agreement.
    Rgds,Ramesh.

Maybe you are looking for