Smartform word editor problem : ecc 6

Hi everyone,
I have a smartform that displays text elements as word editor.
I want to use the old editor for the texts.
I am working with ECC 6.
Thanks.
Regards.

Hi David,
I think you've given up too soon by setting this as answered
It is possible to switch the word editor off, take a look at SMARTFORMS IN ERP2005   URGENT for details how.
Regards,
Nick

Similar Messages

  • In smartform Text editor problem

    In smartform in text editor i writing text Invoice number it will in first line Invoice and second line number ,  Exactly very line taken 7 characters what is problem please give me advise.

    hi,
    welcome to SDN
    just increase ur window width.
    or u can adjust it with font size.
    do formatting andeach time check print preview.
    coz not alwys print preview and text editor is same.

  • Reg:Smartforms Change editor problem

    Dear All,
    If i am designing the smartform i am displaying some table fields from different tables. For example
    &vbrp-posnr& in to my change editor. when i am drag & drop on that particular fields that time when i
    am activating my smartform  i am seeing 2 to 3 lines of  # symbols i am getting without my knowledge.
    If i want to delete the unwanted # symbols i can't able to do that one. What i have to do?
    Thanks,
    Sankar M

    Hi
    There are two types of editor in general. The one we use generally in Scripts....and the other one is Word Pad editor. It just like working on a word document. So, now which is the one you are working on? Or in the text element you are just dragging the field into the text element??
    Regards,
    Vishwa.

  • In smartform word document convert into pdf file

    Hi Experts,
    I have issue on smartform, i have done two page smartform in preview its coming properly but
    when i give to print its not coming properly...output is not coming properly...so please sugest me
    even how to covert smartform word document into PDF file...im waiting for your replay. Thanks in
    Advance....
    Regards
    Ashwini

    Hi,
       I hope its printer problem check with u r basis, and for Smartform to PDF bewlow is my coding in which by using OTF data from Smartform it ill veiw in PDF.
    *& Report  ZSAP_PDF_VIEWER_DEMO_2
    REPORT  ZSAP_PDF_VIEWER.
    DATA: LT_PDF TYPE TABLE OF TLINE,
          LS_PDF LIKE LINE OF LT_PDF,
          LV_URL TYPE CHAR255,
          PDF_FSIZE TYPE  I,
          LV_CONTENT  TYPE XSTRING,
          LT_DATA TYPE STANDARD TABLE OF X255.
    DATA : L_JOB_OUTPUT_INFO TYPE SSFCRESCL.
    DATA : LS_CONTROL_PARAM  TYPE SSFCTRLOP.
    DATA : G_HTML_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           G_HTML_CONTROL   TYPE REF TO CL_GUI_HTML_VIEWER.
    DATA: LO_DIALOG_CONTAINER TYPE REF TO CL_GUI_DIALOGBOX_CONTAINER.
    DATA: LO_DOCKING_CONTAINER TYPE REF TO CL_GUI_DOCKING_CONTAINER.
    DATA : P_VBELN TYPE  VBELN_VL.
    FIELD-SYMBOLS <FS_X> TYPE X.
    INITIALIZATION.
    LS_CONTROL_PARAM-GETOTF = 'X'.
    LS_CONTROL_PARAM-NO_DIALOG = 'X'.
    START-OF-SELECTION.
      CALL FUNCTION '/1BCDWB/SF00000034'
    EXPORTING
       ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
         CONTROL_PARAMETERS         = LS_CONTROL_PARAM
         P_VBELN                    = P_VBELN
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
         DOCUMENT_OUTPUT_INFO  = L_DOCUMENT_OUTPUT_INFO
           JOB_OUTPUT_INFO       = L_JOB_OUTPUT_INFO
         JOB_OUTPUT_OPTIONS    = L_JOB_ OUTPUT_OPTIONS
    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.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = 'PDF'
        IMPORTING
          BIN_FILESIZE          = PDF_FSIZE
        TABLES
          OTF                   = L_JOB_OUTPUT_INFO-OTFDATA
          LINES                 = LT_PDF
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
    convert pdf to xstring string
      LOOP AT LT_PDF INTO LS_PDF.
        ASSIGN LS_PDF TO <FS_X> CASTING.
        CONCATENATE LV_CONTENT <FS_X> INTO LV_CONTENT IN BYTE MODE.
      ENDLOOP.
       CALL SCREEN 100.
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS '100'.
    **CREATE OBJECT LO_DOCKING_CONTAINER
    EXPORTING
       REPID     = SY-REPID
       DYNNR     = '100'"SY-DYNNR
       SIDE      = LO_DOCKING_CONTAINER->DOCK_AT_LEFT
       EXTENSION = 1200.
    CREATE OBJECT g_html_container
       EXPORTING
         container_name = 'HTML'.
    *CREATE OBJECT G_HTML_CONTROL
    EXPORTING
       PARENT = LO_DOCKING_CONTAINER.
      CREATE OBJECT G_HTML_CONTAINER
          EXPORTING
            CONTAINER_NAME = 'HTML'.
        CREATE OBJECT G_HTML_CONTROL
          EXPORTING
            PARENT = G_HTML_CONTAINER.
    Convert xstring to binary table to pass to the LOAD_DATA method
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER     = LV_CONTENT
        TABLES
          BINARY_TAB = LT_DATA.
    *application/
    Load the HTML
      CALL METHOD G_HTML_CONTROL->LOAD_DATA(
         EXPORTING
           TYPE         =  'application'
           SUBTYPE      =   'pdf' "
         IMPORTING
           ASSIGNED_URL         = LV_URL
         CHANGING
           DATA_TABLE           = LT_DATA
         EXCEPTIONS
           DP_INVALID_PARAMETER = 1
           DP_ERROR_GENERAL     = 2
           CNTL_ERROR           = 3
           OTHERS               = 4 ).
    CALL METHOD G_HTML_CONTROL->show_url
         EXPORTING  url        = lv_url
                   in_place    = 'X'
         EXCEPTIONS cntl_error = 1.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    MODULE user_command_0100 INPUT.
      DATA ok_code LIKE sy-ucomm.
      MOVE sy-ucomm TO ok_code.
      CASE ok_code.
        WHEN 'BACK' OR 'EXIT'.
         CALL METHOD LO_DOCKING_CONTAINER->free.
          CALL METHOD g_html_control->free.
          LEAVE TO SCREEN 0.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USE

  • Smartforms - text editor

    Hello,
    When opening some of my forms in Smartforms, when I enter General Attributes TAB, the editor is not the usual editor.
    It looks like WORD editor. How can I change it to the other editor?
    Thank you.

    Hi Ami,
    it is possible to change the Editor. Go to SE38 or SE80. Run the Report 'RSCPSETEDITOR'.
    Then you can select/unselect if you like MS Word as Smartforms-Editor or not.
    Regards,
    André

  • Opening MS Word Editor from ABAP Program

    Hi all,
    My requirement is to give two options. User can open Text Editor OR MS Word Editor from screen. Text/any data entered on this will then be saved.
    Can anyone help me regarding this?
    Thanks a lot in advance.
    Best Regards,
    Prasad

    Prasad,
    Pls. go through below link.
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/204d1bb8-489d-2910-d0b5-cdddb3227820]
    Regards,

  • Abap editor in ecc 6.0

    hi all
    abap editor in ecc 6.0 is having a icon enhancement...wat is the use of tht and how to use it...

    This is the Enhancement Framework which is new.  It allows you to modify SAP code without actually modifying the program.   Really, the code which is inserted in the ENHANCEMENT..... ENDHANCEMENT section is compile separate from the program being "modified".   This also means, that you do not require a registration key for the object.  The code inside the enhancement is actually called at the kernal level.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/94/9cdc40132a8531e10000000a1550b0/frameset.htm
    Regards,
    Rich Heilman

  • HTML / Word Editor in SAP HR

    Hi Experts
    Can anyone please advise how can HTML / Word editor be configured in SO10. The only option right now is standard text editor and even after changing editor, it doesn't help. Please advise. thank you
    Regards
    Neha

    Hi,
    check this oss note..might resolve.
    1819805 - Error message - SOFFICEINTEGRATION231
    Thanks
    Naren

  • Use Word Editor for purchase order header text

    Dear community!
    Currently in our system when we create purchase order header text we are using the standard sap text editor.
    I saw another system where they are using some kind of microsoft word editor plug in to create purchase order header texts and purchase order item texts.
    I would like to figure out how I can activate this editor in the system.
    Any help is appreciated - full points will be rewarded
    Thanks & regards
    Alex

    Hi,
    I tried to do that....
    but we are on SAP_BASIS 701 / 0008 / SAPKB70108
    when i start the report I get the message:
    MS Word is a default editor now.  Please read SAP Note 742662.
    hints???

  • Issue while saving long text through MS Word Editor in SAP

    Hi All,
    I am facing some issue while saving text through Word editor in SAP(like Notes in Installation or Long Text in device location).
    After entering the text, when I am pressing the Back button, it says text transferred successfully, but when I try to see the text again, its not in the proper format.
    Every time I go to the word editor, some text is deleted.
    Thanks in advance for your help.
    Manoj Vatwani

    Hi Manoj,
    Can you share some screenshot for the formatting issue that you are facing.
    Thanks,
    Amlan

  • PSE10 Editor Problem

    I have a strange problem when using PSE10 Editor. Whenever I left click on any of the options with a dropdown box the screen just jumps and the box briefly shows the options but won't stay open to allow me to choose an option. This has effectively stopped me working as I cannot choose any of these type of options which exist on virtually every tool and has even stopped me saving my edits. On the Save As screen when I click on the format dropdown to save as a jpeg I cannoit select that option - the screen just jumps and won't open the box.
    This is a PSE editor problem as it doesn't happen on any other applications with these type of boxes and also these boxes are ok to open in Organiser as well.
    Ant Idea anyone - I have googled with no success.

    I've spent a couple of days on this problem getting nowhere, even after clearing down and doing a fresh clean PSE10 install. I did however find links to a  different problem with the same symptoms namely the lasso problem that some users are getting where after holding down the left mouse for a period of time the screen jumps around and shows a message 'filename nn.nn% - not responding'. I get this problem when I click any of the dropdown box option in any tool, the main one being when trying to saving the file after editing.
    I have found a fix of sorts by running the PSE10 program in 'Vista Compatability Mode' (I'm using Windows 7 Home Premium 32 bit) and it seems to be working OK - I have edited 200 photostoday  without problem. Reading up a bit more on the lasso problem it seems that it has been there since PSE9 and has still not been fixed by Adobe which is shameful.
    This is just an FYI for anyone else that gets this exact or similar problems.

  • ECC6 ABAP Front-end editor Problem

    hi all,
    We are using ECC 6. when we switch to old editor form setting options it works fine but when we switch to New editor it hangs itis not opening.
    Latest Patch is also installed.
    Pls suggest what is the problem........how to rectify it...
    Thanking you
    Edited by: Hemant Baviskar on Jul 5, 2008 12:12 PM

    Try logging in your pc as Administrator.
    Then log in to SAP and try the Fron-End editor New option.
    Hope it works for you. I had the same problem and logging in my pc as Administrator solved the problem.
    Regards,
    Vinod.

  • Outlook Word editor warnings after installing Acrobat 9 Professional

    I recently upgraded from Acrobat 8 Professional to Acrobat 9 Professional. I have Windows XP Pro SP2 and Office 2003. My email writing settings are set to use Word 2003 as my email editor. When trying to generate an email (new, reply, forward), I get the following error message:
    A program is trying to access e-mail addresses you have stored in Outlook. Do you want to allow this?
    You can choose to allow for 10 minutes but when this time expires, you get the same message if you try a new email or if you have one that you are still writing. If I uncheck "use Microsoft Office Word 2003 to edit e-mail messages" then the problem goes away. I have renamed mfcm80u.dll to try and fix another adobe problem of lifecycle crashing but it did not fix either problems. My main frustration is not being able to easily use word as my editor without warnings every 10 minutes and I know this is directly related to Adobe as it worked fine minutes before I upgraded.
    More info - This was part of an enterprise install package and I noticed that it errored out on the uninstall of acrobat 8 but when it rebooted it was gone. My only thought thus far is that it is corrupted but I would like to try some fixes before I go that route.
    Thanks for any help.

    I called Adobe and the idots told me to turn off Word as my email editor.  That was not an answer so I googled it and found this.  It appeared to work for me.  Good luck.  Now if Adobe would get their act together.
    Edit Registry
    HKEY_LOCAL_MACHINE\Software\Microsoft\Office\  
    Outlook\Addins\PDFMOutlook.PDFMOutlookChange the LoadBehavior value from 3 to 2
    Restart  
    OutlookThe PDF functions will still be available in Word and the other Office  
    programs.

  • JEdtiorPane/HTMLEditorKit word wrapping problems

    Hi,
    I have a JFrame component that has a splitPane, on the left side is a JTree and the right side has a JEditorPane that has it's content updated with HTML using a method to generate the HTML via the setText() method . (no url, and no html file)
    The searching I did indicates that word wrapping is the default behavior, and I saw a lot of posts from people trying to get rid of the word wrapping, but it isn't wrapping at all for me. I get the horizontal scroll bar.
    I had the same problem using a JTextPane...anyone know how to wrap text?
    here's the relevant code:
    descriptionPanel = new JPanel(new BorderLayout());
              descriptionEditorPane = new JEditorPane();
              HTMLEditorKit htmlEditorKit = new HTMLEditorKit();
              descriptionEditorPane.setEditorKit(htmlEditorKit);
              descriptionEditorPane.setSize(new Dimension(610,800));
              descriptionEditorPane.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
              descriptionPanel.add(descriptionEditorPane);

    Did you place the components into scroll panes and then put those into the split pane?
    If so, then I guess that calling setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER) on the editor pane's scroll pane might solve your problem.

  • Word wrap problems in 36.0

    When entering text into a web form the text no longer "wraps" at the end of the box. The first part of the text runs off the left side. It is working fine in THIS text entry box but is now a problem on some other sites.
    See: http://www.thedirectoryclassifieds.com. Start placing a listing and then start entering text into the description box. Once you reach the end of the line the text does not wrap, just runs off the left side as typing continues. After this testing, just exit (back out) without continuing placing the listing.
    When encountering this problem I did a test on another computer that had 35.0.1 and word wrapping worked fine. Then I upgraded to 36.0 on that computer and now the problem is there too.
    So this definitely means a problem with 36.0 as it wasn't there in earlier versions.

    That particular form control has:
    &lt;textarea id="main_description" name="b[description]" '''style="white-space: pre;"''' class="editor field">&lt;/textarea>
    For the first time in Firefox 36, the white-space property is being honored for textarea controls. So there's your trouble: "pre" means Firefox should emulate the preformatted tag, which requires manual line breaks.
    It would be great if you can convince the site to change this to:
    &lt;textarea id="main_description" name="b[description]" '''style="white-space: pre-wrap;"''' class="editor field"></textarea>
    which is supported by all modern browsers (per the compatibility table here: [https://developer.mozilla.org/docs/Web/CSS/white-space#Browser_compatibility]).
    But that likely will take some time, so what is the best short-term workaround? I need to think about that a bit.
    To manually hack this form control, you can right-click it and choose Inspect Element (Q). This should open the web console to the Inspector in the lower part of the tab. Firefox should highlight the HTML tag I listed first above, and on the right, show the style rules for it. Under "This Element" you can uncheck the box for that rule to have the textarea styled using default rules. But you would need to do this after each time you load the page, which is a hassle.

Maybe you are looking for

  • System restore through target disc mode?

    Hi, my 12-inch, very battered powerbook has one foot in the grave and I really really need to revive it. I can feel the hardware working but all i get is a black screen. I have started it as an external hard drive from another mac and I can access ev

  • How do I get CVS w/ SSH working with Studio Creator?

    I'm sure this has been answered before but I'm having real difficulties and I think I need a walkthrough. Other links I have found that supposedly answer this question have proved unsuccessful. I am running on Windows XP and the CVS repository is rem

  • GRC RAR

    Hi, When i ran user/role/profile synchronization job for oracle in GRC RAR.It's keep running and when i check log.It says: com.virsa.cc.xsys.util.Lock lock WARNING: It is used by the another owner: For current thread retrying to get lock : 1004 Pleas

  • How to start BusinessObjects Software Inventory Tool?

    Hi there, I've got a BusinessObjects XI 3.1 Installation on Linux and I'm searching the Software Inventory Tool. But I don't find the directory.. Thanks and best regards, Max

  • How to add storage location in the MBBS transaction out put

    Hi experts,     I need to add the storage location in the MBBS Transaction report out put . what will be the procedure. Is there any standard settings or else I have to copy the program. Plz help me. Thanks&Regards, Srinivasa rao.V