Employee photo Issue

hi
i use OAAD to upload employee photo.
i use oac0 to add new content Repository.
the main setting as follow:
content Rep: ZA
Document Area: ArchiveLink
Storage Type: R/3 database
Rep,Sub type:Normal
Vesion no:0046
Contents Table : ZSDOKONT1
transfer drctry:  /usr/sap/HTD/Emp_photo
phys. path :/usr/sap/HTD/Emp_photo/
one question:
what function about transfer drctry, because i can't find the path in OS.
when OAAD upload photo data in HR, the data put in cluster table ZSDOKONT1 is right?
two question:
how get the cluster table data to form photo class (JPG), who can give demo code!
thank you very much!

Hi,
Check this Link
http://www.sd-solutions.com/documents/SDS_Employee_Photos_v4.7.html
Regards,
Manoj.

Similar Messages

  • Employee photo upload issue

    Hello Experts,
    i am uploading a photo wih the help of abaper but problem is when i run t code OAC0 and create repository for that
    storage type should be type as R/3 database .but when I  am selecting it is not coming another option is comes HTTP CONTENT SERVER.
    Wiil u plz help me out?
    i used below step
    Now Create the A2 repository with Tcode: OAC0
    While creating the repository, keep the Document Area blank, Storage type as R/3 database, Rep. Sub-type will appear as Normal by default, Version No. as 0046 and in Contents table put 'SDOKCONT1' as the table name.
    Thanks and Regards
    Jaydeep Jadhav

    U can follow the following steps.
    Configuring Employee Photos
    Create Number Range
    A number range must be created for SAP Archive Link.
    Transaction code: OANR
    For this process, additional authorisation is required for S_NUMBER = 03 ARCHIVELNK.
    In u2018Intervalsu2019, create number range 01 from 0000000001 to 9999999999 without the external number flag.
    This is likely to already exist.
    Assign Documents Class
    Document type HRICOLFOTO must exist with document class JPG.
    Transaction code: OAC2
    Table TOAVE
    Document type settings
    Document type HRICOLFOTO must be linked to object type PREL and Infotype 0002.
    Transaction code: SM31
    Table V_T585O (View)
    Set all three columns here to minuses and don't put a flag in the check box.
    Content Repository
    Create a content repository with storage type FILE archive.
    Transaction code OAC0
    IMG: Basis Components --> Basis Services --> SAP Archive Link --> Basic Settings --> Maintain content repositories
    Swap from display to amend. Select a current entry and u2018copyu2019 or just hit u2018createu2019. Then select .
    Then fill in the details as below:
    Choose a two character name u2013 can use Zx (where x is a number) if you wish to use the customer namespace
    Choose the relevant description
    Set DocArea to be u2018Archive Linku2019
    Storage type u2013 set to R/3 Database
    Protocol u2013 leave blank
    Choose Version no. 0046 (or the latest one that is available)
    Contents table u2013 set this to SDOKCONT1
    Basic Path u2013 c:\ (this should be set to where the photos are all held)
    Archive Path u2013 c:\ (this is the area from where the photos are retrieved)
    Output Device u2013 can leave blank
    Enter the path name where the photos are to be loaded from. Note this is for loading only. When the photos are linked into the sap system (see later), actually, SAP takes a u2018copyu2019 and stores it elsewhere. The path may only need to be entered to u2018Arch.pathu2019, but entering to all three doesnu2019t seem to hurt.
    Maintain the required Basis Service
    Transaction code: SICF
    Here you activate the Content Server Interface.
    First you need to create a user profile u2013 with sufficient authorisations to carry out the processes which are done by the system in the background. Ideally this should be a background user for a notional/dummy user. You can use your own user ID after which SAP will warn you that this is a dialogue user account. If you do use your own user ID, change it as soon as you have tested the config. Once you have finished the project, the chances are that your user account will be deleted from the system which will subsequently stop this service from working.
    Double-click on u201Ccontent serveru201D in the left hand tree structure. You can find it under default_host --> sap --> bc --> content server
    Once you have done this click on the refresh icon and make sure that the service is activated. If it is activated, the writing should be in bold (as opposed to greyed out)
    Check which content repository (Archive) is linked to document type HRICOLFOTO in object type PREL
    Transaction code: OAC3
    Table TOAOM_C
    Set the u2018Content Repositoryu2019 field to the one you set up in the step above.
    Note the Ret.per. field is the retention period for the photo in MONTHS. (so the default is 833 years and 3 months!)
    Link photo to personnel number
    Transaction code OAAD
    Click on the Create u2013 Store and Assign button. Enter Business Object PREL and Document Type HRICOLFOTO. Click on create(F8).
    Enter the Personnel Number of the employee you want to link the photo to.

  • Calling infotype 0002 in ALV  report for showing employee photo

    Hi all,
    The requirment from business side is a report in which employees personal data shuold be shown with employee photo, I had tried for employee photo in ALV report but it didnt sucessed, then I went for other solution like calling transaction in ALV report.
    In this case I am calling Infotype 0002 but the issue is that the transaction PA20 is coming with PERNR but I am not able to go directlly to infotype which shows employee Photo,please suggest any solution.
    Thaks.
    JAY

    Hi Jay,
    It is possible. Please refer the syntax for the CALL TRANSACTION
    CALL TRANSACTION ta { [AND SKIP FIRST SCREEN]
                        | [USING bdc_tab [bdc_options]] }.
    You can do a recording till the required page comes & call the transaction accordingly. Hope, you are aware about the same.
    For example, I just had a solution to go to the roles tab in the user profile and I did as below:
        CLEAR wa_bdcdata.
        wa_bdcdata-program  = 'SAPLSUU5'.
        wa_bdcdata-dynpro   = '0050'.
        wa_bdcdata-dynbegin = k_ok.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'BDC_CURSOR'.
        wa_bdcdata-fval   = 'USR02-BNAME'.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'USR02-BNAME'.
        wa_bdcdata-fval   = g_value.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'BDC_OKCODE'.
        wa_bdcdata-fval   = 'SHOW'.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-program  = 'SAPLSUU5'.
        wa_bdcdata-dynpro   = '0100'.
        wa_bdcdata-dynbegin = k_ok.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'BDC_OKCODE'.
        wa_bdcdata-fval   = '=ACTG'.
        APPEND wa_bdcdata TO it_bdcdata.
        g_opt-dismode = 'E'.
        g_opt-defsize = k_ok.
    *** if user click on the User Name, call SU01
        CALL TRANSACTION 'SU01' USING it_bdcdata
                    OPTIONS FROM g_opt.
    Regards,
    Selva K.

  • Employee photo is not displayed in ESS Who's who service

    Hi colleagues,
    Please help our colleague in this issue:
    1) They have implemented correctly the procedure to display photos in PA20/PA30 and the current ITS based ESS who's who is displaying the photo.
    2) They are trying to implement EP 7 with XSS BP 1.0 SP10 bold however in the Who's Who service the employee photo is not being displayed.
    Best regards

    Hi,
    Yo would have check the forum..
    Display Photo in Employee Who is who search
    Kind Regards
    Hari Sankar M

  • Employee Photo not displayed in ESS- Who's Who Services

    Hi All..
    My employee photo upload was successful in Quality System . I can also view the photo both in R/3 employee related facsmiles , header of PA20, PA30. and also the same photo's are displayed in ESS - Who's Who services.
    steps I used-
    OANR, OAC2, V_T585O, OAC3, OAC0 and for manual upload OAAD & OAOH.
    For Mass Upload - program- OA_UPLOAD_AND_LINK
    In production in the same way , all the photo's can be seen in the facsmiles but if I checked in Who's Who..Its coming like a outline with a red cross on top corner but without any photo.
    Kindly give your valuable suggesions..
    Thanks in advance...

    Hi Alok,
    I am also facing the same issue in Prod Environment. If u r having the solution, please share with me.
    I checked in NWA Trace is not registering.
    currently i am facing issue with Employee Photo Under ESS--> Emp Search --> Change Own Data.
    All my Employee Photos are uploaded in ECC, i am able to see from PA30 Header.
    we are having same setup in QA- Environment , all the employee Photos we are able to see from Portal.
    But in Production Environment, We are Having One Central Instance and Three application Instances and configured Load Balancing among Central Instance and Application Instances.
    All the Servers Content Server in SICF t-Code is activated.
    If i login into Prod Portal [either Centeal Instance or Application Instance] some time Employee Photo is Displaying Some time not,i.e No Photo at the top of corner X symbol. If i right click check on that URL, its poiting to the ECC server content server.
    But If Not is Displaying --> Size is Showing Not Avaliable but Demension is Displaying.
    But if Photo is Displaying ---> Both Size and Dimensions are Displaying Properly...
    PHOTO URL Path  When Photo is  Displaying
    http://xxx025.xxx.com:8011/sap/bc/contentserver/490?get&pVersion=0046&contRep=A2&docId=4CA926D07B816545E1000000AC16020B&accessMode=r&authId=CN%3DMRP&expiration=20101016091012&secKey=MIH4BgkqhkiG9w0BBwKggeowgecCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBxzCBxAIBATAZMA4xDDAKBgNVBAMTA01SUAIHIBADFBNVRjAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTAxMDE1MDkwNjMxWjAjBgkqhkiG9w0BCQQxFgQUS%2BicVNGV7i6eSE8TXK5R3umNS%2FgwCQYHKoZIzjgEAwQvMC0CFQCPAZf3C48Lvl6i935mlsVqMw95owIUUJFedqFO2AoLGe6QCHHqBMSObIU%3D
    Type : JPEG Image
    Size : Not Avaliable
    Dimension: 170*200 Pixels.
    PHOTO URL Path  When Photo is Not Displaying
    http://yyy024.yyy.com:8010/sap/bc/contentserver/490?get&pVersion=0046&contRep=A2&docId=4CA927D07B816545E1000000AC16020B&accessMode=r&authId=CN%3DMRP&expiration=20101016091451&secKey=MIH3BgkqhkiG9w0BBwKggekwgeYCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBxjCBwwIBATAZMA4xDDAKBgNVBAMTA01SUAIHIBADFBNVRjAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTAxMDE1MDg1NzQ3WjAjBgkqhkiG9w0BCQQxFgQUAP9cyWhLiOtkp4vwo9KK%2FPQtxWgwCQYHKoZIzjgEAwQuMCwCFDs729ib7fVKbiGKz5CPPd1YHch3AhR7NVgtXJI7ej07GiKMpG06lZPWoQ%3D%3D
    Type : JPEG Image
    Size : 3527 Bytes
    Dimension : 170*200 Pixels.
    We are always opening the Portal with Fully Qualifies Domain Name (FQDN)
    Please suggets the Solution, how to get rid of this Porduction Issue.
    Thanks & Regards
    Ganesh

  • How to maintain Employee photo in ESS who's who without sap_all and sap_new

    Hi ALL,
    Displaying Employee photo in ESS Who's who. it is working but with SAP_ALL and SAP_NEW user profiles.
    My requirment is without SAP_ALL and SAP_NEW user profiles. how it is working where can i maintain authorizations for this issue.
    The parameter i used are as follows:
    Business obj: PREL
    Doc type: HRICOLFOTO
    Personal num: 00000094
    Infotype: 0002
    Photo type: .JPG
    please help me.
    Regaards
    Satya.

    Dear satya .
    Please check the following
    1. Trace with the t.code ST01 and check that object require.
    2. The portal require the following obect:
    S_SERVICE
    S_RFC
    P_PERNR
    PLOG
    P_ORGIN/ P_ORGINCON
    P_HAP_DOC, if you work with Appraisal Document.
    3. Check the table T77S0
    P_PERNR, P_ORGIN, y P_ORGINGCON
    4. Check that you have the roles need for ESS.
    SAP_ESSUSER
    SAP_ESSUSER_ERP05
    SAP_EMPLOYEE_ERP05
    SAP_EMPLOYEE_ERP_13
    SAP_EMPLOYEE_ERP05_xx
    SAP_EMPLOYEE_ERP_13_xx
    5. Check the following notes:
    SAP Note 857431 - ESS: Authorizations and roles for WD services in ERP 2005
    SAP Note 844639 - MSS: Authorizations and roles for WD services in ERP 2005
    SAP Note 1373177 - Back end authorization roles missing in EHP4
    SAP Note 824757.
    [ESS Quick Start|http://www.cogentibs.com/pdf/cogsap08/ESS.pdf]
    Hope is help you.
    Regards
    consultor_ess_mss

  • Employee Photo Options?

    All,
    We are currently using a simple web repository to surface employee photos in SAP and non-sap content. We've configured ArchiveLink based employee photos in our sandbox environment and have an idea how that works. On one hand we'd like to pursue a standard SAP based solution for photos but are concerned that performance could suffer as the biggest consumer of our employee photos is SharePoint and SharePoint Search, sometimes serving up 25-100 photos per page. Does anyone have any experience with performance issues with employee photos in ArchiveLink? The archive.dll will prevent browser caching being a benefit. Any experiences in this area?
    Also, what other options have been explored? Is anyone aware of any non-ArchiveLink based architectures that would be SAP supported, (work with sap content out of the box, but be performance friendly for O-SAP apps)? Anyone have experiences with employee photo architectures with Active Directory based photos or web repository, again that would be SAP supported and work with SAP content out of the box?
    Any insights, links would be greatly appreciated.
    Thanks,
    Doug

    Two SAP "ways" that are supported with standard services (like Who's Who from ESS)...
    1. ArchiveLink (as you are well aware)
    2. Make use of KM from the portal (since KM is basically a content server plus much more)...(*there is a portal equivalent to Who's Who that you can find info on)
    #2 makes it much better from a performance standpoint. Also, SharePoint should be able to utilize the same repository.

  • Employee photo is causing one of our crystal reports to crash

    Good Afternoon,
    I'm currently using Crystal report engine version 9.2.3.884 as part of a Peoplesoft package.
    I have created a new report using the PeopleSoft crystal ODBC driver delivered within the package.
    One of the field retrieved contains the employee photo defined in Oracle DB as a BLOB field.
    When I drag and drop the employee photo into the report, it crashes the application.
    I've first checked if the photo was corrupted using JPEGsnoop.exe. The photo used is not corrupted.
    After running a couple of tests I have found a workaround.
    Take a print screen of the employee photo using snag it tool, copy it into MSPaint, save the photo with the same name, load the new version into oracle and drag the photo into my crystal report.
    This new picture didn't crash the application.
    In order to make sure that the issue was not due to the PeopleSoft ODBC driver, I ran the same test using the Oracle ODBC driver. It returned the same result.
    I would like to understand why the original picture is causing my crystal report to crash.
    Is there any existing fix related to this issue? Otherwise I would like to know how to report this issue to crystal report developers?
    If you want some more detailed information (the employee photo I'm using) please let me know.
    Thanks in advance for your support,
    Best Regards.

    Hi Sean,
    Thanks a lot for your reply.
    That's right it could be related to memory usage. I have already got this issue before, but the message is different. When I'm running my crashing test, I'm dealing with one photo only (6 Ko JPG format).
    When I take a print screen of the photo causing my crystal report to crash, save it as the same format JPG using MS Paint, load it into oracle blob table and re-run the report using the new photo it works perfectly fine.
    Prior to this I made sure that the photo was not corrupted using JPEGsnoop.exe.
    If you want to I can give you the two JPG samples I'm using and a detailed explanation of the manipulation I'm doing.
    Thanks,
    Best Regards.

  • ESS Personal Profile - Employee photo show as 'x'

    Dear experts
    I'm trying to find a conf. table the difference between Dev & QA to display employee photo in ESS personal profile.
    An image like hide photo (Not a actual employee photo) is display in Dev portal where as it show 'X' in QA. I'm trying to find the conf. table to show like hide in QA rather than 'x'. Attached the screenshot of two environment. Highly appreciate your input
    Thanks
    Babu

    run the report RPTMC_INDEX_EE_PIC_URL_TO_INDX  once
    EHP6 MSS Photo Issue
    EHP6 MSS Photo Issue
    1677344 - Poor performance when reading the photo URLs   ------ kindly do as per the steps  mentioned in this note
    1618938
    chk in  se11 > T77TMCPIC_URLS > click on display and do as below ...Activate Content server in SICF once and repeat .....can you check in  t-code ----CSADMIN  ......content repository a2 is runnning or not in overview chk once
    next click on below button and log off and log -in and refresh the team view in portal

  • Employee photo in ESS

    Hi,
    We have resently implemented ESS in our organization.We want to show  the employee photo in portal.I am able to do this at R3 end.In ifo type 0002 we have link the personal number with employee photo.
    Can you ppl plz suggest that how can we do it in ESS also.
    Regards

    Hi manoj,
    Thanks for the reply.I have checked the link given in your reply.That post actually dealt with the procedure of uploding the employee photo and displaying it in R3 through transaction PA20/PA30.
    That part i have already done there is no issue with that we are able to see the employee photo in info type 0002.
    Now we want to display the photo of employee in portal/ESS. Can u plz suggest abt it.
    Regards

  • Asking ECC System Credentials while Displaying Employee Photo in CODService

    Hello All,
    Currently we are having requirement like , need to display the employee Photo from Portal.
    Already all the Employee Photos are Uplaoded in the backend, i can able to see employee photos on Hearder in PA30.
    While Displaying the Employee Photo from the Portal using COD Service, it asking the ECC System Credentails.
    What Configuration steps need to follow to display the Employee Photo in CHange Own Data Service from the Portal with out asking the backend system Credentails..
    Plz Share some inputs to fix the issue..
    Thanks in Advance
    Adapag

    Hi Pramod,
    Thanks for the reply, we stored all our employee photos on  ECC System Only...
    If i enter the Personal No: in PA30, i am able to see the EMployee Photos on the Header..
    But While accessing the COD Service from the Portal, asking ECC system credentials to display the photo.. If i am providing the Credenials Employee Photo is displaying .. other wise Blank Image Displaying...
    Siddarth suggested its due to SSO problem, if its sso issue, how come i login into portal without any errors currently we are using ABAP UME both Portal and ECC Login details r same...
    Please Suggest me how to fix the issue...
    Thanks in Advance
    Adapag

  • Displaying Employee Photo thru Web Service

    Hi,
    I am having a requirement of displaying the employee photo's thru weservice, in asp.net application.
    Is it  possible?
    If anybody knows..
    Guide me to close this issue...
    Thanks & Regards,
    Balajee Jeyaraj .

    Hi Pramod,
    Thanks for the reply, we stored all our employee photos on  ECC System Only...
    If i enter the Personal No: in PA30, i am able to see the EMployee Photos on the Header..
    But While accessing the COD Service from the Portal, asking ECC system credentials to display the photo.. If i am providing the Credenials Employee Photo is displaying .. other wise Blank Image Displaying...
    Siddarth suggested its due to SSO problem, if its sso issue, how come i login into portal without any errors currently we are using ABAP UME both Portal and ECC Login details r same...
    Please Suggest me how to fix the issue...
    Thanks in Advance
    Adapag

  • Unable to see the employee photo in team view

    Hey experts, we have been handling with an issue almost two days and still cannot find any solutions, in mss service of homepage the employee photo is not visible as you can see below, i know that there was a thread about the same issue and we did what they told and what the right answer was but still has the same problem, * we run the program that generate the url * all of our reletad service is active * we apply a note (employee photo not updated).
    do we need to nakisa add on to see the photo or anything else that we can do,
    Thanks in advance.
    answers will be rewarded.

    hi ,
    i think ur missing some steps in the note as chk in  se11 > T77TMCPIC_URLS > click on display and do as below ...if u follow as per screen shot below ...wait for some other experts reply on this....
    next click on below button and log off and log -in and refresh the team view in portal

  • Use of ArchiveLink for Employee Photos - Performance

    All,
    We are currently using a simple web repository to surface employee photos in SAP and non-sap content. We're thinking about switching to ArchiveLink. We've configured ArchiveLink based employee photos in our sandbox environment and have an idea how that works. On one hand we'd like to pursue a standard SAP based solution for photos but are concerned that performance could suffer as the biggest consumer of our employee photos is SharePoint and SharePoint Search, sometimes serving up 25-100 photos per page. Does anyone have any experience with performance issues with employee photos in ArchiveLink?
    Thanks,
    Doug

    Hi.
    The volume will be a challenge, if 0BPARTNER is the ONLY restriction in the query, but is that the case?
    An alternative is to grant access based on either a custom grouping of 0BPARTNER into few categories or a grouping into fxTerritory, like you mention. You can do this in a separate cube for users who will have access to large numbers of business partners anyways, and use just 0BPARTNER in another cube for users who will have few business partners. If your users can not be split like that, fx because you also have users with not really many, but more than a few, etc,  maybe you can use cubes partitioned by Territory or something else, for users who DONT have many business parterns. Like that, you reduce the "threat" from the volume
    br
    Jacob

  • Report on employee photo upload [HRICOLFOTO]

    Hi Experts,
    Have gone thru many posts regarding photo upload, but is there any report or table which gives PERNR wise details for all the uploaded photos?
    Basically I want to know for how many employees photos have not been uploaded or the other way will also do.
    Have checked content repository table SDOKCONT1 but not of much help.
    Please help on the issue.

    Hi,
    Run report OAADMILI via SE38 for the relevant content repository.
    There restrict the output to PREL object.
    There you'll see all the personnel numbers who have a photo in the SAP Object ID column (along with the infotype number e.g. XXXXXXXXYYYY where XXXXXXXX is the personnel number and YYYY is the infotype)
    Regards,
    Dilek

Maybe you are looking for