Issue while printing ' & ' in the text

Hello,
         In a particular transaction there is a text field where the user could enter unlimited text. I have developed a smartform to display the texts. I wud explain the problem with an example.
Text :  " On the Insert tab, the galleries include items that are designed to coordinate with the
A&B etc "
Print Preview : " On the Insert tab, the galleries include items that are designed to coordinate with the
A<(>&<)>B etc "
Has anybody come across such an issue earlier??
Cheers
Nayan

Hi Florian,
                Tried your option.
Here's the output : " A<(><<)>(><(>&<)><(><<)>)>B "
Cheers
Nayan

Similar Messages

  • How do I print only the text on the monitor screen?

    I would like to be able to print only that portion of a text that is on the monitor screen. How do I do that?
    I have an Epson Workforce 325 printer, and an HP desktop computer PC

    Please see the following to print only the text portion of the web page. I am assuming you wish to print just the text & not the ads or additional irrelevant items to avoid wasting ink.
    See:
    [[Printing a web page]]
    '''If this solved your issue, please select ''solved ''& chose the appropriate ''solution'' to close this ticket/question posting'''.

  • Issue with printing of header text

    hii frnds ,
    my problem is i am   getting the header text printed properly but the text is not getting displayed whenever the user enters a numeric value without any gaps ... i have seen while debuging that the text is properly getting fetched and the cursor is also passing through the text field but the text is not getting printed in my layout . i am using a script for this .
    thanking you
    rohit gupta

    Use Below code to get your text..
    data: begin of int_rtline occurs 0.
              include structure tline.
      data: end of int_rtline.
    data : rheat type string.
    data : itab_r  like swastrtab    occurs 0 with header line.
    Get the Heating and Cooking Instruction
    get material heating instructions from material master
      call function 'READ_TEXT'
           EXPORTING
                client                  = sy-mandt
                id                      = 'IVER'
                language                = sy-langu
                name                    = tdname
                object                  = 'MATERIAL'
           TABLES
                lines                   = int_rtline
           EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                others                  = 8.
      loop at int_rtline.
        if rheat = space.
          concatenate 'COOKING INSTRUCTIONS: '
                      rheat int_rtline-tdline
                      into rheat.
        else.
          concatenate rheat int_rtline-tdline
              into rheat separated by space.
        endif.
      endloop.
    Depends on ur Layout Width for each line print number of charcter,here i mentioned 92 char.
      IF NOT rheat IS INITIAL.
        CALL FUNCTION 'SWA_STRING_SPLIT'
             EXPORTING
                  input_string                 = rheat
                  max_component_length         = 92
             TABLES
                  string_components            = itab_r
             EXCEPTIONS
                  max_component_length_invalid = 1
                  OTHERS                       = 2.
        IF sy-subrc <> 0.
        ENDIF.
    LOOP AT itab_r.
    Print ur data.
    Endloop.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Issue while printing to A4 from Xerox J75 (fiery) through Mac OSX 10.9.3.

    I've encountered an issue while printing to A4 from Xerox J75 (fiery) through Mac OSX 10.9.3.
    The document and printer settings are set for A4 but the print job goes to the printer as A3.
    The problem only occurs while printing through Adobe Photoshop CS6.

    I get into trouble if I choose A4 borderless instead of A4 in the Photoshop Print settings.
    There, Tray 2 is dimmed out
    To be honest, I don't see borderless in your settings, but my  doing that on my printer causes a default to the larger Tray 1.
    That's all I have tonight. If I think of anything else, I'll post it.  Here's thread on this issue as well.
    Wrong paper size sent to the printer

  • Issue while Printing Barcode

    Hi All,
    We have an issue while printing Barcode from SAp script.
    We are using the barcode  BC_C128B with font HELVE 10. We can see proper length of bar code
    in print preview but when we take the print of the Bar code the dimensions of Bar code get doubled.
    Could you please provide some expert inputs?
    Thanks
    Saurabh

    Use SE73 and change the font in the barcode as per your requirement , if this barcode is used in any other programs then copy this barcode to Y or Z name and change according to your need and use it in your program

  • How do I print just the text in a power point opened in preview

    How do I print just the text in a power point opened in preview

    In the front panel, right click on the listbox object and select create>attribute node.
    In the diagram click on the attribute node and select "Item Names".
    Connect the desired array of string to the attribute node.
    BigBen

  • I filled in a fillable pdf form and when i print it, the text in the fillable section gets cut off.

    I filled in a fillable pdf form and when i print it, the text in the fillable section gets cut off. What do I need to do to get the entire text to be printed. Any help is appreciated.
    Thanks

    What has this to do with Pages? You probably did this in Preview.
    Peter

  • My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    Soution: Delete the printer and add the same printer back in, therefore creating a new print queue.

  • How to print out the text for Info record in ME23?

    Dear all,
    I need to print out a report of PO data. need to print out the text from Info record note (like the picture shown below) in ME23, how should I pull that field and display out?
    I need the solution urgently. Hope experts can help.
    Thank you very much.
    [http://img293.imageshack.us/img293/238/inforecordnd1.png]

    Please check below sample code:
    PARAMETERS: p_ebeln TYPE ebeln OBLIGATORY.
    TYPES: BEGIN OF ty_ekpo,
             ebeln TYPE ebeln,
             ebelp TYPE ebelp,
           END OF ty_ekpo.
    DATA: i_ekpo TYPE TABLE OF ty_ekpo,
          wa_ekpo TYPE ty_ekpo.
    DATA: l_name TYPE tdobname,
          i_tline TYPE TABLE OF tline,
          wa_tline TYPE tline.
    CONSTANTS: c_id   TYPE tdid VALUE 'F02',
               c_object TYPE tdobject VALUE 'EKPO'.
    AT SELECTION-SCREEN.
      SELECT SINGLE ebeln INTO p_ebeln
             FROM ekko
             WHERE ebeln = p_ebeln.
      IF sy-subrc NE 0.
        MESSAGE e001(00) WITH 'Enter valid PO Number'.
      ENDIF.
    START-OF-SELECTION.
      SELECT ebeln ebelp INTO TABLE i_ekpo
             FROM ekpo
             WHERE ebeln = p_ebeln.
      LOOP AT i_ekpo INTO wa_ekpo.
        CONCATENATE wa_ekpo-ebeln wa_ekpo-ebelp
           INTO l_name.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
            id                      = c_id
            language                = sy-langu
            name                    = l_name
            object                  = c_object
          TABLES
            lines                   = i_tline
          EXCEPTIONS
            id                      = 1
            language                = 2
            name                    = 3
            not_found               = 4
            object                  = 5
            reference_check         = 6
            wrong_access_to_archive = 7
            OTHERS                  = 8.
        IF sy-subrc EQ 0.
          LOOP AT i_tline INTO wa_tline.
            WRITE:/ wa_tline-tdline.
            " Format wa_tline-tdline in the way you need to print out
          ENDLOOP.
        ENDIF.
      ENDLOOP.
    Regards
    Eswar

  • 3055 when printing pdf the text is full of symbols and rubbish. No problems when printing Word

    I have a HP Laserjet 3055 and when printing pdf, the text is full of symbols and rubbish.
    I use Adobe 8.0 and never had problems before. Who can help me, this is driving me crazy! Printing Word is okay.
    Thanks

    Thanks a lot!

  • I am a beginner of "pages" and have this problem of dots while writing the text. I dont know how to remove these bullets-like dots while spacing in the text. Please help

    I am a beginner of "pages" and have this problem of dots while writing the text. I dont know how to remove these bullets-like dots while spacing in the text. Please help

    Look up "formatting" in the User Guide.
    http://manuals.info.apple.com/MANUALS/0/MA524/en_US/Pages_UserGuide.pdf

  • HT3743 HT4623 We're sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care.----How to fix this issue while setting up the iphone for the new ios?

    HT4623 We're sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care.----How to fix this issue while setting up the iphone for the new ios?

    If you don't have a SIM card in the phone, you must put one in. It's required for activation.
    If you do, then your phone was probably hacked to unlock it from the original carrier. Contact them and see if they will unlock it. If they will not do so, then you can't use that phone.

  • Error facing while printing a hard text in a form ...

    hi i am facing a error while debugging a f orm
    the text is not being printed for second page onwards
    as shown below the first char 3pl comes whille debugging and then the window goes to next as shown below and dont cmplete the remaining text and neither print that
    <b>Form       EN z_LIST_PH3   Page       NEXT     4     Window     INFO            
    Function   WRITE_FORM                              0                                
    <u>Event      CHAR            3PL   </u>                                                   
    Element       </b>                                                                      
           ....+ V .1........2........3........4........5........6........7..     
       /:  IF &ZPLBL& = 'C000'                                                          
       IN  <B>3PL  Code,,:</>,,'Not Required'                                      
       /:  ELSE                                                                         
    > IN  <B>3PL  Code,,:</>,,&ZPL&                                             
       /:  ENDIF                                                                        
    on doing f5 the cursor should go inside the line and print 3pl and then code but it shows only 3pl and dont print it from second page onwards
    it does print whole 3pl code.... text for first page         but not from second page onwads
    can anyone suggest on this error or its cause or wht to do to remove this/
    regards
    Arora

    hi
    the content of zplbl doesnt matter and it is coming as tehre are two codition if
    not c001 then print ;3gl code = required
    esle print 3gl code value from program
    hence this priting of 3gl code is not being executed for second page for first page it is printing not for second page....
    here is the code i already pasted above the code while debugging
    /:   PERFORM GET_LABEL_CODE IN PROGRAM ZPICK_LIST_PH3                             
    /:   USING &LTAK-VBELN&                                                           
    /:   USING &LTAP-POSNR&                                                           
    /:   CHANGING &ZINT&                                                              
    /:   CHANGING &ZPLBL&                                                             
    /:   ENDPERFORM                                                                   
    /:   IF &ZINT& = 'I000'                                                           
    IN   <B>Inter Code,,:</>,,'Not Required'                                   
    /:   ELSE                                                                         
    IN   <B>Inter Code,,:</>,,&ZINT&                                           
    /:   ENDIF                                                                        
    this above is bwing printed for both pages but my code as below is not being printed for second page onwards and in debugging it goes to this line second in <b> the shows 3pl and suddenly jumps from here to next window and dont even executes next perform immediately afete it for second page onwards                                           
    /:   IF &ZPLBL& = 'C000'                                   
    IN   <B>3PL Label Code,,:</>,,'Not Required'               
    /:   ELSE                                                  
    IN   <B>3PL Label Code,,:</>,,&ZPLBL&                      
    /:   ENDIF                                                 
    /:   PERFORM GET_SHIP_STATUS IN PROGRAM  ZLIST_PH3     
    pls suggest
    regards
    Arora

  • Is there a new virus that affects Firefox? My browser is fine for a while and then the text will disappear, also some of the control buttons.

    This has been going on at least 3 months with the browser. The back arrow will disappear, sometimes the text completely disappears, sometimes you can see it but its unreadable, looks like the letters are missing pixels. Sometimes the images get corrupted with black pixelation. If you quit and restart it goes away, for a while.
    The problem seems to be affecting my online games as well. I play "Steampunk Tower" on Yahoo!'s free game tab and it always crashes my machine hard, as in abruptly shuts down the system with no warning. This is not the only game to be affected.
    I have both McAfee and Norton 360 and they find nothing when I scan, but they can only detect what they know about so I'm looking for something new and unreported. Or maybe an update failed or has corrupted a file, I don't know. I do know that its very irritating and I'd like to fix it, if possible.

    hello, maybe that's an issue with hardware acceleration - please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]], or in case this doesn't solve the issue or there is no new version available at the moment, disable hardware acceleration in ''firefox > options > advanced > general''.

  • Issue While printing / Previewing a Adobe form in Web Dynpro ABAP application

    Dear All,
    We have designed 4 different adobe forms using SFP transaction for 4 different countries in SAP system.
    Every country have different terms and conditions and therefore we have placed static texts (Hardcoded text) with text in different styles. Some text is in bold, some in different font (Bold, Italic). Font and Paragraph settings of the text was done as per expected. All the forms have same font and paragraph settings.
    When we Launch Web Dynpro ABAP application to open the form in Print preview or to take print, form is not getting displayed / printed as it is designed in SFP. But if you open the form in SFP, everything looks fine.
    It is working fine for 3 different forms but problem with only 1 form.
    Kindly guide what is the reason for this strange issue when previewed or taken print. It is very urgent.
    Thanks,
    Bharath.K

    Dear All,
    Thanks for your responses.
    We had identified the reason.
    Customer has provided terms and conditions for all 4 countries in PDF document. Along with PDF, for 3 out of 4 countries customer has shared pre-prepared word document with pre aligned and justified terms and conditions as per expected outcome. We copied this text from word to Adobe form layout. It worked fine. For 1 country, customer have not shared terms and conditions in word document. Therefore we had copied text directly from adobe PDF document in to Form layout. Then this issue happened.
    Solution for this issue is to, prepared a word document with expected alignment and justification of terms and conditions text . Then copied from word to adobe livecycle designer form layout. It worked fine.
    Thanks,
    Bharath.

Maybe you are looking for

  • How to connect my macbook pro to an older tv that has rca cable?

    How to connect my macbook pro to an older tv thas has rca cables?

  • Ipod dock and remote

    Hi All can any body tell me if once the i touch is docked on the universal dock is it poss to play the ipod back through the pc also can the you use the remote i have tried the remote works but there is no sound even when it is sync it does not work

  • Export 3.0.9 and import to Portal Release 2 on different platform

    Hi, I have to move a Portal site from 3.0.9 on NT to a Linux platform running Portal Release 2. How can I do it? I believe I cannot export from 3.0.9 and import to Release 2 - what are my options? TIA Steve West

  • Aperture newbie - library / file folder question

    I am still trying to figure out the best way to use aperture to organize my work and even after reading the documents, I'm confused about why it stores things the way it is and what other options would be of benefit. With iPhoto, everything was store

  • XPath support for Date data type.

    Hi, I am using XPathAPI class for extracting data from an XML source.I have a column in the data which has date type (any date type supported by MS SQL, Ms Access etc).I want to select only some rows from that column.I'm not aware if XPath provides o