How to view HR photo from a web-site NOT using ArchiveLink NOR ContentRep.

Hello,
We have a web site where ALL our employees' photos are maintained.
It is accessible via HTTP with one of the parameters is the ID number of the employee.
Is it possible to customize the PA in such a way that it will display the photo in the SAPgui by accessing the photo using a URL ?
For example the following URL:
http://<server_name>:<server_port>/hr_photo/EMPLOYEE_ID.jpg
Please, help.
Thanks and kind regards,
Gil Halevy

I know what you are asking for but sadly, it is NOT possible without customization. I have had 2 past clients with this issue....typically they had the employee photos on some common intranet server in some folder and simply referenced them by "(username).jpg" through some kind of custom employee directory app/web page. Since ESS services, many MSS services, HRAS services, etc. via the portal and then also SAPGui transactions rely on the ArchiveLink config for photos as standard, we had to load all the photos into ArchiveLink and do it the "right" way. It actually is VERY easy to do. The added benefit that the clients like too is that you can have SEVERAL photos (such as photos over time) for a single employee (since there is no longer the dependence on the naming of the image file such as (employee#).gif or (userid).jpg. Sooooo....sorry I don't have the answer you wanted, but hopefully my answer helped.

Similar Messages

  • How can I transfer photos from my pc to iPad using iTunes?

    HOw can I transfer photos from my pc to iPad using iTUnes?

    Connect and select your iPad on the left-hand side of your computer's iTunes, and on the right-hand side there should be a series of tabs, one of which should be Photos - if you select that tab you can then select which photo folders to sync to the iPad. There is a bit more info on this page (though it looks like Apple are doing some maintenance at the moment so the link isn't working). You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - not including photos in a subsequent sync is how you delete them from the iPad (synced photos can't be deleted directly on the iPad).

  • How can I upload photos from ipad onto facebook whithout using adobe flash player which I could not download onto my ipad?

    How can I upload photos from ipad onto facebook whithout using adobe flash player which I could not download onto my ipad?

    http://www.google.com/search?q=upload+photos+to+facebook+from+ipad

  • TS3274 When viewing pick lists from different web sites my iPad2 selects the first choice on the list and loads it without allowing me to pick my option; is there a way to change this default?

    When viewing pick lists from different web sites my iPad 2 (safari) selects the first choice on the list and loads it without allowing me to pick my option; is there a way to change this default?

    With your playhead over the clip in the timeline and that V track's 'track selector' as the only one active...hit the 'f' key.
    This will load the original clip into the viewer at the matching point of the frame in the timeline.
    K

  • How do I get photos from iphone 3G to PC using Vista?

    How do I get photos from iphone 3G to PC using Vista?

    This should explain it.  http://support.apple.com/kb/ht4083

  • I have just purchased the new iPad with the camera connection kit.  I just want to view my photos from my SD card, not import them to the iPad.  Can this be done and how is it done?  Please advise.  Thank you.

    I have just purchased the new iPad with the camera connection kit and want to be able to view my photos full screen and not import them.  Can this be done and how?  Please advise.  Thank you.

    When connecting the Camera Connection Kit to a camera or SD card all you see are the thumbnails of the photos. I suggest you review those, select the photos you might want to see full screen, then import them to your iPad. After viewing them you can always delete them if you no longer want them on your iPad.
    I also suggest Keeping the photos on your camera or SD card until you import the to your computer and back them up to at least one other location.

  • How do I obtain data from a web site???

    I am trying to use information from a sports stats page to automate scoring on a fantasy football site I am developing. After a game the weeks games have completed, I want to be able to extract the data, passing yards, passing TD's, etc. I can pull in a web site, and get to the point where the QB stats start. My question is there a way to strip all the html tags and just be left with the players name and numbers(stats)? I skip down 366 lines to get to the example below. Was thinking maybe, to tokenize using > as the delimiiter, then tokenizing again to strip away the rest of the tag using < as the delimiter. Any suggestions are much appreciated, thanks.
    CODE
    import java.net.*;
    import java.io.*;
    public class WebRipper
    public static void main(String[] argv)
    int count = 0;
    try {
    // Create a URL for the desired page
    URL url = new URL("http://www.fftoday.com/stats/playerstats.php?Season=2006&GameWeek=1&PosID=10&Le agueID=1");
    // Read all the text returned by the server
    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
    String str;
    while ((str = in.readLine()) != null)
    if(count > 366)
    System.out.println(str);
    }// end if
    count ++;
    }// end while
    in.close();
    }// end try
    catch (MalformedURLException e) {}
    catch (IOException e) {}
    }// end main
    }// end WebRipper
    OUTPUT(this is just a example of the first few lines of output)
    <TD CLASS="sort1" ALIGN="LEFT" BGCOLOR="#ffffff"> 1. Donovan McNabb</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">PHI</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">24</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">35</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">314</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">3</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">7</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">0</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#e0e0e0">28.4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">28.4</TD>
    </TR>

    Here is the first string I would want to obtain, can you explain how I would get the player name, then all of his stats. Remember there is ~366 lines of text before you get to this point. Also what or where should I dump the info to?
    Example from the info below I want Donovan McNabb, then all of his stats, excluding all the tags.
    <TD CLASS="sort1" ALIGN="LEFT" BGCOLOR="#ffffff"> 1. Donovan McNabb</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">PHI</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">24</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">35</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">314</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">3</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">7</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">0</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#e0e0e0">28.4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">28.4</TD>
    </TR>
    Pattern p = Pattern.compile("(?<=\\>)[^<]+");
    Matcher matcher = p.matcher(yourwebinfo);
    while(matcher.find())
    yourinfow/ohtmlcode = matcher.group();
    Thanks.

  • How I delete my photos from a 3rd generation nano using version 9.2. there is no photos in library list

    I have a 3rd genation nano using version 9.2. I have no problem syn music, but there is no photos listed in library and I can't delete photos on my IPod. Does any one have a solution to this?

    iTunes does not store folders.  In order to remove photos from your Nano, you remove them from the folder you have your Nano set to sync photos from.  You can view which folder this is from under your iPod's Photos configuration pane in iTunes. 
    Plug your iPod in, select it from under Devices in the left hand pane of iTunes to bring yourself to the iPod's Summary tab. Now look for the Photos tab along the top and select it.  Under this tab, it will show you what folder on your PC your iPod is syncing photos from. 
    Then browse out to that folder and remove the photos you no longer want on the Nano from the folder.  Lastly, resync your iPod.
    B-rock

  • How to view youtube videos from iphone 4 to tv using composite AV cable

    Hi,
    Can any one please help me as to how to view youtube online videos on TV through my iphone 4. I tried connecting the iphone 4 and TV with a composite AV cable however I can hear only the audio but am not able to view the videos.

    It seems so stupid that you cant sort videos by date. Some please tell is that we are idiots and tell us how? And if u simply cant, well a big shout out goes to google for being right on top of things. I hate google! Company is too big and they cant keep up apparently. Sooo much junk on you tube and they cant give us filter and sort options on the most widely used tablet on the market.? Gawd pleeeeze tell me im an idiot!

  • On 8.1, how do I delete photos from camera roll but not from photo stream?

    I recently updated to iOS 8.1 on my 5S and was happy to get camera roll back, but unlike in the past, when I delete a picture from camera roll, it also deletes it from photo stream.  This makes no sense; I want to delete it from my phone while keeping it in photo stream - is there something I'm not doing?  Is it a problem with 8.1?  Any help would be appreciated...thanks.

    You can't. The albums that you created on the iPad do not actually contain copies of the photos, but merely pointers to those photos. If you remove the photos from the camera roll, they will be removed from the iPad. Albums on the iPad are simply for your own organization on the device. Those albums cannot be imported to your computer either, since the photos do not exist in the albums.

  • Move photos from iPhoto to iPad NOT using iTunes

    I need to move photos from iPhoto (MacBook Pro) to a friend's iPad.  Can't use iTunes as it reconfigures her pad sync to my Mac from her computer (a windows machine at her office) and changes everything on her pad.  Tried an app called "Wondershare TransPod for Mac". It didn't recognize the pad (iPad Mini iOS 6.1.2).  Any suggestions??

    This has nothing to do with iPhoto for the Mac except a shared PhotoStream - http://www.apple.com/icloud/setup/ - could do it if you both have the correct hardware and software - otherwise post in the iPad forum -
    LN

  • How to view iPhoto photos from WDTV live

    I use WDTV Live and would ideally like to be able to use it to view pictures via streaming from iPhoto on my MBP.  Is this possible, and if so, how do I do it?
    Thanks

    I doubt it unless it understands the sturcture of the iPhoto library - a good source of support might be http://wdc.com/en/products/products.aspx?id=330
    It sounds like you can export photos and then stream them
    LN

  • Windows 7, Lr5.7 how to view existing photos from a hard drive

    I copy and paste my photos to a hard drive and then bring them into Lr to library and develop
    but the
    I just want to view them and deal with them as i like
    but it wont let me access them from the harddrive
    do they have to be in my c drive or do i have to only view them from my c drive and obviously they are in Lr

    Ctrl-O makes no sense to me given the context of your situation, this is File->Open Catalog
    I want to trf from want drive to another and i will be doing this
    trf? What does that mean?
    trf?
    trf?
    Oh, I think I know, you mean "transfer", don't you?
    Can I make a request? We're trying to help you out, could you please help us out? Could you use proper spelling and complete sentences with proper punctuation and proper grammar, almost as if you were actually trying to communicate with us? Thank you!
    But again, we have no context here. Transfer what? What point in the process is this transfer going to happen? You need to provide a much more complete explanation of this transfer that you want to accomplish.
    upjumps the software
    so I close it in 30 seconds it jumps back up and tries to snaffle the
    file
    There is no upjump function in Lightroom. There is no snaffle function in Lightroom. I have never heard these words, and it would be EXTREMELY helpful if you used more common computer terms to describe whatever it is this is describing.

  • How can I delete photos from camera roll but not from another album??

    When I create a new album and copy some pictures from the camera roll to the new album, they stay on the camera roll, and when I delete one of the copied ones from camera roll it also gets deleted from the new album, how can I avoid this???

    You can't. The way that I consider it to work is that you are effectively just creating a pointer to the photo in the new album (I don't think that the total number of photos on the device increases when you 'copy' them into new albums), so if you then delete the original photo you will also delete all the pointers to it.

  • How can i paste text from a web site to an open office document as rtf?

    i'm running firefox under windows 7. i'm unable to copy text from web pages to the clipboard as rtf formatted data. tried pasting into ms wordpad and open office 3.3 writer. ie allows pasting as rtf text, but i'd prefer using firefox. why is rtf not an available format?

    Curnow 1 wrote the following:  "you should do a tap wait a sec and 1 more tap in the same place and hold the Second tap ;https://www.dropbox.com/s/23whtlt2gizxu27/MOV_1048.mp4?dl=0" Curnow1, this actually worked! Holy Cow, who'da thought?!!Thank you. I gave you a kudo and I marked this as a solution. Thanks again!PS - I'm amazed at how long it takes me to accomplish seemingly simple things with a smart phone. This is my first smart phone ever. I am a former computer programmer and am very PC literate. Still, sometimes I pull my hair out. Thanks again! 

Maybe you are looking for

  • Project Professional 2010 and pwa hangs when opening a linked project from PWA on Project Server 2010

    When I open a linked project in Project Professional 2010 from PWA, Project Professional 2010 hangs with the "Links Between Projects ..." dialog box open.  Unable to move or close the dialog box.  Unable to move or close Project Professional 2010.  T

  • How do I get SQL results to text, columns matching up, with data.

    Hi All, I have written a java application, that connect to a database, make a query, and return a resultset, that is then put into a LinkedList. The main aim of the application is that it should take snapshots of the database at certain intervals, an

  • Zeroes after decimal coming unnecessarily

    Hi ,   I have an input field for amount, for which i have a default value of "20", but it gets displayed as 20,000000000 . i dont want the zeroes after the decimal. The data type is "BCA_TAMNT_BAPI", which i can change as i have to pass it to BAPI. K

  • Listening to an iPod on a different computer

    After years of thinking about it and month of saving I finally purchased my 1si iPod. I went all the way and got the 80gb model with video etc... So far its' working great. My only question is this... Can I plug the iPod into another computer with iT

  • Quicktime Conversion Crash

    Ever since I updated my macs to 10.6.3 I can't use quicktime conversion. Anyone else having issues with 10.6.3 and Final Cut Express 4.0.1?