ICab - HomePage Photo Albums/Slideshows

I've been trying iCab recently and have encountered a problem with HomePage albums and slideshows. (No problems in WaMCom and IE.)
iCab support replies have been helpful but produced no solutions.
Clicking on a HomePage photo album thumbnail opens the slideshow window but no picture loads, the activity wheel just spins. The browser then 'half stalls': windows can be closed and menus are available but no page can be loaded via link or URL. This happens using all identities.
However if I click on 'Start Slideshow' that works OK with identity set to iCab, Firefox or Safari. But as Opera or IE the slide show starts, but with no picture, just a tiny frame where the pic should be.
Broadband, no firewall. iCab memory set to 75000.
Any thoughts, please?
Michael

Great photos!
The slideshow works with iCab 3 (OS X and Classic), and iCab 2.9 (using Classic).
Clicking thumbnails works with iCab3 (OS X) and iCab 2.9 in Classic, BUT clicking thumbnails doesn't work with iCab 3 using Classic. (I'm not booting into OS 9 to check this out;-) This was with iCab using the default preferences.
I'll double-check this in the morning with the non-public iCab ß423. If it still doesn't work, I'll email Alex. It's probably JavaScript related, but I believe the InScript engine has been updated since the last public beta, so I'll have to check that out first.
I'll post back.

Similar Messages

  • IWeb and Photo Album/Slideshows

    My apologies if this topic has been done before. But I didn't find anything specific to answer my question here on the board.
    For starters, I'm new to iWeb. Actually, aside from a .MAC account I'm new to web design period. I was wondering if someone could walk me through the process of adding a slideshow or photo album to my yet to be published iWeb site.
    Thanks in advance,
    John Hansen
    1.67GHZ 15 Powerbook G4 w/ 128Mg VR 10.4.1   Mac OS X (10.4.3)  

    HI John,
    The iWeb support site is a great place to start learning.
    Don't forget to click on the iWeb tutorials "start here" link.
    Have fun!
    http://www.apple.com/support/iweb/

  • Flash Prof. CS5 simple photo album/slideshow template

    I am trying to use the "simple photo album" template that comes with Flash Prof. CS5. I have it working except I want it to play by default. The actionscript that came with the template is below (in blue), but if I set var autoStart:Boolean = true; I get the following error and the controls do not work:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at nt_fla::MainTimeline/fl_startSlideShow()
    at nt_fla::MainTimeline/frame1()
    // USER CONFIG SETTINGS =====
    var autoStart:Boolean = false; //true, false
    var secondsDelay:Number = 2; // 1-60
    // END USER CONFIG SETTINGS
    // EVENTS =====
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "play")
      fl_startSlideShow();
      playPauseToggle_mc.gotoAndStop("pause");
    else if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
    fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
    fl_prevSlide();
    var currentImageID:Number;
    var slideshowTimer:Timer;
    var appInit:Boolean;
    function fl_slideShowNext(evt:TimerEvent):void
    fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_pauseSlideShow():void
    slideshowTimer.stop();
    function fl_startSlideShow():void
    slideshowTimer.start();
    function fl_nextSlide():void
    currentImageID++;
    if(currentImageID >= totalFrames)
      currentImageID = 0;
    gotoAndStop(currentImageID+1);
    function fl_prevSlide():void
    currentImageID--;
    if(currentImageID < 0)
      currentImageID = totalFrames+1;
    gotoAndStop(currentImageID-1);
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    } else {
      gotoAndStop(1);
    function initApp(){
    currentImageID = 0;
    slideshowTimer = new Timer((secondsDelay*1000), 0);
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    if(appInit != true){
    initApp();
    appInit = true;
    // END FUNCTIONS AND LOGIC
    Does anyone have any idea how to fix this so that the slideshow starts automatically and stops when the pause button is clicked?
    Thanks,
    Lisa

    I finally got it to work, but had to edit the action script because it seemed to have a logic error. Here is the action script I finally used; maybe this will help you:
    // USER CONFIG SETTINGS =====
    var autoStart:Boolean = false; //true, false
    var secondsDelay:Number = 3; // 1-60
    // END USER CONFIG SETTINGS
    // EVENTS =====
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "play")
      fl_startSlideShow();
      playPauseToggle_mc.gotoAndStop("pause");
    else if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    fl_prevSlide();
    var currentImageID:Number;
    var slideshowTimer:Timer;
    var appInit:Boolean;
    function fl_slideShowNext(evt:TimerEvent):void
    fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_pauseSlideShow():void
    slideshowTimer.stop();
    function fl_startSlideShow():void
    slideshowTimer.start();
    function fl_nextSlide():void
    currentImageID++;
    if(currentImageID > totalFrames)
      currentImageID = 1;
    gotoAndStop(currentImageID);
    function fl_prevSlide():void
    currentImageID--;
    if(currentImageID <= 0)
      currentImageID = totalFrames;
    gotoAndStop(currentImageID);
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    } else {
      gotoAndStop(1);
    function initApp(){
    currentImageID = 0;
    slideshowTimer = new Timer((secondsDelay*1000), 0);
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    slideshowTimer.start();
        playPauseToggle_mc.gotoAndStop("pause");
    if(appInit != true){
    initApp();
    appInit = true;
    // END FUNCTIONS AND LOGIC

  • How to convert iWeb photo album slideshows into iMovies?

    iLife '06/iMovie HD 6
    I have some slide shows that would probably be much more interesting if I converted them into iMovies with transitional effects, music, etc.
    I bought iLife '06 and Tiger in July, '06 and now have my website up and running but aside from making an iMovie out of my footage taken with my Sony digital video camera recorder (DCR-TRV 11) I want to make those still slideshows more interesting.
    My website is: http://web.mac.com/lorna6
    You'll see that I have several slideshows with still photographs.
    I have SEEN iMovies which are made with stills, so I know that it is possible; I just don't know how to do it, and have never worked with iMovie.
    If you know of a site (other than the Apple tutorials) that is good for teaching beginners, please, could you let me know? Thank you.
    Lorna in Southern California

    Oh oh. I just now found an Apple tutorial that mentions using photos with iMovie. I think that I might have found what I was earlier requesting. Sorry sorry. Lorna in Southern California

  • Slideshow photo size in "My Album" slideshow

    I recently created several albums in "My Albums" (love the look!), but I am puzzled at how small the photos are when I view them as a slideshow. They are approx. 1 3/4" x 1 1/2", compared to the slideshow in "My Gallery" where the photos about fill the screen. (And there those awful annoying shadows below each photo making my subjects looking like they are deformed with extra legs etc). Is there something that I am doing wrong? Did I miss something when I was setting up the pages/albums to make the slideshow photos different sizes? Right now the photos that appear in the album covers are even larger than those in the slideshow.
    Geraldine

    Hi OT,
    Thank you for your input. Before I read your reply last night, I went through some of your old postings and did find a couple resolutions. You replied to a post from snipa (Norway), Aug. 22, 08, subject: "Comments on web sits (sic) photo" - then Mermaid 1632 asked a similar question - she wrote Oct 14th. You replied telling Snipa and mermaid on how to add the comment button to a website. In that reply you showed a picture of the photo/slideshow inspector options. So I went to that setting in my iWeb And there I found that the setting for large photo in slideshow was not ticked. It also gave me an option to unclick that awful shadow option. So I went to one of my pages and did the clicking and unclicking. I thought that would solve my problem. The shadow option worked fine, but the option for large photo, even though it did enlarge the photo somewhat, it still was not the full screen size that it used to be. It is now approx. 4 1/4 x 3 1/4 - whereas last night when I wrote it was only 2 1/2 x 1 3/4.
    You asked about my browser - I use Safari 3.2.1, and Firefox 3.0.5. I cleared the cache in both - that did not make a difference. I have a very old version of IE - so that would not even load the Gallery pages, so no point in even considering that browser. I had a friend with a PC and IE to check and she said that the photos in slideshow (that I had not changed) were still very small.
    Let's say that I settle for the 4 x 3 inch photos in slideshow it looks like that I am going to have to edit each photo page and make those changes one at a time. What do you think? Is there any way I can make the same changes on all the photo pages in one editing, rather than doing one at a time?
    I appreciate your help. That old posting gave me two great suggestions!
    Geraldine

  • Create Photo Album or Slideshow

    Hi all,
    Several years ago I found a tool in an older dreamweaver or somewhere in cs4 or 5 - to easily create a page filled with thubnails and when you clicked on one it would open the larger version (Photo Album)...
    I can't seem to recall how I did this ... do they still have something like this for cs 5 or cs 6?

    Hi revdave,
    you will find some of them here:
    http://www.adobe.com/cfusion/exchange/index.cfm?searchfield=+spry+image+slideshow&search_e xchange=3&search_category=-1&search_license=&search_rating=&search_platform=0&search_pubda te=&Submit=Search&num=10&startnum=1&event=search&sort=0&dummy_tmpfield=
    BUT, there are tons of othrs here e.g.:
    http://www.malsup.com/jquery/cycle/
    http://floatboxjs.com/demo
    http://lokeshdhakar.com/projects/lightbox2/
    http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
    http://www.1stwebdesigner.com/css/57-free-image-gallery-slideshow-and-lightbox-solutions/
    Hans-Günter

  • How make a slideshow that mimics a photo album (book)

    For the past year I've been using FCE to make simple slideshows and I want to attempt something a bit more difficult now (but not too hard <grin>).
    I want to create a slideshow that mimics looking through a photo album. On each page of the "book" you would see some number of photos, then the page would turn. Does this seem like a good learning project?
    I can visualize what I want, but there are some things I can't figure out how to accomplish.
    1. How can I create a "book cover" and have it open. Book covers open stiffly, so a page peel effect isn't quite the right thing.
    2. For the "pages", I want photos on a background that looks like paper. Then the background needs to turn - not just the individual photos. How could I make a background? Oh, and some of those "photos" will be video clips. Does that make any difference?
    Any suggestions would be appreciated. Pointers to applicable tutorials are especially welcome.
    thanks in advance,
    -Mike

    Hi(Bonjour)!
    Try this workflow:
    In Photoshop, create a template document with a scanned paper texture on background. Start with a mid size document like 1066 X 800 (it fits 4:3 aspect ratio) pixels frame size. Add scaled down photos on layers to compose the presentation on the page itself. You can event add some black paper corners on each photo. Flatten the PSD document and save it as PICT or PNG. Repeat this process for each desired page of your slide show and create a cover for the album.
    Import all these documents in FCE and edit your stills in timeline with correct duration. Add a simple page peel transition(with small curl value) or a horizontal barn door transition at each edit, and voilà.
    Michel Boissonneault

  • How do I create photo album folders or files ? As it stands, ihave some 500 pics saved but only want to play some of them for a slideshow presentation?

    How do I create file folders or photo albums to save photos in specific designated area for subsequent playback as a slideshow. As it stands, I have approx 500 photos in new I Pad 2, however need to only play about 30 in a slideshow. Thank you

    For the Photos app you need to put the photos into different folders on your computer and then sync those folders to the iPad - you need to sync all the photos that you want on the iPad in one go, as only the most recent photo sync remains on the iPad. There are third-party apps that you can copy photos to on the iPad which I think might allow you to do slideshows, but I havn't used any of them.
    With iOS 5 in the Autumn you will (assuming that it makes it to the final release) be able to (from http://www.apple.com/ios/ios5/features.html#photos) :
    Even organize your photos in albums — right on your device.

  • Can't assign specific music to specific photo albums in slideshow

    I've tried and tried but apparently there is no way to assign specific music to specific photo albums. I had spent some time before getting apple tv arranging my photos into "smart albums" in iphoto and assigning appropriate music to each of them. Unfortunately apple tv does not look at the settings in iphoto to determine how it will display photos. All i can do now is select shuffle music under the slideshow settings in apple tv and whatever music will play is always a mystery.
    This is a big problem in my opinion because, for example, who wants to listen to Green Day's "Basket Case" when viewing baby pictures, or Jimmy Buffet's "Margaritaville" when viewing pictures of my kid going sled riding!!

    Hi pc2macconverted,
    You can sync specific music to a slideshow in two ways, the first is to make a slideshow in iPhoto and attach the music you would like. Remember to sync the slideshow and the music. The second option is to create and sync playlists of music that you would like for your albums and then in the photo settings you can choose the playlist for the music playlist that you would like.
    Cheers,
    John

  • Lost photo album on iWeb

    On my .Mac homepage I have two photo albums. The first, at http://homepage.mac.com/jnelms/PhotoAlbum2.html, I can locate and edit. The other, at http//web.mac.com/jnelms/iWeb/Site/HAG.html, I cannot locate, nor edit. If you have any suggestion where it is hiding, I would appreciate hearing from you.
    MacBook   Mac OS X (10.4.7)   2 Mghz Intel, 2 GB RAM, 120GB HD

    Thank you for the information, James. I did find the files in the location you mentioned; however, there does not appear to be any way to edit the captions under the pictures, as I need to do. There are two files for each picture, one labeled (for example) "DSCN0064.jpg" and another "DSCN0064_framed.png." The only place captions are shown is in the file "slideshow.html," which does show the entire slideshow, but does not permit editing. Any suggestions?

  • HT201317 I have a MobileMe account and have shared many MobileMe Galleries.  MobileMe Galleries are going away in June.  How can I share a photo album with others using iCloud?

    I have a MobileMe account and have shared many MobileMe Galleries.  MobileMe Galleries are going away in June.  How can I share a photo album with others using iCloud?

    The new ios version of iPhoto allows sharing.  Here's a blurb from Apple's web site:
    There’s the old way of creating photo galleries, then there’s the iPhoto way. Select a group of photos and iPhoto automatically flows them into a beautiful journal that’s fun to personalize and share online. Touch a photo to make it bigger or smaller. Or drag it to a different spot on the screen. iPhoto adjusts the page around whatever you’re doing, so your journal always looks great. You can even add captions, maps, dates, and weather — giving family and friends the big picture at a glance.
    More things you can do:
    With iPhoto, there’s more than one way to share a photo. Post pictures directly to Facebook, Flickr, or Twitter. Play an impromptu slideshow on your iPad or iPhone. Or stream photos to your HDTV to give your big moments room to shine.
    I have not used ios version of iPhoto to share "journals" and I'm not sure this is part of iCloud or not.  You'll have to do a google search on "ios iphoto" and read up of this journal thing.  As far as I know, this is the only way of sharing photos.  I'm not sure whether other friends use a browser to view these journals or whether they need something special.  Any way - search around to find answers.

  • Is there a way to transfer all of my photos in my iPhone's Photo Albums and Events to my new macbook?

    My MacBook's hardrive failed. My only backup for iPhoto is on my iPhone. I bought a new MacBook Pro and I'd like to restore all the Photo Albums and Events from my iPhone. Is there a 3rd party app that is capable of this?
    I downloaded iMacsoft to transfer music, books, etc. But it will only transfer photos in my iPhone's Camera Roll.

    Are these photos on your iPhone?  Can you actually see them?  If so, then iCloud should see them as well.  All else fails, plug in the iPhone via a USB cable into the new Mac and iPhoto will launch showing you what photos you can import in.
    Again, the old photos in question MUST be on the iPhone (i.e. you at one time sync'd your entire photo library to your iPhone, which to my knowledge also makes it available to the iCloud backup if you have enough room).
    No, it is not easy to get synced photos back to the Mac. An iCloud backup does not include the synced photos nor the Photo Stream photos. See:
    iCloud: Backup and restore overview
    One way to save the synced photos back to the Mac is to save them to the Camera Roll. This requires extra space on the device and much tapping, because it is not easy to save all photos at once to the Camera Roll. It would be easier with iPhoto iOS. Here you can share the the synced photos to iTunes and then save them using iTunes photo sharing on your Mac. In iPhoto you can select ranges of photos to share - much less tapping required.  See:  http://help.apple.com/iphoto/iphone/2.0/#blnk7d8f763e
    Use your photos in any app by saving them to the Camera Roll.
    Import photos directly into iPhoto or Aperture on your computer.
    Save photos to your computer using iTunes.
    Save photos to your computer using iTunes
    Connect your iOS device to your computer.
    Tap a photo, album, event, web journal, or slideshow and tap > iTunes.
    Tap Selected, or change the photos you want to save (if you are saving a slideshow skip to step 4):
    Select different photos: Tap Choose Photos, tap one or more photos, and tap Next.
    Select a range of photos: Tap Choose Photos, tap Range, tap the first and last photos in the range, and tap Next.
    Select all the photos in an album or event: Tap All.
    In iTunes, click the button for your device and click Apps at the top of the window.
    Below File Sharing, select iPhoto (in Apps).
    Select the Shared Photos folder under iPhoto Documents.
    Click Save To and select the location on your computer where you want to save the items.
    To view your photos, go to the Finder and look in the location you selected above.

  • Picture won't show up in my Photo Album; big white blank rectangle space

    There is a picture of Sammy Lee, the Olympic Gold Medalist diver, that refuses to show up in one of my Photo Albums on Safari.
    I have done everything that everyone has taught me. I have cleared the cache many times. I have clicked onto a site ourside my own site (actually Allyson's site about the tips for iWeb). I have published all to .Mac. The photo still shows up as a white rectangular space.
    It is not like other times when a photo doesn't show up, because in those cases, there is a question mark in a blue box. With this case, there is no question mark inside a blue box. There is only a white space where the picture would be/was.
    I even went back to iPhoto and put in another copy of that picture, all to no avail.
    QUESTION:
    What else can I do to make the picture show up on my Photo Album page?
    — Lorna in Southern California

    I think it could be the comma causing the problem, actually. Here is a line from the slideshow.html file
    new SlideImage('http://web.mac.com/lorna6/iWeb/Lorna%20x%203/395844EC-4CEE-4545-8AD 3-7E66F83391ECfiles/W%3ASammy%20Lee,%20swimmer2.jpg', 321, 450, 'With Sammy Lee, Olympic champion diver & Gold Medalist. He went on to coach Greg Louganis. At L.A.U.S.D., Office of Bilingual Instruction (It no longer goes by that name.) Mid-80’s'),
    The colon has transferred ok, but there are a lot of commas used in the code to call up the photos in the slideshow and the comma in the file name (and, possibly, the caption) could be causing some problems.
    I don't know enough about this to know for sure (need to consult a higher source...), but it sure couldn't hurt removing it to see if it helps.

  • Photos and photo albums disappeared, but iPhoto library still has 60 GB.

    Photos and photo albums disappeared, web gallery titles remain but show (0). iPhoto library still has 60 GB size. How do I retrieve photos, events and albums. Thanks in advance.

    Are you getting an "!" in the window when you try to edit a photo. The "!" means that the library has lost the file path to the original file. This happens when there has been an interruption to iPhoto while it is writing to it's database file, Library6.iPhoto. Moving, renaming files or folder inside the library package while in the Finder is another way you can get that indication. Try the three fixes below in order as needed:
    1 - launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select the first three options.
    2 - rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    1 -Download iPhoto Library Manager and launch.
    2 -Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    4 - In the next window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: It may take some time to create the new library if you have a lot of photos. Report back on how long it took and how many photos you have in the library so we can give other users an idea of how long it may take.
    3 - start over with a new library and import the Originals folder from your original library as follows:
    Creating a new library while preserving the Events from the original library.
    Move the existing library folder to the desktop.
    Open the library package like this.
    Launch iPhoto and, when asked, select the option to create a new library.
    Drag the Originals folder from the iPhoto Library on the desktop into the open iPhoto window.
    This will create a new library with the same Events as the original library if you have the Finder checkbox unchecked in the Events preference pane.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Error message when I try to publish an iWeb photo album with audio to Mobileme:

    I get the following error message when trying to publish a photo album with audio from iWeb to Mobileme.  I've checked my account and I have plenty of available space on Mobileme and have logged in there.
    An error occurred while publishing file “/private/var/folders/qg/qg-Qwo-82RWdDU+8ZNhusU+++TI/TemporaryItems/com.apple.i Web_9121_TEMP_344183369_3/sites/Site/Grand_Canyon_11_Slideshow_part_1_2_files/or iginal_2.jpg”. Try publishing again later.
    Is there a problem with my photos or other content (I've added some songs to play in the slideshow)
    Dan H.

    First see if you can publish your site to a folder on your hard drive.  You can select the folder by clicking on the site's folder in iWeb and using the Publish To: menu.
    If that's successful try the following:
    delete the iWeb preference files, com.apple.iWeb.plist and com.apple.iWeb.plist.lockfile, that resides in your Home() /Library/Preferences folder.
    go to your Home()/Library/Caches/com.apple.iWeb folder and delete its contents.
    Click to view full size
    launch iWeb and try again.
    OT

Maybe you are looking for

  • Data reconciliation field in rso2

    Hello BW Experts, What is the purpose of the data reconciliation button in the rso2 Suggestions appreciated. Thanks, BWer

  • How change default language in Safari 5.0.5 for Windows?

    My home system (Windows Vista Home Premium SP1 32bits) is in English, but I want Safari working in Brazilian Portuguese. At work, I installed Safari too, with the same "setup.exe" file, and it works in Brazilian Portuguese without any further configu

  • Show previous requisition requests link is missing in MSS.

    Hi All, In Manager Self-Service ->Recruiting->New Requisition Request->Request to fill postion. Here link show previous requisition requests missing. How to enable the link? This link is missed after portal is upgraded. Regards, Srinivasu.Y

  • EXIT_SAPLACC4_001

    Hi For G/L Account posting using Inbound IDocs, I am using the Function BAPI_ACC_GL_POSTING_POST. For this, I have seen that there is a user exit available, namely EXIT_SAPLACC4_001 (ACBAPI01). When I checked, I could not see that the exit triggers d

  • Ovi chat IM (gtalk and msn not available)

    hello i have a X3-02 but lately i have a problem with the Ovi chat . Gtalk and Msn messenger are not available. anyone no why?