Leave request enhancement (ecc6)

Hi, i have a requirement to create a pre-define dropdown list on approver (similar to dropdown of absence type) on ESS leave request. Please advice how can i do it

Hi
I am sorry for late reply.
the iView is available as ess~lea. To get to the source code for the leave request iView you want to use NWDI. There is a cook book available on getting source codes package. Then you need to study about self-services FPM so that it is easy for you to understand the leave request iView and do the changes.
Try the link to get JDI configuration for ESS
https://websmp207.sap-ag.de/~sapidb/012006153200000308062005E/JDI.zip
and help.sap.com provides floor
follow the blog
/people/harald.reiter2/blog/2006/09/06/sdn-day-session-in-las-vegas-custom-development-of-web-dynpro-ess-applications-using-floor-plan-manager
on ess changes.
This should give a fair idea in desiging your changes.
regards,
Raju

Similar Messages

  • Options for leave request work items in ECC6

    We are upgrading our backend system from R/3 4.7 to ECC6. I am not very impressed with the leave request authorisation process and wondered if there are any other options open to us.
    In 4.7, leave requests were workflowed to the requester's manager with a subject like this:
    Process leave request from <fromdate> to <todate> submitted by <person>
    When the manager selected it, they only see that request.
    In ECC6 (using task 12300111 and the Webdynpro 'Leave Request: Approval') the subject in the inbox is;
    <person>'s Leave Request
    When the manager opens the item they see all leave request from all staff, despite this, they can only process one item at a time. Once completed, they are given an option to Approve Another Absence - but the link does not work. I can remove that link using ctrl-right-click, but was wondering;
    1 Has anyone got the "Approve Another Absence" link working when the iView is launched from the UWL?
    2 Has anyone managed to put the details of the request into the subject?
    3 Has anyone managed to setup bulk authorisation of multiple requests in one step?
    4 Has anyone managed to restrict the workitem to only display a single request?

    Bharghava.K,
    I've implemented a work around for this - I've added the following UWL configuration file as a high priority:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'>
    <UWLConfiguration version="1.0">
      <ItemTypes>
        <ItemType name="uwl.task.webflow.TS12300097" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchIView" executionMode="default">
          <ItemTypeCriteria externalType="TS12300097" connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchIView" groupAction="" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
              <Properties>
                <Property name="iview" value="pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.iviews/com.sap.pct.erp.ess.working_time/com.sap.pct.erp.ess.leaverequestapprover"/>
              </Properties>
              <Descriptions default="launchIView"/>
            </Action>
          </Actions>
        </ItemType>
      </ItemTypes>
    </UWLConfiguration>
    Check the "Leave Request: Apporval" iView's ID if you try this - I don't know if ours is in the 'standard' place within the PCD.

  • Enhancement in ESS Leave Request

    Hi Gurus,
    I am new to webdynpro Java. I have a requirement to add a custom button in a Standard ESS leave request (Webdynpro Java) view. When i click the the button it has to call popview(not sure is it possible to call a webdynpro abap view).  If possible explain me with step by step preocedures(with screen shots).
    Thanks,
    Mohammed

    Hi,
              Good, you are now able to do modification in Standard ESS package. If you want to navigate to another WDABAP iView from your WDJAVA application, you can use the below code on some button or link action to navigate to another iView.
    Check this link:-
    http://help.sap.com/javadocs/NW04/current/wd/com/sap/tc/webdynpro/clientserver/navigation/api/WDPortalNavigation.html
    public void onActionnavigateToToAbapiView(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionnavigateToAbapiView(ServerEvent)
         try
                        WDPortalNavigation.navigateAbsolute(
                         "ROLES://portal_content/com.demo.DEMO_PCD/com.demo.ESS_SAP/com.demo.iview_ESS/demo.com.java_demo_com_demodc_demo_com_DemoApp",
                         WDPortalNavigationMode.SHOW_INPLACE,
                         "Window Title", WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
                         "Title",
                         "",//ContextURL
                         "param1=10&param2=portalID");          
         catch (Exception e)
              e.printStackTrace();
    You will find your WDAbap PCD location in Content Admin, copy it and repace PCD: with ROLES at start.
    also you can pass parameters between 2-iViews, in the above code snippet you can find that.
    the above code needs to be written in your source iView so as to navigate to destination iView which is mentioned using its PCD location.
    to retrieve the parameters you need to check ABAP syntax to retrieve URL parameters.
    In java we retreive using below syntax:-
    String param1 = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("param1");
    String loginID = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("param2");
    to show it as a Pop-Up you need to find some work-around to achieve it, If i get time will do it and let you know, but if you find something for that do share.
    Regards
    Tushar Shinde.

  • ESS Leave Request workflow customization

    Hi Guys,
    We are trying to customize the standard Leave Request Workflow WS12300111 in the ESS application for ECC6. The standard workflow passes the data to the workflow via the object REQ of type CL_PT_REQ_WF_ATTRIBS. I need to extract the leave information from the object.
    I tried creating an enhancement implementation for the Class CL_PT_REQ_WF_ATTRIBS and added my own method. But I can't see this method when I create a workflow task.
    I also tried copying the whole class and adding my code, but am not sure how to instantiate the new class in workflow. Pls help .

    Hi,
    Can you tell me the requirement.
    Do you want to change the Agent using a BADI ??
    or you want to send the leave request for another approval ??
    If you want to send the leave for another approval then just reset the status of the leave to SENT again using same class and using following code
    CALL METHOD cl_pt_req_badi=>initiate_state_transition
        EXPORTING
          im_request    = request
          im_event      = 'SENT'
       IM_RET_VALUE  = 0
        IMPORTING
          ex_new_status = me->status.
    After this, u can send this workitem to another processor..
    Another scenario could be:
    U want to determine a new agent for your workitem.
    In this case, u will have to implement BADI "PT_GEN_REQ"
    Read the documentation of this BADI.. this might help.
    And please tell me the requirement once again.. what you want to achieve.
    Regards
    Ashutosh

  • ECC 6.0 leave request attendence overview

    Please can someone help me how to configure the field "status" in my ESS leave request attendence overview in ECC6.0?
    I'm using a leave request scenario without approval and the status of my posted absences in infotype 2001 show the status "informed". From a proces point this status makes no sense.
    Already thanks for reading. Hope for a solution.
    Robbert Bastiaans

    Hello,
    I would definitely say for you to have a look at the BADI PT_GEN_REQ. Also verify the implementation of your PT_ABS_REQ.
    REgards,
    Bentow.

  • Leave assisstant ( Creation of leave request on behalf of EE )

    Dears ,
    Is it possible to create a separate workset , role in order to handle the creation of Leave request on behalf of EE .
    requirement on my company is to create a separate role to create leave requests on behalf of EE , while the creator should 't be on a chief position . shouldn't be a manager at all , the initiator will be on an initial data entry position .
    we are in need to create a separate role just like the travel assistant role .
    We are using SAP ERP ECC6.0 EHP6 with HR Renewal 1.0
    thanks .

    yes very much possible, you can use new role copied form MSS role and changing the evaluation path/FM to get the employeees check the options below http://scn.sap.com/community/erp/hcm/employee-self-service/blog/2014/02/07/manager-self-service-mss--mss-team-view-managers-who-do-not-hold-chief-position http://scn.sap.com/thread/3476815

  • How to add new fields for ESS leave request

    Hi friends,
    Can u please help me with my issue.......
    My issue is to add new fields in ess/leave request i.e...
    The component needs to be Checked-out through Net Weaver Development Infrastructure, make the necessary enhancements, and finally Check-it-in back to NWDI.
    Custom Function Modules are to be invoked apart from the standard ones that are already available in the Leave Request component – ess~lea inorder to accommodate the extra absence-type logic.
    can u please sujjest me where should i make changes in the given 14 components
    means in which view i have to add these fields.................
    Regards
    Rajesh

    Hi Rajesh ,
    Check whether u are able to find the ess dc's under inactive dc's in webdynpro
    If ur not able to find it then Check the landscape configurator in CMS and also the transport studio and confirm that ess packages are imported fine
    Ganesh ,
               for creating a DTR client u need to open the DTR perspective right click and "create clients" before that go to windows ->preferences of the NWDS and check the development infrastructure URL is gven correctly ...try pinging it once...
    Do check ur SLD is up or not!!!
    Regards
    Krishna
    Message was edited by:
            krishnagopal Mukundan

  • Leave Request two layer approval

    Dear Experts,
    I'm trying to implement two layer approval leave request workflow by copying and modifying standard workflow WS12300111.
    I follow the guide from this link:
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/CustomizingtheESSLeaveApprovalusingBusiness+Workflow
    My workflow step is as follow:
    1. first approver has approve the request
    2. reset req object status to SENT
    3. set next approver using method if_pt_req_request->set_next_processor
    4. send the request to the second approver
    I have implement badi PT_GEN_REQ to set first approver (method IF_EX_PT_GEN_REQ~FIND_RESP_AND_DEFAULT_NEXT_PRC) so that the first approver name shown correctly when requestor create the request.
    Now there are 3 problems I'm facing:
    1. After the FIRST approver approve the request, the note he input is shown twice. I found out this is because the status change create new version of the document. I have tried to clear this note when changing the status using method if_pt_req_request->set_notice. However, the method ignore if the notice is set to blank. Is there anyway to hadle this?
    2. When SECOND approver reject the request, I want the request to be revised by the requestor, and then forwared to FIRST approver after that. For this purpose, before send the workitem to requestor back, I put step to set approver back to FIRST approver again using method if_pt_req_request->set_next_processor. But it seems this doesn't work and the request is sent to SECOND approver after revised. The supervisor name that is shown when requestor revise the request also show the SECOND approver name instead the FIRST approver.
    3. I find difficulties to create email notification if the request is changed by the requestor during approval process, since there are no event triggered. Is there anyway to trigger this event or is there any workaround?
    Thank you.
    Regards,
    Ponty

    Hi Ponty,
    I am trying to implement two layer approval for leave request, too.
    I took a copy of standard WS12300111 as you did.
    I followed the guide, you mentioned. For one level approval this works nearly out of the box.
    But I don't understand the second half of the guide.
    For me it will be the first time to implement a BAdI. I never did this before.
    Can you please explain me, how to do it and how you enhanced the workflow for two layer approval?
    Some screenshots might be useful. Eventually you can enhance the guide you mentioned.
    Regarding the numerous questions on multi level approval, these hints might be useful for a large number of users.
    I would be very happy, If somebody can help me, becaus I didn't know any workflow experts who can help me implementing the BAdI.
    Thank you.

  • Leave request customer field as checkbox in ui5 leave request page

    Hi,
    we are trying to put an additional field (customer field) in leave request page.
    we added this via customization.
    and we want this to be appeared as checkbox, in the leave request page. for this for WDA page, there is option to change at WD fpm configuration, so it is appearing properly.
    but same thing, when we access via ui5 application, via hr renewal page, it is showing as input field.
    is there any way to make the customer field appear as a checkbox in HR renewal ui5 leave application page.
    thanks,
    Madhu_1980

    Here are the details for one of the additional fields
    1. We have enabled Customer Field - 'CUSTOMER01' using PTRAQ ->Fields customizing.
    2. We have then enhanced the feeder class CL_HRESS_PTARQ_LEAVREQ_GUIBBF method  GET_DEFINITION - in post-exit we have assigned search help  HTNM_PERNR to field 'CUSTOMER01'
    3. So when we launch the web-dynpro it gives search help for the field 'CUSTOMER01'
    I guess since the custom logic is on the feeder class which gets called only from the webdynpro it works on webdynpro and not on the UI, but can we implement the same kind of logic for the UI application as well, do we have any class similar to this feeder which sets the UI field properties.
    Thanks much!

  • Blank header appears when validating  leave request from the UWL

    Hello,
    We are using SAP Portal 7.3 and BP_ERP5MSS 1.51 SP06 according note oss 1618269 with a backend ECC6 EHP5 SPS06.
    We are facing the following issue :: "Leave Request Approval screen is poping with blank header".
    This  issue occurs when launching the task TS21500003 from the UWL of the manager trying to validate a leave request.
    See these screenshots,
    [http://s14.postimage.org/dponkbsoh/UWL_issue_1.jpg]
    [http://s9.postimage.org/7si0vfa7j/UWL_issue_2.jpg]
    From NWA and Log traces we can find, but it is not sure it is relevant (due to some other iview not set yet) :
    error : "Item with external id :<000000005010> and system id: <SAP_UWL >: Problem in performing action <markAsLaunched>: Unknown action: <markAsLaunched>-"
    warning : "com.sap.security.api.NoSuchUserException: The given id " "is not a unique id of a user!"
    We tried to follow some recommandations :
    - Tx SWFVISU / Task TS21500003
    - DYNPARAM = LRF_REQUEST_ID=${item.REQUESTID}
    - and from portal : "Universal Worklist - Administration" / "my system alias" / Re-Register
    - and clear cache
    => without success.
    we tried :
    - role : SAP_MANAGER_MSS_NWBC and SAP_ALL
    - we assigned this role or this profile at our user test
    => without success.
    we find :
    - Note 1600953 : Modifications to UWL configuration file in BP MSS Add-On 1.0
    => but we didn't setup this Add-On, so we think this note is not relevant for us.
    to investigate :
    We have also tried to copy and past the XML indicated in note 1600953 for task TS21500003 and it did not solve the issue. We then came back to our initial XML.
    We have configured the SAP_WebDynpro_XSS as indicated but we still face he same issue :
    - when trying to open the task in the UWL, a pop up with a blank header opens. 
    - when using the iview com.sap.pct.erp.mss.leave_request_approval, the system opens directly a leave request without showing the list of requests assigned to the manager.
    Find step by step in this word document and the UWL information trace :
    http://www.filedropper.com/issueuwl20120217
    Thanks in advance for your help,
    Regards,
    Rodolphe

    Hi,
    thanks for your answer, we still have the issue.
    We have tried to change the Web AS setting from ABAP to Java but same error message :
    "ressource not found"
    and error : "Item with external id :<000000005010> and system id: <SAP_UWL >: Problem in performing action <markAsLaunched>: Unknown action: <markAsLaunched>-"
    warning : "com.sap.security.api.NoSuchUserException: The given id " "is not a unique id of a user!"
    in the backend :
    /nSWFVISU
    TASK :TS21500003
    DYNPARAM:
    LRF_ARQ_MODE=A&LRF_REQUEST_ID=&LRF_SKIP_OVERVIEW_PAGE=X&LRF_WITEM_ID=
    XML FILE configuration file Universal Worklist Configuration Content :
    (concerning the Task)
    <ItemType name="uwl.task.webflow.TS21500003.SAP_UWL" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
    <ItemTypeCriteria systemId="SAP_UWL" externalType="TS21500003" connector="WebFlowConnector"/>
    <Actions>
    <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="display_order_priority" value="5"/>
    <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
    <Property name="WebDynproApplication" value="hress_a_ptarq_leavreq_appl"/>
    <Property name="WebDynproNamespace" value="sap"/>
    <Property name="openInNewWindow" value="yes"/>
    <Property name="System" value="SAP_UWL"/>
    <Property name="DynamicParameter" value="LRF_ARQ_MODE=A&amp;LRF_REQUEST_ID=&amp;LRF_SKIP_OVERVIEW_PAGE=X&amp;LRF_WITEM_ID="/>
    </Properties>
    <Descriptions default=""/>
    </Action>
    </Actions>
    </ItemType>
    Best regards,
    Thomas

  • WS12300111: Leave Request Approval - Multiple Approvals

    Hello.
    I am part of a project, trying to implement ESS/MSS at a large international NPO Customer, and have encountered a problem.
    I plan to use the WS12300111 Workflow for the approval process of Leave Requests, but since the customer in some situations require more than one approval, I have to enhance the workflow. At first glance it seems simple just to repeat the approval process, but since the request will be marked as approved at the first approval step, that will not work.
    We are required to keep the implementation as close to SAP Standard as possible, so the portal guys tell me, that it is not really an option to make changes to the approval functions.
    I have considered making the first approval a simple workflow task, that doesn't update the request itself, but since a rejection should update the request and trigger the Process Leave Request by Employee task, I really don't see that working either.
    Any thoughts on the subject, or maybe even a solution, will be greatly appreciated.
    Best regards
    Poul Steen Hansen
    Denmark

    Hi dude,
    Well, I might not be able to give you the coding, but I can explain it how to do this. Check the procedure.
    Create a new BOR and create a new method - CHANGESTATUS.
    Add one and only IMPORT parameter REQUEST of type PTREQ_HEADER-REQUEST_ID.
    In the coding part, firstly lock your request using the FM - ENQUEUE_EPTREQ.
    Then create an instance using the static method ca_pt_req_header=>agent->get_request which takes the REQUEST number as input and gives us the instance as OUTPUT.
    Having the instance in hand, we can use the method initiate_state_transition to change the status of this method. Pass the SEND status as INPUT and get the new updated status as OUTPUT.
    Unlock the leave request using the FM - DEQUEUE_EPTREQ.
    Implement and release this method in your BOR.
    And please make sure that your method is INSTANCE INDEPENDENT METHOD.
    In your template create a Standard background task after your first approval step which calls this method.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Adding Additional Columns in ESS Leave Request iview ( EP 7.0)

    Hi,
    I have a requirement to add some additional fields to the Leave Request Iview. Can any one suggest me  the best possible solution  to add the fields 'Processed by' and 'Approved Date' to the iview?
    Thanks in Advance,
    VR.

    Hi,
    You can personalize Web Dynpro iViews. I have explained this in another topic (2nd post) : [Re: Remove colums in WD MSS teamviewer].
    And the wiki contains useful information : [ESS Personal Information UI enhancement without modification|http://wiki.sdn.sap.com/wiki/display/profile/ESSPersonalInformationUIenhancementwithoutmodification].
    If it is the Universal Work List iView you want to modify, you'll have to modify the UWL configuration.
    Regards,
    Pierre

  • WDA Leave Request -- Hide Customer Field in Confirmation Popup

    Hello folks,
    System Information:
    NW AS 7.03 ABAP Stack 731 Level 11, ECC 606 (EHP 6) with SAP_HR 604 Level 73 and EA_HR 607 (HR-Renewal 1) Level 24
    Background:
    For Our WDA Leave Request application, our special department has requested to provide certain additional fields for particular Leave Types, all in all these are three check boxes and one Link-To-URL-UI. I have created these fields, or rather configured them via IMG Customizing Tables V_PT_FIELD_SEL / V_PT_FIELD_SEL_C, using the ten standard customer fields provided by SAP CUSTOMER01 - CUSTOMER10.
    After making the subsequential customizing configurations, I have enhanced the WDA OVP-FPM CC "HRESS_CC_GUIBBF_LEAVREQ" to change the respective fields' UI-Type from "Inputfield" to "Checkboxgroup" and "LinkToAction". So far so good; it's nothing fancy and everything works out the way it should.
    Problem:
    Our special department has recently noted, that the Link-To-Action provided is also taken into account by the Confirmation Dialogue Popup-Box and correctly set read-only like any other field as well. However, the fact that this read-only-link is then also shown in the Popup-Box is confusing to some users and should therefore be hidden. My plan was to enhance the WDA OVP-FPM CC "HRESS_CC_GUIBBF_LEAVREQDIALOG" and simply set the field CUSTOMER01(that's the one field I use for the Link-To-Action-UI) invisible and that's exactly what I did. But look what the effect is:
    You can see behind the lightbox in the Form, how the field is usually displayed in the Form-UIBB. What I "achieved" now, though, is, that only the lable is hidden in the Popup-Box through my enhancement in "HRESS_CC_GUIBBF_LEAVREQDIALOG" and the LinkText is still visible.
    What I did so far / Question:
    So... I went ahead and debugged the feeder class CL_HRESS_PTARQ_LEAVREQ_GUIBBF. I found out that in the Methods "FIELDS_SHOW_HIDE_CLEAR" and "FIELD_SETTING_BY_CUSTOMIZING" I would theoretically be able to manipulate the visibility, but:
    This would mean I'd have to create overwrite-exits, which I would like to avoid, because maintenance is a pain.
    Manipulating the process flow here probably has side effects on the field control of the overall application which must not happen. If I'm extremely unlucky it might even effect the data flow.
    This brings me to my ultimate question: How do I make a field from this Confirmation Dialogue Popupbox cleanly disappear/invisible in a super-duper-elegant way without using a sledgehammer? Maybe there is a customizing-way I have overlooked so far? (please?)
    Cheers, Lukas

    Hi Samuli/Yugandhar,
    what you suggest is exactly what I did:
    My plan was to enhance the WDA OVP-FPM CC "HRESS_CC_GUIBBF_LEAVREQDIALOG" and simply set the field CUSTOMER01(that's the one field I use for the Link-To-Action-UI) invisible and that's exactly what I did.
    The only derivation from your suggestions is that I didn't make a deep copy but an enhancement instead, which Creates a delegation Object that automatically inherits from the standard CC. Technically a copy or an enhancement do exactly the same but maintenance is a lot smoother for enhancements, that's why.
    Cheers, Lukas
    P.S. @ Yugandhar, nice to see you are still around! Indeed I'm primarily occupied with the module FI-TV, that's why I'm only wandering around the ESS/MSS subforums now and then.
    Message was edited by: Lukas Weigelt

  • ESS leave request, additional field

    I need to add three additional fields in ESS leave request (HR). I was told i can do that using web dynpro. I like to know how can I do it.
    Thanks

    hi Jeroen,
    Can u please help me with my issue.......
    My issue is to add new fields in ess/leave request i.e...
    The component needs to be Checked-out through Net Weaver Development Infrastructure, make the necessary enhancements, and finally Check-it-in back to NWDI.
    Custom Function Modules are to be invoked apart from the standard ones that are already available in the Leave Request component – ess~lea inorder to accommodate the extra absence-type logic.
    can u please sujjest me where should i make changes in the given 14 components
    means in which view i have to add these fields.................

  • Validations to Leave Request

    Hi Gurus,
    We are using ESS in ERP2005.
    I have a clarifications, that where to add the validations for the leave request
    eg: to check the employee has enough leaves, and incase of any cusomer specific conditons has to be checked against leave where it has to be done.
    is that using rules?
    Kindly clarify?
    Sera

    Hello Sera,
    Out of the box, you basically just have the option to use the two BAdIs PT_ABS_REQ and PT_GEN_REQ to add any kind of custom code. You should check them out.
    Another way could bo to enhance, not modify, the standard code. Once you press the check button in your leave request ess application the Function module PT_ARQ_REQUEST_CHECK gets triggered. At the end of this function module you could add your custom coding and once an error should occur, you can add a mesage to the output parameter "messages". To read more about the enhancement framework just search on the SDN.
    I hope this gives you an idea, what is possible.
    regards,
    Markus

Maybe you are looking for

  • IPhoto gone but still in Library!! Help!

    All the pictures in my iPhoto are gone! But, when I go to Users, User Name, Pictures I can see my Photo Booth pictures and iPhoto Library image, but when I open iPhoto all the pictures are not there. I right clicked on the iPhoto Library image and it

  • Time Machine to AFP volume is extremely slow after 10.5.2 update

    I remember the time, after I have just installed the very first version of Leopard, when Time Machine was working with close to physical speed of my wireless network. Incremental backups would take less than a minute. Comes 10.5.1. Time Machine becam

  • Error in creating a new region in OAF

    I have created a new region and wanted to associate it to an existing page through personalization. Initially it errored out just on creating the Flexible layout where i just provided the id name. After bouncing the server several times, at one point

  • Printing from Apple personal laserwriter 320? help needed

    my faithful old apple personal laserwriter 320 works perfectly till 10.3.9. after upgrading to tiger, this printer was not recognised. i like some advice in locating perhaps a new driver or a way to get it going in 10.4.4. Thanks in advance. rollee

  • Software Center Uninstall visible when no program specified

    Question on application uninstalls via SW center: When no uninstall exists for an application (such as a Bios update) , we do not specify an uninstall program. We would anticipate the uninstall button be greyed out when no program is specified for an