Infotype Z in the portal ESS

Good Nigth.
I have the following issue.
In the company in where i am, there is very much Infotype Z created and enhancement to Infotype Standard. They want that some of this infotype and Some fields that were add in the infotype standard can be update through of the portal.
Someone can help me , that I should do.?
Kind Regards.

Hi,
As per your Query ...
It can be possible ..
For if you are all ready displaying the fields on the portal .. then following solution will help you .
In back end you need to create RFC by using T-code se37.
For example I want to update some fields in Info type  from Z info type.
My Z info type is ( 9500 ) and other Standard info type is 0001 ( Org Assignment).
On the portal you are displaying fields from Z ( 9500 ) info type u2026
Then for updating data in the infotype 0001.
1.     Go to Tcode se37 .. Give RFC name u201C Z9500_CHANGEu201D in attribute give processing type Remote-enabled Module , give short text ect. In Importing Parameter give .
I_9500     TYPE     PA9500                               HR Master Record: Infotype 9500
Only give importing parameter donu2019t give others like exporting , changing ect.
And it source code give following coding.
FUNCTION Z9500_CHANGE.
""Local Interface:
*"  IMPORTING
*"     VALUE(I_9500) TYPE  PA9500 OPTIONAL
                         data definition                             *
  DATA: WA_9500  TYPE PA9500,
        WAP_9500 TYPE P9500,
        WA_0077  TYPE PA0077,
        WAP_0077 TYPE P0077,
        WA_RETURN TYPE BAPIRETURN1,
        WA_KEY TYPE BAPIPAKEY.
  DATA: V_USER TYPE SY-UNAME.
  CONSTANTS: C_9500 TYPE INFTY VALUE '9500',
            C_MOD TYPE ACTIO VALUE 'MOD'.
             C_MOD TYPE ACTIO VALUE 'INS'.
  MOVE-CORRESPONDING I_9500 TO WAP_9500.
  WAP_9500-INFTY = C_9500.
  WAP_9500-ENDDA = '99991231'.
  WAP_9500-BEGDA = SY-DATUM.
LOCK THE EMPLOYEE
  CALL FUNCTION 'HR_EMPLOYEE_ENQUEUE'
    EXPORTING
      NUMBER       = WAP_9500-PERNR
    IMPORTING
      RETURN       = WA_RETURN
      LOCKING_USER = V_USER.
  CHECK WA_RETURN IS INITIAL.
Update the dependednt infotype
  SELECT SINGLE *
     FROM PA0077
     INTO WA_0077
     WHERE PERNR =  I_9500-PERNR AND
                    ENDDA >= SY-DATUM AND
                    BEGDA <= SY-DATUM.
  MOVE-CORRESPONDING WA_0077 TO WAP_0077.
  WAP_0077-INFTY = '0077'.
  WAP_0077-ENDDA = '99991231'.
  WAP_0077-BEGDA = SY-DATUM.
  IF WAP_0077-RACKY NE I_9500-RACKY.
    MOVE I_9500-RACKY TO WAP_0077-RACKY.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
      EXPORTING
        INFTY         = '0077'
        NUMBER        = WAP_9500-PERNR
        VALIDITYEND   = '99991231'
        VALIDITYBEGIN = SY-DATUM
        RECORD        = WAP_0077
        OPERATION     = C_MOD
        DIALOG_MODE   = '0'
      IMPORTING
        RETURN        = WA_RETURN
        KEY           = WA_KEY.
  ENDIF.
Update the Infotype
  CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
      INFTY         = C_9500
      NUMBER        = WAP_9500-PERNR
     VALIDITYEND   = WA_9500-ENDDA
     VALIDITYBEGIN = WA_9500-BEGDA
      VALIDITYEND   = '99991231'
      VALIDITYBEGIN = SY-DATUM
      RECORD        = WAP_9500
      OPERATION     = C_MOD
      DIALOG_MODE = '0'
    IMPORTING
      RETURN        = WA_RETURN
      KEY           = WA_KEY.
UNLOCK THE EMPLOYEE
  CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'
    EXPORTING
      NUMBER = WAP_9500-PERNR
    IMPORTING
      RETURN = WA_RETURN.
*e_return-message = 'Dequeued'.
ENDFUNCTION.
Here I shown the way how to update infotype from portal data u2026..Please do as per your requirement Logic will be same ..in your case table will otheres u2026if you do it  with the ABAP consultant its is just half hour work
Cheers,
Vivek

Similar Messages

  • Appraisal Document in the portal ESS

    Dear Experts.
    We have the following issue.
    The consultant of HR created a Appraisal Document and Realase it for display in the portal. The problem is that the Appraisal Document not is displayed in the portal. The system not is update this. And display the previus Appraisal Document.
    Regards

    Hi.
    The system not display none error.
    The Scenar is the following:
    We created an appraisal doc in the R/3 and assigned the chief as the appraiser, but when the chief logs in to portal he can't see the document.
    [Image|http://www.freeimagehosting.net/uploads/667f92a01b.jpg]
    I checked that my user have the  auth object P_HAP_DOC and yes.
    What status should have the appraisal docum for that an employee in the ESS can display?
    Regards
    Edited by: consultor_ess_mss on Aug 13, 2010 9:02 PM

  • Navigation with Short URLs for T.Code Published in the portal ESS

    Dear Expert
    We have the following issue:
    Requeriment:
    We created a report ABAP in the R/3. For this Report, the ABAP Team created a t.code ZPORTAL. For this t.code we created a service ITS in the t.code SICF, the name of this service is ZPORTAL. In the portal we created an type of iView IAC for call this service and assign the Iview to a page. And the Page to a role customer.
    In this moment the service work fine. The problem initial was that when the enduser press the button exit(Finalizar) the portal display the message Logged Off Successfully .
    We write in the forum of sdn with the following link:
    Logged Off Successfully
    And we made the step in the help.sap.com; But the result not is the that we wait.
    http://help.sap.com/saphelp_nw04s/helpdata/en/b3/7b8163404448e7aad7899c0b30313e/frameset.htm
    Please you can help me with suggestion.
    How can solve my issue and get the result that we wait..
    I can send documentation with the steps that I made, and the result that I want get.
    With kind regards
    Regards

    Hi,
    At System Administration > Navigation > Short URLs, the Short URL is activated?
    Can you see some URL codes on this page?
    Best regards
    João Macedo

  • Roles in the portal

    I have the following doubt:
    We in the company have 10.000 employees. I want know How can assign the role of ESS in the portal for this 10000 employees?
    There are is an option of do this  massive?
    Regards
    Juan

    Hi Juan,
    Is your portal user base set to backend SAP system?  What I understood from your post is you want to give all 10000 common functionality of ESS and I assume there will be a common ESS backend role (e.g. ZSAP_EMPLOYEE_ERP) assigned to these 10000 users.
    If you do a search in a portal assuming you have user base from SAP backend system, you will be able to find the backend role (e.g. ZSAP_EMPLOYEE_ERP) as a group in the portal.  Assign a portal role to this group.  So if any user who has correct backend ESS role will automatically get the portal ESS role.   This is because backend roles are shown as groups in portal and user is part of that group if he/she has that backend role.  So effectively, any new user who just gets the backend role automatically has access to portal role as well due to the mapping between group and role.
    Hope this helps.
    Thanks,
    jigar

  • How to change the portal user id 's assigned employee in ESS configuration

    Hello Gurus,
        I now have a question related to ESS configuration. I want to know how to change the Portal user's pernr assignment in the ECC 6.0 system. Somebody had actually assigned my portal user ID a PERNR in the ECC 6.0 system. But now, for test purposes, I want to change the PERNR assignment to something else for my portal user id.
    Could any of you please guide me in doing these steps?
    Points will definitely be awarded for helpful answers.
    Thanks gurus in advance for your help.
    ~~LB

    Hi Leena,
    You can create a new user name with the username and password assigned to it, with the transaction SU01.
    Ex : ESS_USER1
    Go to transaction code : PA30.
    Enter the pernr you want to assign to the user ESS_USER1 that you have created earlier.
    Enter infotype number : 105
    Now go ahead and click on the change button.
    And assign the user name as ESS_USER1.
    Then the pernr number will be assigned to the ESS_USER1 that you have created.
    You can check the same when you go to the HRUSER transaction code.
    Please let me know if you still have any issues on the same.
    Cheers.
    Sandeep

  • Not able to get a link to the fron-end portal(ess) with back-end sap R\3 AB

    Hi,
       In the back-end i.e sap abap-hr , the required data (leave types) are available.But on front-end Portal(ESS) ,the drop-down menu in personal LOA forms shows only two leave types(personal & self-funded leave).i got struck in how to make few in remaining also viewable in the drop-down list.Can anyone help me on this?

    Bottom line,
    to configure the Leaves on your portal you have to do.
    1. Configure the Leave Types and all the customizing on T554S.
        opc. If you want to have quota deduction, and everything else you should check V_T559L, T556C, T556A as well.
    2. Configure the Leaves on the Portal.  This is done on the IMG path colleague replied:
    >Personnel Management
    >Employee Self-Service
    >Service-Specific Settings
    >Working Time
    >Leave Request
    >Processing Processes
       a. Create the Rule Groups - this step you just create them.
       b. Adjust feature WEBMO - The feature WEBMO is used to select the rule group. Most of the times based on MOLGA and Ctrl. Center.
       c. Define Processing Processes for Each Rule Group - define the processes such as how to record partial day leaves, details on to check PTREQ_HEADER tables for unposted leaves, and how to determine workflow's next agent (more info press F1 on each of these fields)
       d. Specify Processing Processes for Types of Leave - Associate the Leaves from T554S that you want to show on the portal. This includes Absences and ATtendances. Here you define data such as if you are allowed to create leaves on the past, present and future; field customizing, and other details.
    Since Time Management is an old part of SAP the F1 documentation is very complete so I really advise you to check.
    Also, check http://wiki.sdn.sap.com/wiki/display/ERPHCM/LeaveRequestCustom+Messages
    for how to have custom warning messages to show on your leaves.
    I hope I have clarified.
    Kind Regards,
    Bentow.

  • How to change the ESS objects, iViews and Pages, translation in the portal?

    Hello everyone,
    I'd like to change the standard SAP translation for iView and Pages in the Portal level. Does anybody knows how to do this?
    My landscape is NW2004s and  ESS  for  ECC 6.0
    Regards
    Luciano

    you can change the standard SAP iViews and Pages using the Portal Content Translation feature of the Portal ( go to Content Administration->Portal Content Translation. Follow the instructions at
    http://help.sap.com/saphelp_nw04/helpdata/en/25/08174082fe1961e10000000a155106/frameset.htm
    all ESS iviews and pages have their content "ready for translation" and you can use the instructions above to translate that content.
    Tiberiu
    please award points if response was useful.

  • ESS Leave Request error when launched from the portal

    Hi guys
    When i try to launch the Leave request from ESS tab in portal i am getting the following error
    I have checked the backend and i can process a leave request from there. It is failing on the portal side.
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    Index: 0, Size: 0  
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:507)
         at java.util.ArrayList.get(ArrayList.java:324)
         at com.sap.aii.proxy.framework.core.JcoBaseList.get(JcoBaseList.java:268)
         at com.sap.aii.proxy.framework.core.AbstractList.get(AbstractList.java:230)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCList.get(DynamicRFCList.java:281)
         at com.sap.tc.webdynpro.progmodel.context.Node$ModelElementList.getElement(Node.java:2549)
         at com.sap.tc.webdynpro.progmodel.context.Node.getElementAtInternal(Node.java:621)
         at com.sap.tc.webdynpro.progmodel.context.Node.setLeadSelection(Node.java:753)
         at com.sap.xss.hr.lea.form.FcForm.setLeadSelectionForSubtype(FcForm.java:700)
         at com.sap.xss.hr.lea.form.FcForm.setVisibility(FcForm.java:943)
         at com.sap.xss.hr.lea.form.FcForm.prepareCommand(FcForm.java:308)
         at com.sap.xss.hr.lea.form.wdp.InternalFcForm.prepareCommand(InternalFcForm.java:2041)
         at com.sap.xss.hr.lea.form.FcFormInterface.prepareCommand(FcFormInterface.java:116)
         at com.sap.xss.hr.lea.form.wdp.InternalFcFormInterface.prepareCommand(InternalFcFormInterface.java:1887)
         at com.sap.xss.hr.lea.form.wdp.InternalFcFormInterface$External.prepareCommand(InternalFcFormInterface.java:1983)
         at com.sap.xss.hr.lea.form.edit.VcFormEdit.onInit(VcFormEdit.java:299)
         at com.sap.xss.hr.lea.form.edit.wdp.InternalVcFormEdit.onInit(InternalVcFormEdit.java:1084)
         at com.sap.xss.hr.lea.form.edit.VcFormEditInterface.onInit(VcFormEditInterface.java:165)
         at com.sap.xss.hr.lea.form.edit.wdp.InternalVcFormEditInterface.onInit(InternalVcFormEditInterface.java:204)
         at com.sap.xss.hr.lea.form.edit.wdp.InternalVcFormEditInterface$External.onInit(InternalVcFormEditInterface.java:280)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:564)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)

    This error occurs due to the following customisaton, Please
    check this :
    Check the Feature WEBMO is activated or not?
    Is the pernr assigned correctly?
    Please can you check if the Pernr used
    has correct information like It0105 etc, also the rules are
    correctly defined.
    For the Employee, First of all check the Period Work Schedule also
    the Quotas of the pernr needs to maintained in 2006, Please do
    this customisation and it should solve the issue.
    Maintain the absence quota in the IT2006 and then try once.
    Also make sure that the Settings in Webmo and PTARQ etc all is done
    The pernr belongs to the a Rule and have absences defined for him.

  • ESS Workflow 10000015 Approve request for changing address thru Portal ESS

    Hi Experts,
    We want to implement ESS workflow 01000015 u201Cchange (infotype 0006) Address will be blocking until approved/rejected by Administratoru201D. The workflow is trigger OK from R3, user creates a new address and IT0006 is blocking till administrator approve or reject.
    What we want now is to trigger this workflow from Portal, but here is the problem:
    1.-  I do not see any option (button) for creating a new address from Portal iView, what else is missing??? I believe creating new address from Portal could trigger this workflow, but I am not sureu2026
    2.- If the first option does not work I would like to trigger this workflow by the event u201CChangeu201D, so I need to edit the address. From R3 is blocking IT0006 OK, but from portal is not blocking the address at allu2026 What else is missing??? I do not know if this could be an issue from R3 or Portalu2026.
    We already check u201CNote 495971 - Workflow 01000015 is not triggered when changing addressu201D and workflow is working ok only from R3.
    Regardsu2026..
    David Cortes

    Hi Swamy,
    I am a little confused of you requirement. The scenario here is that Person A (Any person using ESS) must not change any of his/her own personal data until Person B Approve/Reject the new Data. For example: if a user A want to change his/her address, personal data etc. must be approve or reject for another person B. This is a validation that most of the companies want to have in order to validate this information. Employees may change their personal data, but how HR area validates if this new information is real or not...  One way to verify this new information is a validation for a Person B who will be to approve or reject this information. Now if you do not have this scenario I believe you will not have to do this implementation class because ESS do not have this scenario. The standard ESS functionality is available for change any data without validation and this should be working right now on your Enterprise Portal.
    If you want to have a validation for a third User, Person B, you may check these points:
    1. Edit 2. New Permanent address
    Edit - Will change the record irrespective of dates. This will modify the current record which is valid as of today.
    New Permanent address - This will create a new record effective today and previous record will be delimited.
    If I use lock functionality in Edit scenario, then in the portal it will dispaly previous record which is not the correct data.
    For 2nd case, this will insert the new record, so Lock may work in this case. I will check this.
    I believe you will work most of the time with "Edit" button. If Person A edit address, the new register will be created and locked in PA30 Infotype  6 until person B Approve/Reject. How Person B knows if someone has edit his/her address?? You may achieve this using Universal Work List and notification. You may have to create a task for person B with email notification, so person B will be enter into Portal and check his/her new task from the UWL. This task will be ITS UI front end and from here person B decide if approve or reject. If Person B approve, the new register will be unlocked and replace the last one (Also in Portal). If person B reject, the register blocked will be gone and the last one remains.
    This should work for any infotype . Check only the type of event generated for any of them in order to trigger the workflow.
    Do you have any idea how to achieve this for Personal details where the Lock/Unlock functionality is not available.
    Standard ESS works without any lock/unlock functionality. remove the current workflow if you have used any.
    Regards
    David Corté

  • Error when loggin on to the portal

    Hello all,
    I am new to the portal and I need your help to figure out a proble I have. When I log on to the portal I get the following error message on some of the tabs (not all):
    No user mapping defined for system SAP_WebDynpro_XSS
    When I get this message I am prompted to enter user ID and password.
    Does anybody know what I am missing or how to solve this problem?
    Thank you,
    Enrique

    Well,
    You have a system with alias SAP_WebDynpro_XSS which is used to show you were webdynpro applications for ESS/MSS are.
    This system is setup with authentication user mapping, but most probably the SAP_WebDynpro_XSS is running on the same portal, and it should have been SAP logon Ticket.
    So either
    1) Go and setup a usermapping for alias SAP_WebDynpro_XSS, should probably be your portal username/password, or the username/password of the system hosting the webdynpros (do this under useradministration user mapping)
    2) Change Logon method the system with alias
    SAP_WebDynpro_XSS from user mapping to SAP logon ticket
    Dagfinn

  • Print a KM document displayed in the portal

    Hi Experts,
    I'm implementing ESS MSS for a client and I was asked to add an iview in the same page as Address to inform employees which other companies/phone provider.. they should inform when they change their address.
    I added a KM document with the different addresses they should contact and displayed on the right on the screen like they asked.
    Now they want to add a print button in order to print this KM document directly from the portal, I suggested the 'by default' browser's print clicking in the right button but they refuse (because the page is printed and not only the KM iview), they want to have a seperate button to print just the KM document.
    Any suggestion guys?
    Thanks you

    In this case nothing to do with the KM Document iview.
    You need to write your custom code in the KM document for getting the print button and print functionality.
    Raghu

  • SSO not working for a custom WDA application that runs in the Portal

    I have a Portal system (Java stack, NW04s) that has an iView of type webDynpro ABAP. The custom Web Dynpro ABAP application resides on another system (ABAP stack, running ECC6). We have configured the trust relationship between the Portal and the ECC system as per
    http://help.sap.com/saphelp_nw04s/helpdata/en/61/42897de269cf44b35f9395978cc9cb/content.htm
    We know this is working since we are able to run ESS. However, for the custom WebDynpro ABAP application, when calling it for the first time, a logon screen shows up. How can we get rid of it? what are we missing to have SSO work for the custom WebDynpro application?

    Please check this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d35bb690-0201-0010-988a-d669c8530518
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2fhelp%2fsdn_help_nw04s%2fsaphelp_nw04s%2fhelpdata%2fen%2f5e%2f6c85c3edf942f39349a1e337434d29%2fcontent.htm
    Hope it helps.
    Regards,
    Mona

  • SSO for portal ESS applications

    Hi all,
    We have implemented ESS in Portal.
    But we need to access the ESS modules outside the portal .. i.e,
    We need to access ESS applications from a .net portal..
    goal is to acheive SSO from a .net portal to SAP Portal..
    How to Acheive this. any approches/ best practices??
    Points for useful answers..
    Hari

    Hi,
    can you take a look at this thread: Re: SSO from SharePoint CMS to SAP EP that is connected to CUA
    The idea would be to "force" the users to log on to the portal (so that they have a SAPLogonTicket), redirect the users to your .Net application and from there they can access ESS scenarios (since they do have a SAPLogonTicket now).
    Regards,
    Holger.

  • Publish a Query (T.code SQ01) in the portal

    Good Morning.
    I want know What are the step for publish a Query created with the T.Code SQ01 in the portal for ESS?
    Regards.

    I found the following steps:
    - Log on to the portal as an administrator.
    - Go to the Content Administration tab and choose Portal Content.
    - In the detailed navigation area, you need to use the Browse tab.
    - Choose the folder where will be created the iview.
    Right-click and choose New from archive => iView.
    The proble is what I not found the opcion New from archive.
    I Only found the following options:
    New===>iView
                    Page
                    Role
                    Workset
                    Layout
                    Folder
    However i selected the Option Iview.
    iView template - create an iView from an existing iView template
    But I don't found the iViewmaster com.sap.pct.hcm.eeprofilegenericiviewlist.
    Can someone give me a help with this?
    Regards

  • Custom logon module not called by the portal

    Hi, all.
    I need some help urgently on this new portal requirement. There are some sensitive ESS/MSS iviews that we need to give the users an additional logon challenge. The normal ESS/MSS iviews will be using SSO. This one will still use SSO, but have to pass the userid/password challenge.
    We have decided to use the authentication scheme. Also, the "form" logon stack has been modified with only one logon module, which is our customized one. To create the java project, jar and library, we are following the link: http://help.sap.com/saphelp_nw04s/helpdata/en/46/3ce9402f3f8031e10000000a1550b0/frameset.htm
    Here's the extract of our authscheme.xml:
            <authscheme name="certlogon">
                <authentication-template>
                    client_cert
                </authentication-template>
                <priority>21</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.certlogon</frontendtarget>
            </authscheme>
            <authscheme name="coo_secure">
                <authentication-template>
                    form
                </authentication-template>
                <priority>40</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.basicauthentication</frontendtarget>
            </authscheme>
            <authscheme name="basicauthentication">
                <authentication-template>
                    ticket
                </authentication-template>
                <priority>20</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.basicauthentication</frontendtarget>
            </authscheme>
    The authscheme is called coo_secure. When a user clicks on the iviews with the coo_secure authscheme, a userid/pwd prompt pops up. But it does not accept whatever I type in. From the defaulttrace, I do not see any hint that our customized logon module was ever called.
    Is there anyway to turn on portal tracing to see what is going on?
    Thanks,
    Jonathan.

    Hi Jonathan,
    Did you solved the problem with the custom logon module?
    We have a very similar scenario. I followed below help site to implement a custom logon module for particular iviews.
    http://help.sap.com/saphelp_nw70/helpdata/EN/54/f91fba71ae48309e4267b4a36fa47b/frameset.htm
    and also the documentation:
    SAP Netweaver Developers Guide - Integrating Security Functions
    But I am not able to get my own custom login module with the custom authscheme running.
    If I access my specific IViews that requires additional custom authentication I get the portal login page again. After giving login data I get the error message:
    Java iView Runtime
    An exception occured while processing your request.
    If this situation persists, please contact your system administrator.
    If you solved your problem, can you please share the solution with me?
    Thanks,
    Regards,
    Yasar

Maybe you are looking for

  • Hyperion Essbase on Solaris & Security issue in Shared services

    I installed Hyperion system 9.3.1 in my dev environment. Every thing is working properlly. But i still have questions on couple of things. 1) I installed essbase on solaris 10. I was just trying to configure the sql interface for ESSBASE. I went thro

  • How do I add Videos to my NEW 80GB iPod? HELP! I've been trying for days!!!

    I purchased a music video and two TV episodes from iTunes. It a long time to download and after it was finished, it disappeared from iTunes. It wasn't found in iTunes or on my iPod. I also downloaded videos from a third party website, got the videos

  • Having issues with calculations multiplying a field by 20.

    I am trying to find a correct formula that takes my field 'Quantity7' and multiplies it by 20. I have tried different forms and it always gives me an answer of 1. Quantity7 is the sum of quantities 1-6, is that where the issue is? I am so lost!

  • Instructions how to change harddrive of GT780R

    Is there somewhere on the web a good instruction how to replace the standard hard drive in the GT780R? I searched on youtube en google, but didn't manage to find anything and I'm not that familiar with this kind of upgrades. I would like to replace t

  • Problems transferring music with USB 2.0

    I recently installed a USB 2.0 PCI card with 4 ports, the card installed fine and plugging my Nano into it was fine, however, when I try to transfer music onto the Nano it keeps freezing. It'll transfer maybe the first 2 or 3 tracks of an album and t