How to attach PDF file to product catalog in e-Commerce ERP

Hello Experts,
We are implementing SAP E-Commerce for ERP (ECC 6.0 version)
On the product catalog, I need to attach a PDF file to the products.
I have created a document as
Document Type: DMO
In this I have created 1 original as:
Applic: PDF
Original:  "abc.pdf" (the PDF file has been uploaded to the correct Web Server folder)
This document has been assigned to the product as u2018Documentsu2019 in the product catalog.
I replicated the catalog on TREX. However now I am not sure how to acess this document on the e-Commerce Products JSP.
When I access the product index on TREX, I do  not see any attribute that contains this document Type containing the PDF.
(The standard LIM / SIM documents are getting attached correctly to the products, I see the relevant images on the JSP)
I am not sure if I am missing something in attaching  the document?. Please let me know what else is required to be done for this?
Thanks in Advance.
Regards,
Roopali

Hey Roopali,
Following is the procedure to Attach a multimedia object .
Hope you are following this especially point number 16.
1.     Access the activity using one of the following navigation options:
Transaction code     COMM_PCAT_ADM
SAP CRM menu     Master Data à Product Catalog à Maintain Product Catalog
You will have Material Master rather than Product catalog as it is ECC version.
2.     In the Product Catalog field, enter PRODUCT CATALOG
3.     In the Catalog Type field, enter Manual and automatic assignment.
4.     Choose Change.
5.     Expand Header Data by choosing the Expand data area Button labeled Header Data
6.     Check that the status is Inactive.
A yellow light bulb indicates that the status is Active. To set the status to Inactive, click the light bulb and a gray light bulb appears.
To add new products to your product catalog, you must first deactivate the status on all levels.
7.     In the Object Name screen area, select your product catalog.
8.     Choose Expand all.
9.     Double-click the catalog area to which you want to manually assign your objects.
10.     Check that all products are set to inactive.
11.     In the Item list, double-click the product.
12.     The selected product is shown below in the screen area Item Details.
13.     Choose the Item Documents tab.
The tab page Product Documents provides information about which objects are already assigned to a product in the product master. This means that these objects cannot be changed in the product catalog. They can only be changed in the product master.
14.     Choose the folder YCRM_IMAGE  or YCRM_THUMB and choose Import document. Browse for the multimedia object that you want to assign to the product. 
15.     Select the object (picture) and choose Save.
16.     Choose the tab page Properties to set this multimedia object as language-independent, set the field Language-Independent(Prod) = Yes.
This field controls the publication of documents in catalog variants depending on the language. This means that the document is valid for all languages in which the catalog is published.
17.     Choose Save.
Regards,
Sumit

Similar Messages

  • How to attach PDF file to product catalog in Internet Sales R/3

    Hi Experts,
    We are implementing SAP E-Commerce (Internet Sales) for mySAP ERP or SAP R/3, release 5.0.
    I need to attach a PDF file to the product in the product catalog of the Web Shop. Some where in the documentation I have read that itu2019s possible.
    I have created a document with following parameter:
    Document  2001 \ Document Type L01 \ Document Part  000 \ Document version  00
    In that document, I have created one original with the following parameters:
    Applic.     PDF \ Data Carrier    isar3 \ Original      <WebServer folder>/SAP.pdf
    I have assigned this document objects to the product as u2018Documentsu2019 in the product catalog. (through Tcode WWM2).
    I have uploaded the PDF file to the correct Web Server folder.
    But I CAN NOT see my PDF file anywhere in Web Catalog.
    By the way, following the same steps I have also created another Document containing 2 original images:
    Document  2002 \ Document Type L01 \ Document Part  000 \ Document version  00
    In that document, I have created 2 originals with the following parameters:
    Applic.     LIM \ Data Carrier    isar3 \ Original      <WebServer folder>/ Test_big.jpg
    Applic.     SIM \ Data Carrier    isar3 \ Original      <WebServer folder>/ Test_small.jpg
    I have assigned this document objects to the product as u2018Documentsu2019 in the product catalog. (through Tcode WWM2).
    I have uploaded the image files to the correct Web Server folder.
    I CAN see the small and large image in my product catalog with out any problem.
    Is it possible to attach PDF in this way? Am I making any mistake? Am I selecting the correct document type (L01) for the document?
    Please guide me.
    Thanks in Advance.
    Regards,
    Abir Kundu.

    Hi Abir,
               SAP standard for R/3 E-commerce allows only SIM and LIM applications.
    Any further requirements like PDF needs to be an enhancement on the product details JSP.
    Also make sure you are storing the PDFs in the right location to retreive it on the product details.
    Thanks,
    Kiran Kanth.C

  • How to attach PDF file along with mail from SAP to external

    Hi Experts,
          Whenever I am creating PO I should get that creation information ( PO is created & PO no is ‘XXX’….) in the form of PDF file & I have to send this PDF file through mail to external. I have to do all this in one development…How can I proceed …Help me..
    Thanks

    Check this Code>>>>>>>>>>>
          FORM MAIL_OBJECT                                              *
    Compiled: Thomas, Satyam Computers Services Ltd.
          This routine receives OTF data. OTF data is converted to PDF
          format and send to the Partner's email address
    FORM mail_object TABLES otf_data STRUCTURE itcoo .
      DATA: pdf_size TYPE i,                             " PDF Size
            pdf_itab_size TYPE i,                        " Attachment size
            mailtxt_size TYPE i,                         " Text in mail size
            l_vbeln LIKE vbdka-vbeln.                    " Order Doc
      DATA:
      it_mailtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,    " Mail Text
      it_pdf TYPE TABLE OF tline WITH HEADER LINE,           " OTF output
      it_mailpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE, " Dist details
      it_mailhead LIKE solisti1   OCCURS  1 WITH HEADER LINE," Header data
      it_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,   " Rec List
      it_pdfdata LIKE solix OCCURS 0 WITH HEADER LINE.  " Attachment data
      DATA: it_doc_att LIKE sodocchgi1.                 " Attri of new doc
      DATA: BEGIN OF it_pdfout OCCURS 0,                " PDF in 255 length
               tline TYPE char255,
            END OF it_pdfout.
    Sales doc and Customer
      DATA: BEGIN OF i_vbeln OCCURS 0,
              vbeln LIKE vbpa-vbeln,       " Sales Document
              adrnr LIKE vbpa-adrnr,       " Customer
            END   OF i_vbeln.
    Sender Address no and SMTP address
      DATA: BEGIN OF i_addrs OCCURS 0,
              addrnumber LIKE adr6-smtp_addr,
              smtp_addr  LIKE adr6-smtp_addr,
            END   OF i_addrs.
    Convert OTF to PDF
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format       = 'PDF'
        IMPORTING
          bin_filesize = pdf_size
        TABLES
          otf          = otf_data
          lines        = it_pdf.
    Make each line 255 characters
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
        TABLES
          content_in  = it_pdf
          content_out = it_pdfout.
    Create the PDF File
      CLEAR it_pdfdata.
      REFRESH it_pdfdata.
    it_pdfdata[] = it_pdfout[].
      LOOP AT it_pdfout.
        MOVE it_pdfout-tline TO it_pdfdata-line.
        APPEND it_pdfdata.
        CLEAR it_pdfdata.
      ENDLOOP.
      DESCRIBE TABLE it_pdfdata LINES pdf_itab_size.
    Text in the mail.
      it_mailtxt-line  = 'ORDER ACKNOWLEDGEMENT'.
      APPEND it_mailtxt.
      it_mailtxt-line  = ' This is a test mail-Thomas, Line Number--1'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail-Thomas, Line Number--2' &
                        ' This is a test mail-Thomas, Line Number--2'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail-Thomas, Line Number--3' &
                        ' This is a test mail-Thomas, Line Number--3' &
                        ' This is a test mail-Thomas, Line Number--3'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail,  Line Number--4' &
                        ' This is a test mail,  Line Number--4' &
                        ' This is a test mail,  Line Number--4' &
                        ' This is a test mail,  Line Number--4'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5'.
      APPEND it_mailtxt.
      DESCRIBE TABLE it_mailtxt LINES mailtxt_size.
    Document Number for Output
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input  = vbdka-vbeln
        IMPORTING
          output = l_vbeln.
    Attributes of new doc
      CONCATENATE 'Order' space 'Acknowledgement' space l_vbeln
                  INTO it_doc_att-obj_descr SEPARATED BY space.
      it_doc_att-sensitivty = 'F'.
      it_doc_att-doc_size   = mailtxt_size * 255.
    Create Pack to text in mail body.
      CLEAR it_mailpack-transf_bin.
      it_mailpack-head_start   = 1.
      it_mailpack-head_num     = 0.
      it_mailpack-body_start   = 1.
      it_mailpack-body_num     = mailtxt_size.
      it_mailpack-doc_type     = 'RAW'.
      APPEND it_mailpack.
    Create Pack to PDF Attach.
      it_mailpack-transf_bin   = 'X'.
      it_mailpack-head_start   = 1.
      it_mailpack-head_num     = 1.
      it_mailpack-body_start   = 1.
      it_mailpack-body_num     = pdf_itab_size.
      it_mailpack-doc_type     = 'PDF'.
      CONCATENATE l_vbeln '.pdf' INTO it_mailpack-obj_name.
      CONCATENATE 'Order Ack' space l_vbeln INTO it_mailpack-obj_descr.
      it_mailpack-doc_size     = pdf_itab_size * 255.
      APPEND it_mailpack.
    *Get email addresses based on Sales document.
      SELECT vbeln adrnr INTO TABLE i_vbeln
             FROM vbpa
             WHERE vbeln = vbdka-vbeln AND
                   parvw = nast-parvw.
      IF NOT i_vbeln[] IS INITIAL.
        SELECT addrnumber smtp_addr INTO TABLE i_addrs
               FROM adr6 FOR ALL ENTRIES IN i_vbeln
               WHERE addrnumber =  i_vbeln-adrnr AND
                     smtp_addr NE space.
      ENDIF.
      IF i_addrs[] IS NOT INITIAL.
        LOOP AT i_addrs.
          it_reclist-receiver   = i_addrs-smtp_addr.
          it_reclist-express    = 'X'.
          it_reclist-rec_type   = 'U'.
          it_reclist-notif_del  = 'X'. " request delivery notification
          it_reclist-notif_ndel = 'X'. " request not delivered notification
          APPEND it_reclist.
          CLEAR: i_addrs.
        ENDLOOP.
      ENDIF.
    Call FM to send email
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = it_doc_att
          put_in_outbox              = 'X'
        TABLES
          packing_list               = it_mailpack
          object_header              = it_mailhead
          contents_txt               = it_mailtxt
          contents_hex               = it_pdfdata
          receivers                  = it_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorizationfiltered= 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " MAIL_OBJECT
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    -Mohan.
    *Reward if helpful**

  • How to attach PDF files to invoice document from ECM.

    Hi Gurus,
    We have one requirement in that around three million  invoice pdf files are there in ECM system. we need to attach those pdf files(GOS) to  existing invoice document in SAP.as we searched in SCN we found one function module ARCHIVE_CONNECTION_INSERT. for this  function module we need pass mandatory import parameters as SAP object ID ,Document ID and some other variables(object type, doc.type , repository ID).
    My problem is how can I find the value of  respective SAP object ID and Document ID  form ECM system. and how can I match the SAP object ID and Document ID.
    please  help on this.
    Thanks in advance!!
    Regards,
    Vigneshwar.D

    Hello,
    Check with Global document type is maintained for the PDF you are looking for in OAC2. You will find the Document type, for the respective object type, check in OAC3. Content Repository is the archiving ID. Search by the archiving ID.
    Regards
    Rakesh

  • How do I email an attached pdf file to stationary templates in mail.

    How do I email an attach PDF file using the stationary templates in mail on lion.
    I attached the PDF but when try to send it I get back a dialog box that sez:
    "This message cannot be sent because it uses stationery and contains attachments that are not images. Messages with stationery cannot contain attachments that aren’t images. You can cancel and return to editing the message or remove the stationery in order to send." My choice is to cancel or remove stationary.
    Is there a third party solution? Any suggestion?

    No
    Envoyé depuis Molto pour iPad
    De: pwillener
    Envoyé: jeudi, février 12, 2015 07:14 AM
    À: René Allamelle
    Objet:  how do I compress a large pdf file to fit in an email?
    how do I compress a large pdf file to fit in an email?
    created by pwillener in Adobe Acrobat.com Services - View the full discussion
    But generally it is never a good idea to send e-documents as email attachments.  Better use a file sharing service (Acrobat.com, Dropbox, Google Drive, Microsoft OneDrive, ..), upload the document, then send the shared download link via email.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7187079#7187079 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7187079#7187079
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Acrobat.com Services by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • When trying to upload a PDF to an interactive site I get the announcement:"The attached PDF file references a non-embedded font Tahoma. Please remove file, embed the font and reattach." How do I embed this, or in fact any other font ?

    When trying to upload a PDF to an interactive site I get the announcement: "The attached PDF file references a non-embedded font Tahoma. Please remove file, embed the font and reattach."
    I could not get rid of the Tahoma font in the WORD file.
    How do I embed this, or in fact any other font ?

    Thank you very much !
    Indeed, I was unaware of the enormous number of options that can be selected when converting a WORD file to PDF.
    I went thru the settings and found the right one for embedding the fonts.
    Thanks again !
    Oren

  • How can I embed a form on my website and set up a submit button so that when people fill out and click Submit, the filled form will be emailed to me as an attached pdf file?

    How can I embed a form on my website and set up a submit button so that when people fill out and click Submit, the filled form will be emailed to me as an attached pdf file?
    Thank you!

    Hi;
    That is not a workflow that is supported by the Adobe forms solutions at this time.
    Thanks,
    Josh

  • How can I retain the attached .pdf files (displayed as icons) from my word file 2010 to a pdf file?

    Hi everybody,
    I have looked for an answer in this forum ... without any good result.
    I worked on a Word 2010 file with some attached pdf files. These attached files are displayed as icons on the word file. If you double click on them, you can consult them. This works very good.
    Problem: I would like to convert this word 2010 file into a pdf file, which keeps the icons (linked to attached files) active. If I "pdf" this with my current system, icons are displayed as pictures: I cannot open the attached files.
    My question is very simple: is it possible to retain these active icons (= to open attached documents) in a pdf file? Which adobe package should I use?
    Many thanks for your help 
    cheers
    elgreengo

    No, it's not possible, but I agree it would be a very nice feature.

  • How to create pdf files in UNIX directory from oracle reports

    I would like to know how to create pdf files in UNIX directory from oracle reports.
    Thanks,

    Please make your question more clear . Also mention the reports version.
    1) If you are runnning reports in Unix, you can give
    .... destype=file desformat=pdf desname=<filename>
    in command line
    Please refer docs below.
    2) If by your question you mean
    "My reports server is running in Windows but I want to ftp my files to Unix after creating it"
    then the answer is that you can use pluggable destination "ftp"
    .... destype=ftp desformat=pdf desname=<ftp url>
    Pluggable destinations download
    http://otn.oracle.com/products/reports/pluginxchange/index.html
    Thanks
    Ratheesh
    [    All Docs     ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf

  • How to split pdf files also how to downsize a pdf file?

    how to split pdf files also how to downsize a pdf file?

    Hi Ali,
    If the PDF file you're starting with is larger than 100MB, ExportPDF won't be able to convert it.
    To convert a file of that size and to create separate files, you'll need Adobe Acrobat.  You'd need Acrobat to divide the file into smaller chunks for ExportPDF anyhow, so Acrobat is probably the best solution for you.  You can learn more about Acrobat here: http://www.adobe.com/products/acrobat.html
    Kindest regards, Stacy

  • Attach PDF file to Service notification

    Hi Everyone,
    Can somebody tell me how I can attach PDF file from local folder into the attachment list in the service notification(tcode IW52) ?
    Also how i can get the list of documents attached to the  service notification ?
    I should attach the file from module pool program(from custom transaction).
    Is there any FM or some class methods that can make the attachment ?
    Thanks,
    Dime Slavkov

    1. Make your pdf files readily available on your PC desktop.
    2. Go to IW52, Click on GOS icon, Create... --> Create Attachment.
    You will get a file select Dialog box, refer to your desktop file and attach. You can attach number of files this way. If you want to see the files you've attached, click on the Attachment list shown below Create.. in the above picture. You will get the list of all files attached. You can choose anyone and view.
    KJogeswaraRao

  • How to send pdf files from local dir through emails attachments

    I have some pdf documents in some directory, I want to send those pdf's as an attachment throu emails to the concerned person.
    Please let me know how to attach the files and send through email.
    Thanks.

    You are using Forms 4.5, which is a client/server configuration. When you create a pdf file, the file has to be written to a directory that is accessible from your PC. D:\ is acessible, /tmp/ not (that is a directory on some Unix server). If you want to write files to a Unix server, you have to set up Samba and map a drive from your PC to he Unix directory.
    Since you are creating multiple pdf files, you will have to wait until all reports are finished and mail them afterwards. You can create a batch script to mail the files.

  • How to print PDF files

    How to print PDF files????

    Please see FAQ: How to print a PDF file from Adobe Reader Touch.
    If you don't see the Print button in the toolbar, please update to the latest version of Adobe Reader Touch.
    FAQ: How to update Adobe Reader Touch to the latest version
    The latest version (1.2) also includes newly supported features such as Commenting (adding Sticky Notes, Highlight, Strikeout, and Underline), Save/Save As, and Go to Page.
    Here's the blog post by Dennis Griffin (Product Manager for Adobe Reader for Tablets and Smartphones).
    Adobe Reader Touch for Windows 8 adds Comments and More

  • How to attach pdf in e-mail?

    How can I attach pdf-files saved on my phone in an e-mail? Can attach pictures only.

    Hi,
    Although you cannot include other files than pictures in the standard email app, there is another way that does not require OneDrive and is very flexible. It uses the Files app (Microsofts own version) and has the "Share" operation as its central approach. After installation of this app (which is very handy anyway) take the following steps:
     With the files app, create a folder (and call it for example "Email Attachments") and put any combination of documents in there that you want to include in a new mail (you cannot add to an existing mail). You can use the Files app to copy/move folders in any way you like (contrary to IOS and Android, WP has a complete file structure)
    Select this folder (or alternatively: select all files in this folder)
    Then press the "Share" button at the bottom of the screen in the options menu: now your own regisrered email adresses show up (among all other sharing options)
    Select one of your registered email adresses: a new email with this adress as the sender is created and all documents are already attached
    Write/copy the email text, the header and add the address of the recipient (can be done quickly with the +button if the recipient is in your People list), then you are ready to send it.
    Although I agree that the email app should include the option to attach any kind of document, the above approach works very well and is very flexible too and centers around the well-implemented sharing process. Do not forget to collect the documents as described above before writing the email text ...
    BR, Nexhmije

  • How to attach a file

    Dear All,
    I want to send an email but I don,t know how to attach a file. I am using gmail on my ipad2 now I wish to send an email to my friend along with my mail I wish to attach a PDF file.
    Kindly please help me out because it is not showing the option for attaching the file.
    Thanks in advance.

    Unfortunately you can't. But other apps will allow it, like Goodreader. Goodreader is free and lets you open PDFs which can then be emailed. Pages, which is a document-layout programme also allows documents to be emailed within itself.

Maybe you are looking for

  • HP Photsmart 3210 All in One printers issues after reinstalling software/ Vista 32 bit

    Help please!  After troubleshooting and no results, I did the uninstall and reinstall, however, when I plugged in the USB cable, it didn't recognize that I had plugged it in, so I used another cable and still nothing. One of the error messages I did

  • KMODE_EXCEPTION_NOT_HANDLED in Windows 8.1

    I recently downloaded an official copy of Windows 8.1 from my school's official Dreamspark partnership. After installing Windows 8.1 and following the steps fully I had no issues for about half a day, however after I put my MacBook Pro to sleep I cou

  • How to install oracle on windows 2 nodes cluster

    Hi, As a beginner, I need to how to install (i.e. steps ) Oracle 11g R1 on windows 2003 SP2 enterprise, having 2 nodes (active -passive) clusters on it? Thanks,

  • Java classes in database

    I am working on an Oracle 10.2.0.3 database housed in a sun solaris OS. There are 2 tablespaces DEFAULT_DATA and NONDEFAULT_DATA for users to create objects. User HARPER has a default tablespace of DEFAULT_DATA assigned to him only to which he has a

  • Clearing fields when calling new page

    I am using a list to call a target page. How can I clear out certain fields when the page is called (ie. reset them to their default value)? If I clear the cache for the page, it clears everything.