PO Form attahcment Name in Email

Hello,
we have a requirement whe PO get saved it will sent out an email attahcment with PDF format.
we have an outputdevice as Email and Device type is PDF.This will send an attchment as PRINT DATA.PDF.Our Requirement to change the name of the attachment  name.
If anybody came cross could you please give us the direction.
Thanks,
Madhu

Hi,
I Hope you would be using FM
Send Message
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data              = gw_docdata
      put_in_outbox              = 'X'
      commit_work                = 'X'
    TABLES
      packing_list               = gt_objpack
      contents_bin               = gt_objbin
      contents_txt               = gt_objtxt
      receivers                  = gt_reclist
    EXCEPTIONS
      too_many_receivers         = 1
      document_not_sent          = 2
      document_type_not_exist    = 3
      operation_no_authorization = 4
      parameter_error            = 5
      x_error                    = 6
      enqueue_error              = 7
      OTHERS                     = 8.
Pass gt_objpack-obj_descr = "Youe own title".
Hope this helps
Edited by: Raj on Aug 4, 2010 10:11 PM

Similar Messages

  • Passing form field name to the subject line of the task assign email

    Hello Everyone,
    I am trying to create a process that need to pass one of the field data from a form to the task email assign but could not make it work right as expected. I think I miss something but could not figure it out myself. If any one has done this before, please share your knowledge.
    Thanks in advance,
    Han Dao

    Hi Jasmin,
    I thought it simple thing to do by passing the xPath to the subject line but for some reasons, it does not work instead it show the whole xpath on the subject line. Here is my xpath:
    {$/process_data/FormData/object/data/xdp/datasets/data/FSFIELDS_/Form1936/EmpInfoSub/UserM gr$}
    where Form1936 is the pageName, EmpInfoSub is sub-form, and UserMgr is field name on the form.
    Thanks,
    Han Dao

  • Form name and email being autofilled. cant delete

    I am using latest firefox 4 /vista ...see below
    when I go to certain sites, the logon name and email that i used previously a loooong time ago on another site appear automatically in the name and email field (of the comment section) .
    I have never visited these sites before let alone posted anything on them, or used the email/logon in any other way. There are no cookies associated with these sites in my cookies.
    I tried turnign off remember search and form history
    I tried delete and shift delete
    everytime I return to those site domains, same thing.
    I am not using any autoform plugin.

    I think some further detective work may be required. Here's one thought. Some sites share comments, reviews, and surveys. If you right-click near the form with the unwanted information in it, is there a "This Frame" on the context menu? If so, follow that to View Frame Information to see the true source domain. You may need to clear cookies for that domain.

  • How do I get it to automatically fill in my name/address/email/etc. when filling out forms?

    Is there a setting that makes the computer automatically fill in my name, address, email address, etc. when I'm filling out forms, like in other browsers I've used?

    You can do that with the [https://addons.mozilla.org/firefox/addon/4775/ Autofill Forms] add-on.

  • ERROR: Your web form must capture customer name and email address.

    Hi,
    I keep receiving this error message when trying to checkout and submit a payment.
    ERROR: An error occurred. Your web form must capture customer name and email address. Please fix this issue and re-insert your web form on your web page.
    The strange thing is it's only happening in chrome. It works perfectly in IE and firefox, the form submits and takes me to the order confirmation page. I've tested it on multiple PCs so it's definitely a chrome issue. Does anyone have any advice as to what could be causing this issue with chrome?
    Thanks,
    Pete

    Check your eCommerce web form in the admin has the ID - 211729
    This is what the form ID is, if you have deleted it and made a new one it will not Marry up
    The things you normally look for with this error is The first name and last name along with email fields have the right ID and name parameters on the input. The javascript is picking those up so it looks like that is working.
    So next is the form in the admin marrying up with the form on the page or in this case the Registration Buy layout.

  • How do i fix the "web form must capture customer name and email address" error?

    Hi all,
    I have a webform that is submitting securely to the bc servers. I get the response:
    {"SystemMessage": { "success": False, "message": "ERROR: An error occurred. Your web form must capture customer name and email address. Please fix this issue and re-insert your web form on your web page." }}
    I have verified that the "FirstName","LastName","EmailAddress" are actually gettting sent with their corresponding values. I can't seem to figure out why i keep getting this error. Can someone please lend a helping hand?!? Thanks guys... here's my code:
    var rAction = 'https://site.worldsecuresystems.com/FormProcessv2.aspx?WebFormID=85886&OID={module_oid}&OTYPE={module_otype}&EID={module_eid}&CID={module_cid}&CC={module_urlcountryc ode}&Referrer={module_siteurl,true,true}&JSON=1';
    var rData = 'FirstName='+escape(fName.val())+'&LastName='+escape(lName.val())+'&EmailAddress='+escape (email.val())+'&Username='+escape(username.val())+'&Password='+escape(passwd.val())+'&Pass wordConfirm='+escape(passwd2.val())+'&BillingAddress='+escape(baddress.val())+'&BillingCit y='+escape(bcity.val())+'&BillingState='+escape(bstate.val())+'&BillingZip='+escape(bzip.v al())+'&PaymentMethodType='+escape(paymentMethodType)+'&CardName='+escape(cName.val())+'&C ardNumber='+escape(cNum.val())+'&CardExpiryMonth='+escape(expMonth)+'&CardExpiryYear='+esc ape(expYear)+'&CardType='+escape(cType)+'&CardCCV='+escape(ccv.val())
    $.ajax({
    type: 'POST',
    url: rAction,
    data: rData,
    success: function(msg){
    console.log('success');
    $('#result').html(msg);
    error: function(msg){
    console.log('error');
    $('#result').html(msg);

    Ok -- after testing this out a little on my own I think it must have to do with not properly serialzing the data you are passing in the ajax function.  In the example I linked to earlier they are just serialzing the form data and it works because it converts the data in the form's input fields to URL encoded notation.
    If you aren't using an actual form on your site to mimick the example I linked to then when building your "rData" string instead of using the "escape" function for each of the parameter values, you should be using the "encodeURIComponent" function instead which instead of escaping characters will convert it to URL encoded notation.  That's probably your issue. Here's more about encodeURIComponent(): http://www.w3schools.com/jsref/jsref_encodeURIComponent.asp
    Try this with the rData variable instead:
    var rData = 'FirstName='+encodeURIComponent(fName.val())+'&LastName='+encodeURIComponent(lName.val()) +'&EmailAddress='+encodeURIComponent(email.val())+'&Username='+encodeURIComponent(username .val())+'&Password='+encodeURIComponent(passwd.val())+'&PasswordConfirm='+encodeURICompone nt(passwd2.val())+'&BillingAddress='+encodeURIComponent(baddress.val())+'&BillingCity='+en codeURIComponent(bcity.val())+'&BillingState='+encodeURIComponent(bstate.val())+'&BillingZ ip='+encodeURIComponent(bzip.val())+'&PaymentMethodType='+encodeURIComponent(paymentMethod Type)+'&CardName='+encodeURIComponent(cName.val())+'&CardNumber='+encodeURIComponent(cNum. val())+'&CardExpiryMonth='+encodeURIComponent(expMonth)+'&CardExpiryYear='+encodeURICompon ent(expYear)+'&CardType='+encodeURIComponent(cType)+'&CardCCV='+encodeURIComponent(ccv.val ())

  • My name and Email being in a song

    I'v bought a CD form amazon while ago. In iTunes i was going to put the album art in until i saw it have my name and email i don't know how this happened but i want to remove my name and email from this as i don't feel comfortable with it on music.

    If it looks similar to this, it was purchased in the iTune store.
    You can verify you purchased it by looking at your -> Seeing your iTunes Store purchase history and order numbers

  • I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an

    I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an internal project we're colletively working on.  Now I see that FormsCentral is going away and I can't get my doc to save as a PDF without an upgrade?  Help

    You should be able to log into the online Formscentral Acrobat XI air app and see your doc there. From there you would need to save it out as a PDF without a submit button to have it continue to work past July. If you don't see your online form(s) please let me know the adobeID you use to log into the service as well as the form name that is missing and I will look into it for you.
    Andrew

  • Form data sent to email in a table. (How do I?)

    What I am trying to do is take the data input from a form, and have that data sent via email within a table.
    Example:
    Header 1
    Header 2
    Name:
    John Doe
    Email:
    [email protected]
    Company:
    johns plumbing
    Phone:
    555-555-5555
    Comment:
    This is my comment
    Right now it sends the email fine, but it is in plain text (UGLY)
    Here is my PHP (ignore the check boxes they are going to be replaced with text fields that will go into the table):
              Please correct the following error:

    Remove this patch of code:
    $message = "$company has submitted a problem via Problem Ticket Form.
    Name: $name
    E-mail: $email
    Company: $company
    Phone Number: $phone
    I am having issues in the following areas:
    $problem1
    $problem2
    $problem3
    $problem4
    Comments:
    $comment
    End of message
    Use PHP to create a table within your message body:
        $message = '<table border="1">';
        $message .= '<tr>';
        $message .= '<td>E-mail :</td><td>'.$email.'</td>';
        $message .= '</tr><tr>';
        $message .= '<td>Company :</td><td>'.$company.'</td>';
        $message .= '</tr>';
        $message .= '</table>';
    The above script will capture Email & Company. But you should get the idea. Add all the desired fields within here by creating new <tr> rows/ columns.
    And your existing script will do the rest of mailing this out as a 'table'.

  • Creating a form that is then emailed

    I'm trying to create a page on my website where there are several fields for inputting information such as "name" and "email adress", then once the fields are filled out and a "send" button is clicked, all the information that was entered is emailed to a single, unchanging adress. can anyone help with this?

    Here. I pulled this code off of another site I'm working with and edited it. Is this acceptable and can someone check it for me.
    <script Language="JavaScript" Type="text/javascript"><!--
    function FrontPage_Form1_Validator(theForm)
      if (theForm.Name.value == "")
        alert("Please enter a value for the \"Name\" field.");
        theForm.Name.focus();
        return (false);
      if (theForm.Name.value.length < 1)
        alert("Please enter at least 1 characters in the \"Name\" field.");
        theForm.Name.focus();
        return (false);
      var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜ ÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-- , \t\r\n\f";
      var checkStr = theForm.Name.value;
      var allValid = true;
      var validGroups = true;
      for (i = 0;  i < checkStr.length;  i++)
        ch = checkStr.charAt(i);
        for (j = 0;  j < checkOK.length;  j++)
          if (ch == checkOK.charAt(j))
            break;
        if (j == checkOK.length)
          allValid = false;
          break;
      if (!allValid)
        alert("Please enter only letter, digit, whitespace and \"- ,\" characters in the \"Name\" field.");
        theForm.Name.focus();
        return (false);
      if (theForm.School.value == "")
        alert("Please enter your school or district.");
        theForm.School.focus();
        return (false);
      if (theForm.School.value.length < 1)
        alert("Please enter your school or district.");
        theForm.School.focus();
        return (false);
      if (theForm.Title.value == "")
        alert("Please enter your title with your school or district.");
        theForm.Title.focus();
        return (false);
      if (theForm.Phone.value == "")
        alert("Please enter a value for the \"Phone\" field.");
        theForm.Phone.focus();
        return (false);
      if (theForm.Phone.value.length < 10)
        alert("Please enter at least 10 characters in the \"Phone\" field.");
        theForm.Phone.focus();
        return (false);
      if (theForm.Phone.value.length > 12)
        alert("Please enter at most 12 characters in the \"Phone\" field.");
        theForm.Phone.focus();
        return (false);
      if (theForm.Email.value == "")
        alert("Please enter your title with your Email address.");
        theForm.Email.focus();
        return (false);
      return (true);
    //--></script><!--webbot BOT="GeneratedScript" endspan --><form method="GET" name="FrontPage_Form1" there also might be a problem here since I pulled this off of another website: action="_vti_bin/shtml.dll/onlinesupport.htm" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" webbot-action="--WEBBOT-SELF--">
            <!--webbot bot="SaveResults" s-email-format="TEXT/PRE" s-email-address=****@*******.com b-email-label-fields="TRUE" b-email-subject-from-field="TRUE" s-email-subject="Webinar Request" s-builtin-fields s-form-fields="Name SchoolorDistrict Title Phone Email " I think there is a problem here because it brings up a "cannot be displayed" page:u-confirmation-url="C:\Documents and Settings\JHarrison\My Documents\chris's practice site\NavigationBar\thankyou.html" startspan --><input TYPE="hidden" NAME="VTI-GROUP" VALUE="0"><!--webbot bot="SaveResults" endspan i-checksum="43374" -->
            <p align="left"><strong>Name:            
            <!--webbot bot="Validation" s-data-type="String" b-allow-letters="TRUE" b-allow-digits="TRUE" b-allow-whitespace="TRUE" s-allow-other-chars="- ," b-value-required="TRUE" i-minimum-length="1" --><input type="text" name="Name" size="32"></strong></p>
            <p align="left"><strong>School or District Name:
            <!--webbot bot="Validation" b-value-required="TRUE" i-minimum-length="1" -->
            <input type="text" name="School" size="32"></strong></p>
             <p align="left"><strong>Title with School or District:
            <!--webbot bot="Validation" b-value-required="TRUE" i-minimum-length="1" -->
            <input type="text" name="Title" size="32"></strong></p>
            <p align="left"><strong>Phone Number: 
            <!--webbot bot="Validation" b-value-required="TRUE" i-minimum-length="10" i-maximum-length="12" --><input type="text" name="Phone" size="11" maxlength="12"> 
            </strong></p>
            <p align="left"><strong>E-mail Address:  <!--webbot bot="Validation" b-value-required="TRUE" i-minimum-length="1" --><input type="text" name="Email" size="32"></strong></p>
            <p>Please click &quot;<em>Submit</em>&quot; to send us your request. To
            start over, press the &quot;<em>Reset</em>&quot; button. Thank you.</p>
            <p align="left"> </p>
            <p align="left"><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
          </form>
    also it doesn't mail anything when I test it in dreamweaver.

  • How do I create a second account with my husband's name and email address?

    My account works fine. I read about Profile Manager, but couldn't find it. I can find Account 1 with my name. I see Account 2 listed, but no name or email address even though I typed that information into some form along the way.

    Assuming that you are happy to share Thunderbird, and be able to see each others' messages, then there's no need for the profile manager.
    If you want to keep things separate, then it's better to set up separate user accounts in the operating system. Each of you would then have your own private space for data and settings, including each having your own Thunderbird profile.
    So, your husband already has his own distinct email address and account, set up with an email provider?
    In Thunderbird, you'd use '''File|New|Existing Mail Account…''' (in the traditional menu) or '''[≡]|New Message|Existing Mail Account…''' (with the Application Menu button) to add his account to Thunderbird. I think you may have already done this given that you say you have entered the email address (and its password?) already.
    I think at this point a screenshot of Thunderbird may help us understand what you do and do not see.
    https://support.mozilla.org/en-US/kb/how-do-i-create-screenshot-my-problem
    Use Paint or similar to blot out any data you'd prefer not to share.

  • How to find out the user name and email address from SAP user id?

    Hi experts,
    In sto3n I find out the the user id with most navigations. I like to know his name or email address to contact him. Which table stores the user details? how to do it?
    Thanks in advance.
    Sharat.

    hi,
    The below tables will give only the name .
    USER_ADDRS
    USER_ADDR
    USER_ADDRP
    USR02
    i think you need email address .
    you can use this Tcode : su01d
    and give the user name and excute it
    i hope it will help you.
    Ram
    Edited by: Ram velanati on Jun 30, 2008 6:57 PM

  • I created a form, I want the email notices to go to several people. Why is this so difficult? It seems like they have to be a co-author/reader or something? I don't get it

    I created a form, I want the email notices to go to several people. Why is this so difficult? It seems like they have to be a co-author/reader or something? I don't get it

    This is crazy! I paid for this service to make it easier to create forms for a company that has had several acquisitions all over the globe. This was supposed to make it easy to create forms hosted on adobe so no matter what happens on all their servers, we would be safe using this forms service until we can integrate all acquisitions and build a permanent web site on a single server. Now I find out that even this is a major issue sending emails to team members, many I have never met so making them a collaborator or even setting up forwarded emails is not something I wanted to do. This service was advertised as simple and easily send notifications to many people. I am now frustrated and thinking this was a waste of money! Why is it like that?

  • How can I send an email to a group in my address book, but hide the individual names and email addresses?

    how can I send an email to a group in my address book, but hide the individual names and email addresses?

    You used to be able to do this through leaving unchecked the box in preferences "when sending to a group show all member addresses". However, that feature failed some time ago (two or three years?) and the only way to hide the addresses now is to put the group in the BCC field.

  • How to email a list of names and email addresses?

    I have a group of about 60 people with various amounts of data in each of their Address records.
    I want to send an email to the group with a list of the names and email addresses of everyone on the list. I don't know how to do this neatly. Got any ideas?
    If I put the group name in "to" in Mail, each person gets a messy non-alphabetical list with commas. If I send a group vCard, I send more data than I want to send. If I make a printed list, I have to convert to a pdf file and send that which is not nearly a simple as a text list.
    Is there any way to export fields of my choice from Address into either text or spreadsheet format?
    I want to send a list like this, but with tabbed columns.
    Steve Jobs [email protected]
    Barack Obama [email protected]
    yourname1 yourname2 [email protected]
    Thanks,
    Phil

    Thanks, Thomas for the prompt response, but the pdf method has two problems.
    First, it's got to be in landscape mode, or the email address word-wrap. That makes for a five-page list. I want to send a 60-line text list.
    Secondly, there's no way to eliminate the label (work, home, other...) from the email address field.
    I will use the pdf method if no one comes up with a better idea.

Maybe you are looking for

  • ABAP API for MDM work flow

    Hi SDN, I need some information related to ABAP API for MDM workflow. I did search in SDN and I found one solution in a thered posted on Jul-2008. ABAP API - MDM Workflow execute My dought is: Do we have any ABAP API for call MDM work flow. Please pr

  • How to set JMenu/JMenuItem.accelerator property in Inspector

    How do you set an accelerator key through the accelerator property in the inspector for a JMenu or JMenuItem object? The list box contains one item, "<none>". Does one have to create some special keyboard shotcut objects that then will be added to th

  • User entry in Query output screen

    Hi Friends, Is there any option to allow user entry in the query output (not variable entry screen), so that the output will change accordingly? Regards, Guru

  • OS4.1.4 and Windows 7

    Is anyone using OS4.1.4 with Windows 7?  We have a Palm M100 that is used for updating software on bill validators. But our new laptop has Windows 7 on it and it does not seem to work properly using Palm OS 6.2.2 with the older M100. We usually need

  • T-Mobile UK now charging for tethering!  Is there a workaround?

    I have been using tethering for a few months on my iPhone 4, mostly for email access and limited internet browsing. Yesterday I got a shock. I hooked up as normal but instead of being able to browse, I got a T-Mobile intercept page forcing me to but