Default Probation Period on New Employee only

Hi,
In the HR Self-Service's Change in Position Page, the probation period is defaulted when the job position has been changed. I only want to have it defaulted when it's a new employee. How can I do this??
Oracle Version I'm using is 11i
Thanks for your help,
N

Hi,
Thanks everyone for their input. I am now extending the CO for this as suggested by Ajay.
I have found that in AssignmentCO, there's a function called setPositionDefaultValues function that defaults the probation period etc. However, when I extended this controller, it's still defaulting the probation period fields. Can somebody check what's wrong with my controller? I have a feeling that my super.processRequest is messing up my new setPositionDefaultValues function that has the probation period part commented.
package tap.oracle.apps.per.selfservice.deployperson.webui;
import com.sun.java.util.collections.ArrayList;
import com.sun.java.util.collections.List;
import java.io.Serializable;
import java.util.Hashtable;
import java.util.StringTokenizer;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.OAApplicationModule;
import oracle.apps.fnd.framework.OAAttrValException;
import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.OAViewObject;
import oracle.apps.fnd.framework.server.OADBTransaction;
import oracle.apps.fnd.framework.server.OAViewObjectImpl;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OADialogPage;
import oracle.apps.fnd.framework.webui.OANavigation;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.webui.beans.form.OAFormValueBean;
import oracle.apps.fnd.framework.webui.beans.layout.OADefaultTableLayoutBean;
import oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean;
import oracle.apps.fnd.framework.webui.beans.message.OAMessageLovInputBean;
import oracle.apps.per.common.CommonUtils;
import oracle.apps.per.selfservice.common.Constants;
import oracle.apps.per.selfservice.common.SSHRParamTable;
import oracle.apps.per.selfservice.common.SSHRParams;
import oracle.apps.per.selfservice.common.webui.NewUserProcessTransaction;
import oracle.apps.per.selfservice.deployperson.server.DefaultWorkHoursVOImpl;
import oracle.apps.per.selfservice.deployperson.server.DefaultWorkHoursVORowImpl;
import oracle.apps.per.selfservice.deployperson.server.PositionDefaultValuesVOImpl;
import oracle.apps.per.selfservice.deployperson.server.PositionDefaultValuesVORowImpl;
import oracle.apps.per.selfservice.workflowservice.server.WFUtility;
import oracle.cabo.ui.UIConstants;
import oracle.jbo.ApplicationModule;
import oracle.jbo.AttributeList;
import oracle.jbo.ComponentObject;
import oracle.jbo.Row;
import oracle.jbo.RowIterator;
import oracle.jbo.Transaction;
import oracle.jbo.common.MetaObjectBase;
import oracle.jbo.domain.Date;
import oracle.jbo.domain.Number;
import oracle.jbo.server.ViewObjectImpl;
import oracle.apps.per.selfservice.deployperson.webui.AssignmentCO;
public class xxcperAssignmentCO extends AssignmentCO
public static final String RCS_ID = "$Header: AssignmentCO.java 115.111 2006/10/27 13:06:45 gpurohit noship $";
public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion("$Header: xxcperAssignmentCO.java 115.111 2006/10/27 13:06:45 gpurohit noship $", "tap.oracle.apps.per.selfservice.deployperson.webui");
static Class class$java$lang$Object; /* synthetic field */
public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
super.processRequest(oapagecontext, oawebbean);
void setPositionDefaultValues(Row row, PositionDefaultValuesVORowImpl positiondefaultvaluesvorowimpl, OAPageContext oapagecontext, OAWebBean oawebbean, String as[])
OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
OADBTransaction oadbtransaction = oaapplicationmodule.getOADBTransaction();
SSHRParams sshrparams = new SSHRParams(oadbtransaction);
String s = sshrparams.getSelectedPersonType();
Object obj = null;
as[0] = "NO";
if(positiondefaultvaluesvorowimpl.getOrganizationId() != null)
row.setAttribute("OrganizationId", positiondefaultvaluesvorowimpl.getOrganizationId());
row.setAttribute("OrganizationName", positiondefaultvaluesvorowimpl.getOrganizationName());
if(positiondefaultvaluesvorowimpl.getLocationId() == null)
Serializable aserializable[] = {
String.valueOf(positiondefaultvaluesvorowimpl.getOrganizationId()), null, sshrparams.getEffectiveDate()
OAViewObject oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("DefaultLocationVO");
oaviewobject.invokeMethod("initQuery", aserializable);
if(oaviewobject.hasNext())
Row row1 = oaviewobject.first();
String s2 = row1.getAttribute("LocationId").toString();
String s3 = (String)row.getAttribute("LocationId");
if(!s2.equals(s3))
String s4 = (String)row1.getAttribute("LocationCode");
row.setAttribute("LocationCode", s4);
row.setAttribute("LocationId", s2);
as[0] = "YES";
if(positiondefaultvaluesvorowimpl.getJobId() != null)
row.setAttribute("JobId", positiondefaultvaluesvorowimpl.getJobId());
row.setAttribute("JobName", positiondefaultvaluesvorowimpl.getJobName());
if(positiondefaultvaluesvorowimpl.getGradeId() != null)
row.setAttribute("GradeId", positiondefaultvaluesvorowimpl.getGradeId());
row.setAttribute("GradeName", positiondefaultvaluesvorowimpl.getGradeName());
if(positiondefaultvaluesvorowimpl.getLocationId() != null)
row.setAttribute("LocationId", positiondefaultvaluesvorowimpl.getLocationId());
Serializable aserializable1[] = {
String.valueOf(positiondefaultvaluesvorowimpl.getLocationId()), sshrparams.getEffectiveDate(), null
OAViewObject oaviewobject1 = (OAViewObject)oaapplicationmodule.findViewObject("LocationVO");
String s1 = (String)oaviewobject1.invokeMethod("getLocationCode", aserializable1);
row.setAttribute("LocationCode", s1);
if(positiondefaultvaluesvorowimpl.getWorkingHours() != null)
row.setAttribute("NormalHours", positiondefaultvaluesvorowimpl.getWorkingHours());
row.setAttribute("Frequency", positiondefaultvaluesvorowimpl.getFrequency());
if(positiondefaultvaluesvorowimpl.getTimeNormalFinish() != null)
row.setAttribute("TimeNormalFinish", positiondefaultvaluesvorowimpl.getTimeNormalFinish());
if(positiondefaultvaluesvorowimpl.getTimeNormalStart() != null)
row.setAttribute("TimeNormalStart", positiondefaultvaluesvorowimpl.getTimeNormalStart());
if(positiondefaultvaluesvorowimpl.getSupervisorId() != null)
row.setAttribute("SupervisorId", positiondefaultvaluesvorowimpl.getSupervisorId());
if(positiondefaultvaluesvorowimpl.getPayBasisId() != null && !"C".equals(s))
row.setAttribute("PayBasisId", positiondefaultvaluesvorowimpl.getPayBasisId());
if(positiondefaultvaluesvorowimpl.getPayrollId() != null && !"C".equals(s))
row.setAttribute("PayrollId", positiondefaultvaluesvorowimpl.getPayrollId());
row.setAttribute("PayrollName", positiondefaultvaluesvorowimpl.getPayrollName());
//SR119779 27-JUL-2010 Nette
/*if(positiondefaultvaluesvorowimpl.getProbationPeriod() != null && positiondefaultvaluesvorowimpl.getProbationUnit() != null)
row.setAttribute("ProbationPeriod", positiondefaultvaluesvorowimpl.getProbationPeriod());
row.setAttribute("ProbationUnit", positiondefaultvaluesvorowimpl.getProbationUnit());
Date date = new Date(sshrparams.getEffectiveDate());
date = calculateProbationEndDate(date, positiondefaultvaluesvorowimpl.getProbationPeriod().intValue(), positiondefaultvaluesvorowimpl.getProbationUnit());
row.setAttribute("DateProbationEnd", date);
if(positiondefaultvaluesvorowimpl.getBargainingUnitCd() != null)
row.setAttribute("BargainingUnitCode", positiondefaultvaluesvorowimpl.getBargainingUnitCd());
row.setAttribute("BargainingUnitName", positiondefaultvaluesvorowimpl.getBargainingUnitName());
}

Similar Messages

  • I use icloud email but (2 email accounts univ and icloud) and i need to have all my outgoing emails come "from" my university account, not my icloud.  So how do i do that, note checking the default box for sending new messages only applies to new messages

      I am using icloud email but i also have a university account.  All my email is fowarded to my icloud account and what i need to do is make sure all of my email that i ship is from my university account and not from my icloud account.  I know there is a box that allows the default for all new emails to originate from one account but how do i make sure that all my replies to email (i.e. they have been fowarded from university account to icloud) now go from my university account.  please help anyone. 

    Sorry for the delayed response, yes i want to use my university account when replying to all emails.  Note i just discovered something, when i forward my university email to my icloud account and than responded from either my imac of my macbook air (i.e. in icloud) it automatically goes to my university account in the "from" space (good news!!!).  That is just what i wanted, .  While that is the good news, the bad news is that my iphone and ipad still treat this email as being from icloud even though it is forwarded (redirected) from my university account.  That is when i respond to an email (or for that matter create a new email in my icloud account) it automatically lists the icloud account as the "from" account and i have to go in and manually modify it.  So i am 50% there to solving my problem (i.e. actually did nothing the systems just worked well) but i still need to figure out a way to make this happen on my ipad and iphone. Any help or suggestions, note the default button in the iphone and ipad for email work differently than the default in the composition menu of the imac or macair.

  • How do I change the default zoom for New Tab only?

    The New Tab zoom in Firefox 33 is too high to see all 12 of my thumbnails. I changed it using ctrl- but the next time I opened a New Tab, the zoom was back at 100%. How do I change the default zoom for New Tab only?

    cor-el, what am I looking for in '''content-prefs.sqlite'''?

  • Add default responsibilities upon new employee creation

    Hi,
    We have a requirement to do the following activities when a new employee/CWK is created in HRMS.
    -Link the Application User (Application users are maintained through OAD by the time employee creation happens & we need to just link person to user)
    -Add default self service reponsibilities to the users. Need to add the applicable one based on employee working location(country).
    like..
    Employee Self Service (India)
    Employee Self Service (UK)
    I am aware of the way to achieve this by writing custom code. Just wanted to know any part of the functionality is available in this line.
    thanks,
    Rajkiran.

    I don't think there is any way to achieve this without custom code.
    Sandeep Gandhi

  • 0HR_PT_1 Datasource doesnot extract New employees in Delta Load

    Hi Gurus,
    I did an initialization of delta based on Company code selection and calendar month range (01.2008 to 12.2009) in the month of Aug-09 around 60million records came into BI.The dataload was successfull (Info yellow but made into green). After that when the new employees created in ECC for these emplyoees there is no data being extracted through 0HR_PT_1 datasource.
    Gone through the following notes
    Note 670751 - Time management extractors and new employees
    This talks ablut selection range for Personnel Number which i have not given at the time of init. But now already data is there in BI and it will take hell out of time. Its not sure even though we did init selection with peronal Number ranges 10 years data is coming into BI.
    Note 353177 - Long-run. progr. at time data extrct. in delta mode
    This note talks about time frame which itself is a confict with the infotype 0439.
    Please suggest how to minimize the successfull initialization of delta with out missing the new employees workschedule data.

    If u click the 'Documentation' icon at the IMG node, u can see the following
    Define Time Frame for Transfer
    In this step, you define the time frame used to select time data for reports in the Business Warehouse. Only time data entered for a date or period within this time frame is transferred to BW.
    The time frame you specify is activated when you
    Request data for initializing the delta transfer
    Request the delta since the last request or repeat the delta request
    Transfer all requested data and do not restrict the required period in BW.
    Example
    1. You regularly use BW to gain an overview of the current calendar year.
    You enter January 1, 2001 as the earliest transfer date and December 31, 2001 as the latest transfer date. At the start of the next year, you set the dates forward one year.
    2. You want to have regular access to the current data. You also want to take account of time data that has changed in the last six months. You are also interested in absences that have been recorded for future periods.
    You therefore set the earliest transfer data to six months ago and the latest transfer date to six months in the future. Each month, you set the dates forward one month.
    Recommendation
    Make the time frame as small as possible to avoid unnecessarily long runtimes, and as large as necessary to transfer all relevant data.
    Activities
    1. Choose the Check Feature TIMMO activity.
    2. Check the modifiers specified. If you want to use special modifiers for BW, adjust the feature accordingly.
    3. Choose the Earliest Transfer Date activity and enter the date up to which
    a) Data is to be selected (when you request all data)
    b) All changes made after the last request are to be selected (for a delta request)
    4. Choose the Latest Transfer Date activity and enter the date up to which data entered for the future is to be selected.
    5. Note these activities (outside the SAP system) for your periodical activities so that you can update the time frame monthly or annually, for example.

  • Making Period Start Date read-only on Appraisal page

    Hi,
    I have a requirement to default Appraisal Period Start Date and Period End Date and make these fields non-editable. I am able to default the values for these fields by extending CO. When I make these fields read-only and performs any operation on page, getting error
    +'You must enter a value for Period Start Date as criteria for the List Of Values.'+
    Please suggest a solution to resolve this error.
    Thanks.
    Edited by: user12037955 on May 12, 2011 9:26 PM

    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    java.util.Date dateValue1 = null;
    java.util.Date dateValue2 = null;
    java.util.Date date = null;
    OAApplicationModule oaapplicationmodule = pageContext.getApplicationModule(webBean);
    OAMessageDateFieldBean bean1=(OAMessageDateFieldBean)webBean.findIndexedChildRecursive("StartDate");
    OAMessageDateFieldBean bean2=(OAMessageDateFieldBean)webBean.findIndexedChildRecursive("EndDate");
    String startDate=bean1.getText(pageContext);
    String endDate=bean2.getText(pageContext);
    String strDate1=null;
    String strDate2=null;
    if((startDate==null||startDate.equals(""))&& (endDate==null||endDate.equals("")))
    date=pageContext.getCurrentDBDate();
    SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd");
    String dateValue=simpledateformat.format(date);
    String year=dateValue.substring(0,4);
    try
    String sqlStatement = "";
    CallableStatement cs = null;
    // OAApplicationModule oaapplicationmodule = pageContext.getApplicationModule(webBean);
    OADBTransactionImpl txn = (OADBTransactionImpl)oaapplicationmodule.getOADBTransaction();
    cs = txn.createCallableStatement(" ",1);
    sqlStatement = "SELECT to_char(to_date(ffv.attribute1,'RRRR/MM/DD HH24:MI:SS'),'DD-MON-YYYY') attribute1, " +
    " to_char(to_date(ffv.attribute2,'RRRR/MM/DD HH24:MI:SS'),'DD-MON-YYYY') attribute2 " +
    " FROM apps.fnd_flex_value_sets ffvs,apps.fnd_flex_values ffv " +
    " WHERE ffv.flex_value_set_id = ffvs.flex_value_set_id " +
    " AND ffvs.flex_value_set_name = 'XXX_PMP_Fiscal_Date_VS' " +
    " AND (SYSDATE BETWEEN NVL(ffv.start_date_active,SYSDATE) AND NVL(ffv.end_date_active,SYSDATE)) " +
    " AND flex_value= " + year +
    " AND ffv.enabled_flag = 'Y' ";
    ResultSet rset = cs.executeQuery(sqlStatement);
    if (rset.next())
    strDate1 = rset.getString(1);
    strDate2= rset.getString(2);
    catch(Exception e)
    throw new OAException("Error:" + e.toString(), OAException.ERROR ) ;
    SimpleDateFormat convertFormat = new SimpleDateFormat("dd-MMM-yyyy");
    if(strDate1!= null || strDate2!=null)
    try
    dateValue1 = convertFormat.parse(strDate1.toString());
    dateValue2 = convertFormat.parse(strDate2.toString());
    catch(Exception exception)
    bean1.setValue(pageContext,dateValue1);
    bean2.setValue(pageContext,dateValue2);
         bean1.setReadOnly(true);
    bean2.setReadOnly(true);
    }

  • Modify view of Default timecard periods view in OTL to sort list of periods

    Hi,
    Can someone guide me if there is any way to modify default timecard periods view in OTL. We intend to sort the list of timecard periods in OTL in order to show old non sumbitted timecard periods as default rather than based on system date.
    I have checked preferences->System that allow edits but that is not helpful in what we want to achieve.
    Thanks,
    Rajan

    These are the tabs that are displayed and the ones it gives me options for.
    There are many improvements needed for Bridge and the default metadata workspace is certainly one of them. In fact, in its current state it is next to useless and no help at all. But you are right, it should provide you with at least the description field but it does not. Oddly enough, the only way to achieve this is using the bottom right icons in the Bridge window. You see three of them, thumbs, large thumb with list and small thumbs with list. Currently you have selected the default small thumbs with list, if you use the middle one (large thumbs with list) and fiddle around with the slider for the size of the thumbs the description field magically appears in view but you are not able to put it in a separate column.
    So the find option is still your best option I'm afraid...
    You can also try to create your own workspace. Start dragging the borders to change the size of the panels to your comfort so you have a good overview of the panels you want to have in view.
    You can also change the order and place of panels in multiple rows but you are limited to max three columns. Place the cursor on a panel tab and start dragging it to a new location. A single blue line means either between a row or a column, a surrounded blue line means add as a tab in same location. You also can drag the tabs for your custom order.
    Now with the content panel in reasonable size use the icon bottom right for large thumbs and list view and use the slider for correct position of the description field. Save it as a new workspace (important to retrieve it when messed up). You can also have multiple windows in Bridge (at least on a Mac, you seem to be on Windows) and use one for list view and another for find results. etc. etc.

  • Changing password after adding new employee

    Setup: DB2 z/os database authentication, Propagate Change parameter set to TRUE.
    Created a new employee using sadmin account with the fellowing detail:
    Last Name: empl, First Name: emp1002, User ID: emp1002, Responsibility: CG Retail Sales Representative, Position: Proxy Employee, New Responsibility: CG Retail Sales REpresentative
    Created cooresponding DB user account on DB2 z and password: EMPL.
    Then login to emp1002 using IE.
    The signon screen is Password, and has three fields: Current Password, New Password, Verify New Password. However, when I enter new password and press Save, the new password will not be saved.
    Also, try to change password following Tools -> User Preferences -> User Profile.
    However, the password field is gray out and the Contact information still show as Sadmin.
    Please help.
    Joey

    Hi Joey,
    By default the new password field under user preferences screen remains read only.You can make it editable by following below steps :-
    1) Go to Admin->Server Configuration->Enterprises->Profile Configuration view.
    2) If you are not using any 3rd party security adapter like LDAP or ADSI then query in field "Alias" by "DBSecAdpt",if yes then search for corresponding adapters.
    3) In the 3rd applet "Profile Parameters" under field "Name" search for "Propagate Change".For this particular record change the value under field "Value" to "True".
    4) Bounce siebel server.
    5) Now check under user preferences->profile.
    -Sambit

  • Error while creating new employee in CAF Core application

    Hi
    I am novice to the CAF, this is my first CAF Core application which I have created and deployed in J2EE engine successfully. It’s ready for Testing, here  I am trying to create a  new employee but while saving it, giving error like:-
    ERROR. Exception thrown in method createEmployee. The transaction is marked for rollback.: Exception thrown in method create. The transaction is marked for rollback.: com/sap/caf/rt/exception/CAFIllegalAccessException
    Anyone can help out me.
    Regards
    Srikanth

    Hi Cindy Herrman,
      FYI , that check box already unchecked, while setup the employee entity only that Permission check box unchecked, still I am getting same problem.
    -Srikanth

  • 'You can post in new year only after closing the previous year

    Hello Experts,
    I am also getting same error while executing depreciation run AFAB ''You can post in new year only after closing the previous year''.
    I found one OSS Note 18800 and it is saying solution as below ...
    At the first depreciation posting in the new fiscal year after a shortened fiscal year, the fiscal year variants must, in all cases, still be entered in asset customizing and in FI customizing for the affected company code. If necessary, all periods for the following fiscal year must be maintained with the variant of the shortened fiscal year.
    Up to 2.2D the following correction must also be installed:
    Please carry out the syntax check only in main program SAPLAFAR.
    But in my case there is no shortended fiscal year.
    Can I apply this OSS note correction instructions ?
    Please suggest me.

    Hi
    I don't think so. Moreover that is applicable till 2.2D.
    Moreover depreciation is to be run for all periods you have not run earlier. Please check upto which period dep run has happened. Thereafter close the fiscal years in order thro AJAB.
    S Jayaram

  • Hiring new employee with HR_MAINTAIN_MASTERDATA

    Hi,
    I am trying to hire new employee with HR_MAINTAIN_MASTERDATA. For now, I only gives the mandatory values of the infotype 0002 in proposed_values and parameters to the FM.
    CALL FUNCTION 'HR_MAINTAIN_MASTERDATA'
         EXPORTING
           pernr                    = no_emp_int
           massn                    = '01'
           actio                    = 'INS'
           tclas                    = 'A'
           begda                    = sy-datum
           endda                    = '99991231'
    *       OBJPS                    =
    *       SEQNR                    =
    *       SPRPS                    =
    *       SUBTY                    =
           werks                    = '1000'
           persg                    = '1'
           persk                    = 'D9'
    *       PLANS                    =
           dialog_mode              = '1'
    *       LUW_MODE                 = '1'
           no_existence_check       = 'X'
    *       NO_ENQUEUE               = ' '
          IMPORTING
            return                   = return
    *       RETURN1                  =
    *       HR_RETURN                =
          TABLES
            proposed_values          = it_prop_val
    *       MODIFIED_KEYS            =
    When it is executed, it gives me the error:
    'No data available for A 00007787 0003' where 00007787 is the employee number. My guess is that 0003 is for the Payroll status (0003) infotype. I thought it would be automatically created with the FM.
    When I change the dialog_mode parameter to '0', no error appears but, the employee data isn't saved i.e. I cannot access it with PA30 or PA40. It says 'Personnal number not yet assigned'.
    So, I'd like to know how to save data correctly and why dialog_mode '1' or '2' failed everytime.
    Thanks a lot for your answers, points will be awarded as it fits my needs!

    Patrick
    My guess is that this FM HR_MAINTAIN_MASTERDATA will not create all 4 infotypes (0, 1, 2 and 3 as I think all those 4 are mandatory for every employee). I would say that you need to specify data for each infotype separately. You can in fact create all those 4 infotypes in separate calls of FM. I was doing this some time ago (with calling FM 4 times) but I was using different FM - HR_INFOTYPE_OPERATION.
    The obligatory fields for each infotype depends on the setting in you system so you need to find this out by your-self.
    As per infotype 0003 do not forget to set properly field VIEKN - see feature IVWID otherwise maintenance of created employee may not be possible.
    One last thing - you may try to use IDOC HRMD_A for employee creation. This way is much faster than using FM's. But be careful no data check/validation is done when you pass an IDOc to application (which maybe an advantage in your situation).
    Andrzej

  • "Untitled" as default document name for new documents

    I have one installation of Adobe Illustrator CS2 in a Mac with which I have the following problem:
    Whenever I go to File->New, to create a new document, the default document name is blank, and it should be "untitled".
    Is there a way (without reinstalling) to correct this? (turn the default blank document name to "untitled" default document name, for new documents)
    Thank you.
    Juan Poniachik

    On what Mac? If it's on a new Mac with Snow Leopard, I would guess it is one of those compatibility issues of new OS vs. legacy software. If so, you can't change any of that. Other than that I can only think of trying to edit the document templates...
    Mylenium

  • HAVE BEEN UNABLE TO RETRIEVE MY OLD LIBRARY OF PHOTOS, ALBUMS AND PROJECTS SINCE DOWNLOADING AN APERTURE 3 SOFTWARE UPDATE TWO DAYS AGO.  THE NEW LIBRARY ONLY HAS A FEW NEW PHOTOS IN ONE FOLDER  PLEASE ADVISE AS HOW TO RETRIEVE OLD APERTURE LIBRARY WITH

    HAVE BEEN UNABLE TO RETRIEVE MY OLD LIBRARY OF PHOTOS, ALBUMS AND PROJECTS SINCE DOWNLOADING AN APERTURE 3 SOFTWARE UPDATE TWO DAYS AGO.  THE NEW LIBRARY ONLY HAS A FEW NEW PHOTOS IN ONE FOLDER
    PLEASE ADVISE AS HOW TO RETRIEVE OLD APERTURE LIBRARY WITH ALL MY PHOTOS, ALBUMS AND PROJECTS

    Find the old Aperture library in the Finder and double click it to launch Aperture with that library set to the default.
    And check your caps look key.  It appears to be stuck.

  • Assigning new employee to a org unit manager

    Once I had closed all the milestones of the firt implementation project(1. Design Accepted - 2 Solution Accepted - 3 Go Live Readness Acceptance) and tested some cenarios I found an error in the organization structure. To solve this problem I created a new Job D a new employee and had tried to assign this new employee as an org unit manager. The problem is that whem I Open the field " Select Organizational Unit Manager" the system does not show this new employee that I just have created. Does anybody knows whats is wrong? Should I have to create a new Project? Thank you in advance for you suport. Abilon Neves

    Hi Sushant,
    That´s the problem.
    I can´t assign this new employee to the org unit.
    The system does not list the new employees to be assigned. Only the old employees are listed.
    I´m in the first implementation Project and i closed all the milestones.
    Do you know if it can cause these problens?
    Should I open a new Project?
    Kind Regards.
    Abilon Neves
    SAP Consultant

  • Change the default country code for new contacts in Outlook 2013 for countries not listed in Control Panel Region Format

    Dear all,
    I would like to change the default country code for new Outlook 2013 contacts. My country is Mozambique (+258) and is not listed under Control Panel> Region> Formats> Format:
    Is there any place (registry maybe, anywhere) where I can manipulate the existing formats or manually add a new format to the List ??? - for example Portuguese (Mozambique).
    I am using Windows 8.1
    I have tried changing the country on the phone and modem options and nothing changes. Also changing the Home Location on Region> Location to Mozambique didn't change a thing. The only place where I change something and produces results is the
    Format List.
    Any ideias???? If not, is there a place where I can ask Microsoft to include Portuguese (Mozambique) on future windows updates???
    Kind regards,
    Osvaldo

    Hi,
    Windows uses the information set under
    'Phone and Modem'  in the Control Panel to determine the default area code.
    You can change the country/region to
    Mozambique
    and set your area code here:
    Regards,
    Steve Fan
    TechNet Community Support

Maybe you are looking for

  • Error while running procedure for refreshing AWS

    Hello There, I am using a procedure which consists the script of refreshing the analytic workspace. I call this procedure from Business objects data services for automatic refresh. It used to work perfectly until the recent changes implemented. The i

  • XSLT mapping query

    Hi All I have done a XSLT mapping to map a flat file structure to a hierarchical structure. But my 3rd level node is getting repeated for 2nd level node. Please find the details below Source Structure - flat file Header - 1 Record - 1....unbound Fore

  • TMW_GET_TARGET_SYSTEMS against /TMWFLOW/TRACK_N107

    Dear Experts, I am testing the Charm configuration for 2 system landscape, both are real but test (if ok then it will be implemented on LIVE). Everything is OK at SOLAR_PROJECT_ADMIN > System Landscape > Change Requests > Check except i am getting th

  • CS6 Background Flashing

    Backgound keeps flashing and pixelating whenever I use CS6 (Brand new copy of CS6 and brand new sony laptop using windows 8). Very annoying! Somebody please tell me how to prevent this before I go insane.

  • What is missing in dreamwaver?

    What do you think we still lack in Dreanweaver that may appear in a forthcoming version Contact: Alebá