Profile option in istore

The sql of ASO_ATP_SHIP_TO_SITE_ID (while implementing check availability functionality in istore)shows error because of which no value could be set for it.Is there any workaround for this problem?
Regds,
Nithya

"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.

Similar Messages

  • 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.

  • 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.

  • 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

  • To generate xml code in encoding  as specified in system profile options

    Hi,
    i have a customer bug wherein the report page which is generated after a particular process, which is a .xml file, does not open because we have special characters which are not getting encoded properly!..
    the probable solution to this would be to encode the .xml file in the encoding format specified in system profile options.
    After the content generation the following code is used to generate the tags and the .xml page:
    DBMS_XMLGEN.setRowSetTag(l_qryCtx,'INVOICE_SET');
    DBMS_XMLGEN.setRowTag(l_qryCtx, 'INVOICE_RECORD');
    DBMS_XMLGEN.setBindValue(l_qryCtx,'BATCH_ID', p_batch_id);
    DBMS_XMLGEN.setBindValue(l_qryCtx,'SUPPLIER_ID', rec.supplier_id);
    DBMS_XMLGEN.setBindValue(l_qryCtx,'SITE_ID', rec.site_id);
    l_result_clob :=DBMS_XMLGEN.GETXML(l_qryCtx);
    l_result_clob := substr(l_result_clob,instr(l_result_clob,'>')+1);
    l_temp_invoice_count := DBMS_XMLGEN.getNumRowsProcessed(l_qryCtx);
    l_invoice_count := l_invoice_count + l_temp_invoice_count;
    DBMS_XMLGEN.closeContext(l_qryCtx);
    clob_to_file(l_result_clob);
    here we have a transaction type in portugese like Nota de Crédito
    and the issue summary is as follows
    It contains some foreign language symbols which are not encoded in UTF-8 format hence IE is showing the error. Even though in mozilla the file is completely opened but the same foreign language symbol is not shown. So the error exists in all the browsers.
    can you please suggest how the encoding maybe done so as to avoid the above problem!...
    and also how to include the encoding as per mentioned in the system profile options.

    Hi,
    >>>The XSD doesn't have any messages only simple and complex types - I can't seem to relate (via drag and drop) them to a data or message type to generate the required objects.
    maybe it has some reference inside to some other types which you did not get?
    if so you need to import into IR/ESR all files and put the correct reference (external archives)
    this would be the proper way to get the file generated according to the xml schema
    Regards,
    Michal Krawczyk

  • How to track the User who has changed the System Profile Options

    HI ,
    The system profile options are changed by one User (Ex: XX123).
    Here, the user XX123, he is not having any sys admin responsibilities .
    He is having only I-proc responsibility attached .
    Is there any chance to update the system profile options , through I-proc.

    Pl post details of OS, database and EBS versions, along with which profile options have been changed.
    AFAIK, IProc responsibilities do not have access to change profile options.
    HTH
    Srini

  • Dynamical change read only property of  columns based on a profile option

    Hi,
    We are attempting to change a Oracle iProcurement(ShoppingCartPG) which has certain readonly columns by default.
    However, we need to make these columns updateable based on a responsibility level profile option. The code goes something like this.
    if readonly_profile_option = "TRUE"
    {make columnA property = readonly}
    else if readonly_profile_option = "FALSE"
    {make columnA property = updateable}
    I read the guide about switchers and it seems confusing (to me). So if someone can provide an example with some pseudocode that will be helpful.
    Also, can I dynamically add an LOV to column A if readonly is false? Of course the LOV should be disabled if readonly.
    Thanks a lot

    Hi,
    Thanks for the feedback.
    Tapash,
    Switchers definitely don't make sense.
    Raffy,
    Didn't know it was that simple. I always thought that the controller fires--> then the page renders --> then the VO attributes get poulated. Basing my understanding on this flow, I though that the bean properties can only be set in controllers and not in VOs(via SPEL). I'll try it tomorrow.
    Aprreciate your comments on the following.
    Our requirement is to make an Oracle seeded field(SupplierName in iProcurement) updateable and with an LOV . Oracle has seeded it as ReadOnly.
    I have two options.
    1. If I change the readonly property in jedeveloper(I cannot access it via personalization) and add SPEL that would be upgrade 'unsafe' customizing - I think.
    2. So I thought I'll extend the controller, substitute it and use
    messageLOVInputText SupplierNameBean=webbean.findChildRecursive("SupplierName");
    if{profle=not_read_only)
    {SupplierNameBean.setReadOnly(false)};
    else
    {SupplierNameBean.setReadOnly(true)};
    This is more upgrade safe. I have talked to the iProc development team and they are fine with it.

  • 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

  • Applications Start Page Profile Option Causing Issues

    Hello Oracle Gurus,
    I'm having an issue in a 12.1.3 instance that I think may be related to the "Applications Start Page" profile option.
    For testing purposes, we set the profile to a specific Self-Service page at the Site level. We eventually removed the Site level profile and added it at the user level just for specific users, but since the Site-level profile was set, every time we click the Home link in the upper right-hand navigation, we get an "unexpected error." If we attempt to log in as a user that does not have the Applications Start Page profile defined, we also get an unexpected error.
    After getting the error using either of the methods listed above, if we then try to navigate back to the login page, the instance throws a 500 Internal Error.
    If we close the browser and navigate to the instance again, we're able to log in without any issues with user accounts that have an Applications Start Page profile defined.
    Our "Self Service Personal Framework Mode" is set to "Framework Only" at the site level.
    Bouncing Apache seems to resolve the issue temporarily, but then it comes back again a few hours later...
    We've opened a Service Request, but has anyone else run into this before / have any ideas on how to fix it?
    Here are some related Metalink notes from 11.5.10:
    729375.1 (About the Applications Start Page profile option)
    331814.1 (Error on Personal Home Page when returning to 'Home' link)
    Thanks!
    Anne

    The issue is not specific to a responsibility or application.
    Here is the error:
    Fatal NI connect error 12170.
    VERSION INFORMATION:
         TNS for Linux: Version 11.1.0.7.0 - Production
         Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
         Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
         TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 27-JAN-2011 09:46:02
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS:operation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=172.30.31.107)(PORT=1502))
    Thu Jan 27 09:53:30 2011
    Incremental checkpoint up to RBA [0x42.e3635.0], current log tail at RBA [0x42.e37e1.0]
    Thu Jan 27 10:13:31 2011
    Incremental checkpoint up to RBA [0x42.e602b.0], current log tail at RBA [0x42.e6146.0]
    Thu Jan 27 10:33:33 2011
    Incremental checkpoint up to RBA [0x42.e7bc9.0], current log tail at RBA [0x42.e7d51.0]
    Thu Jan 27 10:53:35 2011
    Incremental checkpoint up to RBA [0x42.e995f.0], current log tail at RBA [0x42.e9ac9.0]
    Thu Jan 27 11:13:37 2011
    Incremental checkpoint up to RBA [0x42.ec163.0], current log tail at RBA [0x42.ec3f7.0]
    Thu Jan 27 11:23:48 2011
    Starting background process CJQ0
    Thu Jan 27 11:23:48 2011
    CJQ0 started with pid=8, OS id=17239
    Thu Jan 27 11:33:39 2011
    Incremental checkpoint up to RBA [0x42.ee08f.0], current log tail at RBA [0x42.ee216.0]
    Thu Jan 27 11:53:41 2011
    Incremental checkpoint up to RBA [0x42.efd07.0], current log tail at RBA [0x42.eff13.0]
    Thu Jan 27 11:54:02 2011
    Stopping background process CJQ0
    Thu Jan 27 12:13:43 2011
    Incremental checkpoint up to RBA [0x42.f25c0.0], current log tail at RBA [0x42.f2e4b.0]
    Thu Jan 27 12:33:45 2011
    Incremental checkpoint up to RBA [0x42.f4cae.0], current log tail at RBA [0x42.f4e4b.0]
    Thu Jan 27 12:53:47 2011
    Incremental checkpoint up to RBA [0x42.f6e8a.0], current log tail at RBA [0x42.f6fb7.0]
    Thu Jan 27 13:13:50 2011
    Incremental checkpoint up to RBA [0x42.fa3d0.0], current log tail at RBA [0x42.fa845.0]
    Thu Jan 27 13:33:52 2011
    Incremental checkpoint up to RBA [0x42.fc7d9.0], current log tail at RBA [0x42.fc989.0]
    Thu Jan 27 13:53:55 2011
    Incremental checkpoint up to RBA [0x42.fed4e.0], current log tail at RBA [0x42.ff12e.0]

  • Query or Profile Option to find Current logged in user in oracle apps R12

    Query or Profile Option to find Current logged in user in oracle apps R12.
    I want to get value of current user who is logged in to that particular session, based on the value of user_id or user_name returned i have to do a Forms Personalization.
    Plz help.
    Regards,
    Sadiya P.

    Hi Sadiya,
    do you have the answer for this? please send it to me because i am also have same requirement. so plz post it here....

  • Receiving Error : Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables. while trying to create a new Customer.

    Hi All,
    We have set up a new Operating Unit in Oracle Apps. Now when I am trying to create a new Customer in that Operating Unit, I am receiving following error:
    ERROR MESSAGE:-Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables.
    We do have MO: Operating Unit and MO: Default Operating Unit set properly at Responsibility level for the Responsibility through which I am accessing this form.
    Your help is appreciated!
    Thanks in advance,
    SKA

    You can refer this thread and check your MO operating unit is set or not https://community.oracle.com/message/3937028 thanks

  • Item Validation Organization is not Appearing in LOV in profile options

    Dear All,
    Item Validation Organization is not Appearing in LOV of the Profile options.
    OE: Item Validation Organization
    QP : Item Validation Organization
    Regards,
    John

    Hi,
    Enable profile 'FND: Personalization Seeding Mode', clear the cache and check if this solves your problem.
    --Sushant                                                                                                                                                                                                                                                           

  • Issue with profile Options in Inventory

    I am trying to work with profile options in Inventory and I have 4 Operating units and 2 Legal Entity and 1 Business Group.
    At this point I am not sure as how to attach OU to MO:OU ( as there are 4). Similar concern is for GL Ledger..
    Please help....

    Hi Hanu,
    In the select query, u can replace s_lifnr with s_lifnr-low, since when we enter values in selection screen, they get stored in a table structure. hence directly equating it to s_lifnr, will not fetch any records.
    SELECT * FROM bsak INTO TABLE lt_bsak
    WHERE bukrs IN s_bukrs AND lifnr = s_lifnr-low AND gjahr IN s_gjahr AND budat IN s_budat AND saknr IN s_saknr.
    Hope this helps!!!
    Prerna

  • Camera Profile options suddenly missing in Lightroom...

    Okay... so I noticed yesterday that (for some reason) my camera calibration profile options have disappeared, and my only option is "Adobe Standard". I used to have all the others (camera standard, camera standard 2, adobe standard 2, ACR, etc), but they have vanished.
    I'm running Windows 7 32bit.
    I thought maybe it was just Lightroom 3.5, so I un-installed and re-installed... no luck.
    I un-installed 3.5 and re-installed 3.4.1.. no luck.
    The camera profiles are in the proper directory (based on other forum posts I've found)... no luck.
    I've tried removing the camera profiles from the directory and re-installing... no luck.
    Not sure where they went, or what happened, or how I can get them back. Colors just aren't the same without them
    Any ideas? I searched for hours on different forums and support sites, with no avail... Am I missing something? Is there another software besides Lightroom that needs to be installed? I'm out of ideas.
    Cheers.

    The list of profiles displayed is dependent on the camera used to shoot the image. Typically, cameras from Nikon, Canon and some Pentax will have a range of profiles whereas others vendors (e.g. Sony, Panasonic and Olympus) will only have Adobe Standard. I suggest that you check which camera model is showing fewer profiles than you expect and report back. Someone will then be able to tell you whether it's got a a full or limited range of profiles.

  • "Anyconnect client profile" option missing in ASDM

    Hello,
    I'm in the process of setting up Anyconnect on the ASA, and have successfully updated the licensing, as well as uploaded the anyconnect pkg for web deployment. I enabled anyconnect on the outside interface and can now have the ASA push the client to the machine. Works fine. However, I want to add backup servers that the client will attempt to reach in the event the primary is down. I understand that "client profiles" can be created to customize settings like this. Problem is, when I follow the configuration guide with instructions for making client profiles at this location:
    http://www.cisco.com/en/US/docs/security/vpn_client/anyconnect/anyconnect30/administration/guide/ac02asaconfig.html#wp1289905
    It shows that I should have an option for Anyconnect Client Profile and Anyconnect Client Settings.
    I don't have either of those options in ASDM. Here's what mine shows:
    I have another "SSL Client profiles" option, but it doesn't seem the same as the options above.
    Can someone assist with what I need to do to get the Client Profiles option to be available so I can add backup server information to the client? Thanks!

    Thanks for the response Marvin,
    It shows the ASA and ASDM versions are 8.2 and 6.2 respectively.
    Result of the command: "sh version"
    Cisco Adaptive Security Appliance Software Version 8.2(1)
    Device Manager Version 6.2(1)
    Result of the command: "sh act | i Ess"
    AnyConnect Essentials        : Enabled 
    I don't have the premium license, just the Anyconnect Essentials and Mobile licenses. I would imagine essentials should have the same profile configuration options, though. If it is in fact because I'm running an older version of ASDM, do I need to update both the ASA IOS and ASDM together, or can I just upgrade ASDM on its own? Thanks again.

Maybe you are looking for

  • HT204053 help with iphone and downloading apps

    I have set up an apple ID. but when I try to download an app from my iphone it just says that my account has not yet been used in the itunes store and wont let me go any further. can you help?

  • Issue related to ADDRESS ... ENDADDRESS in SAP Script

    Hi All, I have a issue using ADDRESS .... ENDADDRESS in SAP Script. ADDRESS PARAGRAPH AS   TITLE    &WA_LFA1-ANRED&   NAME     &WA_LFA1-NAME1&, &WA_LFA1-NAME2&   STREET   &WA_LFA1-STRAS& HOUSE &WA_ADRC2-STR_SUPPL3&   POBOX    &WA_LFA1-PFACH&  CODE &W

  • DropDown by index not clearing previous values

    Dropdown by index issue. I am having a problem with my dropdown not clearing previous entries.  I have a webdynpro that has two views, main and appraisal.  I can enter the appraisal view from the main.  The appraisal view contains a drop down. At thi

  • Pictures not opening

    When I open a pdf document there is just a gray box where there is supposed to be a picture, do I have something besides my brain turned off? I open all these documents ok and print etc ok but for pictures just a plain old gray box. Help! and thank y

  • Install Std. Apps EUL Disco 4i

    Hi All, I've been trying to migrate the Std Oracle Apps EUL to discoverer... it runs for about 2 hours via MKS Toolkit - but gives the following type of errors, e.g.: '\discover\US\amsamsppsttslflo.eex:The import process did not import or modify any