Images stop appearing in SRM Catalog

Hi,
We have a problem thet images in the SRM Catalog stop showing.
The images are loaded in to the MDM Repository, (no hyperlinks)
The end users can see some of the pictures but some are just blank (no red cross even)
We are now using SAP MDM 7.1 SP09 and SRM 7.0 EHP2
Do you have any ideas how this problem can be solved?
Many thanks in advance!
Best regards,
Kim

Hi Sudha.
PDF's are supported by SRM-MDM Catalog as a hyperlinks.
Try attaching the PDF as a hyperlink for a record.
- Select a record-> Naviagate to Hyperlink Qualified Lookup->Add a new entry ->Select type as Link->Provide the PDF URL and other details->Save the record.
you can also do a mass upload of the PDF to a repository.
Now configure the hyperlink column to the UI and launch the catalog and check, you will find the link of the PDF where you can
open it by clicking the hyperlink. Let me know if you face any issues.
Regards
Bala

Similar Messages

  • How can I stop these weird inert file images from appearing on my desktop?

    Inert file images keep appearing and cluttering up my desktop with names such as: 3FV2JEQy.JPG.part;  9wA_fwAk.JPG.part;  MpxSEQgY.jpg.part   etc.
    It seems to me that they are related to viewing photos from emails with "Preview". (They could be photos from iPhoto also. I cannot be certain).
    My desktop fills up with these weird inert file images and I have to go thru and delete them to clear the mess on my desktop. How can I stop this from occurring??
    Many thanks.
    Running Mavericks 10.9.1 on mid 2010 MacPro

    Strange Files Appear on Desktop  and I Have No Idea Why or What They Do

  • SRM Catalog Download

    Hi all
    I need to download the full SRM Catalog structure together with all details from SRM to logcal XML file.
    I've checked all around here on SDN but have not comed up with a clear solution...
    One of these were : http://forums.sdn.sap.com/thread.jspa?threadID=1217084
    My concern is more or less UNICODE..
    So far I have tested this
    - I have a deep structure with all the data about the Catalog structure <t_dyntable>
    - then I try to convert this contents into UTF-8. By doing this I will get some of the special characters to show up as they should ( it think one of those were .amp that were successfully translated to &)
    - Then CALL TRANSFORMATION were done to get the XML-file
    Below you can see some different way's I have tried... Trying to use XSTRING.... and download via type BIN for GUI_DOWNLOAD. My starting point was with UTF-16, but with that I could not read the XML file at all - With UTF-8 I can read it but still as soon as some kind of special sign shows up the XML-editor complains about - Not allowed letter. Please help
    Best regards
    Henrik
    data: g_ixml type ref to if_ixml,
            g_stream_factory type ref to if_ixml_stream_factory,
            g_encoding type ref to if_ixml_encoding,
            ostream type ref to if_ixml_ostream.
    data: v_encoding TYPE abap_encoding.
    DATA xml_xstring TYPE xstring.
    constants: encoding type string value 'utf-8'.
    v_encoding = encoding.
    g_ixml = cl_ixml=>create( ).
    g_stream_factory = g_ixml->create_stream_factory( ).
    g_encoding = g_ixml->create_encoding( character_set = encoding
                                                               byte_order = 0 ).
    ostream = g_stream_factory->create_ostream_xstring( string = xml_xstring ).
    ostream->set_encoding( encoding = g_encoding ).
              CALL TRANSFORMATION Z_TRNS_CCM_TO_MDM_TRY
              SOURCE ITEMS = <t_dyntable>
              OPTIONS xml_header = 'FULL' 
              RESULT XML ostream. 
    *   Convert XString to String
        data: loc_conv type ref to CL_ABAP_CONV_IN_CE,
                loc_xstring type xstring,
                loc_string type string.
        CALL METHOD CL_ABAP_CONV_IN_CE=>CREATE
          EXPORTING
            INPUT       = xml_xstring
            ENCODING    = 'UTF-8'
            REPLACEMENT = '?'
            IGNORE_CERR = ABAP_TRUE
          RECEIVING
            CONV        = loc_CONV.
        TRY.
            CALL METHOD loc_CONV->READ
              IMPORTING
                DATA = xml_string.
          CATCH CX_SY_CONVERSION_CODEPAGE.
    *-- Should ignore errors in code conversions
          CATCH CX_SY_CODEPAGE_CONVERTER_INIT.
    *-- Should ignore errors in code conversions
          CATCH CX_PARAMETER_INVALID_TYPE.
          CATCH CX_PARAMETER_INVALID_RANGE.
        ENDTRY.
    data xstring type xstring.
    types: BEGIN OF ldata,
    f(5000) type x, "(2556) type x,
    END OF ldata.
    data table type table of ldata.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = xml_xstring
    * APPEND_TO_TABLE = ' '
    * IMPORTING
    * OUTPUT_LENGTH =
    tables
    binary_tab = table
    *          CALL TRANSFORMATION Z_TRNS_CCM_TO_MDM_TRY
    *          SOURCE ITEMS = <t_dyntable>
    **          OPTIONS xml_header = 'NO'   
    *          OPTIONS xml_header = 'FULL'   "
    *          RESULT XML xml_string.
    REFRESH GT_ITAB.
    CLEAR <t_dyntable>.
    REFRESH <t_dyntable>.
              APPEND xml_string TO gt_itab.
              IF FILE_LO IS INITIAL.
                FILE_LO = 'C:\TEMP'.
              ENDIF.
              concatenate FILE_LO '\item_list_' lv_pack_count_string '.xml' into gs_file.
              CALL METHOD cl_gui_frontend_services=>gui_download
                EXPORTING
                  filename                = gs_file
    *            FILETYPE                  = 'BIN'
                CHANGING
                  data_tab                = gt_itab
                EXCEPTIONS
                  file_write_error        = 1
                  no_batch                = 2
                  gui_refuse_filetransfer = 3
                  invalid_type            = 4
                  no_authority            = 5
                  unknown_error           = 6
                  header_not_allowed      = 7
                  separator_not_allowed   = 8
                  filesize_not_allowed    = 9
                  header_too_long         = 10
                  dp_error_create         = 11
                  dp_error_send           = 12
                  dp_error_write          = 13
                  unknown_dp_error        = 14
                  access_denied           = 15
                  dp_out_of_memory        = 16
                  disk_full               = 17
                  dp_timeout              = 18
                  file_not_found          = 19
                  dataprovider_exception  = 20
                  control_flush_error     = 21
                  not_supported_by_gui    = 22
                  error_no_gui            = 23
                  OTHERS                  = 24.

    Hi again
    With coding above the download xml-file will contain
    &amp :  is interpreted as & in the xml-editor = OK
    BUT the file contains other special signs that do not work:
    ± :  is not interpreted ok. XML-editor will stop analyzing the file = NOT OK
    Do you know if I could use another way of codepage or something to also handle these special signs.
    Best reg
    Henrik

  • Why are images not appearing in my emails

    I use mailchimp to send out details which include images.To test each one I send it to myself.Suddenly the images have stopped appearing but the text is still there.Also previous emails I have sent to myself have lost their images.

    : What are you using to read your emails? On what device?

  • Smart collections appearing in wrong catalog

    I have three seperate catalogs on my desktop, each with different collections, clients etc. Generally I'll use 'import from another catalog' when I want to import a new shoot from my laptop. This works great, however sometimes I find that all of my smart collections from another catalog suddenly appear in the catalog that I am using e.g I'm using my Sculpture catalog, I import a new sculpture shoot. It imports and shows up fine but so does 20 smart collections from my Portfolio catalog. The 'alien' Portfolio smart collections obviously show as holding 0 images (as the images are where they should be - in the Portfolio catalog). Is it something to do with a preference file that all catalogs access?

    I broke my catalogs up because I had two specific clients that I wanted to keep seperate because my folders systems got a bit confused and I could get my head around it all better. Also I thought I had too many images in one catalog (I've got 136,746 images at present). Anyway I have joined them together again and am enjoying the ease of finding everything. However I still have another 'shoot' catalog on my laptop which I use both for tethered shooting and for lecturing which is still giving me problems. I have just exported a shoot as a catalog and imported it into my laptop/shoot catalog to show to students tomorrow and again it has carried collections over from the host catalog. It's really annoying to have to delete all the empty collections. Maybe if I just import the raws without the editing it won't do it, but don't really want to have to re-edit everything....

  • My podcasts have stopped appearing

    I have been publishing podcasts for four years. Suddenly last month the new ones stopped appearing. I suppose something has become corrupted in the xml code, but I am unable to find it. Do you have any ideas? The podcasts are for Knox United Church, Calgary, Alberta, Canada.
    Thanks.

    Here is the xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
      <atom:link rel="self" type="application/rss+xml" href="http://houseofdawson.com/podcast.xml" />
                        <lastBuildDate>Wed, 16 Nov 2011 12:27:13 -0600</lastBuildDate>
      <title>Knox United Church, Calgary, Alberta</title>
      <itunes:author>Knox United Church</itunes:author>
                        <link>http://www.knoxunited.ab.ca</link>
                        <description>Highlights of worship celebrations at Knox United Church, Calgary, Alberta, Canada></description>
      <itunes:subtitle />
                        <itunes:summary>Highlights of worship celebrations at Knox United Church, Calgary, Alberta, Canada</itunes:summary>
      <language>en</language>
                        <copyright>¬© Knox United Church</copyright>
      <itunes:owner>
      <itunes:name>Knox United Church</itunes:name>
      <itunes:email>[email protected]</itunes:email>
      </itunes:owner>
      <image>
                                  <url>http://houseofdawson.com/Knox%20United%20Podcast.jpg</url>
      <title>Knox United Church</title>
                                  <link>http://www.knoxunited.ab.ca</link>
      <width>1400</width>
      <height>1400</height>
      </image>
      <itunes:image href="http://houseofdawson.com/Knox%20for%20Podcast.jpg" />
                        <category>Religion &amp; Spirituality</category>
      <itunes:category text="Religion &amp; Spirituality" />
      <category>Christianity</category>
      <itunes:category text="Religion &amp; Spirituality">
      <itunes:category text="Christianity" />
      </itunes:category>
      <itunes:keywords />
      <itunes:explicit>no</itunes:explicit>
                                  <title>Knox Celebration 14-4-27</title>
      <itunes:author>Linda Hunter</itunes:author>
      <itunes:subtitle>Gotta Love Thomas!</itunes:subtitle>
      <itunes:summary>Gotta Love Thomas!</itunes:summary>
      <enclosure url="http://houseofdawson.com/KnoxCelebration2014-4-27.m4a" type="audio/mp4" length="445406" />
                                  <guid>http://houseofdawson.com/KnoxCelebration2014-4-27.m4a</guid>
                                  <pubDate>Su, 27 Apr 2014 11:00:00 -0700</pubDate>
                                  <category>Religion &amp; Spirituality</category>
      <itunes:explicit>no</itunes:explicit>
      <itunes:duration>00:44:54</itunes:duration>
                                  <itunes:keywords>Doubting Thomas, John, Humour Baptism</itunes:keywords>
      </item>
        <title>Knox Celebration 14-4-20</title>
      <itunes:author>Bill Bruce</itunes:author>
      <itunes:subtitle>What Mary Saw</itunes:subtitle>
      <itunes:summary>What Mary Saw</itunes:summary>
      <enclosure url="http://houseofdawson.com/KnoxCelebration2014-4-20.m4a" type="audio/mp4" length="414418" />
                                  <guid>http://houseofdawson.com/KnoxCelebration2014-4-20.m4a</guid>
                                  <pubDate>Su, 20 Apr 2014 11:00:00 -0700</pubDate>
                                  <category>Religion &amp; Spirituality</category>
      <itunes:explicit>no</itunes:explicit>
      <itunes:duration>00:41:44</itunes:duration>
                                  <itunes:keywords>Easter, Hallelujah Chorus, Handel, Matthew, Thine is the glory, Christ the Lord is risen today</itunes:keywords>
      </item>
        <title>Knox Celebration 14-4-18</title>
      <itunes:author>Linda Hunter</itunes:author>
      <itunes:subtitle>Good Friday</itunes:subtitle>
      <itunes:summary>Good Friday</itunes:summary>
      <enclosure url="http://houseofdawson.com/KnoxCelebration2014-4-18.m4a" type="audio/mp4" length="285024" />
                                  <guid>http://houseofdawson.com/KnoxCelebration2014-4-18.m4a</guid>
                                  <pubDate>Fr, 18 Apr 2014 10:30:00 -0700</pubDate>
                                  <category>Religion &amp; Spirituality</category>
      <itunes:explicit>no</itunes:explicit>
      <itunes:duration>00:28:50</itunes:duration>
      <itunes:keywords>Good Friday</itunes:keywords>
      </item>
      <title>Knox Celebration 14-4-13</title>
      <itunes:author>Linda Hunter</itunes:author>
      <itunes:subtitle>Hosanna! Crucify!</itunes:subtitle>
      <itunes:summary>Hosanna! Crucify!</itunes:summary>
      <enclosure url="http://houseofdawson.com/KnoxCelebration2014-4-13.m4a" type="audio/mp4" length="344501" />
                                  <guid>http://houseofdawson.com/KnoxCelebration2014-4-13.m4a</guid>
                                  <pubDate>Su, 13 Apr 2014 11:00:00 -0700</pubDate>
                                  <category>Religion &amp; Spirituality</category>
      <itunes:explicit>no</itunes:explicit>
      <itunes:duration>00:34:45</itunes:duration>
                                  <itunes:keywords>Palm Sunday, communion, Matthew, Fauré</itunes:keywords>
      </item>
      <item>
      <title>Knox Celebration 14-3-30</title>
      <itunes:author>Linda Hunter</itunes:author>
      <itunes:subtitle>Restoring the Soul</itunes:subtitle>
      <itunes:summary>Restoring the Soul</itunes:summary>
      <enclosure url="http://houseofdawson.com/KnoxCelebration2014-3-30.m4a" type="audio/mp4" length="305907" />
                                  <guid>http://houseofdawson.com/KnoxCelebration2014-3-30.m4a</guid>
                                  <pubDate>Su, 30 Mar 2014 11:00:00 -0700</pubDate>
                                  <category>Religion &amp; Spirituality</category>
      <itunes:explicit>no</itunes:explicit>
      <itunes:duration>00:30:59</itunes:duration>
      <itunes:keywords>Ephesians, Soul, Lent</itunes:keywords>
      </item>
      </channel>
    </rss>

  • My iphone 3gs stopped appearing in the sidebar

    A week or so ago my iphone 3gs stopped appearing in the itunes (10.7) sidebar when plugged in to my computer.  It shows in the itunes fuile menu and when I right click the itunes icon in my task bar.  It would still sync from the file menu.  Now, itunes has stopped syncing voice memos and because I cannot select sync options without iphone in the sidebar I cannot fix this.
    Any help is appreciated.

    You could try restoring and staying away from that backup.  I've had that happen to me before on my iPhone 4 from a corrupt backup.  You could be coincidently mixing the two issues, sounds to me like you got lucky and your phone is A-OK but you may be using a corrupt backup.

  • I see a small window displaying "Are you sure you want to shut down your computer now". How do I stop appearing this window

    I see a small window displaying "Are you sure you want to shut down your computer now". How do I stop appearing this window

    Is this after you've chosen to Shutdown from the Menu, or just on it's own?
    You can press the esc key to cancel, or Enter key to shutdown.
    Check your System Preferences>Energy Saver>Schedule & see if it's set to shutdown at a certain time.

  • PO not appearing in SRM portal

    Dear all,
    One of the PO is not appearing in SRM portal.  This issue related to specific PO only.  Remaining POs of the vender are appearing in the portal.  All the XML messages are processed successfully.  we are using SUS senario.  Pl. help me in this regard
    with regards
    Ram

    Hi,
    Please check in transaction  SXMB_MONI can found related information why it not transfer to SRM.
    Also check the purchasing data of the PO.
    Thanks,
    prasad.s

  • When browsing a new library that I created, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle the image appears. How do I get images to appear in the browser rectangles?

    When browsing a new library that I created and exported onto an external hard drive, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle, the image appears, but all the other rectangles remain empty - no image. How do I get images to appear in the browser rectangles? I am viewing this on a second computer (an older intel duo iMac), not the one I created the library on (a MacBook Pro). Both computers have Aperture 3.2.4 installed. When I return the external to the MacBook, all images appear in browser rectangles. What's happening on the iMac?

    You may have a problem with the permissions on your external volume. Probably you are not the owner of your library on the second mac.
    If you have not already done so, set the "Ignore Ownership on this Volume" flag on your external volume. To do this, select the volume in the Finder and use the Finder command "File > Get Info" (or ⌘I).
    In the "Get Info" panel disclose the "Sharing & Permissions" brick, open the padlock, and enable the "Ignore Ownership on this Volume" flag. You will have to authentificate as administrator to do this.
    Then run the "Aperture Library First Aid Tools" on this library and repair the permissions. To launch the "First Aid Tools" hold down the ⌥⌘-key combination while you double click your Aperture Library. Select "Repair Permissions" and run the repair; then repeat with "Repair Database". Do this on the omputer where you created the library and where you can see the thumbnails.
    Then check, if you now are able to read the library properly on your iMac.
    Regards
    Léonie

  • Image toolbar appears over Crystal reports chart in Infoview

    I am publishing Crystal reports developed across a Universe in my BusinessObjects Enterprise XI Release 2 InfoView. I have done few line charts in the Crystal reports. I am running on Internet Explorer 7 but my clients are running on Internet Exploreer 6.0. When my clients view Crystal reports (in Infoview) on their browser, the charts are identified as images in their infoview by Internet Explorer 6 browser and it keeps showing the Image toolbar ( the small toolbar which popups over the images in IE 6 prompting you to Save this image/Open this image/Save In My Pictures toolbar etc..)
    Please try this link http://www.microsoft.com/windows/ie/ie6/using/howto/customizing/phototoolbar.mspx to know what an image toolbar is.
    This little feature got included in Intenet Explorer 6 by which any image identified by the web browser will automatically popup this Image toolbar. It won't happen in Internet Explorer 7.0.
    If i am developing a website and do not want this image toolbar appearing over my images in my site I can code accordingly. But i am clueless about the Crystal Reports/Business Objects Infoview environment and how to get rid of this toolbar.
    The one option i got is to ask my users who use IE 6.0 to go to Tools->Internet Options->Advanced tab->Multimedia ->uncheck the checkbox Enable image toolbar. Unfortunately my users login under citrix environment and their default browser settings will be restored every day morning they login.
    Any ideas?

    Hi Michael,
    Unfortunately BusinessObjects does not control these settings when accessing the InfoView.  It sounds like it'll need to be addressed by the system administrator to disable that option in IE through user profiles/applications.
    Regards,
    Wallie

  • I made a reverse radial gradient to look like "sunlight" and I would like to move it to the top of my image to appear like the light is coming from above, but it won't allow me to move the radial gradient anywhere.  I have CS6.  Help please :)

    I made a reverse radial gradient to look like "sunlight" and I would like to move it to the top of my image to appear like the light is coming from above, but it won't allow me to move the radial gradient anywhere.  I have CS6.  Help please

    Assuming you did this with a Fill Layer, double-click the thumbnail in the Layers panel to bring up the Gradient Fill dialog, see to it that the [ ] Align with layer checkbox is set, and (while the Gradient Fill dialog is still up) try dragging the gradient to where you want it on the main display.  Then [ OK ] out of the Gradient Fill dialog.
    -Noel

  • How do you edit the template image that appears at the top only in portrait mode?

    I am using a customized version of the iBooks Author template which has the space image. I have replaced the images for the book cover, chapter and section. But I noticed that when you rotate the ipad to view the entire TOC, the original space image is still there. How can I edit the template image that appears at the top of the Table of Contents only when you rotate the ipad in portrait view?

    I just tried w/that template - switched to Portrait mode...tapped once to select that image....cut - gone. Switched to Landscape...not there. Back to portrait...still gone.
    What process did you use?
    Can you repeat your issue with a fresh book?

  • Srm-catalog portal content

    hi!
    does anybody know what is the special content that SRMMDMCAT01_0.sca have?  
    different iViews?
    if i'm implementing srm-portal-mdm-r3   it's necessary?
    because i'm not using all the srm catalog, and only installed the mdm portal content, i'll have some problems?
    thanx

    The purpose of SRM-MDM is to use MDM as the catalog.  You would store the data in MDM and SRM will then reference MDM ad-hoc.  As part of the implementation, SAP delivers a webdynpro application which is deployed on a Netweaver Java stack, and that's what the user uses to search the catalog.  The two applications (iViews) are called SearchUI and AdminUI.  If you aren't going to use these, how are you planning on searching the catalog from SRM?

  • SRM - Catalog Content Management

    Hi SRM Masters
    Can any one could send me the config documentaion for SRM Catalog Content Management document and functionality(other than SRM260 and SRM270 both I have).
    and also SUS config documents and functionality.
    Regards
    Rajesh

    Hi,
    Check these links....
    http://www.sap.com/usa/solutions/businesssuite/srm/pdf/BWP_SID_Catalog_Content_Mgmt.pdf
    http://www.jhu.edu/hopkinsone/documents/SRMCatalogandContentManager_000.pdf
    Reward points if useful....
    Regards
    AK

Maybe you are looking for