OAF Personalization and Validation Issue

hi Gurus and Experts
Lets say I have my lines contain following attributes, and I have following users (User-Cre, User-LA)
User-Cre > LinesId
User-Cre > LinesNumber
User-Cre > ItemCategory
User-Cre > ItemId
User-Cre > RequestedQty
User-LA > SanctionedQty
User-LA > LPQty
User-LA > AuthorityLetterNumber
User-LA > Remarks
I have mentioned the fields filled by respective user. I want fields to be shown to relevant users only, for example last 4 fields should not be shown to "User-Cre" and first five fields should not be shown to "User-LA". I guess I can achieve it through OAF personalization using SPEL. Problem is I have some validation on both sets of attributes. I want to know that if validations will be fired on User-LA related attributes when these fields will not be rendered using OAF Personalization ? Kindly explain it deeply so that my understanding become clear. If there exist any coding then please write it here and please give some more smart techniques to do so. Many many thanks in advance
Regards

Hi,
I have mentioned the fields filled by respective user. I want fields to be shown to relevant users only, for example last 4 fields should not be shown to "User-Cre" and first five fields should not be shown to "User-LA". I guess I can achieve it through OAF personalization using SPEL. Problem is I have some validation on both sets of attributes. I want to know that if validations will be fired on User-LA related attributes when these fields will not be rendered using OAF Personalization ? Kindly explain it deeply so that my understanding become clear. If there exist any coding then please write it here and please give some more smart techniques to do so. Many many thanks in advances
You can achieve this requirement by using SPELL for the following columns. You can set those columns rendered = false //by SPELL
Even though you will set it rendered false, all the validation will get fired related to those field. Try to find out whether there is any validation for the given columns. If there is some sort of validations done then you need to go for overriding Validation methods.
Regards,
Gyan

Similar Messages

  • Document MD070 AIM or UOM for OAF personalizations and extensions

    Hi,
    I need to make a technical document of a personalization and extension. I did in the past many MD070 about forms, plsql reports. Now I would to follow a standard AIM or UOM template also for OAF.
    Have you got an example of a MD070 about OAF ?
    thanks
    Lou

    Hi Patricia,
    I dont think there is any special tool to keep track of the extensions.
    In our system, we use source control system(CVS) to keep track of extensions(xml and java).
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                   

  • Selectitems populated in action and validation issue

    I have a SelectOneMenu populated using an action because its values depends on a submitted input text value.
    On first submit the action is invoked and the submitted input text value is used to fetch selectitems values, on next submit I receive a validation error because the getter of the selectitems does not returns the same list during the apply request values phase as it did during the render response of the previous request.
    I solved restoring the list of value from request to request using a Tomahawk savestate component,
    any other workaround?
    Thank you

    I mean that you need <h:inputHidden binding="#{bean.hidden}" /> and use HtmlInputHidden#get/setValue() in your bean. The setter of a bound component won't be called in subsequent requests. Use lazy loading in the getter of the list.

  • OnSubmit and validation issue

    This is my first time posting here and I am new to CF. I took
    and passed a figleaf course on Cold Fusion and have some other
    programing background.
    The issue that I cannot seem to resolve has to do with
    onSubmit. Here is some very basic code straight out of my Fast
    Track to CF class...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Insert Artist Form</title>
    </head>
    <body>
    <h2>Insert an Artist</h2>
    <cfform name="insArtist">
    First Name:
    <cfinput type="text" name="FirstName" maxlength="20"
    required="yes" message="Please input an artist first name."
    validateat="onserver" /><br/>
    Last Name:
    <cfinput type="text" name="LastName" maxlength="20"
    required="yes" message="Please input an artist last name."
    validateat="onsubmit" /><br/>
    <cfinput type="submit" name="Insert" value="Insert Artist"
    />
    </cfform>
    </body>
    </html>
    When I leave the fields blank the onServer message does come
    up.
    If I take out first name and try to verify only Last Name I
    can click as much as I like on the Submit button but the alert
    never comes up with the message "Please input an artist last name."
    I have set up a system using XP SP3 and the same issue
    happens on Firefox 3.0.3 or IE 7.
    I am using CFEclipse, Apache, and CF8. I have Virtual Hosts
    set up for my sandbox.
    Please let me know if any other information is needed.
    Thanks for your help.
    Dave

    Error Console in Firefox specifies this line as a problem...
    if( !_CF_hasValue(_CF_this['LastName'], "TEXT", false ) )
    This is code that is generated by CF on the fly though.. All
    I'm doing is setting onSubmit.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head><script type="text/javascript"
    src="/CFIDE/scripts/cfform.js"></script>
    <script type="text/javascript"
    src="/CFIDE/scripts/masks.js"></script>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Insert Artist Form</title>
    <script type="text/javascript">
    if (window.ColdFusion)
    ColdFusion.required['FirstName']=true;
    </script>
    <script type="text/javascript">
    if (window.ColdFusion) ColdFusion.required['LastName']=true;
    </script>
    <script type="text/javascript">
    <!--
    _CF_checkinsArtist = function(_CF_this)
    //reset on submit
    _CF_error_exists = false;
    _CF_error_messages = new Array();
    _CF_error_fields = new Object();
    _CF_FirstErrorField = null;
    //form element LastName required check
    if( !_CF_hasValue(_CF_this['LastName'], "TEXT", false ) )
    _CF_onError(_CF_this, "LastName",
    _CF_this['LastName'].value, "Please input an artist last name.");
    _CF_error_exists = true;
    //display error messages and return success
    if( _CF_error_exists )
    if( _CF_error_messages.length > 0 )
    // show alert() message
    _CF_onErrorAlert(_CF_error_messages);
    // set focus to first form error, if the field supports js
    focus().
    if( _CF_this[_CF_FirstErrorField].type == "text" )
    { _CF_this[_CF_FirstErrorField].focus(); }
    return false;
    }else {
    return true;
    //-->
    </script>
    </head>
    <body>
    <h2>Insert an Artist</h2>
    <form name="insArtist" id="insArtist"
    action="/content/contactnew.cfm" method="post" onsubmit="return
    _CF_checkinsArtist(this)">
    <!-- First Name:
    <input name="FirstName" id="FirstName" type="text"
    maxlength="20" /><br/> -->
    Last Name:
    <input name="LastName" id="LastName" type="text"
    maxlength="20" /><br/>
    <input name="Insert" id="Insert" type="submit"
    value="Insert Artist" /> <input type='hidden'
    name='FirstName_CFFORMREQUIRED' value='Please input an artist first
    name.'>
    </form>
    </body>
    </html>

  • Move OAF personalizations and extensions from one instance to anothe

    Please
    tell me steps how to move Personlizations from one Instance to another Instance
    Regards,
    Vivek Gautam

    Hi I am make changes at bean level making a field Read only by personalization.But that is not getting migrated or even shown in the XML file generated please help
    DECLARE
    BEGIN
    jdr_utils.listcustomizations(p_document => '/oracle/apps/ar/cusstd/srch/webui/ArPrtySrchPG');
    END;
    /oracle/apps/ar/cusstd/srch/webui/customizations/function/AR_ARXCUDCI_QUICK_VIEW/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/function/AR_ARXCUDCI_GATEWAY_VIEW/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/function/AR_ARXCUDCI_STD_VIEW/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/responsibility/67606/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/site/0/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/org/229/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/responsibility/57647/ArPrtySrchPG
    BEGIN
    jdr_utils.printdocument(p_document => '/oracle/apps/ar/cusstd/srch/webui/customizations/responsibility/57647/ArPrtySrchPG');
    END;
    <?xml version='1.0' encoding='UTF-8'?>
    <customization xmlns="http://xmlns.oracle.com/jrad" version="9.0.6.0.0_35" xml:lang="en-US" customizes="/oracle/apps/ar/cusstd/srch/webui/ArPrtySrchPG" xmlns:user="http://xmlns.oracle.com/jrad/user" user:responsibilityKey="cl cz_com_czk coll agent"
                   user:responsibilityAppId="695">
       <modifications>
          <modify element="pageLayoutRN" controllerClass="oracle.apps.ar.cusstd.srch.webui.xxArPrtySrchCO2"/>
       </modifications>
    </customization>

  • Unable get the bean in Controller of the item created through OAF Personalization

    Hello Folks,
    I have a requirement to create an Static Styled Text item through OAF Personalization and that item should be shown if it meets some particular condition.
    So I tried to extend the controller of the page and tried to get the reference of the bean but I am not getting the bean in the controller class.
    I have seen the main page and some external regions are there in the page.
    Main Page has the controller attached in its page layout region and other regions don't have any CO attached.
    Whenever I create the item it is under that particular region.
    When I try to access some seeded item created under that region and I am able to get the bean in the controller but not the one created by me.
    Here is the scenario:
    Suppose Page Name is TestPG, it includes some external region like XyzPG, whenever I create the item it gets created under XyzRN with name XyzRN.item1 but whatever seeded items are there those are there with name item2,item3 etc. For item2, item3 I am able to get the bean but not not for XyzRN.item1 in the controller.
    Could you please tell me how to get the bean for XyzRN.item1 in the main page controller.
    Please reply soon. Its urgent.
    Thanks,
    Raja Dutta

    Hi Shobit,
    I have tried the workaround given by you at the 4th reply.
    a) In your base page controller, try to get bean instance of child embeded region top ui element.
    b) Now use this bean instance to find child region instance from your base page CO
    But it didn't work for me :-( :'(
    Here is the information about the page and region:
    The page includes the region like this:
    <page xmlns="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:jrad="http://xmlns.oracle.com/jrad" version="10.1.3_1086" xml:lang="en-US" file-version="$Header: AccountInfoPG.xml 120.8.12010000.2 2009/06/01 12:05:24 vnetan ship $" xmlns:user="http://xmlns.oracle.com/jrad/user">
    <oa:pageLayout id="PageLayoutRN" windowTitle="Account Information" amDefName="oracle.apps.ce.bankaccount.server.BankAccountAM" controllerClass="oracle.apps.ce.bankaccount.webui.AccountInfoCO" warnAboutChanges="true">
    <oa:defaultSingleColumn id="AccountInfoRN" extends="/oracle/apps/ce/bankaccount/webui/AccountInfoRN"/>
    I have check the /oracle/apps/ce/bankaccount/webui/AccountInfoRN through Functional Administration, it doesn't have any controller attached.
    I have tried like this:
    1. I have created one static styled text item through the main page personalization:
    Static Styled Text: IBAN Message which has id XxIBANMessage
    2. Another static styled text item through the region (included in the main page )personalization:
    Static Styled Text: (AccountInfoRN.XxIBANMessage1) [ When viewed at page level ]
    Static Styled Text: (XxIBANMessage1) [ When viewed at region level ]
    Controller Code is:
          try{
          // Get bean of Static Styled Text item  using    findChildRecursive
          OAStaticStyledTextBean ibanMessageBean2 = (OAStaticStyledTextBean)webBean.findChildRecursive("XxIBANMessage");
          if(ibanMessageBean2!=null && !ibanMessageBean2.equals(""))
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:found 1",2);
            ibanMessageBean2.setRendered(true);
          else
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:not found at page level 1",2);
          OAStaticStyledTextBean ibanMessageBean = (OAStaticStyledTextBean)webBean.findChildRecursive("AccountInfoRN.XxIBANMessage1");
          if(ibanMessageBean!=null && !ibanMessageBean.equals(""))
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:found 2",2);
            ibanMessageBean.setRendered(true);
          else
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:Not found with alias 2",2);
          OADefaultSingleColumnBean bean = (OADefaultSingleColumnBean)webBean.findChildRecursive("AccountInfoRN");
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:bean="+bean,2);
          OAStaticStyledTextBean ibanMessageBean1 = (OAStaticStyledTextBean)bean.findChildRecursive("XxIBANMessage1");
          if(ibanMessageBean1!=null && !ibanMessageBean1.equals(""))
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:found 3",2);
            ibanMessageBean1.setRendered(true);
          else
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:Not found through region 3",2);
          /*===========with findIndexedChildRecursive ===========*/
            OAStaticStyledTextBean ibanMessageBean3 = (OAStaticStyledTextBean)webBean.findIndexedChildRecursive("XxIBANMessage");
            if(ibanMessageBean3!=null && !ibanMessageBean3.equals(""))
              pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:found 1",2);
              ibanMessageBean3.setRendered(true);
            else
              pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:not found at page level 1",2);
            OAStaticStyledTextBean ibanMessageBean4 = (OAStaticStyledTextBean)webBean.findIndexedChildRecursive("AccountInfoRN.XxIBANMessage1");
            if(ibanMessageBean4!=null && !ibanMessageBean4.equals(""))
              pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:found 2",2);
              ibanMessageBean4.setRendered(true);
            else
              pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found with alias 2",2);
            OADefaultSingleColumnBean bean1 = (OADefaultSingleColumnBean)webBean.findIndexedChildRecursive("AccountInfoRN");
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:bean1="+bean1,2);
            OAStaticStyledTextBean ibanMessageBean5 = (OAStaticStyledTextBean)bean1.findIndexedChildRecursive("XxIBANMessage1");
            if(ibanMessageBean5!=null && !ibanMessageBean5.equals(""))
              pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:found 3",2);
              ibanMessageBean5.setRendered(true);
            else
              pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found through region 3",2);
          catch(Exception e)
            pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:catch:Erro:"+e.getMessage(),2);
    O/p through diagnostics:
    XXAccountInfoCO:processRequest:not found at page level 1
    XXAccountInfoCO:processRequest:Not found with alias 2
    XXAccountInfoCO:processRequest:bean=OADefaultSingleColumnBean, localName='header'
    XXAccountInfoCO:processRequest:Not found through region 3
    XXAccountInfoCO:processRequest:findIndexedChildRecursive:not found at page level 1
    XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found with alias 2
    XXAccountInfoCO:processRequest:bean1=OADefaultSingleColumnBean, localName='header'
    XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found through region 3
    Please advise. its urgent. meanwhile I will try the workaround given at 3rd reply.
    Thanks
    Raja Dutta

  • DFF and OAF Personalization

    Hi,
    Suppose we select the Global Data Elements feature of DFF on a standard Oracle OAF page.
    I want to have this Additional Information enabled for particular Organization and disabled or read only for other Organizations.
    Is there a soluion for this using OAF personalization as these DFF text inputs are not visible on OAF Personalization page.
    Any help is welcomed
    Thanks

    You should be able to set the segment list to meet your requirement.
    From the developers guide ...
    If you leave the Segment List property empty, all segments render. The value you specify for this property must use the following format:
    Global Data Elements|[global segment1]|[global segment2]||...||Context1|[segment1 for context1]|[segment2 for context1]||...||Context2|....
    For our example shown in Figure 1, Packaging Type is the context field and Warehouse is the global field for the descriptive flexfield. To always display the Warehouse global field and display the context-sensitive fields Items per Box and Box Size for the Box context and Items per Pallet and Pallet Weight for the Pallet context, you would specify the following value for the Segment List property:
    Global Data Elements|Warehouse||Box|Items per Box|Box Size||Pallet|Items per Pallet|Pallet Weight
    As shown, segments within a certain context are separated by a single pipe, "|", while data from a different context is separated by a double pipe, "||".
    Read-Only Segments
    You can also add the read-only token ($RO$) after any of the segments in the list. For example, the ($RO$) designator below sets Segment1 to be read-only:
    Context1|Segment1($RO$)|Segment2...
    Mark

  • How to identify the OAF customizations and personalizations

    Hi All,
    We are in the process of upgrading from 11.5.10 to 12.1.3
    There are certain customizations and personalizations done on many OAF pages of various modules (like Self service, iRec, iSupplier, etc)
    Will the upgrade impact these customizations/personalizations? If so, will it be entirely removed and do we need to redo the customizations/personalizations over again?
    Also, I have another need for identifying the existing customizations and personalizations (in 11.5.10) in OAF pages. There are no documents with us which will explain the existing customizations/personalizations in OAF . Need to identify the same. Is there a way which i can follow to identify these?.
    Any pointers on this will be really helpful
    Thanks,
    Mohan

    Can you please give me some pointers on identifying/migrating the OAF personalizations/customizations
    Any documents/links to the same will be really helpfulRun the query in this thread to find the list of personalizations -- Re: Can I get a report of all personalizations?
    To migrate personalization, please refer to:
    Upgrading Form Personalizations and OA Framework Personalizations from Oracle E-Business Suite Release 11i to 12.1 (Doc ID 1292611.1)
    Customization in Oracle Applications (Doc ID 743490.1) -- Moving Personalizations between instances
    Tips About FNDLOAD (Doc ID 735338.1)
    Thanks,
    Hussein

  • LOV validation issue: "Select a valid value"

    Hi,
    I have a lov problem in oaf: "Select a valid value".
    It is a common problem, but somehow I cannot figure it out.
    LOV
    - LovApplicationId (of type "formValue")
    - LovApplicationShortName (of type "messageStyledText")
    - LovApplicationName (of type "messageStyledText")
    (based on combination of fnd_application and fnd_application_tl)
    BASE PAGE
    Two relevant items.
    First one is "ApplicationId" of type "formValue" connected to view attribute "ApplicationId". (connected to EO attribute in VO)
    Second one is "ApplicationName" of type "MessageLovInput" connected to view attribute "ApplicationName" (calculated in VO)
    Two lovMappings.
    First mapping:
    LOV Region Item = LovApplicationName
    Return Item = ApplicationName
    Criteria Item = ApplicationName
    Use for validation = no
    Second mapping:
    LOV Region Item = LovApplicationId
    Return Item = ApplicationId
    Criteria Item = <null>
    Use for validation = yes
    For example.
    If I select "Inventory" in the LOV and click on the apply button in the base page, I am getting the error "Select a valid value".
    If I select "Inventory Optimization" in the LOV and click on the apply button in base page, no error. And when I look in database the record is saved in my custom table with the correct application_id.
    I have read many forum threads on this issue, but I cannot figure it out, what is wrong.
    Please help me out.
    Kind regards,
    Cor

    Hi Haroon,
    This doesn't solve the problem.
    It is true the exception I am getting doesn't show up anymore.
    But the application_id isn't saved to the database.
    First thing I would expect in this case, that the mappings are not set properly.
    But if I choose for the value "Inventory Optimization", the application_id is saved to the database.
    If I choose for the value "Inventory" the application_id is not saved to the database.
    So it is possible the get rid of the error in the screen, but the underlying problem is still there...
    I have checked some core pages, similar to the one I have.
    So an UPDATE page (rectification: instead of CREATE).
    I have set all attributes the same, but the problem still occurs in my case.
    Very strange.
    I would make no difference running the page from jdeveloper or put the files on the application server and run it from Oracle, would it?
    It makes no sense. But...
    Kind regards,
    Cor

  • OAF Personalization Downloads

    Hi,
    I downloaded OAF Personalizations via the "Functional Admin" Resp and also via the "oracle.jrad.tools.xml.exporter.XMLExporter " utility and found a minor difference in the XML generated in both the ways.
    XML Generated:
    Using func Admin:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!-- $Header:$ -->
    <customization xmlns="http://xmlns.oracle.com/jrad" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:user="http://xmlns.oracle.com/user" version="10.1.3_954" xml:lang="en-US" customizes="/oracle/apps/ap/payments/ps/server/SelectedPsVO">
    <replace with="/xxx/oracle/apps/ap/payments/ps/server/XXSelectedPsVO"/>
    </customization>
    Using Utility:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!-- $Header:$ -->
    <customization xmlns="http://xmlns.oracle.com/jrad" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:user="http://xmlns.oracle.com/user" version="10.1.3_954" xml:lang="en-US" customizes="/oracle/apps/ap/payments/ps/server/SelectedPsVO" package="/oracle/apps/ap/payments/ps/server/customizations/site/0">
    <replace with="/xxx/oracle/apps/ap/payments/ps/server/XXSelectedPsVO"/>
    </customization>
    Since we are using AD patch to deploy the personalizations across instances (we are not doing it manually), the XML generated by "Func Admin" doesnt work any longer. however, the XML generated using the Utility works fine.
    Is this a bug?. We are in R12 (12.0.4)
    Thanks and Regards,
    Senthil

    Hi,
    I faced the same issue some time back.
    This is not a bug. If you don't have a package variable in the customization tag then you have to mention it in xmlImpoter command.
    Since your using the AD patch, you have to manually add the package name into the XML file or use XMLExporter to extract the personalization.
    Thanks,
    Prasanna

  • Is it possible to launch a form from an OAF page using OAF Personalization

    In R11, the Customer Standard form ARXCUDCI was customized to call a custom block from the Address screen. In R12 the customer standard form has become an OAF page. We have decided to create a custom form for the custom block using Oracle Developer. However we need a mechanism to call this custom form from the Customer Standard OAF page.
    My query is if it is possible to call a custom form from an OAF page using OAF personalization only (i.e. without directly customizing the code of the OAF page)
    Thanks
    Sanjay

    Dear Apurba,
    I have made some progress.
    I have open the Customers OAF Page, queried a customer, selected a site and opened it.
    Then chose Personalize "Account Site Address"
    There I added a Button on the Header Address level
    ID=XXTVL_LASSY_BUTTON
    Populated the Additional Text and Prompt properties.
    Also set Destination URI=form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU.
    The button is now showing in the address page, and when I click on it it opens the seeded Menu form.
    I now have to create the custom form and set Destination URI to the Custom Form.
    I am also aware how to add parameters to Destination URI.
    But could you let me know how to read the value from a OAF page form field and reference it in Destination URI.
    I need the value of PARTY_SITE_ID of the Address OAF page.
    Alternatively, the Site Number is displayed on the OAF page. If I can read it that will also do. I can use the Site Number in the custom form rather than PARTY_SITE_ID
    Thanks
    Sanjay

  • Impact on OAF Personalization/Customizations - Upgrade from R12.1.3 to 12.2.4

    Hi All,
    1) I would like to know if we need to re-deploy the OAF personalizations if we migrate from EBS 12.1.3 to 12.2.4?
    As per my understanding, after upgrade, personalizations would remain intact in MDS (jdr_* tables) layer but we need to perform testing and correct any layout error etc. if it is not in line with 12.2.4. However, re-deployment is not required.
    2) I also have a second questions wrt OAF customizations (i.e; VO extension, CO extension, Custom pages/regions). I assume we need to redeploy the customizations.
    It would be great if you can guide me on this.
    Regards,
    K

    1. Would R12.1.5 need separate license? Or, R12.1.3 license would cover R12.1.5 as this looks like an incremental upgrade.Same license (assuming you already have HRMS license).
    2. Not finding good documentation on R12.1.5 on metalink. Is there a RVP that can be shared if any of you have it with you.If you are referring to HRMS Release Update Pack 5 for Release 12.1 then you should have the docs referenced above.
    3. This probably should have been my first question. Is R12.1.5 a public release? I ask this question as I do not see good information available on upgrade road map to R12.1.5.The latest 12.1.x release is 12.1.3 and Oracle has no plans to release any higher 12.1.x releases -- The next release will be 12.2
    4. Can these features in R12.1.5 be applied as one-off patches on R12.1.3?Again, if you are referring to HRMS Release Update Pack 5 for Release 12.1 then the answer is "Yes".
    Thanks,
    Hussein

  • Help with Conditional Display and Validation

    Version 4.1.1.00.23
    Hello,
    I'm having a difficult time with a conditional display and validation I'm hoping someone can help with.
    Requirements:
    When the Start Date (Datepicker) and/or End Date (Datepicker) change then display the Change Reason (Select List) and Change Description (Textbox)
    If the page is saved without entering a Change Reason display a validation error message that the Change Reason cannot be empty (NULL)
    What I've tried
    Create a Dynamic Action on the Start Date
    Event: Change
    Selection Type:Item(s)
    Items(s): P51_START_DATE
    Condition: none
    True Action Section:
    Action: Show
    Fire on Page Load: Checked
    Show all page items on the same line: No
    Affected Items Section:
    Selection Type:Item(s)
    Item(s): P51_CHANGE_REASON,P51_CHANGE_DESC
    I've also created a Dynamic Action with similar settings for the P51_END_DATE.
    I created a Validation for the P51_CHANGE_REASON as Function Returning Error Text:
    DECLARE
        v_start_date    work_items.start_date%TYPE;
        v_end_date      work_items.end_date%TYPE;
    BEGIN
        SELECT start_date
              ,end_date
        INTO   v_start_date
              ,v_end_date
        FROM   work_items
        WHERE  work_items_id = :P51_WORK_ITEMS_ID;
        IF ( (v_start_date != TO_DATE(:P51_START_DATE,'DD-MON-YYYY') OR v_end_date != TO_DATE(:P51_END_DATE,'DD-MON-YYYY') ) AND
              :P51_CHANGE_REASON IS NULL ) THEN
            RETURN 'Change Reason must have a value';
        END IF;
    END;
    The Issue
    I tried to create another Dynamic Action to hide the P51_CHANGE_REASON and P51_CHANGE_DESC fields on page load, but when either of the date fields are changed and the validation is fired the P51_CHANGE_REASON and P51_CHANGE_DESC are hidden again.
    There are two buttons to submit the page: 'SAVE' will submit the page and stay on the page and 'SAVE_CHANGES' will submit the page and branch to the previous page (which is a report with EDIT buttons to edit the record).
    I can't get the page load Dynamic Action to NOT fire when the validation is fired.
    I hope this is clear and if not what information can I provide?
    Thanks,
    Joe

    Phil,
    Thank you for looking at this.
    Yes if the Change Reason is NULL when the edit page is displayed then the Change Reason and Change Description fields are hidden. If the Start Date (Datepicker) and/or End Date (Datepicker) change then display the Change Reason (Select List) and Change Description (Textbox). If the page is saved without entering a Change Reason display a validation error message that the Change Reason cannot be empty (NULL).
    The problem I'm having is that if no Change Reason is entered and the page is saved thereby firing the validation the Change Reason and Change Description fields are hidden again (because of the On-Load Dynamic Action to hide them). So now the user can't put in a Change Reason...unless they change one of the date fields again which isn't going to be accepted.
    Is there a way to determine if a validation error was fired and be able to use that on the On-Load Dynamic Action to hide the two fields? Something like...If the validation fired then don't run?
    Please let me know if I'm still confusing you.
    Thanks,
    Joe

  • Upgrading from 12.0.6 (RUP6) to 12.1.3  oaf personalization

    We are in the process of upgrading from 12.0.6 (RUP6) to 12.1.3
    We have personalized about 30 pages in the Oracle Talent Management module this is in the area of appraisals. This is using the standard out of the box personalization feature.
    As part of our 12.1.3 testing we have found that some pages either the page layout has changed due what appears to be new features/functionality e.g in the first page where the employee lands when they go into the talent management module from Employee self-service and in other cases some personalization have not been carried over for example if we use the Copy Objective feature. We used the standard export/import personalization feature as part of the functional administrator responsibility. It is also clear that the version of the pages in question has changed, here is an example:-
    /oracle/apps/per/selfservice/appraisals/webui/EmpMyAppraisalsPG 120.6.12000000.2 ==> 12.0.6 Version
    /oracle/apps/per/selfservice/appraisals/webui/EmpMyAppraisalsPG 120.17.12010000.8 ==> 12.1.3 Version
    Questions to you are:-
    1. We want to avoid a situation where we have to go through and manually re-apply each personalization as each page of each flow has to be and validated and so is there any way we enforce that the 12.0.6 personalization overwrite the 12.1.3 page layout. It looks like when we import the 12.0.6 personalization to 12.1.3 they don't overwrite what is there already, this would make sense as the page version numbers are different and there is clearly new functionality in some of these pages
    2. Please can you confirm how the import/export personalization feature would work when going from a low version of the system (12.0.6) to a high version of the system (12.1.3).

    1. Do I need to upgrade to 12.1.1 before patching the 12.1.3?Yes.
    2. Where can I have the functional differences (reports etc) between release 12.0.6 and 12.1.3?
    Re: Oracle Ebiz 12.1.3 versus 12.1.1 changes
    3. Any idea of the time (days) it may take for such upgrade? Depends on many factors.
    Thanks,
    Hussein

  • Sources are current and valid. TTLs are however, invalid. Failed to attach update to the automation wrapper, error = 0x87d00215_

    Hi,
    I recently tried to deploy Windows 7 update to my client computers. I am able to download and distribute it to DP, but somehow it wouldn't install into my client computers. Can anyone help me? Below text is copied from my scanagent.log and updatesdeployment.log
    files from my client computer.
    Any assistance is highly appreciated.
    Scanagent.log
    - - Calling back to client on Scan request complete... ScanAgent 4/10/2014 8:01:17 AM 77868 (0x1302C)
    CScanAgent::ScanComplete- Scan completion received. ScanAgent 4/10/2014 8:01:17 AM 77868 (0x1302C)
    - -Processing Scan Job TTL invalidity request ScanAgent 4/10/2014 8:04:34 AM 75864 (0x12858)
    - -Processing Scan Job TTL invalidity request ScanAgent 4/10/2014 8:09:29 AM 80536 (0x13A98)
    *****ScanByUpdates request received with ForceReScan=0, ScanOptions=0x00000008,  WSUSLocationTimeout = 604800 ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    - - -Evaluating Update Status... ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    Found CategoryID of :bfe5b177-a086-47a0-b102-097e4fa1f807 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    CScanAgent::ScanByUpdates - Found UpdateClassification 0fa1201d-4330-4fa8-8ae9-b877473b6441 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    Sources are current and valid. TTLs are however, invalid. ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    Sources are Valid, so converting to Offline Scan. ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJob::Scan- Requesting Offline Scan with last known location. ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    No CatScan history exists ScanAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Sources are current and valid. TTLs are however, invalid. ScanAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJob::Execute- Requesting scan with CategoryIDs=BFE5B177-A086-47A0-B102-097E4FA1F807 ScanAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): Scan Succeeded, setting flag that performed scan was catscan ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJob::OnScanComplete - Scan completed successfully, ScanType=2 ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJobManager::OnScanComplete -ScanJob is completed. ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients... ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    - - -Evaluating Update Status... ScanAgent 4/10/2014 8:50:41 AM 90080 (0x15FE0)
    - - Calling back to client on Scan request complete... ScanAgent 4/10/2014 8:50:41 AM 90080 (0x15FE0)
    UpdatesDeployment.log
    Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>False</UseCachedResults></SoftwareUpdatesMessage>' UpdatesDeploymentAgent 4/10/2014 8:04:34 AM 75864
    (0x12858)
    Removing scan history to force non cached results UpdatesDeploymentAgent 4/10/2014 8:04:34 AM 75864 (0x12858)
    Evaluation initiated for (0) assignments. UpdatesDeploymentAgent 4/10/2014 8:04:34 AM 75864 (0x12858)
    Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>False</UseCachedResults></SoftwareUpdatesMessage>' UpdatesDeploymentAgent 4/10/2014 8:09:29 AM 80536
    (0x13A98)
    Removing scan history to force non cached results UpdatesDeploymentAgent 4/10/2014 8:09:29 AM 80536 (0x13A98)
    Evaluation initiated for (0) assignments. UpdatesDeploymentAgent 4/10/2014 8:09:29 AM 80536 (0x13A98)
    Message received: '<?xml version='1.0' ?>
     <CIAssignmentMessage MessageType='EnforcementDeadline'>
         <AssignmentID>{85D3A208-0AE4-46F6-87C3-8A94CCA8361C}</AssignmentID>
     </CIAssignmentMessage>' UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Assignment {85D3A208-0AE4-46F6-87C3-8A94CCA8361C} has total CI = 1 UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Deadline received for assignment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Detection job ({D4D22069-E341-476B-9048-4C4FAFF7075D}) started for assignment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    DetectJob completion received for assignment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    Raising client SDK event for class CCM_SoftwareUpdate, instance CCM_SoftwareUpdate.UpdateID="Site_95D1BDFA-B063-4820-8D5D-497ECA9F10BB/SUM_eaf2ae60-e6f3-4d39-a014-ae25e07361a6", actionType 12l, value NULL, user NULL, session 4294967295l, level 0l,
    verbosity 30l UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    Update (Site_95D1BDFA-B063-4820-8D5D-497ECA9F10BB/SUM_eaf2ae60-e6f3-4d39-a014-ae25e07361a6) added to the targeted list of deployment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    Failed to attach update to the automation wrapper, error = 0x87d00215 UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 83412 (0x145D4)

    Tested on the following steps:
    1.       Start an elevated command prompt,and run wbemtest.exe
    2.       Click Connect, and specify the path: root\ccm\SoftMgmtAgent and connect
    3.       Select Query, and type select * from DownloadContentRequestEx2
    4.        Select query, and select * from downloadinfoex2
    5.       Delete each instance that returned by the query.
    6.       Restart SMS Agent Host service, and check to confirm the instances didn’t come back.
    7.       Trigger Software update evaluation cycle and try to install update again
    Didn't managed to execute step[5] as there is nothing for me to delete. Once I ran through the above steps, I noticed the following error in ScanAgent.log file. Also, I found some error in ClientIDManagerStartup.log. Can anyone tell me what is wrong
    here? Thanks
    ScanAgent.log
    *****ScanByUpdates request received with ForceReScan=0, ScanOptions=0x00000008,  WSUSLocationTimeout = 604800 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    - - -Evaluating Update Status... 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Found CategoryID of :bfe5b177-a086-47a0-b102-097e4fa1f807 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    CScanAgent::ScanByUpdates - Found UpdateClassification 0fa1201d-4330-4fa8-8ae9-b877473b6441 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Sources are current and valid. TTLs are however, invalid. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Sources are Valid, so converting to Offline Scan. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJob::Scan- Requesting Offline Scan with last known location. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Catscan history version is up-to-date and TTL is valid 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJob::Execute - SKIPPING SCAN and Using cached results, ScanType=2 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJobManager::OnScanComplete -ScanJob is completed. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients... 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    - - -Evaluating Update Status... 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    - - Calling back to client on Scan request complete... 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    - -Recovering persisted Scan requests... 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    ScanJob({0A14B277-B6B7-4D3A-B945-9E9586EAA3B6}): CScanJob::Scan - Recovered Scan request waiting for ScanRetry, but MAX Scan Retry is completed. No Scan Retry will be attempted, returning E_FAIL. 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    ScanJob({0A14B277-B6B7-4D3A-B945-9E9586EAA3B6}): CScanJobManager::Initialize - failed at CScanJob::Scan() with Error=0x80004005 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    CScanAgent::OnStartup - failed at Initialize with error=0x80004005 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    - -Processing Scan Job TTL invalidity request 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    *****ScanByUpdates request received with ForceReScan=0, ScanOptions=0x00000008,  WSUSLocationTimeout = 604800 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    - - -Evaluating Update Status... 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    Found CategoryID of :bfe5b177-a086-47a0-b102-097e4fa1f807 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    CScanAgent::ScanByUpdates - Found UpdateClassification 0fa1201d-4330-4fa8-8ae9-b877473b6441 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    Sources are current and valid. TTLs are however, invalid. 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    Sources are Valid, so converting to Offline Scan. 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJob::Scan- Requesting Offline Scan with last known location. 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    No CatScan history exists 4/10/2014 9:32:30 AM 106040 (0x19E38)
    Sources are current and valid. TTLs are however, invalid. 4/10/2014 9:32:30 AM 106040 (0x19E38)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJob::Execute- Requesting scan with CategoryIDs=BFE5B177-A086-47A0-B102-097E4FA1F807 4/10/2014 9:32:30 AM 106040 (0x19E38)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): Scan Succeeded, setting flag that performed scan was catscan 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJob::OnScanComplete - Scan completed successfully, ScanType=2 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJobManager::OnScanComplete -ScanJob is completed. 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients... 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    - - -Evaluating Update Status... 4/10/2014 9:32:44 AM 106040 (0x19E38)
    - - Calling back to client on Scan request complete... 4/10/2014 9:32:44 AM 106040 (0x19E38)
    ClientIDManagerStartup.log
    [----- SHUTDOWN -----] 4/10/2014 9:31:37 AM 3976 (0x0F88)
    [----- STARTUP -----] 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Machine: GHQ-ITD-LT036 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    OS Version: 6.1 Service Pack 1 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    SCCM Client Version: 5.00.7804.1000 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    'RDV' Identity store does not support backup. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    CCM Identity is in sync with Identity stores 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    'RDV' Identity store does not support backup. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Client is set to use HTTPS when available. The current state is 480. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Begin searching client certificates based on Certificate Issuers 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Completed searching client certificates based on Certificate Issuers 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Begin to select client certificate 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    There are no certificates in the 'MY' store. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Raising event:
    instance of CCM_ServiceHost_CertRetrieval_Status
     ClientID = "GUID:88760DF6-ABF1-4131-829D-365431082860";
     DateTime = "20141004013141.072000+000";
     HRESULT = "0x87d00280";
     ProcessID = 104240;
     ThreadID = 105612;
     4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Failed to submit event to the Status Agent. Attempting to create pending event. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Raising pending event:
    instance of CCM_ServiceHost_CertRetrieval_Status
     ClientID = "GUID:88760DF6-ABF1-4131-829D-365431082860";
     DateTime = "20141004013141.072000+000";
     HRESULT = "0x87d00280";
     ProcessID = 104240;
     ThreadID = 105612;
     4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Unable to find PKI Certificate matching SCCM certificate selection criteria. 0x87d00280 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Initializing registration renewal for potential PKI issued certificate changes. 4/10/2014 9:31:49 AM 103528 (0x19468)
    Succesfully intialized registration renewal. 4/10/2014 9:31:49 AM 103528 (0x19468)
    [RegTask] - Executing registration task synchronously. 4/10/2014 9:31:49 AM 103528 (0x19468)
    [RegTask] - Client is already registered. Exiting. 4/10/2014 9:31:49 AM 103528 (0x19468)
    Read SMBIOS (encoded): 3600320039003500350031002D003000310052003300390030003000300030003100 4/10/2014 9:31:49 AM 103528 (0x19468)
    Evaluated SMBIOS (encoded): 3600320039003500350031002D003000310052003300390030003000300030003100 4/10/2014 9:31:49 AM 103528 (0x19468)
    No SMBIOS Changed 4/10/2014 9:31:49 AM 103528 (0x19468)
    SMBIOS unchanged 4/10/2014 9:31:49 AM 103528 (0x19468)
    SID unchanged 4/10/2014 9:31:49 AM 103528 (0x19468)
    HWID unchanged 4/10/2014 9:31:51 AM 103528 (0x19468)
    GetSystemEnclosureChassisInfo: IsFixed=TRUE, IsLaptop=TRUE 4/10/2014 9:31:51 AM 103528 (0x19468)

Maybe you are looking for

  • Hi I have a problem I forgot my pass for unlocking iphone with Touch ID.Someone know how I can remuved

    Hi I have a problem I forgot my pass for unlocking iphone with Touch ID.If someone know how I can remuved please tell

  • Losing series from chart when adding one

    I have a problem with adding a LineSeries to an existing chart.  It's a LineChart (but also tried bases of CartesianChart, CandlestickChart, ColumnChart, HLOCChart and AreaChart), which has a ColumnSeries (volume) and CandlestickSeries (stock prices)

  • Iphone Crashing and Freezing

    Hi! I'm mostly looking to see if I have a lemon or if others are experiencing the same problems I have been having with my iphone. My iphone crashes and freezes several times daily. I have to reboot at least once a day, and often more than that. I've

  • PS3, and Snow Leopard . . .

    I'm ready to install Snow Leopard tomorrow, and am told that Creative Suite 3 and other earlier versions have not been tested for compatibility and will not be updated if found to be incompatible. Is it too early to ask if this is going to be a probl

  • Is there a screen that allows a manager to change details of their employee

    Is there a screen that allows a manager to change details of their employee? Using Manager Self Service, we would like to be able to have our users change the job title, department etc. of their 'reports' i.e. their employees. Is there a way to do th