How to add CSV file extension in output format of sap document in SCOT

Hello All,
i have added CSV in conversion rule through “SAP Customizing Implementation Guide–> SAPNetWeaver –>SAP Web Application Server -> Basis Services -> Communication Interfaces -> SAPconnect Client-Wide Settings -> General Settings -> Conversion Rules”. but it is not showing in SCOT (o/p format for SAP document).
Please do needful

i found this string on net
add a Conversion-rule (transaction SCOT like this:
CSV CSV 1 SX_OBJECT_CONVERT_TXT_INT
How i Add .

Similar Messages

  • Output forrmats for SAP documents

    Hi,
    I am trying to set up our SAP system such that all SAP documents are sent with HTML attachments.
    I have gone into transaction SCOT and under the 'Output formats for SAP documents' section, I tried to select the HTM option for SAPSCripts/Smart Forms, however there is no such option.
    I can see the HTM option for ABAP List though.
    Does anyone know how I can select the HTML option for SAPScripts?
    Thanks,
    Ruby

    Here is some sample code for achieving manual conversion to the OTF format.
    In case of more than 10 pages:
    - Check the spool request
    - Click Edit -> OTF display -> No. of OTF pages
    Convert SAP Script to text:
    - Display the spool request
    - Then click Goto -> List display
    Automatic conversion to the OTF format:
    tables: tline.
    data:   begin of int_tline1 occurs 100.
                 include structure tline.
    data:   end of int_tline1.
    call function 'OPEN_FORM'
                     device         = 'OTF_MEM'
    after CLOSE_FORM
    call function 'CONVERT_OTF_MEMORY'
         exporting
              format                = 'ASCII'
              max_linewidth         = 132
         tables
               lines                 = int_tline1
         exceptions
              err_max_linewidth        = 1
              err_format                    = 2
              err_conv_not_possible = 3
              others                          = 4.
    write the text file to spool
    loop at int_tline1.
       if int_tline1-tdline = space.
          skip.
       else.
          write:/ int_tline1-tdline.
       endif.
    endloop.
    CONVERT_OTF
    Convert SAP documents (SAPScript) to other types.
    Example:
    CALL FUNCTION "CONVERT_OTF"
           EXPORTING    FORMAT                = "PDF"
           IMPORTING    BIN_FILESIZE          = FILE_LEN
           TABLES       OTF                   = OTFDATA
                        LINES                 = PDFDATA
           EXCEPTIONS   ERR_MAX_LINEWIDTH     = 1                  
                        ERR_FORMAT            = 2
                        ERR_CONV_NOT_POSSIBLE = 3
                        OTHERS                = 4.
    CONVERT_OTFSPOOLJOB_2_PDF  converts a OTF spool to PDF (i.e. Sapscript document)
    SX_OBJECT_CONVERT_OTF_PDF  Conversion From OTF to PDF (SAPScript conversion)
    SX_OBJECT_CONVERT_OTF_PRT  Conversion From OTF to Printer Format (SAPScript conversion)
    SX_OBJECT_CONVERT_OTF_RAW  Conversion From OTF to ASCII (SAPScript conversion)
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Add CSV file as Scheduled Report Output Format

    Is there any option in BOXI R2 and R3 - Add CSV file as Scheduled Report Output Format. If not, how do we achieve this?

    Hai
    http://www.christiansteven.com/products/crd/
    http://webtrends.dbt.co.uk/wrc/help/webhelp/hlp_exrpt.htm
    http://www.businessobjectstips.com/tips/infoview/business-objects-cannor-not-create-an-excel-file/

  • How to save CSV file in application server while making infospoke

    How to save CSV file in application server to be used as destination while making infospoke.
    Please give the steps.........

    Hi
    If you want to load your flatfile from Application server,then you need to trasfer your file from your desktop(Computer) to Application server by using FTP.
    Try using ARCHIVFILE_CLIENT_TO_SERVER Function module.
    You Just need to give thesource path and the target path
    goto SE37 t-code , which is Function module screen, give the function name ARCHIVFILE_CLIENT_TO_SERVER, on click F8 Execute button.
    for path variable give the file path where it resides like C:\users\xxx\desktop\test.csv
    for target path give the directory path on Application server: /data/bi_data
    remember the directory in Server starts with /.
    U have to where to place the file.
    Otherwise use 3rd party tools to connect to ur appl server like : Core FTP and Absolute FTP in google.
    Otherwise...
    Goto the T.code AL11. From there, you can find the directories available in the Application Server.
    For example, if you wanna save the file in the directory "DIR_HOME", then you can find the path of the directories in the nearby column. With the help of this, you can specify the target path. Specify the target path with directory name followed by the filename with .CSV extension.
    Hope this helps
    regards
    gaurav

  • How to upload .CSV file from Application Server

    Hi Experts,
        How to upload .CSV file separated by ',' from Application server to an internal table.
    Invoice No,Cust No,Item Type,Invoice Date,days,Discount Amount,Gross Amount,Sales Amount,Customer Order No.,Group,Pay Terms
    546162,3233,1,9/4/2007,11,26.79,5358.75,5358.75,11264,HRS,11
    546163,2645,1,9/4/2007,11,3.07,305.25,305.25,10781,C,11
    Actually I read some already answered posts. But still I have some doubts.
    Can anybody please send me the code.
    Thanks in Advance.

    Hi Priya,
    Check this code
    Yhe logic used here is as follows,
    Get all the data into an internal table in the simple format ie: a row with one field contains an entire line
    After getting the data, we split each line of the table on every occurrence of the delimiter (comma in your case)
    Here, I have named the fields as field01, field02 etc, you could use your own names according to your requirement
    parameters: p_file(512).
      DATA : BEGIN OF ITAB OCCURS 0,
              COL1(1024) TYPE C,
             END OF ITAB,
             WA_ITAB LIKE LINE OF ITAB.
      DATA: BEGIN OF ITAB_2 OCCURS 0,
        FIELD01(256),
        FIELD02(256),
        FIELD03(256),
        FIELD04(256),
        FIELD05(256),
        FIELD06(256),
        FIELD07(256),
        FIELD08(256),
        FIELD09(256),
        FIELD10(256),
        FIELD11(256),
        FIELD12(256),
        FIELD13(256),
        FIELD14(256),
        FIELD15(256),
        FIELD16(256),
       END OF ITAB_2.
      DATA: WA_2 LIKE LINE OF ITAB_2.
        OPEN DATASET p_FILE FOR INPUT IN TEXT MODE ENCODING NON-UNICODE.
        IF SY-SUBRC = 8.
          WRITE:/ 'File' , p_FILE , 'cannot be opened'.
          LV_LEAVEPGM = 'X'.
          EXIT.
        ENDIF.
        WHILE SY-SUBRC <> 4.
          READ DATASET p_FILE INTO WA_ITAB.
          APPEND WA_ITAB TO ITAB.
        ENDWHILE.
        CLOSE DATASET p_FILE.
      LOOP AT ITAB INTO WA_ITAB.
        SPLIT WA_ITAB-COL1 AT ','    " where comma is ur demiliter
         INTO WA_2-FIELD01 WA_2-FIELD02 WA_2-FIELD03 WA_2-FIELD04
         WA_2-FIELD05 WA_2-FIELD06 WA_2-FIELD07 WA_2-FIELD08 WA_2-FIELD09
         WA_2-FIELD10 WA_2-FIELD11 WA_2-FIELD12 WA_2-FIELD13 WA_2-FIELD14
         WA_2-FIELD15 WA_2-FIELD16.
        APPEND WA_2 TO ITAB_2.
        CLEAR WA_2.
      ENDLOOP.
    Message was edited by:
            Kris Donald

  • How to add PDF files into a slides? (Flash 8)

    I am new to flash and I am using Macromedia Flash 8. My task is simple enough: I need create a Presentation with Screens from PDF files: I have 10-12 PDF files which I want convert into flash presentation.
    I have read this tutorial:
    http://w3.id.tue.nl/fileadmin/id/objects/E-Atelier/Phidgets/Software/Flash/fl8_tutorials.p df
    Chapter 11: Basic Tasks: Create a Presentation with Screens.
    I'm having trouble how to add PDF files into a slides: I want insert a whole pdf file as separate slide, without splitting pdf file into separate elements: pictures, text, etc. I tried import pdf file into Flash, wheen import there is shown prompt how program should process this pdf file(add in stage, library, as keyframes, etc) , not clear which option is correct for my task. What I got is pdf file splitted into multiple images, text, - which is not what I want. I want keep PDF files without changes, preserve original design and formatting, just convert this pdf into flash, so presentation will consist of PDFs organized in correct order, then add navigation buttons and some effects. How to solve this task?

    Just to avoid potential confusion... PDF is an Adobe format, but Flash 8 is/was not.  Flash 8 came out before Adobe bought Macromedia.  Even today, I don't believe anything has been done to accomodate direct integration of PDF content in Flash.

  • How to add js files to sharepoint page using sharepoint designer

    how to add js files to sharepoint page using sharepoint designer

    Upload the files to your site collection into the site assets library or into the style library, depending on perference.
    Then you can include the JS files either in the master page, page tempalte or using web parts.

  • How to send CSV files to external server

    Hi All,
    How to send CSV files to external server (not to application server).
    I know how to download files to application server.
    Please give me the steps to send CSV files to external server.
    Is it posiible with RFCs? If yes, then plz provide me the steps. Do we need to create RFC destination for this.
    Appriciate your help with rewarding points.
    Please help as this is an urgent requirement

    hi,
    you can send via xi.
    chk this blog
    a) content conversion (sender)
    /people/sap.user72/blog/2005/01/06/how-to-process-csv-data-with-xi-file-adapter
    b)content conversion (receiver)
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion
    <b>
    reward points if this helps you.</b>
    Siva
    Message was edited by:
            SivaKumar

  • How to add ndf files in alwaysOn ?

    HI All,
    How to add ndf files in alwayson (database added in ag group).
    Thank
    Vijay

    As per me:In Always ON you can add the data without breaking by alter database statement the file path (including the drive letter) of a given secondary database be identical to the path of the corresponding primary database.
    In case drive letter is different, follow steps mentioned in below link:
    http://technet.microsoft.com/en-us/library/hh510190.aspx
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • How to add .m4r files from my computer to my tones in iPhone 6 iOS 8.1.1 ?

    How to add .m4r files from my computer to my tones in iPhone 6 iOS 8.1.1 ?

    You've sycned other content via your computer's iTunes to the phone ?
    You can sync photos to your phone via your computer's iTunes : connect your phone to your computer, click on its icon towards the top left of the iTunes screen, and select Photos on the left-hand side of the screen :
    Photos that you sync from a computer can't be deleted directly in the phone's Photos app, instead they are deleted by not including them in the next photo sync - so you will need to include all photos that you want from your computer in each photo sync.

  • How do add .mov files in Premiere Elements 11 with Windows 8? I get a generic error message.

    How do add .mov files in Premiere Elements 11 with Windows 8? I get a generic error message.

    Hi Steve,
    Thanks for your quick response. The original movies were taken on a Canon ES970 (1990's). I don't know the resolution but things were not as high tech back then.,.. I used a Roxio software to convert them on my MacBook Air. I didn't realize that I could use Adobe Premiere Elements to do that or I would have. However my old camera did not have a cable to attach it to a computer and the Roxio software came with it.
    I then saved the recordings on an external hard drive. I did not make movies from them using iMovie or edit them in any way. They are simply .MOV files and they can be played on my Mac. Upon realizing how much memory it takes to work on videos, I decided it might be easier to burn DVD's on my husband's  new Dell desktop that came with Windows 8. I downloaded Quicktime as suggested and still the movies can't be added to Premiere.

  • How to add a file to an existing package programmatically in Acrobat 8?

    Hello
    Is it possible to add a file to an existing package programmatically in Acrobat 8? (embed a pdf file in a pdf package programmatically); If so, how should I do it?
    Thanks in advance,

    Finally, I found out how to add a file to an existing package programmatically by using JavaScript (function: app.execMenuItem("AddFileAttachment")). Thanks for your help Ironsenth. However, I need to specify the file to attach programmatically and I can't figure out how to do it.
    Could you let me know where I can find this information (what document to read)? Is there any parameters for the 'AddFileAttachment' method?
    Thanks in advance,

  • How to add audio files.

    I'm using Premiere Elements 11 on my iMac.  I can't for the life of me figure out how to add music files to the 8 or so that come with the program.  Anybody else having this problem or am I just dumber than most?

    Comstar 11 wrote:
    As I put in my original post I might be dumber than most and that's still a possibility.  I also tried the "Use Smartsound" same feeling that I didn't like the add on that just took me to another site to sell me music.  I couldn't find the "Project Assets" box after looking almost everywhere.  But.....  I was in the "Quick" mode.  Knowing I was a rank beginner I avoided the "Expert" tab.  But after looking everywhere else I opened that tab and "It's A Miracle" there it was.  Still stumbling through the learning process so thanks for your kind help.  If I hit the wall again I'll make another post looking for help.  Thanks Again.
    I tried the Quick mode.  When I did 'add media' in the upper left corner, video files went straigt to the project box.  Then I tried an audio file and it went below the video in the project box.  So, I see where in 'Quick' the 'Project Assets' box and step are skipped.  Sorry about misleading you.
    Either way, audio files get to the project box when you pick them up as a file on your computer.
    There are two great sources to speed the learning process.  lynda.com has courses that are like a personal demo of everything PrE does with a great coach explaining it.   http://www.lynda.com/Premiere-Elements-tutorials/Up-Running-Premiere-Elements-11/109763-2. html  A few if the chapters are free as a trial.  The fee is $25 for a month of access.  One month is more than enough if all you want is the one course. 
    If you prefere owning a course on a disk, video2brain is an alternative, but I don't think it is as thorough.
    Bill
    Bill

  • How to add music files from other hard drives

    how to add music files from other external hard drives??

    Not sure what you are trying to achieve.. You can copy the files to anywhere you like.. but the TC is a backup target for Time Machine.. it is not a media server.. it is totally useless copying your files to the TC as they will not be backed up from there.. TC has no built in backup and TM cannot backup network drives.

  • How to add dll file to EAR project

    hi,
    i am working with JNI . how to add .dll files to EAR for deployment in NetWeaver.
    regards
    Guru

    HI
    GOOD
    GO THROUGH THESE LINKS
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2583bbf9-0701-0010-8db5-a558e0c6f1fe
    http://support.businessobjects.com/documentation/product_guides/boexir2/en/xir2_bip_install_en.pdf
    THANKS
    MRUTYUN

Maybe you are looking for