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**

Similar Messages

  • 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 to attach a file to the mail

    How to attach a file to the mail

    I know that this can be done when going to any PDF program and push (send as  email)
    This also can done with multiple files or even with separate pages from that PDF file (Many programs can do that, like: PDF expert, Adobe Reader, iBooks, PDF Provider, Documents, etc)
    But what if I begin to wright an email, then I wanted to attach a file (such as PDF, or word, or any file) , FOR BASIC APPLE MAIL IT IS UNAVAILABLE
    You can attach Photo or Video but not PDF or other document
    There are some email programs that can attach files to email such as my.mail (as you can see from the photo)
    But why Apple don't provide such simple service ???

  • How to attach a file to a mail in iPad

    How to attach a file in my mail in iPad

    You cannot. The Attach code in browsers means let user browse file system. You cannot access the file system, therefore the mobile version of Safari doesn't allow it.

  • 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 attach multiple file in one mail

    Hi,
    I've problems with sending multiple files via Gmail account (Ipad version)  When sending the photo or video, I've to just click the photo and choose send to mail one by one. Any simpler way?  Sometimes i did sent both mpg and jpg but the reciepient didn't see any attachment too
    Anyone can help advise how to attach different file (doc, video, photo) in one mail will be a lot appreciated. Thank you so much

    You can attach multiple pictures to an email on an ipad2. Don't know about original iPad.
    Choose a photo or take a screen shot (hold down home button and button next to volume control at same time--screen shot now will appear in photos).
    Go to photos and edit your picture or screen shot, save it, then hold down on the image and copy it.
    Go to mail, create a new mail and paste it in.
    Save you mail as a draft.
    Go back to photos and select a different photo, copy it, and return to your draft, and paste it in. Repeat if you need to add more.
    Anything that you can take a screen shot or have an photo of can be pasted in one at a time into that draft email.
    If mail gets uncooperative, during this process, then double click on home button and quit multitasking mail, then open up mail again and send your draft. Uncooperative means gets frozen.

  • How to attach a file to a mail using htmldb

    Hi all,
    can u help me how to attach a file in htmldb.
    iam able to send a mail using the inbuilt package but unable to attach a file.
    advance thanks in helping out.

    The APEX_MAIL package doesn't support sending emails with attachments.
    See Send E-Mail with attachment from HTML DB for some alternatives.

  • 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 prevent other users to send mails from SAP?

    Hi,
    Our test system is a copy of the prod.  We could not deactivate the mail job because it is also used by solution manager.  So how can we prevent other users to send mails from SAP? 
    thanks,
    krbas

    Hi K Bas,
    Then I will suggest trying this option out. In SCOT select the node for SMTP (depending on if you are using standard SAP node). Double click and a push button will come Now in the pop you will have option for Internet with a push button SET besides. Please go there. In the next screen you will find a filed for Address area. Now in this field give the value as *.sap.com
    Using address area you can decide to which e-mail addresses is the mail sent to. Since the OSS message will go to <abc>@sap.com that is why I have suggested to use *.sap.com
    I mean if you want that mails should be sent via SAP only yahoo mail accounts then you will give value as *.yahoo.com only. Same thing needs to be applied for SAP.
    Try this out and let me know.
    Please award points if solved.
    Regards.
    Ruchit.

  • Sending Mail from SAP to External Source

    Hi Experts,
    We are on ECC 6.0. I have configured the standard SAP system for
    sending mails from within SAP to our company mail server. The
    mails from SAP are going successfully to our official company
    ids, But when i am trying to send mails to outside address like
    eg. " email@removed " or " email@removed ", it is not going and
    giving an error recipient unknown.
    The configuration of SAPConnect is correct because mails are
    going successfully to our company id, to send outside do i need
    to do something extra???

    It's Mail Relaying and it allows a mail server to send email (or relay it) on behalf of other systems. Many companies have relaying turned off because it is a security risk.
    For example, allowing relaying will allow your system to send an email from xxx.com though your email server which manages emails for company.com. This could be used by a rogue to send spam through your email server.
    Also, if you try to send an email from an account that your mail server does not handle some receiving servers may assume it is spam and block it.
    For this reason, only allow mail relaying on the email server for your domain and only from the SAP systems. This will prevent abuse from occuring because relaying is enabled.
    Have you set the default domain for SAPconnect:
    [http://help.sap.com/saphelp_nw04/helpdata/EN/00/7c9962df8111d3a36400a0c943858e/content.htm]
    Microsoft note on SMTP Relaying:
    [http://support.microsoft.com/kb/304897]

  • How to attach a file to the mail in jsp

    hi.i would like to send mails with in local server with files as attachments.i wrote this code but its not working.please help
    <%@ page import="javax.mail.*,javax.mail.internet.*,java.util.Date,java.io.*,java.net.InetAddress,java.sql.*,java.util.Properties,java.net.*,javax.sql.*,javax.activation.*,java.util.*,java.text.*" %>
    <%@ page import="java.io.*,java.sql.*,java.net.*,java.util.*,java.text.*" %>
    <%
         String Attachfiles1="";
    if("Send".equalsIgnoreCase("send"))
    try
         String subject="",from="",url = null,to="";
         String mailhost = "local server";
         Properties props = System.getProperties();
    String msg_txt="";
         String strStatus="";
    String mailer = "MyMailerProgram";
    to=request.getParameter("to");
    from=request.getParameter("from");
    subject=request.getParameter("subject");
    msg_txt=request.getParameter("message");
    Attachfiles1=request.getParameter("fieldname1");
    props.put("mail.smtp.host", mailhost);
    Session mailsession = Session.getDefaultInstance(props, null);
    Message message = new MimeMessage(mailsession);
    message.setFrom(new InternetAddress(from));
    message.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));
    // message.setSubject(subject);
    // message.setHeader("X-Mailer", mailer);
    // message.setSentDate(new Date());
    message.setText(msg_txt);
                   // Final message = part1 + part2
                   Multipart mp = new MimeMultipart();
                   message.setContent(mp);
                   // Message part 1 is text - add to multipart
                   MimeBodyPart m1 = new MimeBodyPart();
                   m1.setContent(msg_txt, "text/plain");
                   mp.addBodyPart(m1);
                   // Message part 2 is binary (file to send)
                   MimeBodyPart m2;
                   // Support multiple file send (separated by ";")
                   FileDataSource fds = new FileDataSource(Attachfiles1);
                        m2 = new MimeBodyPart();
                        m2.setDataHandler(new DataHandler(fds) );
                        m2.setFileName( new File(Attachfiles1).getName() );
                        mp.addBodyPart(m2);     // add to final message (part 2)
    //message.addAttachment(new Attachment(new File(Attachfiles1)));
    //BodyPart messageBodyPart = new MimeBodyPart();
    //BodyPart messageBodyPart2 = new MimeBodyPart();
    //Multipart multipart = new MimeMultipart();
    ////messageBodyPart = new MimeBodyPart();
    //javax.activation.DataSource source = new javax.activation.FileDataSource(Attachfiles1);
    //messageBodyPart.setDataHandler(new DataHandler(source));
    ////messageBodyPart.setFileName(new File(Attachfiles1).getName());
    //messageBodyPart2.setText(msg_txt); // set the txt message
    //multipart.addBodyPart(messageBodyPart);
    //multipart.addBodyPart(messageBodyPart2);
    //message.setContent(this.multipart);
    Transport.send(message);
    out.println("Message Sent");
    catch (Exception e)
    e.printStackTrace();
    %>
    <html>
    <body>
    <div class="frame">
         <form action="Composemailpp.jsp" method="post">
              <b>SelectPosition:</b> <select name="cars" >
    <option value="ABAP">ABAP
    <option value="JAVA">JAVA
    <option value="DOTNET">DOTNET
    <option value="SAP">SAP
    </select><br><br>
    <table border="1" cellpadding="2" cellspacing="2">
    <tr><th>
    Name<br><input type="text" name="Name"><br>
    </th>
    <th>
    EmailId<br><input type="text" name="EmailId"><br>
    </th>
    <th>
    ContactNumber<br><input type="text" name="ContactNumber"><br>
    </th>
    <th>
    Position<br><input type="text" name="Position"><br>
    </th>
    </tr>
    </table><br>
    <b>SelectUser :</b><select name="cars">
    <option value="Administrator">Administrator
    <option value="User1">User1
    <option value="User2">User2
    <option value="User3">User3
    <option value="User3">User4
    </select>
    <br>
    <b>To :</b>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="text" name="to" size="72"><br>
    <b>From :</b>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="text" name="from" size="72"><br>
    <b>Subject :</b>&nbsp&nbsp&nbsp<input type="text" name="subject" size="72"><br>
    <b>Message:</b><br>
    &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<textarea rows="10" cols="50" name="message">
    </textarea> <br><br>
    <b>AttachedFile:</b>&nbsp<input type="file" name="fieldname1" value="filename" size="50"><br><br>
    <!--<b>AttachedFile:</b>&nbsp<input type="file" name="fieldname2" value="filename" size="50"><br><br>
    <b>AttachedFile:</b>&nbsp<input type="file" name="fieldname3" value="filename" size="50"><br><br>
    &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="submit" name="attachfiles" value="Attachfiles">
    -->
    <center>
    <input type="submit" name="send" value="Send" >
    </center>
    </form>
    </div>
    </body>
    </html>

    message.setText(msg_txt);Don't do this. You want a multipart message. You want the msg_txt
    to be the first part of the multipart, which you do below.
                   // Final message = part1 + part2
                   Multipart mp = new MimeMultipart();
                   message.setContent(mp);
                   // Message part 1 is text - add to multipart
                   MimeBodyPart m1 = new MimeBodyPart();
                   m1.setContent(msg_txt, "text/plain");m1.setText(msg_txt); // would be better
                   mp.addBodyPart(m1);
                   // Message part 2 is binary (file to send)
                   MimeBodyPart m2;
                   // Support multiple file send (separated by ";")
    FileDataSource fds = new
    new FileDataSource(Attachfiles1);
                        m2 = new MimeBodyPart();
                        m2.setDataHandler(new DataHandler(fds) );
    m2.setFileName( new File(Attachfiles1).getName() );Since you're using JavaMail 1.4, you can replace much of the above
    with simply:
    m2.attachFile(Attachfiles1);
    But none of the problems above should prevent your code from working.
    You do understand, of course, that the name of the file is a filename
    on the server, not the client that's running the browser, right?
    When you say "its not working", what exactly do you mean?

  • 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 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

  • Attaching pdf files to e-mails ?

    when I try to attach a pdf to my email it only attaches the first page. I run mavericks ?

    Hi there,
    Just to understand your situation, have you sent an email to your self with an attached PDF and have you seen that when you open it only one page has been attached?
    Thanks MacKing

  • Unable to save PDF file to local drive from sap after Above reader XI update.(Not as sap issue ,this is related to Adobe)

    Hi All,
    Users are unable to download/save file from sap after a adobe XI update.(no pop comes to save/open)
    Surprisingly,i am able to do so on my system without any adobe plug ins disabled or any registry editing.
    This is a strange behaviour and need to be resolved Asap....
    I contacted sap..this is not sap issue..this is a pure adobe reader bug.
    Please need help on this experts
    Feel free to comment for further details
    kind Regards,
    Sumit
    Mail me at [email protected]

    Hi ,
    Please tell us a lot more.
    - Is SAP running a local process, or something in a web browser?
       sap is running via SAPGUI ,no java system
    - What system?
      Users facing issue in all system
    - What browser?
    IE 9.0.28
    - Can PDFs from other sources be downloaded?
    Yes,they are downloaded.
    More Details-I did some tricks below which resulted in open/save popup......tht is not recomended by IT team...i need a permanent solution
    In IE, goto menu Options -> "Manage
    Addons", select in box "Show:" "Run without
    permission", then you see the Adobe PDF plugin
      Ichanged status to "Disabled
    Also, if i change the registry key settings for users as
    HKEY_CLASSES_ROOT\AcroExch.Document.11
    Value: EditFlags
    Changed: 0x00000100
    to 0x00000000
    (Remove the "Open always with this
    program" option)
    ITS WORKING.....
    But,in my system i need not to do all this settings and surprisingly it is working  only for me,rest all users are facing this issue.....
    If any one using Lync ,communicator ..do let me know..i wil show  the actual scnerio.
    Kind Regards,
    Sumit

Maybe you are looking for

  • What are the ideal specs for a DigiBeta master tape when authoring a "widescreen anamorphic" 16:9 SD DVD (original aspect ratio is 14:9)?

    I just received the masters for a new SD DVD. I would like to author a "widescreen anamorphic" SD DVD horizontally squeezed widescreen image stored in a standard 4:3 aspect ratio DVD image frame. (On 4:3 displays, mattes should preserve the original

  • Arabic in reports6i on web

    Hi I am testing reports6i on web for arabic applications. I tried following as advised by users in this forum, even then Arabic characters are getting displayed as symbols. 1. Tried Changing fonts. 2. Made default language as Arabic on middle tier m/

  • Premiere pro cc2014 waveform wrong after audition

    "edit clip in audition" - adjust time (eg slow down)  and save on return to premiere image of waveform does not correspond to the audio. Have to restart premiere to fix it. Can anyone else confirm this so I can report it as a bug?

  • [Solved]Klystrack

    I've been working on a PKGBUILD for Klystrack with the hope of running it on my netbook (they only provide Windows and Ubuntu installers). I started first playing around with the .DEB packages to make the PKGBUILD (I took this from a huludesktop PKGB

  • Help with emails showing in reverse order

    I have a friend who just got their Curve 83XX from Verizon. They are telling me that their emails are showing in reverse order. They have to scroll down to see the newest emails. I have the 8310 and have not been able to locate any options to prevent