Smartform DINA4 issue

Hi Expert,
I am working on the smartform and got the below issue. In my case, I am creating a form in A4 size (210mm X 297mm) with the below parameters:
Left margin: 2.5 cm
width: 18.5 cm
But when I run the smartfrom, I found that the right margin is still 4.5cm. I have no idea why and don't know how to change it.
Please help
Thanks a lot,
WF

Hi William,
Just for check,
Window has width and Template has width both have to be same i.e., 18.5.
Could you check by clicking on template and then on details with arrow mark and then check width.
I am telling you this because of:
William Wrote:
>Yes, I did. In my case, the window width is 21cm, left margin is 2.5cm and width is 18.5cm.
Also check whether your printer can print a width beyond 14 cms.
BR
Dep
Edited by: DeepakNandikanti on Aug 16, 2011 1:24 PM

Similar Messages

  • Smartform Printing issue

    Hi All,
    I have created a smartform and when i try to print it prints in Landscape format, but the form Output has 'Portrait' format and uses DINA4 page format. I have verified my default printer settings and has a page format as 'Letter' , I have changed it to A4 size but still same issue.
    Let me know if you have any solution or any tips, highly appreciated...
    Thanks
    Sudheer

    Hi All,
    Thanks for the response.
    I have correct format 'Potrait' in Smartform Page Output Options and i have verified SPAD parameters also.Interstingly it has 2 DINA4 page formats with following values..
    Potrait :
    Width  - 210 mm
    Height - 297 mm
    Landscape :
    Width  - 297 mm
    Height - 210 mm
    When i looked at Smartform Form Painter Graphical view it has Potrait format(210X297)(WXH).
    And i have tried to reprint today morning again and has same problem.
    So issue is still unresolved....
    Thanks
    Sudheer

  • Smartform - Loop issue not printing correctly

    Hi,
    In smartforms -Main Window - I created like this
    1.Loop Statement   - This will loop - ITAB1
    TEXT statement - ITAB1-ADRNR - (prints the address)
    within the loop
      ITEM_DATA (item data) table.  - This will Loop ITAB2 - where ADRNR = ITAB1-ADRNR
    This supposed to put line items which are having ADRNR from ITAB1
    But my program is printing in wrong way..
    it is printing
    ADDRESS1 - ITAB1-ADRNR - correct
    ITEM DATA -  from ITAB2- related to ADRNR  (if it has only 1 record) - correct
    ADDRESS2-ITAB1-ADRNR - correct
    ITEM DATA - from ITAB2 - where ADRNR = ITAB1ADRNR - if this condition satisfies more than 1 record
    supposed to print all the records - but instead it is printing  always the first record   - wrong
    Ex- if 3 records has the same ADRNR of ITAB1 in ITAB2 - it is actually printing 3 times the first satisfying record - Wrong
    Can anyone please tell me what is the issue?
    Thanks for your time.
    Kevin

    Hi,
    I created like this..
    ITAB1 - complete data
    ITAB2 - unique records based on ADRNR
    1. LOOP ITAB2
    Print Address - ITAB2-ADRNR
    ITEM DATA(header and line items)
    I have given table name in DATA loop section
    - loop ITAB1 - where ADRNR = ITAB2-ADRNR
    But in item data it is printing the same line item repetedly .
    Any comments?
    Thanks for ur time.

  • Smartform Implementation issue for the report  RFKORD50

    Hi,
    I have a requirement to implement a smartform for FI Invoice. 
    This smartform should be configured in OB96 for the print program RFKORD50.
    Currently the SAP Script F140_DOCU_EXC_01 has been configured for Standard print program RFKORD50.
    This SAP Script should be replaced with Smartform. But the issue is the report  RFKORD50 is designed to
    call only a SAP Scrip. Is there any better way to trigger the Smartform other than modifying the standard program?
    Thanks,
    Sailaja.A

    Hi,
    One of the very tough task, when it comes to migrate a script into Smartforms .. With a satndard print program ..
    You have a option on samrtform screen , just to migrate a Sapscript into Smartform .. But it is just a migration of Layout.. means just creation of WINDOWS and pages.. All the elements and text node creation still you need to do ..
    But one of the major challenge is to Customize your print program..
    So i will suggest you to create a Z copy of RFKORD50.. as print prgm .. Then you can feal better
    Now keep all the data selection part as it is .. collect it in different structure, then call your samrtform..
    and before calling your smartform, prepare your layout ..
    Very Imp suggestion, try to work on small small task.

  • Smartform performance issue

    HI floks
    i did some development in new smartform its working fine but i have issue in data base performance is 76% . but i utilize similar below code with various conditions in various 12 places . is it possible to reduce performance this type of code . check it and mail me how can i do it . if possible can suggest me fast .how much % is best for this type of performance issues.
    DATA : BEGIN OF ITVBRPC OCCURS 0,
           LV_POSNR LIKE VBRP-POSNR,
           END OF ITVBRPC.
    DATA : BEGIN OF ITKONVC OCCURS 0,
            LV_KNUMH LIKE KONV-KNUMH,
            LV_KSCHL LIKE KONV-KSCHL,
           END OF ITKONVC.
    DATA:  BEGIN OF ITKONHC OCCURS 0,
           LV_KNUMH LIKE KONH-KNUMH,
           LV_KSCHL LIKE KONH-KSCHL,
           LV_KZUST LIKE KONH-KZUST,
           END OF ITKONHC.
    DATA: BEGIN OF ITKONVC1 OCCURS 0,
           LV_KWERT LIKE KONV-KWERT,
           END OF ITKONVC1.
    DATA :  BEGIN OF ITCALCC OCCURS 0,
           LV_KWERT LIKE KONV-KWERT,
           END OF ITCALCC.
    DATA: COUNTC(3) TYPE n,
           TOTALC LIKE KONV-KWERT.
    SELECT POSNR FROM VBRP INTO ITVBRPC
      WHERE VBELN = INV_HEADER-VBELN AND ARKTX = WA_INVDATA-ARKTX .
    APPEND ITVBRPC.
    ENDSELECT.
    LOOP AT ITVBRPC.
    SELECT KNUMH KSCHL FROM KONV INTO ITKONVC WHERE KNUMV =
    LV_VBRK-KNUMV AND KPOSN = ITVBRPC-LV_POSNR AND KSCHL = 'ZLAC'.
    APPEND ITKONVC.
    ENDSELECT.
    ENDLOOP.
    SORT ITKONVC BY LV_KNUMH.
    DELETE ADJACENT DUPLICATES FROM ITKONVC.
    LOOP AT ITKONVC.
    SELECT KNUMH KSCHL KZUST FROM KONH INTO ITKONHC WHERE KNUMH = ITKONVC-LV_KNUMH AND KSCHL = 'ZLAC' AND KZUST = 'Z02'.
    APPEND ITKONHC.
    ENDSELECT.
    ENDLOOP.
    LOOP AT ITKONHC.
    SELECT KWERT FROM KONV INTO ITKONVC1 WHERE KNUMH = ITKONHC-LV_KNUMH AND
    KSCHL = ITKONHC-LV_KSCHL AND KNUMV = LV_VBRK-KNUMV.
    MOVE ITKONVC1-LV_KWERT TO ITCALCC-LV_KWERT.
    APPEND ITCALCC.
    ENDSELECT.
    endloop.
    LOOP AT ITCALCC.
    COUNTC = COUNTC + 1.
    TOTALC = TOTALC + ITCALCC-LV_KWERT.
      ENDLOOP.
    MOVE ITKONHC-LV_KSCHL TO LV_CKSCHL.
    MOVE TOTALC TO LV_CKWERT.
    it's urgent ..........
    thanks .
    bbbbye
    suresh

    Hi,
    you can increase the performance by following,
    1. By changing occurs clause to types declaration clause.
       You need to declare like this:
       DATA : BEGIN OF xVBRPC,
                      LV_POSNR LIKE VBRP-POSNR,
                  END OF xVBRPC.
       DATA: ITVBRPC like table of xVBRPC,
    2. do not use select statements in loop statements.
    Ashven

  • Smartforms - Performance Issue

    Hi,
    I am developing a report related to customer ageing details which involves high volume of transactional data.
    Initially the report was displayed using ALV , but the client was not satisfied when they print the alv report in 130 col printer with sort and sub-total features.So I developed a smartform according to the required design.
    Since the report involves page break and totals inbetween...i have used the event and At new command in the loop within the smartform..
    The issue here is...when the report was tested with actuall data(high volume)..it took almost 5 times of the time when the report was executed using ALV..this is due to the design of the smartform involving the loops...
    Is there any way to check out the performance of smartforms.Kindly suggest.
    Regards,
    Thyagu,

    Hi Thyagu,
    As ALV, smart forms are just ABAP, so you can use the runtime analysis (SE30, or ST12, or SAT) to see what makes it slow.
    See SDN and official documentation for more information about runtime analysis
    BR
    Sandra

  • Smartform Report Issue

    Hi friends,
    I'm new to smartforms. I have created a smartform for customer outstanding Report. but have some issues.
    That is,
    I want to categorize all rows in reports to,
    - Unsettled Invoices (Condition is -> BSID-BLART = 'RV' AND BSID-BLART = 'SA')
    - Unsettled Advances/Credit Notes (Condition is -> BSID-BLART = 'DZ' AND BSID-BLART = 'DG' AND BSID-UMSKZ = 'A')
    - Unsettled return Cheques (Condition is -> BSID-BLART = 'DZ' AND BSID-UMSKZ = 'D' AND BSID-XBLNR = 'R')
    for example the output is like this:
    Date invoice No Amount No of Days Balance Less30 Over30 Over60 Over90 Over120
    Unsettled Invoices
    15/03/2010 HHIN00023952 100000 100 750
    15/03/2010 HHIN00023952 100000 100 750
    15/03/2010 HHIN00023952 100000 100 750
    Unsettled Advances/Credit Notes
    15/03/2010 HHIN00023952 100000 100 750
    15/03/2010 HHIN00023952 100000 100 750
    Total 500000
    Unsettled Return Cheques
    15/03/2010 HHIN00023952 100000 100 750
    15/03/2010 HHIN00023952 100000 100 750
    Total 200000
    This is the download link to my smartform - https://rapidshare.com/files/785255519/zcusrep.xml
    please help me someone. Thanks

    Thanks for your reply, Can you clarify your solution more? cuz i don't have any idea of adding identifier to those conditions in internal table
    this is my se38 program for it,
    REPORT  ZCUSTREP2.
    TABLES : KNVP, KNVV.
    types : begin of ty_knvp,
            kunnr type knvp-kunnr,
            pernr type knvp-pernr,
            end of ty_knvp.
    data : wa_knvp type ty_knvp,
           it_knvp type table of ty_knvp.
    types : begin of ty_knvv,
            kunnr type knvv-kunnr,
            vkorg type knvv-vkorg,
            end of ty_knvv.
    data : wa_knvv type ty_knvv,
           it_knvv type table of ty_knvv.
    types : begin of ty_final,
            kunnr type knvp-kunnr,
            pernr type knvp-pernr,
            vkorg type KNVv-vkorg,
            end of ty_final.
    data : wa_final type ty_final,
           it_final type table of ty_final.
    Selections **********************
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_PERNR for knvp-PERNR matchcode OBJECT ZREP_CODE. "repcode
    SELECT-OPTIONS : S_VKORG  for KNVv-VKORG no intervals no-extension OBLIGATORY. "company code
    SELECTION-SCREEN END OF BLOCK B1.
    Selections **********************
    end-of-selection.
      select kunnr pernr
        into table it_knvp
        from knvp
        where PERNR in S_PERNR
        and pernr ne '00000000'.
      select kunnr vkorg
       into table it_knvv
       from knvv
       where vkorg in S_VKORG.
    loop at it_knvp into wa_knvp.
        read table it_knvv into wa_knvv with key kunnr = wa_knvp-kunnr.
        if sy-subrc = 0.
          wa_final-kunnr = wa_knvp-kunnr.
          wa_final-pernr = wa_knvp-pernr.
          wa_final-vkorg = wa_knvv-vkorg.
          append wa_final to it_final.
        endif.
      endloop.
      CALL FUNCTION '/1BCDWB/SF00000052'
    *EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
        TABLES
          ITAB                     = 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.
      ENDIF.

  • Smartform Mail Issue

    Can anyone please let me know how to set the value of JOB_OUTPUT_INFO-OUTPUTDONE to 'X' in the class CL_SF_MAIL_PPF.
    My requirement is to avoid error mesage in logs of transaction CRMD_ORDER which is triggering a smartform mail, if I change the value of  JOB_OUTPUT_INFO-OUTPUTDONE to 'X' while debugging, I am not getting the error message in the logs.
    Mail is triggerred with PDF, there is no issue in the mail, except the above issue.
    Please let me know how to set the above mentioned field to 'X' programatically. Point ll be awarded.
    Thanks in Advance.
    Edited by: Mohana Vijayan on Oct 9, 2009 4:27 PM

    REPORT ZSMF_MAIL_PROGRAM.
    DATA: OUTPUT_OPTIONS TYPE SSFCOMPOP,
    CONTROL_PARAMETERS TYPE SSFCTRLOP,
    OUTPUT_DATA TYPE SSFCRESCL.
    DATA: FILESIZE TYPE I.
    DATA:FM_NAME TYPE RS38L_FNAM.
    DATA LT_OTFDATA LIKE ITCOO OCCURS 1000 WITH HEADER LINE.
    DATA LT_PDFDATA LIKE TLINE OCCURS 100 WITH HEADER LINE.
    DATA:LT_PDF LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA:LW_PDF LIKE LINE OF LT_PDF.
    DATA:LW_PDFDATA LIKE LINE OF LT_PDFDATA.
    DATA:LS_JOB_INFO TYPE TABLE OF SSFCRESCL WITH HEADER LINE.
    DATA:LT_MESSAGE TYPE TABLE OF SOLISTI1 WITH HEADER LINE.
    DATA: DOCU_DATA LIKE SODOCCHGI1 OCCURS 0 WITH HEADER LINE.
    DATA PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE.
    DATA OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA REAL_RECIPIENTS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE.
    DATA CONTENTS_TXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA CONTENTS_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA PACKING_LIST_TXT LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE.
    DATA OBJECT_HEADER_TXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA OBJECT_HEADER_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    DATA PACKING_LIST_ATT LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE.
    DATA: W_EMAIL(1215) TYPE C.
    DATA:PSUBJECT(90) TYPE C.
    DATA: LD_FORMAT TYPE SO_OBJ_TP ,
    LD_ATTDESCRIPTION TYPE SO_OBJ_NAM ,
    LD_ATTFILENAME TYPE SO_OBJ_DES .
    *Calling the Smartform.
    Get Email id from ztab_email table.
    select single email_id from ztab_email
    into w_email.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = 'Z_CONTD_DEBT_FORM'
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    ENDIF.
    CONTROL_PARAMETERS-DEVICE = 'MAIL'.
    CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    CONTROL_PARAMETERS-GETOTF = 'X'.
    CONTROL_PARAMETERS-PREVIEW = SPACE.
    OUTPUT_OPTIONS-TDTITLE = SY-TITLE.
    OUTPUT_OPTIONS-TDNEWID = 'X'.
    OUTPUT_OPTIONS-TDNOPREV = 'X'.
    OUTPUT_OPTIONS-TDDELETE = 'X'.
    CALL FUNCTION FM_NAME
    EXPORTING
    CONTROL_PARAMETERS = CONTROL_PARAMETERS
    OUTPUT_OPTIONS = OUTPUT_OPTIONS
    USER_SETTINGS = SPACE
    IMPORTING
    JOB_OUTPUT_INFO = OUTPUT_DATA
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    OUTPUT_DATA-OUTPUTDONE = 'X'.
    *Convert to PDF Format.
    CLEAR LT_PDFDATA.
    REFRESH LT_PDFDATA.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = '132'
    IMPORTING
    BIN_FILESIZE = FILESIZE
    TABLES
    OTF = OUTPUT_DATA-OTFDATA
    LINES = LT_PDFDATA
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    ERR_BAD_OTF = 4
    OTHERS = 5.
    IF SY-SUBRC <> 0.
    ENDIF.
    REFRESH LT_PDF[].
    *Convert 132 line sized internal table into 255 line sized internal table.
    CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
    EXPORTING
    LINE_WIDTH_DST = '255'
    TABLES
    CONTENT_IN = LT_PDFDATA[]
    CONTENT_OUT = LT_PDF[]
    EXCEPTIONS
    ERR_LINE_WIDTH_SRC_TOO_LONG = 1
    ERR_LINE_WIDTH_DST_TOO_LONG = 2
    ERR_CONV_FAILED = 3
    OTHERS = 4.
    IF SY-SUBRC <> 0.
    ENDIF.
    Sending it as an Email Attachment.
    LD_FORMAT = 'PDF'.
    LD_ATTDESCRIPTION = 'CONTESTED'.
    LD_ATTFILENAME = 'TEST_FILE'.
    CLEAR REAL_RECIPIENTS.
    REFRESH REAL_RECIPIENTS.
    REAL_RECIPIENTS-REC_TYPE = 'U'.
    REAL_RECIPIENTS-COM_TYPE = 'INT'.
    REAL_RECIPIENTS-NOTIF_DEL = 'X'.
    REAL_RECIPIENTS-NOTIF_NDEL = 'X'.
    REAL_RECIPIENTS-RECEIVER = W_EMAIL.
    APPEND REAL_RECIPIENTS.
    CLEAR PACKING_LIST.
    REFRESH PACKING_LIST.
    *Describe the body of the message
    PACKING_LIST-TRANSF_BIN = ' '."""""""""""""" CHANGE IT FROM 'X' TO ' ' """""""""""""
    PACKING_LIST-HEAD_START = 1.
    PACKING_LIST-HEAD_NUM = 0.
    PACKING_LIST-BODY_START = 1.
    PACKING_LIST-BODY_NUM = 1.
    PACKING_LIST-DOC_TYPE = 'RAW'.
    APPEND PACKING_LIST.
    PACKING_LIST-TRANSF_BIN = 'X'.
    PACKING_LIST-HEAD_START = 1.
    PACKING_LIST-HEAD_NUM = 1.
    PACKING_LIST-BODY_START = 1.
    DESCRIBE TABLE LT_PDF LINES PACKING_LIST-BODY_NUM.
    PACKING_LIST-DOC_TYPE = LD_FORMAT.
    PACKING_LIST-OBJ_DESCR = LD_ATTDESCRIPTION.
    PACKING_LIST-OBJ_NAME = LD_ATTFILENAME.
    PACKING_LIST-DOC_SIZE = PACKING_LIST-BODY_NUM * 255.
    APPEND PACKING_LIST.
    *Populate the subject/generic message attributes
    DOCU_DATA-DOC_SIZE = 1.
    DOCU_DATA-OBJ_LANGU = SY-LANGU.
    DOCU_DATA-OBJ_NAME = 'SAPRPT'.
    DOCU_DATA-OBJ_DESCR = PSUBJECT.
    DOCU_DATA-SENSITIVTY = 'F'.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = DOCU_DATA
    SENDER_ADDRESS_TYPE = 'INT'
    COMMIT_WORK = 'X'
    PUT_IN_OUTBOX = 'X'
    SENDER_ADDRESS = V_SENDER
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    PACKING_LIST = PACKING_LIST
    OBJECT_HEADER = OBJECT_HEADER
    CONTENTS_BIN = LT_PDF
    CONTENTS_TXT = CONTENTS
    RECEIVERS = REAL_RECIPIENTS
    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.
    IF SY-SUBRC <> 0.
    ENDIF.

  • Sapscript & smartform upgrade issue

    Can anyone please let me know the issues faced while upgrading sapscript and smartform in documents like purcchase order,sales order and invoice.

    Hi Ch@ndr@,
    This seems a strange problem. It is possible that this is simply a problem with the Sapscript buffers. Can you run the report RSTXDELL on the system to clear the Sapscript buffers?
    To do this you can use RSTXDELL report with default settings except it is better to have * instead of the current client number in the Client field.
    After this, create a new spool and see if the problem is resolved? It will not work to reprint an old spool as the print data is already incorrect.
    Regards,
    Aidan

  • Smartform - Font Issue

    Hi Experts,
    I am having font issue in smartform.
    I have created style as zz_style, using Helve, 9.
    In smartform z_smartform, I set in output options tab in Form Attribute to use style zz_style.
    But somehow the output comes out with different font format.
    I expect that when I set the style in form attribute -smartform, it should by default follow the style that I have set, isnt it work that way? Please advise. Thanks.

    click on the text you want to have the format, in there hit a button to go to the SAP script editor and in the left column mention the paragraph format you want to use.
    DL    | &lt_text&
    "paragraph  format
    DL    | <c2>&lt_text& </>
    "paragraph  format and character format. at the end less than slash and greater than.. its not formatting in this forum editor
    Edited by: J@Y on Jul 22, 2009 12:05 PM

  • Smartform character issue

    Hi I need help with a smartform issue. I'm working on ECC 6.0 system. I have created a smartform in English but need terms and Conditions in English and French.
    Some of French characters coming with # Sign. followed OSS Note 776507 and the problem is not resolved. any ideas how to solve this. If i look at print prieview it displayes correct but opon print and email( PDF) # appears.
    Pl advice. Thansk in advance

    Hi,
    the PDF conversion for SMart FOrms documents always makes use of a "device type" (a printer description from transaction SPAD). In NUC systems, often the device type PDF1 was used (or possibly POST2), which support only Latin-1 character set (ISO 8859-1).
    Your character in question looks like an APOSTROPHE character U+0027, which is included in Latin-1.
    But there exist many additional variations of similar-looking "quote" or "apostrophe" characters in Unicode which may be used in that example and which are not convertible with a Latin-1 based device type.
    You should find out the Unicode code of the character in question and then check the PDF conversion. Do you have a chance to post the resulting PDF file? The SAP created PDF files contain PDF comments which may explain what went wrong... (e.g. the device type which was used).
    Best regards,
      Alexander

  • Smartform printing issue in polish language

    Hi All,
    I am facing a problem in SMARTFORM .
    I have developed a form in EN language and converted that in POLISH language using SE63 . When the form is printed in the POLISH language "#" is coming for some special characters of POLISH Language . ( e.g. 'ŁUAŚSĆ' ' but it is coming as '#US#S#'')
    Please tell me how to handle these special characters in POLISH Language.
    Thanks

    Hi there,
    There are many threads in the forum which talk about the accentuated and other special characters, in Polish and other languages. There are also many SAP notes about these issues.
    The following can impact the output:
    - if your system is Unicode or not
    - which device type you use, and what is its code page ("character set")
    - which font you use
    BR
    Sandra

  • Smartform window-issue

    Hi,
    I have to work with smartforms. So that I have a small issue.
    I need to design 2 pages with certain no of windows.Can anyone post when and why I have to assign page2 as next window to page1.
    Could anyone explain indetail about the significance of this.
    Thanks,
    G Kumari.

    Hi,
    Thank u very much for ur kind reply. But still I need some clarification.
    Suppose if there're 3 pages which're entirely different. So, Could u plz kindly  reply when I have to assign each page as next page to the previous pages. Also first page has large amount of data which may overflow.
    I am waiting for ur reply.
    Thanks,
    G Kumari.

  • Smartform space issue?

    Dear ABAPER'S,
    I am developing smartform. i have some issue please see below screen shot i have mark has red color.
    from above screen shot how to remove space between thee lines ?
    Thanks
    Ravilla

    You need the delete the empty lines between the items?
    Have you checked if there ist no PI-Sign after all of your entrys in the table/loop.
    I've made a screenshot, its from a german system but you should see want i mean.
    Go through all entrys in that table and make sure there is no sign like this.

  • Smartform Pages issue

    Hi All,
    I have a strange issue on Smartform Pages,I have 4 pages in the smartform and i need all pages should be printed one after another,
    for that i have selected in GENERAL ATTRIBUTES next page as subsequent page,
    Eg:
    FIRST PAGE --> SECOND PAGE->THIRD PAGE->FOURTH PAGE and so on .
    but when i execute layout is displaying only 2pages,if i change the sequence also 2 pages,
    just to check i put command in the main window and in that i gave the page names even though always two pages.
    did i miss something?or this is an issue with some other issue like GUI etc....
    Please let me know your suggestions to resolve this.
    Thanks
    Surendra

    Hi Vara,
    By default there will be a value set by the administrator for the number of pages you can view in the spool. So to me it looks like this value is set to 33 in yoru case. You can go to setting from the same screen and change thsi setting to display all pages. But beware that this may take a long time some times and also give you a dump at times.
    -Guru

Maybe you are looking for

  • Report needed

    Hi All,   Can anybody send me the pgm for shipement delivery report.Its based on transportation mode.

  • Error Consuming Web Service:Unsupported xstream found:("HTTP Code 200:OK")

    I am trying to consume a web service from an Outbound Proxy. I am getting the following error message:- Unsupported xstream found: ("HTTP Code 200 : OK") This is a System Exception generated while I call the Outbound Proxy. Kindly let me know what co

  • SM13 in "display only " mode

    Hello, Is it possible to restrict tcode SM13 to provide display only access ? If so, how can this be achieved? Thank you for your response.

  • Can I crop painted lines in Illustrator using pathfinder?

    Hi everyone, This is a question from a total Illustrator newbie but I've been Googling like mad to no avail, so any help would be much appreciated! I'm experimenting with creating seamless patterns using shapes. I know how to crop shapes using the pa

  • Mac Pro (2006) SSD Hard Drive Upgrade

    I have a Mac Pro from 2006, but it is running a but slow on the hard drive front.  Plus, the drives are now seven years old and I do not want to chance the data failure possiblity.  What is the format I need in order to get two or three new SSD drive