Continuing a string in the next line

How can a string be continued in the next line ... in the below function call for popup_title i have to give 'Enter Sold-to party's Postal code and Region'
CALL FUNCTION 'POPUP_GET_VALUES'
  EXPORTING
  NO_VALUE_CHECK        = ' '
    POPUP_TITLE   =  'Enter Postal code and Region'
   START_COLUMN          = '5'
   START_ROW             = '5'
IMPORTING
  RETURNCODE            =
  TABLES
    FIELDS                = IVALS
EXCEPTIONS
  ERROR_IN_FIELDS       = 1
  OTHERS                = 2
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
I appreciate your response

Please try.....
<b>data: title_string type string.
title_string  = 'Enter Sold-to party<b>''</b>s Postal code and Region'.</b>
call function 'POPUP_GET_VALUES'
exporting
* NO_VALUE_CHECK = ' '
<b>popup_title = title_string</b>
start_column = '5'
start_row = '5'
* IMPORTING
* RETURNCODE =
tables
fields = ivals
* EXCEPTIONS
* ERROR_IN_FIELDS = 1
* OTHERS = 2
if sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
Regards,
Rich Heilman

Similar Messages

  • Continuing string onto the next line in coding

          System.out.println("Usage is Flippy <array max size>
                             <number less than size>")what do i put at the end of the first line that allows me to continue onto the next line of code but make it seem as if its one big line?
    thanks

          System.out.println("Usage is Flippy <array max size> "+
                  "<number less than size>");

  • Formatting of emails on iphone 5 not correct yet the emails look normal when viewed via my laptop.  The sentences on my iphone email continue on the next line when there is still space on the current line.

    The formatting of emails on my iphone 5 don't display properly yet they are correct when viewed via my laptop.  Using a gmail account on my iphone/laptop.  On my iphone the sentences break in unusual spots and continue on the next line.  Why is this and how can I fix this issue?

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).
    Also consider deleting and reinstalling the Mail Account in question.

  • In SQL Editor Window '--' at end of line comments out the next line

    Hello,
    when I run a query with '--' at the end of a line, the next line seems to be commented out:
    select * from v$parameter
    where 1 = 1
    -- and value = '0' ------------
    and value LIKE 'AMERICA%'
    this will result in showing all v$parameter records!
    When I change the last character, it works properly.
    select * from v$parameter
    where 1 = 1
    -- and value = '0' ------------ X
    and value LIKE 'AMERICA%'
    Regards,
    sknoess

    Bugged in EA2: Bug with '--' inside string
    K.

  • How do you make the sentences you input in a drop down list wrap to the next line?

    How do you make the sentences that you input in a drop down list to wrap to the next line?

    You can't.
    see this thread for more info:  Can you set drop down list as multi-line???

  • How to restrict spool data in the next line in pdf print

    Hi Experts,
    i have spool data which is going to be print in PDF format.
    if line is extented..thenit is prining the in the next line..
    but that next line is not starting after one tab space.
    so how to remove that space.
    can anybody give me help.
    Regards,
    venkat

    Hi,
    output is displaying in pdf file in the give format..
    ex:-
    919   sub     00001      44445       testmater
             ial     final
    here test material is not coming fully in the first line..it is cutting and displaying in 2 lines.
    Regards,
    venkat

  • Pasting in JTextPane adds the text in the next line not the cursor positon

    Hi,
    I have a problem with pasting the text in a JTextPane. The content type is text/html and the document is HTMLDocument. When I paste the text, it goes to the next line instead of inserting at the current cursor position. The problem is when pasting, the html writer adds a paragraph tag with the selected text. Can any one please help me with this issue for pasting a selected text in the position where I want, without loosing the character attributes and other html tags, but only the paragaraph tags?
    Thanks
    siju

    Hi Tariq,
    If you are specifying some .prt files(printer definition files) in the desformat, please examine them if you have set the width and height to proper values.
    Otherwise look at $ORACLE_HOME/reports/printers/dflt.prt (default file) and see if the width and height are set to proper values.
    Thanks,
    Siva B

  • I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    You are absolutely right.  Thought Enter meant Enter.  I was wrong.  Thank you for the help.
    Rod Rogers, Broker
    Accredited Land Consultant (ALC)
    Metcalf Land Company, Inc.
    Office: 864-585-0444
    Mobile: 864-316-0297
    Fax: 864-583-6000
    <http://www.metcalfland.com> www.metcalfland.com

  • Text tool: Text doesn't goto the next line

    Hi,
    I ran into a problem where my text doesn't go to the next line when I press ENTER.  If I keep on typing, the text would overwrite itself.
    This is only happening in After Effects (it is fine in other apps...Email, Photoshop, etc.).  I know it is probably something I clicked but for the longest time, I couldn't figure it out.
    Any help appreciated.

    As Mylenium suggested, you may have a problem with line spacing. For example, you may have leading set to 0. One way to clear problematic settings is to reset the settings in the Character panel.

  • Problem - reading an abitrary string from the command line in basic swing

    Hi,
    I'm sorry if this problem is a bit basic, but I've only just started swing in Java. Anyway, I'm trying to adapt a basic swing version of the HelloWorld class. When I try to pass an abitrary string from the command line to the label within the class, I get the following error,
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
            at week2.HelloWorldSwing_commandline.main(HelloWorldSwing_commandline.java:31)
    Java Result: 1I must be missing something because I can't see where the problem is in the following code.
    import javax.swing.*;
    import java.awt.*;
    public class HelloWorldSwing_commandline {
        String message;
        private static void createAndShowGui(String message){
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame frame = new JFrame("HelloWorldSwing");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JLabel label = new JLabel(message);
            Container content = frame.getContentPane();
            content.add(label);
            frame.pack();
            frame.setVisible(true);
        public static void main(String[ ] args) {
         createAndShowGui(args[1]);
    }Any help would really be appreciated.

    Hi,
    I've tried changing the index value to O in the main method, but I still get the same error.
    I'm running this in NetBeans 4.1, and when I try to run the class I get the error as listed above.
    Any ideas how to correct this error?
    Thanks

  • Type won't go to the next line. Please help!

    Everytime I create a text box in Indesign and start typing; instead of going to the next line, the text disappears and the little red box shows up. The text box is big enough, the text just won't go to the next line. Can someone please help me?

    And presumably when you say "won't go to the next line" you mean it doesn't wrap onto the next line on its own as you type, and not that you are pressing enter and it suddenly disappears? If it's failure to wrap and the frame is deep enough for another line, then it's either No Break, or you have hyphenation disabled and are typing non-breaking spaces (but that takes more effort to do than accidentally setting No Break as the default so is less likely).
    If the frame is not deep enough for an additional line, it's what Nini said, but if it's really that you are pressing the Enter key and it goes into overset it means you are either pressing the Enter key on the number pad, which inserts a column break by default, or you are one of those unfortunate souls (mostly PC laptop users) whose keyboard maps both enter keys together. Toggling numlock on such machines usually also toggles between paragraph and column breaks, but it's annoying and you might want to edit the shorcuts if this affects you.

  • How to make code in dreamweaver flow to the next line?

    The line lengths of my code are really really long. How do I make it automatically flow to the next line without causing it to actually be a new line? Just for viewing purposes. I don't like having to scroll all the way to the end of the line of code to add a close tag.

    Hi
    Right-click on the area next to the 'box' that has the page title, and select 'coding' to enable the coding toolbar, (appears on the l/h side of the code window) then select the word wrap icon, see image -
    PZ

  • Knocking single letter words to the next line

    Is there a way to have single letter words (talking mainly Polish here) knocked to the next line to prevent having single letter line endings?
    Is this something we can do in Indesign or would it need a script?

    your're right here you go...
    http://forums.adobe.com/message/3185882?tstart=2

  • How to dispaly vendor name to the next line

    hi all,
    i have made a smartform in which i have created a TEMPLATE.I have created Three column in which in the last column of SECOND RAW i am displaying VENDOR NO and VENDOR NAME.Now my requirement is this, if the name of the vendor is too long that can not be fit in that RAW than it will automatically display to the next line of column and raw
    Thanks & Regards,
    sappk25

    thanks

  • When editing in iMovie the pointer doesn't  jumps to the next line of clips

    When editing in iMovie the pointer doesn't  jumps to the next line of clips

    Hi,
    This should not happen.
    Having said that it will happen to some extent of you Paste in a larger amount of text.
    Does holding down the ALT key and hitting Enter/return a couple of times expand the window ?
    This normally adds Line Breaks to the Text Field
    If this does not work it will point to a windowing issue which is related to data held in com.apple.ichat.plist
    Go to the Finder and it's Go Menu.
    In here hold the ALT key so you can see the Home Library item and select that
    Open Preferences.
    Find the com.apple.iChat.plist and the associated .lockfile and drag both to the Trash.
    Restart iChat.
    8:15 PM      Tuesday; November 22, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • Reboot during lion installation

    Hi @all, i've downloaded lion from the App-Store. After the download the installer startet automaticly and reboot the System. The problem is, that the installer starts after the first reboot and failed with no error and shutdown the system. After res

  • EJB3.0 Entity cannot get attributes of extended class

    Hi , Have a very simple issue ..quite baisc one. So hopefully I"ll get an answer ! Am using EJB3.0 with WL10.3. Like any other application , every entity has id and version column. So I decided to put these fields in EntityBase.java Other Entities wi

  • Problem with Pages 09 after latest Snow Leopard Update

    I upgraded Snow Leopard with the latest update this afternoon, and now I am having all sorts of problems with Pages. Most importantly, the Pages templates are all messed up, with formatting all screwed up and the typesetting a mess. Has anyone else e

  • Error message on exiting After effects CS6

    Just installed Production Premium today. Installation was ok, no errors. Launched after effects, made some changes to preferences, then exit On exit I get :: Executable: AFterFX.exe pid 2d8c tid 1098. module vmctrl,ax 6 objects left active at lione 3

  • Reloading imovie '06 after Leopard

    Hi, I have just bought a new macbookpro that I upgraded to Leopard. When I did this I did not realize that I would still need/want Imovie '06. Can you please give me some direction in getting it back. I have original software for the pro.