Employee resumes, photos in SAP.

Hi Gurus.
One requirement comes to me abuot SAP HR. Client having two systems one is non sap DMS system and another is SAP. Applicants resumes, photos etc are stored in DMS only. Now client want when he want to see employee's personal data in SAP, he will also be able to see his resumes, photo if he want. Means on demand these documents should be fetch from DMS....
Please suggest how to work on this ...
Thanks.

You can save resumes and photos in sap. do the following config in SAP.
1.Create a number range for SAP Archive Link :
IMG>Basis Components>Basis Services>SAP Archive Link>Basic Settings>Maintain number ranges.
Tcode OANR. Create range 01 from 0000000001 to 9999999999 without the external number flag.
2.Document type HRICOLFOTO must exist with document class JPG.
IMG>Basis Components>Basis Services>SAP Archive Link>System Settings>Maintain document types.
Table TOAVE, Tcode OAC2.
3.Document type HRICOLFOTO must be linked to object type PREL and IT0002.
IMG>Personnel Management>Personnel Administration>Tools>Optical Archiving>Set up Optical Archiving in HR.
View V_T585O, no Tcode. In all three columns there ara minuses, don’t put a flag in the check box.
4.Check which content repository (Archive) is linked to document type HRICOLFOTO and object type PREL.
IMG>Basis Components>Basis Services>SAP Archive Link>Basic Settings>Maintain Links.
Table TOAOM_C, Tcode OAC3
5.Create this content repository with storage type FILE archive.
IMG>Basis Components>Basis Services>SAP Archive Link>Basic Settings>Maintain content repositories.
Tcode OAC0
Storage type FILE archive can be attained by clicking on the field Storage type and clicking somewhere else in the screen with the right mouse button. Choose Possible entries and only then you get a list of all values. FILE Archive is entry number 08. Choose Version no. 0031 and Archive path something (e.g. C:\).
6.Link photo to personnel number.
Menu>Tools>Business Documents>Miscellaneous>Stored Documents. Tcode OAAD.
Click on the Create button. Business object PREL and Docyment type HRICOLFOTO. Click on create (fill in the right personnel number in the pop up and click Continue). Choose the photo (as a JPG file) from the place where it is saved (e.g. hard disk). SAP will notify that the Stored Document was created succesfully. Photo is visible via PA10, PA20, PA30, PA40. Double-click to magnify photo.
To delete archived document :
Tcode OAAD, click Find. In docyment type field select HRICOLFOTO and after execute you get a list of all documents. Select appropriate document and click on delete icon.

Similar Messages

  • Upload Employee Photo into SAP

    Hi,
    Due to employee photo is stored as ArchiveLink and I tried to upload it by LSMW, but it doesn't work. I was wordering that, the document that stored in ArchiveLink can be uploaded by LSMW or not.
    Has anyone used to upload employee's photo into SAP? If so, how?
    Thanks in advance.

    Dear Sakchai,
    Refer to the following link for step by step procedure:
    http://wiki.ittoolbox.com/index.php/Upload_a_photo_in_SAP_HR
    Sample program from http://sap.ittoolbox.com/groups/technical-functional/sap-hr/massive-upload-photo-1211577
    REPORT ZHR_BDC_UPLOADPIC
    NO STANDARD PAGE HEADING LINE-SIZE 255.
    INCLUDE
    INCLUDE BDCRECX1.
    I N T E R N A L T A B L E S
    DATA : BEGIN OF IT_DATA OCCURS 0,
    RP50G-PERNR(8), " LIKE RP50G-PERNR,
    RLGRAP-FILENAME(128),
    END OF IT_DATA.
    S T A R T - O F - S E L E C T I O N
    START-OF-SELECTION.
    PERFORM OPEN_GROUP.
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    FILENAME = 'C:\PICTURE.TXT'
    FILETYPE = 'DAT'
    TABLES
    DATA_TAB = IT_DATA
    EXCEPTIONS
    CONVERSION_ERROR = 1
    INVALID_TABLE_WIDTH = 2
    INVALID_TYPE = 3
    NO_BATCH = 4
    UNKNOWN_ERROR = 5
    GUI_REFUSE_FILETRANSFER = 6
    OTHERS = 7.
    IF SY-SUBRC NE 0.
    WRITE : / 'Unable to upload data'.
    STOP.
    ENDIF.
    LOOP AT IT_DATA.
    PERFORM BDC_DYNPRO USING 'OANEWCON' '0100'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'TOAOM-AR_OBJECT'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=NEW'.
    PERFORM BDC_FIELD USING 'TOAOM-SAP_OBJECT'
    'PREL'.
    PERFORM BDC_FIELD USING 'TOAOM-AR_OBJECT'
    'HRICOLFOTO'.
    PERFORM BDC_DYNPRO USING 'SAPLSJ01' '0200'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'FIELD_VALUES-INPUT(02)'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=OK'.
    PERFORM BDC_FIELD USING 'FIELD_VALUES-INPUT(01)'
    IT_DATA-RP50G-PERNR. "'10002'.
    PERFORM BDC_FIELD USING 'FIELD_VALUES-INPUT(02)'
    '0002'.
    PERFORM BDC_DYNPRO USING 'SAPLOPTM' '0105'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'SAPB-SAPPOOLINF'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=OKAY'.
    PERFORM BDC_FIELD USING 'SAPB-SAPPOOLINF'
    IT_DATA-RLGRAP-FILENAME. "JPG'.
    PERFORM BDC_TRANSACTION USING 'OAOH'.
    clear IT_DATA-RLGRAP-FILENAME.
    ENDLOOP.
    PERFORM CLOSE_GROUP.
    Regards,
    Naveen.

  • Upload Massive Employee Photo into SAP - Archive link - SAP ECC 6.0

    Dear all,
    I try to insert the employees photo in Archive Link (release 46).
    I write a massive report to do a batch input, but I cannot insert the path and the name of the picture.
    Because the BTC don't memory the "call method cl_gui_frontend_services=>file_open_dialog"
    I wrote the folowing report
    *& Report  ZHR_BDC_UPLOADPIC
    REPORT zhr_bdc_uploadpic
         NO STANDARD PAGE HEADING LINE-SIZE 255.
    * include
    INCLUDE bdcrecx1.
    * i n t e r n a l t a b l e s
    DATA : BEGIN OF it_data OCCURS 0,
         rp50g-pernr(8), " LIKE RP50G-PERNR,
         rlgrap-filename(128),
      END OF it_data.
    * s t a r t - o f - s e l e c t i o n
    START-OF-SELECTION.
      PERFORM open_group.
      CALL FUNCTION 'UPLOAD'
        EXPORTING
          filename                = 'C:\PICTURE.TXT'
          filetype                = 'DAT'
        TABLES
          data_tab                = it_data
        EXCEPTIONS
          conversion_error        = 1
          invalid_table_width     = 2
          invalid_type            = 3
          no_batch                = 4
          unknown_error           = 5
          gui_refuse_filetransfer = 6
          OTHERS                  = 7.
      IF sy-subrc NE 0.
        WRITE : / 'Unable to upload data'.
        STOP.
      ENDIF.
      LOOP AT it_data.
        PERFORM bdc_dynpro      USING 'OANEWCON' '0100'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=NEW'.
        PERFORM bdc_field       USING 'TOAOM-SAP_OBJECT'
                                      'PREL'.
        PERFORM bdc_field       USING 'TOAOM-AR_OBJECT'
                                      'HRICOLFOTO'.
        PERFORM bdc_dynpro      USING 'SAPLOA12' '0200'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=OK'.
        PERFORM bdc_field       USING 'OBJID-VALUE(01)'
                                      it_data-rp50g-pernr.
        PERFORM bdc_field       USING 'OBJID-VALUE(02)'
                                      '0002'.
    *---- not exist - begin
    *    PERFORM bdc_dynpro      USING 'SAPLOPTM' '0105'.
    *    PERFORM bdc_field       USING 'BDC_CURSOR'
    *                                  'SAPB-SAPPOOLINF'.
    *    PERFORM bdc_field       USING 'BDC_OKCODE'
    *                                  '=OKAY'.
    *    PERFORM bdc_field       USING 'SAPB-SAPPOOLINF'
    *                                  it_data-rlgrap-filename.      "JPG'.
    *---- not exist - end
        PERFORM bdc_dynpro      USING 'OANEWCON' '0100'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/EBACK'.
        PERFORM bdc_transaction USING 'OAOH'.
        CLEAR it_data-rlgrap-filename.
      ENDLOOP.
      PERFORM close_group.
    Could you help me to understand a different method to upload the pictures?
    Thank you in advance.
    Best regards
    Luca Moschioni

    Hi,
    for uploading the photograph you need to do some customization.
    1. Initial customization
    Execute transaction code OAQ1 and put X in all the boxes.
    Execute t code OAB4 and schedule the job
    Execute t code SPAD and configure an output device
    Execute T code OANR and configure the number range
    Execute T code OAGI and deactivate Print list management system
    EXecute T code SA38 and execute program RAPARAM and check for rspo/archive_format and make sure it should have 2 assigned on it.
    2. Execute t code OAC0 and configure content repository
        Execute t code OAC2 and make your document type
        Assign JPG doc class to your doc type made in OAC2 in t code OAC3.
    3. Now go to transaction code OAD5 and configure your settings
       Come to t code OAWD and upload all your scanned photo to SAP
    I know the procedure is tedious and lenghthy but there is no way out.
    If it helps you then reward it.
    Enjoy
    For further help contact at [email protected]

  • Downloading Employees photos from SAP: ECC6

    Hi Experts,
    There are lot of photos for employees in system. Now client is asking to download the photos.
    How to download those photos.
    OAAD is uploading the photograph similarly is there any Tcode or table where we can download the photos directly
    Thanks in advance. . .
    rgds

    Hai,
    Try the below link, might help.....
    http://sap.ittoolbox.com/groups/technical-functional/sap-hr/download-the-employee-photo-from-sap-46c-version-1551699?cv=expanded
    Regards,
    Yoganand.V

  • List/Report of employees whose photos not uploaded

    Hi Friends
    We have uploaded employee photos in SAP, but few employee photos are missing.  Do we have some option to find list of employees whose photos not uploaded.
    Please help
    Thanks and regards
    Surya

    Hi Surya,
    You may have to write a custom report using FM "HR_IMAGE_EXISTS".
    -> For each employee check if image exist using FM "HR_IMAGE_EXISTS"
    -> If the FM does not return any output then that employee does not have any photo uploaded.
    Hope this helps!
    Thanks!
    Muktar

  • Report - employees with photo/no photo

    Hi Friends
    We have uploaded  only some employees photo, and want to take a report  the employees with photo/no photo, is there any std report available for this purpose (I didnu2019t find), if no, how can we take this report
    please advise
    Regards
    Kiran

    Kiran,
    please try this
    Report of the employees with no photo
    Hope it helps
    No Worries
    KG

  • BADI_IDM_HR_COMMUNICATION update employee data in the SAP ERP HCM system.

    Hi Guys,
    I am using SAP identity management 7.1 and ERP ECC 6.0 EHP4. I amanage to pull data from HCM into identity store and create an account in active directory.
    I am now trying to update employee data in the SAP ERP HCM system with the email address using Business Add-In (BAdI) Implementation BADI_IDM_HR_COMMUNICATION of BAdI definition BADI_EXTEND_IDENTITY.
    I do not know how to call the BADI from SAP identity management.
    Can you please help as i need this to finish the user provisioning ?
    Many thanks

    Hi Scott,
    Thank you very much for your help.
    I am working on trying those steps. I will let you know the result.
    in this document you sent me above  they mentionned "see IC-supervisors-guide.pdf that is delivered within the installation.
    I did a full search on the install and could not find it.
    Have you seen this file before ?
    Many Thanks

  • Employee Mass Photo upload

    Hi All,
    Employee Mass Photo  upload:
    Is there any functional way for doing same like Tcode: OAAD/ We dont need any technical team to involve in this photo load
    Please let me know any thread related to this.
    Appreciating immediate response
    SD

    Hello,
    to mass upload the employee photos please use the program included in note 685520.
    Hope this help
    Sarah

  • How to add Material photo in SAP

    Hi folks,
        Does anybody know how to add material photo to material No?
         As now, when our old spare parts are bad, maintanance user have to find a new one to replace, so they need to provide the material No to warehouse user or purchase dept.
        But now as there are a lot of spare parts in SAP, iIt's difficult for them to appoint SAP material No from layout, so we want to add photo to material No.
    Great thanks!
    Li Jing
    Edited by: Li Jing on Apr 2, 2010 12:14 PM

    When viewing material, from main menu select System > Services for Object.
    You may get a choose object type option, if you do, choose a std way to work e.g. always use Object = Material.
    You'll then get a mini free floating toolbar. Select the far left Icon and Create an attachment. Navigate to your picture and upload.
    To view the picture, select the Icon second left (this is greyed out if there are no attachments).
    You can attach any number of pictures or Word documents etc.
    Regards,
    Nick

  • Employee Referral Process in SAP E-Recruiting- EHP4

    Hi
    Can anyone tell me, is there any standard application which can help the Internal employees in submitting the Employee Referrals from portal?
    Thanks and Regards
    Rosy

    Hello rosy
    I think there is no standard application for this,  however you refer the candidate to the mail id of your company wherein the recruitment team addresses the same as internal references. they administer/ upload the resume as referral and communication happens to you..
    hope this helps
    rafi

  • Employee URL PHOTO ?

    Hi Forum
    I neeed to build a URL string for the photo of the employee, for display in one application portal.
    How can i know this url..  i have the file name of the photo.... 
    Thnks
    Josué Cruz

    Hello Josue,
    Thanks for the message.
    I think URL is created by the system itself.
    You can find out the same by Function module HRXSS_WIW_GET_DETAILS , You can find further information in the spro also.
    Hope the above information should help.
    Best Regards,
    Deepak...

  • Error in uploading employee's photo

    Hi experts,
    i was trying to upload employees photo and other document like applicant's document etc. through OAWD tcode but it gives me the following error.
    Error in HTTP Access: IF_HTTP_CLIENT->RECEIVE 1
    ICM_HTTP_CONNECTION_FAILED
    can you plz give me solution i shall be grateful to you for the same.
    thanks,
    Irfan.

    Ask your basis person to go to transaction SICF Content server and assign system user to content server.
    After that HR works from Transaction OAAD , choose option Store and assign. Select buisness object as PREL ,Document type as HRICOLFOTO and create.In the pop out screen select Employee No. For action 0000,also give date for this and enter.
    It will work from PA30 when you select the same employee no.

  • Sample resume for an sap bi fresher

    hello every one...
    i have completed my masters, and have done a course in SAP BW/BI , now i want to get  a job in this field , so
    can any one please forward me the sample resume format for a SAP  BI cunsoltant as a fresher..

    HI,
    this forum is for the SAP Integration Kit from SAP BusinessObjects. I would suggest you post your question into the SAP BW forum.
    regards
    Ingo Hilgefort

  • Employee Self Service in SAP Enterpise Portal

    Hi all, I would like to ask you a question. It's about process of implementation ESS in SAP EP. We installed SAP EP and SAP ECC 6.0 as well. I am rookie in this field. What do we need to implement ESS in our portal? Which steps do we need to follow? Is it enough to implement CA-ESS in our ERP system and configure SLD directory? Thank you!
    Peter

    Hi,
    You can refer SAP material HR290 System Configuration for ESS
    also hr250..for functional
    WIKI :-
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/erphcm/employeeSelfService
    ESS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    buisness package :- ESS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/5b/76a6d7fd3a4e91bfb422405bf3e04d/frameset.htm
    1.2 :- http://help.sap.com/erp2005_ehp_02/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm
    Configuring ESS :-
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/6a/5bc8a009d54fcaa8e06c826a57253b/frameset.htm
    Configuration of ESS
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/38/e8584c2a664547b60442646bee23b6/content.htm
    HR infotype :-
    ttp://help.sap.com/erp2005_ehp_01/helpdata/en/9a/524035634df01ee10000009b38f889/content.htm
    http://help.sap.com/printdocu/core/print46b/en/data/en/pdf/HRINF.pdf
    Configuring the Business Package for Employee Self-Service (ESS) u2013 mySAP ERP 2004
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    How to Map the Relationship Between SAP Enterprise Portal and Homepage Framework for Employee Self Service (ESS)
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e3a488-cdc2-2b10-209b-e01a0ed934b4
    ESS: How to Add Custom Area Page to Overview page.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0235c40-6351-2a10-a3a3-eb666dfdb407
    How to Create Custom Overview page in ESS
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10ddda33-277b-2a10-5294-9913ee5d698f
    Configuration of ESS u2013 Travel Management (FI-TV)
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0ca7949-af7b-2b10-db80-ed8ca509f573
    How to Import ESS/MSS Configuration in NWDI
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/208974c1-b4c2-2b10-cbb4-eac704d7b707
    How to Customize ESS Screens and Make Changes in Standard Screen through NWDI
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/900e6b9d-3acf-2b10-a2a5-d7b53fcda150
    deploying and downloadinh BP
    https://www.sdn.sap.com/irj/scn/wiki?path=/pages/viewpage.action%3fpageid=31476
    Rewards Point for Helpful answer
    Regards,
    Jigar Oza

  • HR Integration - ability to create Employees in both HR & SAP CRM

    We have a requirement to be able to transfer an HR Org structure holding permanent "Employees" into CRM but we require that for contract/casual employees not to be entered into HR but staight into CRM. The problem is that once CRM has been set up to exchange the HR Org model then BP's of type Employee are no longer available to be created in CRM.
    Is it possible to be able to work around this situation , so that CRM can create BP's with the role of Employee and also to be able to transfer Employee data from HR.

    We have a requirement to be able to transfer an HR Org structure holding permanent "Employees" into CRM but we require that for contract/casual employees not to be entered into HR but staight into CRM. The problem is that once CRM has been set up to exchange the HR Org model then BP's of type Employee are no longer available to be created in CRM.
    Is it possible to be able to work around this situation , so that CRM can create BP's with the role of Employee and also to be able to transfer Employee data from HR.

Maybe you are looking for

  • How to handle finished goods without PP module

    Hi I am a MM consultant and i have been placed in an implementation project where there is no PP module. But client wants to dispatch Finished goods without BOM and PP module but it needs to be captured through MM module. Request your help and how to

  • Response Document:"The invocation resulted in an error: Length  Required"

    Hi sirs, I'm new to OSB. After try some lab test, i try to import a real web service. Web service is http://www.webservicex.net/globalweather.asmx?WSDL I copy whole XML file and create a WSDL file. Then import to OSB and then create a Business servic

  • Sign on page to these forums

    #1 I went to http://forums.verizon.com/ #2 I clicked on Sign On. #3 I was sent a URL starting with HTTP, then a URL starting with HTTPS, and then a URL Starting with HTTP. I am just wondering... Is this happening for anyone else? Please and thanks. P

  • Installing iTunes after registry user permission error

    I'm just going to keep this simple. I ran CCleaner and cleaned the registry, then i ran Glary Utilities to clean up whatever CCleaner couldnt. THEN I downloaded iTunes from the apple website. I used winrar and extracted the install into a folder. I r

  • Sending trigger output to camera whenever motor has stopped

    Hardware: PCI-7340 UMI-7764 In my setup, a servo motor performs a routine of moves, rotating a disk. There are stops in between the moves, during which a camera or a spectrophotometer scans the disk. The routine is defined by moves at different veloc