Smartform output in news paper format

Hi All,
How to print the data in the main window of a smartform in news paper format like First colum some data and second colum some data(after filling the first column data).
Regards
mahesh

Hi,
This can be done using table nodes with appropriate line types and table widths designed as per the news paper format.
Also in what kind of structured way the data is passed onto the smartform interface matters here.
Suppose you have the data required for the first column in a single table then use appropriate table width as required for the first column of the news paper format.
Then adjacent to it use another table storing the data required for the second column.
This way you can display the data in a news paper format.
Regards,
Ram

Similar Messages

  • How to print the form output in news paper format

    Hi All,
    How we will print the data in the output in newspaper format in SAP script?
    Can any body give some idea on this.
    Thanks&Regards
    Mahesh

    If what I understand is correct..!!!!!!!!!
    design the windows in required format. and make the window belongs to all required pages and just type the matter there itself. then run the form from ABAP editor.
    Cheers.

  • Downloading Smartforms Output into MS Word format

    Hi,
    Is there any way to download Smartform Output data in to MS Word.?...like the way we download Smartform data into PDF format.
    is there any FM available to handle this like CONVERT_OTF, CONVERT_OTF_2_PDF in case of PDF.
    Full points for useful answers.
    Thanks,
    Sree.

    Check these links
    https://forums.sdn.sap.com/click.jspa?searchID=15917117&messageID=4709514
    https://forums.sdn.sap.com/click.jspa?searchID=15917117&messageID=2950348
    Thanks,
    Phani.

  • Smartform output not displaying, no formatting affected on output and shows formatting Error.

    Hi Guys,
    I am new to SAP and working in Smartforms now. I am facing an issue that the output screen is not showing any formatting done during the design phase. Not even font changes are displaying, instead only showing the default Courier font. No Bold as well as italics too. And borders also showing some problems.
    It was working properly till the last day and suddenly it gone faulty. Hence I cannot run the form and when  I try to run it, it displays nothing. I have been designing a Tax Invoice. When I tried to execute the smartform from the form itself, it was showing Formatting Error.
    What is the solution for this? I am using ECC 6. Please share your views.

    Hi Sanjeev,
    I've not made any changes to the formatting (Fonts and Borders) and I cross checked it many times.
    Everything is fine and Times used everywhere as Font. It is showing the same in the design too but in the output, it comes as Courier !! (May be default settings in case there is some exceptions, I don't know)
    I tried another report, pick list form, which too showing the same things. As we have developed only two reports, we cannot check more. The standard SAP forms are displaying as is, but the problem is with the newly designed ones.(Standard forms too are displaying in Courier font)
    I think it might be any problem related to the output graphical properties of the smart forms...!!! I am not sure but I need expert advice from you if there is any such scenarios...

  • News paper format

    how can we do newpaper format in scripts.. how to use...

    Do you mean printing on both sides of the page?  If so the attributes of the page (in either SAPscript or Smartforms) includes a setting 'Print mode' which allows you to set duplex printing.
    You will of course need a printer that can support duplex printing too.
    Regards,
    Nick

  • Merging Smartform Output and Adobe Form Output in a single PDF File

    Hi All,
    My Requirement is as follows -
    I have multiple Smartforms and a single Adobe Form.
    I want to merge the Smartform Outputs and Adobe Form output in a single PDF.
    I am able to merge multiple Smartform Output in a PDF , but not able to find any way to merge smartform and adobe form output as the Smartform output is in OTF Format and Adobe form output is in PDF Format itself.
    I have tried few ways , but could not find any success.
    Request you all to give me some direction to this problem.
    Thanks & Regards
    Bhavika

    Kumar,
    I am afraid this is not possible using SAP functionality. There are probably 3rd party tools which allow you to merge several PDFs into one, but SAP itself does not offer such a mechanism. There is an internal SAP function, though, which can merge several "parts" (=several PDFs) within an Adobe-created spool request into a single PDF, intended for downloading this PDF from SP01.
    This is described in note 1717357.
    Best regards,
    Alexander

  • Smartform convert DINA4 to LETTER format

    hi expert,
    In my smartform i change the paper format DINA4 to LETTER format. Once i change the format into LETTER i adjusted the heights of window as per as LETTER formate sizes. Here the problem i am facing that the header and fotter titles or descriptions FONTS has been changed(ie., means it changes bold to normal fornt). I double check in the smartstyles but the fonts are still bold only whats happend and why its behaving in this way. Experts any one can guide me how to fix this issues its an urgent.
    Thanks
    viswa

    Hi,
    copy that script (EHS-PERSLIM-A4) to ZEHS-PERSLIM-let
    and change the page format to LETTER in basic settings
    Regards
    Krishna
    Edited by: Krishna Gowrneni on May 19, 2009 3:46 AM
    Edited by: Krishna Gowrneni on May 19, 2009 3:47 AM

  • New Page Format in Smartforms

    Hi All,
    I am working on smartforms.
    I have created a new page format of width 25 cm and width 30cm according to client's requirement.
    Smartform is  for customer invoice which is a pre-printed and i have to get data into that.
    In sform i have given the my own page format name.
    Now problem is am getting print preview correctly but while giving print its givivng the error
    ' OUTPUT COULD NOT BE ISSUED' and print is not coming.
    Please help me regarding this issue.
      Thanks in advance.
    Regards,
    Murthy.

    Hi,
    I have checked it but its ok.
    I have created page format through SPAD only.
    Regards,
    Murthy.

  • I have a problem in converting smartform output to pdf format.

    Hi,
    While converting the smartform output to pdf format.
    It is showing this error.
    otf end command // missing in otf data.
    I have used this function.
    Assigning the OTFDATA to OTF Structure table
        CLEAR gt_otf.
        gt_otf[] = gs_otfdata-otfdata[].
    Convert the OTF DATA to SAP Script Text lines
        CLEAR gt_pdf_tab.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
            max_linewidth         = 132
          IMPORTING
            bin_filesize          = gv_bin_filesize
          TABLES
            otf                   = gt_otf
            lines                 = gt_pdf_tab
          EXCEPTIONS
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            OTHERS                = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    Please help me in this regard. Thanks in advance.

    Hi ,
    I am getting this exception "err_conv_not_possible"
    CALL FUNCTION f_name " '/1BCDWB/SF00000092'
          EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
            CONTROL_PARAMETERS       = st_control_parameters
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
         OUTPUT_OPTIONS             = st_output_options
      USER_SETTINGS              = 'X'
            ZST_TEXTSYMBOLS            = ZST_TEXTSYMBOLS
            wa_kna1                    = wa_kna1
            wa_claim_header            = wa_claim_header
       IMPORTING
         DOCUMENT_OUTPUT_INFO       = st_document_output_info
         JOB_OUTPUT_INFO            = st_job_output_info
         JOB_OUTPUT_OPTIONS         = st_job_output_options
          TABLES
            IT_CLAIM_VERSION           = IT_CLAIM_VERSION
            IT_CLAIM_ITEM              = IT_CLAIM_ITEM
            IT_CLAIM_PARTNER           = IT_CLAIM_PARTNER
            IT_FINAL                   = IT_FINAL
       EXCEPTIONS
         FORMATTING_ERROR           = 1
         INTERNAL_ERROR             = 2
         SEND_ERROR                 = 3
         USER_CANCELED              = 4
         OTHERS                     = 5
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ELSE.
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
          EXPORTING
             USE_OTF_MC_CMD               = 'X'
        ARCHIVE_INDEX                =
          IMPORTING
          BIN_FILESIZE   = v_bin_filesize
          TABLES
          OTF = st_job_output_info-OTFDATA[]
          DOCTAB_ARCHIVE = it_docs
          LINES  = it_lines
          EXCEPTIONS
          ERR_CONV_NOT_POSSIBLE = 1
          ERR_OTF_MC_NOENDMARKER = 2
          OTHERS = 3.
          IF sy-subrc <> 0.
            MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        ENDIF.
    HERE when i tried to debug it i got SY-SUBRC = 1.
    Please help me in this regard. Thanks in advance.

  • Can anybody tell me the way of getting Smartform output as xml format??

    Dear Experts,
    Can anybody tell me the way of getting Smartform output as xml format??
    Is there exists a standard way of getting it?
    Regards,
    Nikhil Jain

    Hi,
    Use function module FB_DOWNLOAD_FORM .
    Provide your form name as input for i_formname.
    you will get the output in xml format.
    or use utilities--> download option for downloading in xml format.
    For your referrence:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0b6bc290-0201-0010-5b87-a0e7c7eb55d0?quicklink=index&overridelayout=true
    May it helps you.
    Regards.
    DS

  • Smartforms output in Powerpoint format

    Hi ,
    I am an ABAPER working in CRM Module .Also working in PCUI . I got a requirement for CRM Portal where I need to display the Smartforms output in Powerpoint format when user clicks on Print button. Previously there are in PDF Format.Can anyone help on this ?? Please..

    Hey Anil
    Your requirement is not specific ,weder you want the output saved in XLS format in the smartform....or u want to download the data in XLS format?
    1. Function Module 'SAP_CONVERT_TO_XLS_FORMAT'  :    from internal table to Excel file .
    2. FM ''SO_DOCUMENT_REPOSITORY_MANAGER'           :      To attach this file as an attachment in a mail     in this pass the file and other details of sender and receiver.
    Regards
    Swapnil
    Edited by: swapnil kamble on Sep 11, 2009 2:12 PM

  • SMARTFORMS output in XLS format

    Hi,
    We are in ECC 5.0, and have a client requirement to show the smartforms output in XLS format.
    Could you please advice or suggest various options to do this?
    Appreciate the response,.
    thanks much in advance,
    Anil
    Edited by: Rob Burbank on Sep 10, 2009 5:05 PM

    Hey Anil
    Your requirement is not specific ,weder you want the output saved in XLS format in the smartform....or u want to download the data in XLS format?
    1. Function Module 'SAP_CONVERT_TO_XLS_FORMAT'  :    from internal table to Excel file .
    2. FM ''SO_DOCUMENT_REPOSITORY_MANAGER'           :      To attach this file as an attachment in a mail     in this pass the file and other details of sender and receiver.
    Regards
    Swapnil
    Edited by: swapnil kamble on Sep 11, 2009 2:12 PM

  • Conversion of smartform output to DOC format

    Hi,
    I have a requirement to convert Smartform output to DOC format. Could anyone provide me any direction for this?
    SS

    Hi SS,
    In the link sent by Anki Reddy... you can follow the same but in this FM change PDF to DOC thats it.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'DOC'         * Change from 'PDF' * to DOC
    MAX_LINEWIDTH = 132
    ARCHIVE_INDEX = ' '
    COPYNUMBER = 0
    ASCII_BIDI_VIS2LOG = ' '
    PDF_DELETE_OTFTAB = ' '
    IMPORTING
    BIN_FILESIZE = W_bin_filesize
    BIN_FILE =
    TABLES
    otf = T_OTF
    lines = T_pdf_tab
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    ERR_BAD_OTF = 4
    OTHERS = 5
    Regards,
    sg

  • Smartforms output problem: printer commands are printed on paper

    Hi ,
    I have created a new page format ( 300 mm * 330 mm ) and i have assigned to a new format in the device type .But what command need to be changed in the printer initialization?
    At present when i print my sap script output it prints out the printer commands.
    Thanks and Regards,
    C.Abhinay

    closing

  • How to print text in paper format iin smartforms

    Hi all,
      I want a question that  how to print text in paper format like  paper divides into 2 parts and if the firstpart is full of text i.e., it exceeds the first page the text will be displyed in the second part of the first page.
    Usefull answers will be awarded.
    Thanks all...

    Hi,
    U create two windows in the page and same as like second page.
    but in first page first window select the condition print only on first page.
    in second window select conditin print only on second page.
    first try without creating a secondpage. if that doesn't workout create secondpage and try.
    Assign points if useful.
    Regards
    (YUGANDHAR.P)

Maybe you are looking for

  • Design view in FB 4.5 not working

    I have multiple projects that when viewed in FB 4, show in design view perfectly. I have custom skinning and it all looks like it should. I moved these projects over to FB 4.5, and they all look terrible. It basically makes the design view unusable.

  • Code generation(urgent!!!)

    I'm writing an application to accept user input of variables and automatically generate some code with this user defined variables added to the code.Does anyone have any ideas about how i can do this?

  • Purchase order no field in purchasing datasrcs

    In which of the purchasing datasrc can I get Purchase order no field

  • How to get active programs/custom ABAP developments for past 6 months?

    All, Is there any transaction/table/program/FM to get active programs for past 6 months? Intention here is to get actively used custom ABAP developments. Regards, Sree

  • 10g OUI Crashes on SLES9 sp2

    Hi, I've read through here hoping to find someone else that has seen this strangeness, but no such luck. I have setup SLES9 sp2 on an HP DL585 (ProLiant) and then started the process of installing Oracle 10g EE. I followed all the instructions for se