How to add conversion rule in SCOT email attachment.

Hello All,
How to add conversion rule in SCOT email attachment.
I try to csv conversion rule in scot through spro. I add this rule through SPRO successfully but this rule not added in SCOT internet tab.

Hi,
Please find below link. May be these are helpful to you.
http://scn.sap.com/thread/717106
http://help.sap.com/saphelp_nw70/helpdata/en/af/73563c1e734f0fe10000000a114084/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/39/4d3d3d9ba00645e10000000a114084/content.htm
Regards,
Saket S. Ghanekar

Similar Messages

  • Add conversion rule in SCOT

    Hello all,
    Can any one please help me with how to add conversion rule in SCOT to convert .ali file format to .csv file format?
    Thanks in advance.

    Hi,
    Please find below link. May be these are helpful to you.
    http://scn.sap.com/thread/717106
    http://help.sap.com/saphelp_nw70/helpdata/en/af/73563c1e734f0fe10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/39/4d3d3d9ba00645e10000000a114084/content.htm
    Regards,
    Saket S. Ghanekar

  • HOW TO ADD BUSINESS RULES

    HI EVERY ONE,
      I HAVE A REQUIREMENT WORKING ON MM , I HAVE SOME BUSINESS RULES IN FUNCTIONAL DESIGN DOCUMENT AND I NEED TO WRITE THE TECH DESIGN . MY QUESTION IS HOW TO ADD BUSINESS RULES IN TECH SPEC. EXAMPLE I HAVE FINAL DUE DATE AS BUSINESS RULE i.e,
    Final Due Date = Baseline Date + Maximum Day Term
    If Clearing Date is = Final Due Date = Invoice is Paid-On Time
    If Clearing Date is < Final Due Date = Invoice is Paid Early.
    If Clearing Date is > Final Due Date = Invoice is Paid Late
       I have the data available for Final Due date from R3 .
    So after creating the Info Object( characteristic), where can I add this formula for that Z INFO OBJECT ?  I have total of 5 business rules like this in my funtional doc
    Help will be appreciated . Points will be assigned if my problem solved...
    thanks

    Hi Harish,
    With the assumptions:
    1. You are using a BI 2004s system
    2. The fields Baseline Date, Clearing Date & Maximum Day Term are being sourced from R/3
    The rules can be coded into the End Routine in the Transformation.
    If you are using a BW 3.x system, this logic can be coded in the Start Routine at the Transfer Rules or the Start Routine at the Update Rules.
    Hope this helps.
    Regards,
    Shrikant

  • How to compress file 32+ mb for email attachment

    how to compress file 32+ mb for email attachment, after I used compress it's still shows 29 mb. Is there another step I could do. I am new with MAC so please forgive if this sound simple and stupid question.

    You simply don't attach that file to email.  Even if you could cut the size by half, that's still way too big for email.  Many mail servers will remove attachments over a certain size, and for most of those that size is below 10 MB.  Find another way to share that file, like a web server or Dropbox or something along those lines.

  • How to add multiple photos to 1 email

    How do I add multiple photos to 1 email I want to send?

    You can select up to 5 to send via email. Select the additional photos like you do the first one. Go into the camera roll. Tap on the Edit button, select the photos that you want to send, tap Share at the bottom of the screen, select email.

  • How to add one more user the email notification

    Hi,
    I would like to know, how I can add 'CC' / One more user to the email notification?
    Currently system is sending email with From Address, And To address (to the user email). But I need to send email to User and one Administrator.
    Template: Create User Self Service Notification
    How can I achieve this?
    thanks

    "Set the Search Allowed property to True for any LOV result items you want to present to the user as searchable values. These items are listed in the search poplist the user sees in the LOV window.
    At a minimum you must set the Search Allowed property to True for the the result table item corresponding to the LOV field on the base page.
    This is from the devguide, I suggest you read it once at least if you have started work on the framework.
    Tapash

  • How to add 'cc' field for sending emails

    STEP 1>
    I have created a PO and i m viewing it thru me23n. Now i want to send this PO thru email, so in me23n, i select the PO no. and on top I click on 'Messages'. In output type I select 'NEU' and in Medium I select 'External send' .
    STEP 2> Now on top I click on ' Communication Method' . In Communication Strategy I select 'CS01' and logical destination is 'LP01'
    STEP 3> Now when I save it, It automatically sends an email to the vendor. This email address is taken from vendor master's email address field.
    So, how can I add a 'CC' and 'BCC' field, so that emails can be sent to multiple person.

    Hi,
    use this FM SO_DOCUMENT_REPOSITORY_MANAGER .
    In that in the table parameters Receipents
    SOOS1-SNDCP = 'X'. (CC)
                  SNDBC = 'X'. (BC)
    For any needs refer the above FM.
    With Regards,
    Sumodh.P

  • How to add body text to smartform email?

    Hi,
    In release 620, how can you add text to the mail message that is generated from e-mailing a smartform.  I need to add a small message to the body of the message in addition to the attachment.
    i.e. Please find attached your invoice. [attachement.pdf]
    Thanks,
    Guy

    I don't know SmartForm so there may be another way to do it but the following approach was fine for Sapscript.
    Basically have a look at the SAP sample programs bcs_example_* where * = 1 thru 5. I think bcs_example_5 is the one to focus on. This creates a simple email and then adds an attachemnt to it. In your case you want the attachment to be your SmartForm's output.
    For the SapScript I was able to call the form from abap, receive the output into a table whose contents I could then attach to the email.
    The attachment code needs to be changed to set type to OTF:
    i_attachment_type = 'OTF'
    I'll speak in SAPscript and hope there are equivalent terms in SmartForm. I created the following abap form to run the SAPscript and get it's output into a table:
         Form  GET_OTF_CODE
    FORM  get_otf_code
    USING us_work       TYPE zsd_fet_signup_confirm
    CHANGING ch_otf_out TYPE solix_tab.
      DATA: BEGIN OF otf OCCURS 0.
              INCLUDE STRUCTURE itcoo .
      DATA: END OF otf.
      DATA: itcpo LIKE itcpo.
      DATA: itcpp LIKE itcpp.
      CLEAR itcpo.
      itcpo-tdgetotf = 'X'.
    Start writing OTF code
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          form     = 'ZSD_FET_COVERFAX'
          language = sy-langu
          OPTIONS  = itcpo
          dialog   = ' '
        EXCEPTIONS
          OTHERS   = 1.
      CALL FUNCTION 'START_FORM'
        EXCEPTIONS
          error_message = 01
          OTHERS        = 02.
      CASE us_work-recipient_type.
        WHEN c_agent_recipient.
          w_recipient_name = us_work-agent.
        WHEN c_asm_recipient.
          w_recipient_name = us_work-asm.
        WHEN OTHERS.
          w_recipient_name = 'IPL Agent/ASM'.
      ENDCASE.
      CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          window        = 'MAIN'
          element       = 'HEADER'
        EXCEPTIONS
          error_message = 01
          OTHERS        = 02.
      CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          window        = 'MAIN'
          element       = 'TEXT'
        EXCEPTIONS
          error_message = 01
          OTHERS        = 02.
    Close up Form and get OTF code
      CALL FUNCTION 'END_FORM'
        EXCEPTIONS
          error_message = 01
          OTHERS        = 02.
      MOVE-CORRESPONDING itcpo TO itcpp.
      CALL FUNCTION 'CLOSE_FORM'
        IMPORTING
          RESULT  = itcpp
        TABLES
          otfdata = otf
        EXCEPTIONS
          OTHERS  = 1.
    Move OTF code to output structure
      REFRESH ch_otf_out.
      LOOP AT otf.
        APPEND otf TO ch_otf_out.
      ENDLOOP.
    ENDFORM.                    "GET_OTF_CODE

  • How to add logo to Business Catalyst email signature

    How does one and his logo or other graphic to the email signature in the Business Catalyst email environment? This is a basic function of the most basic and even FREE email sources out there. I can't seem to do it in Business Catalyst. I and my 1 BC customer are getting pissed-off right now. I have looked and looked and can't find the solution. It may be right in front of me. Please help.
    When we sign into the BC email accounts, it allows us to add a text signature under Settings/Mail - but text ONLY!!! Help! This can't be. It should not be. This is a basic, basic thing! Yes, I realize someone using Outlook or another manager can add a signature, but one should be able to add the graphic to the signature in BC.  Agreed? How do I proceed and, if I can't (unimagineable), how fast can BC add this feature?
    Thanks in advance for your help
    Signed,
    Frustrated & Disappointed

    Hi Bob,
    No need to fret over coding here's a quick and simple way to obtain the HTML code of the signature required. 
    In this example I'm using FireFox as my browser and simply highlighted your signature content.  Then I right-clicked and select "view selected source" to grab the HTML. 
    Quick video: http://screencast.com/t/p9V94NlBz
    The code you are after.
    <p><span style="color: rgb(128, 0, 128);"><strong>Bob Doris</strong><br></span><em style="color: rgb(128, 0, 128);">Marketing/Graphics</em></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><a href="http://forums.adobe.com/servlet/JiveServlet/showImage/2-4414473-193549/Logo.jpg"><img alt="Logo.jpg" class="jive-image" src="http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4414473-193549/150-111/Logo.jp g" height="111" width="150"></a><a href="https://www.facebook.com/goodkarmacafeandcatering" rel="nofollow"><img alt="Facebook-Vector-Icon.png" class="jive-image-thumbnail jive-image" onclick="" src="http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4414473-193559/38-38/Facebook- Vector-Icon.png" height="38" width="38">
    Just a FYI you might want to create this signature within your site then pull the HTML. Since my example above is pulling the images you've uploaded in this forum thread.  Just in case the forum topic was ever deleted you may lose the images.
    Hope this helps!
    -Sidney

  • How to add link in full screen email Lion?

    Hi all
    I've been using the full-screen versions of most apps since istalling Lion. Not perfect but I like being able to swipe between screens. However the email function in full screen doesn't allow you to add a link to your message. When you hit compose new message the toolbar functions don't drop down. Am I missing something here?
    thanks
    WG
    Ps - I also have had the Wifi problem which was resolved by setting up network again. Time Machine does seem to take longer to backup with Lion. Finally, also have problems with email where it can't send emails sometimes. None of these dealbreakers for me but hopefully new release version will deal with them!

    You should have a limited toolbar, but the add link button isn't part of it.
    You can add a link using the Edit menu (or cmd-k), or select text and right-click (Link>Add Link…)

  • How to add a photo to my email logo?

    I would like my photo to appear on all my sent out emails. How can I do it?

    Within the native mail app, there is no way to do that. You are limited to just text.
    There are some apps in the app store that might help.

  • How do I open a TIF image email attachment using windows photo gallery as the default instead of microsoft office picture manager?

    I have an internet fax program that sends faxes directly to my email as a TIF image attachment. When I download the attachment it lists Microsoft office picture manager as the default program to view the image. I would like to change the default program to view the image to Microsoft photo gallery. How do I change the default program to open an image attachment in firefox? Thank you

    OK I have it figured out! I was using google mail. For what ever reason the imac/pc safari using google would not display the PDF in the email even though the ipad/iphone did. I tried a different mail system through work (not google mail) and it EVERYTHING works GREAT!!!!! Wow, a lot of wasted time over something that was actually working.

  • How to disable an old user's email attached to iTunes

    I purchased a computer from my former employer.  It has two email accounts attached to iTunes.  When I try to download a new app or upgrade an existing app, it prompts with these old emails.  They are grayed out so that I'm unable to write over them and add my email.  I get a prompt for the first old user, and when I hit CANCEL, I'll get a prompt for the second old user.  Both prompts ask me for passwords, which I do not have.  If I hit CANCEL on the second old user, the prompts go away.  I am unable to find a way to enter my email and password to download upgrades or new apps.  Any advice?  Other than "never buy a used computer?" 

    Click here and follow the instructions. If the computer originally shipped with Mac OS X 10.6.8 or earlier, when you reach step 5, insert its original disk, restart with the C key held down, use the Disk Utility to erase the internal drive, and install a fresh OS.
    (113601)

  • How to send text file as an email attachment havin more than 255 characters

    My requirement is to generate a text file and to send this text file as E-mail attachment. I am using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send the E-mail. but here the limitation is the number of characters per line must not be more than 255 characters whereas in my case it is exceeding 1000 characters per line. could anyone please suggest me what should i do now ? Each field in the text file has to be tab delimited.

    Simplest might well be to use javamail API instead of the two tags that Sites provides, e.g. see email - Sending mail attachment using Java - Stack Overflow for a full example.
    Phil

  • How to play wmv files in an email attachment on iphone 3GS

    How can I play .wmv files which are in an e-mail attachment on my iPhone 3GS?

    http://itunes.apple.com/us/app/azul-media-player-video-music/id406845187?mt=8

Maybe you are looking for

  • When I open a tab, it doesn't automatically load the new page. What's wrong?

    Exactly what the question states. When I open a new tab by right clicking a link and saying "open in a new tab", it doesn't load. It pops up a new tab, and the web address is in the address bar, but it doesn't load the page. I have to manually tell i

  • How do I open multiple 'windows' in Entourage?

    I am using MS Entourage and would like to be able to open multiple windows within that program. For example, I would like to have both my calendar and address book opened at the same time in different windows. I have looked all over for a way to do t

  • Cannot switch base units on Goods Receipt PO copied from Purchase Order

    Hi, I am wondering if there is a simple trick or setting for this or if we have to use a UDF/FMS... When using Uom for sales and purchasing, you cannot switch between Yes and No for base units on the target document(GRPO) when copying a PO to GRPO. F

  • HOW TO USE ISO9660 JULIET FORMAT CD IN MAC BOOK anybody can help

    I HAVE A CD WHICH IS FORMAT ISO9660 JULIET THAT I HAVE A HARD TIME TO OPEN THE CD IN MY MACBOOK IT RECOGNISE THE CD BUT NOT OPEN IT THANKS FOR UR HELP MACBOOK   Mac OS X (10.4.9)  

  • Downloading from Appserver to Client m/c

    Hi I'm working on Forms/report integration, All the reports are generated on AppServer, (Client do not want to preview, but want those reports on client m/c as it is), I tried doing it using Webutil file tranfer, our DBA not able to configure Webutil