How to make a Input Field with multiple lines?

hey folks,
i need to make a popup window or a dynpro with 2 input fields, where the user can write on multiple lines. why isnt there such an input field in the screen painter? how can i make this? if i can do this with a dynpro it would be nice but a popup with that feature would be better. didnt found any infos anywhere except for that thread, but its answer didnt work with my dynpro:
How to make a input/output field with multiple lines
thx for any helping answer

i made it just like in that thread but there is an error message telling that gv_custom_container is not declared.
*  MODULE status_0110 OUTPUT
MODULE status_0110 OUTPUT.
  CREATE OBJECT custom_container
    EXPORTING
      container_name              = 'TEXT_CONTROL'
    EXCEPTIONS
      cntl_error                  = 1
      cntl_system_error           = 2
      create_error                = 3
      lifetime_error              = 4
      lifetime_dynpro_dynpro_link = 5.
  CREATE OBJECT text_editor
    EXPORTING
      parent                     = gv_custom_container
      wordwrap_mode              = cl_gui_textedit=>wordwrap_at_windowborder
      wordwrap_to_linebreak_mode = cl_gui_textedit=>false
    EXCEPTIONS
      error_cntl_create          = 1
      error_cntl_init            = 2
      error_cntl_link            = 3
      error_dp_create            = 4
      gui_type_not_supported     = 5.
  SET PF-STATUS 'STATUS_0110'.
  SET TITLEBAR 'TITLE'.
ENDMODULE.                    "status_0110 OUTPUT
Edited by: rafe b. on Oct 26, 2009 2:56 PM

Similar Messages

  • HT4642 ios numbers:how to make cell height variable with auto line brake setting ?

    ipad numbers; How to make cell height variable with auto line break setting?

    That's strange. I responded earlier and the whole message got trashed. Hence the test post before retyping the entire thing again.
    Thanks for the reply.
    The video clip is a single screen capture video clip. This is what I've found by playing around with this more.
    The original clip resolution is greater than 640x480. If I use QT Pro to convert the original clip to 640x480 and then use either Flip4Mac or PE7, then the resolution looks good.
    Just trying to figure out if should keep all workflow on the MacOS side. There are several different version of Flip4Mac. $49 gives me 640x480, but if I ever want to make it slightly larger then I would need to go with the $99 or HD version.
    I also tried to export to AVI with QT Pro and the import with Windows MovieMaker but it didn't work really good. I liked the simplicity (since PE7 hogs a lot of resources especially through VMWare).

  • Text Field with multiple lines

    I am trying to create a text field in the selection screen where it can insert a text with multiple lines for instance those text fields which you can see online where you can key in text lines after lines.
    How do you do that in ABAP?

    Hi
    See any Std program code for CREATING long Text lines
    See any application document HEADER or ITEM text and copy that code
    first declare a field with some table field
    like
    PARAMETERS: p_text like Tline-tdname.
    then keep a button (for Long text) and in the program write a code such that when you press on that line it will take you to text ediotr
    using the CREATE_TEXT fun module
    copy it from a std program text..
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Print fields with multiple lines

    We set the field for multiple lines in a pdf form. When
    entering info, a scroll bar appears so they can enter multiple
    lines. However, the mutiple lines don't print. If we increase the
    field height, the scroll displays when info is typed beyond the
    height and we cannot turn off the scroll.
    Also, the field is in the middle of a form and the rest of
    the form needs to adjust to accommodate the number of lines entered
    in the expandable field. How??

    I'm assuming you are authoring this pdf in Acrobat. If so,
    double-click the text box field to open it's properties. In the
    OPTIONS tab, select the "Multi-line" check box, but DESELECT the
    "Scroll Long Text" check box. This will prevent folks from entering
    more text than the box will allow (has space for). Therefore,
    nothing will be hidden when the page is printed. If you DO want
    folks to be able to put as much as they want in that box but are
    limited in space on the page, printing will not be an option as the
    printer will not realize text is hidden in that box. Hope this
    helps!

  • How to make the input field of an uplaod button to readonly

    Hi all,
              I have to upload an excel file using upload button.But the problem here is i want the user to use only browse button to upload a file..but he should not enter mannulally in the input field.Is it possible to gray out the input filed but the browse button should be in active state.
    Regards
    Padma N

    Hi,
    I dont think you can make the readonly only for the inputfield which is part of the FileUpload UI.
    I guess your issue is related with user entering invalid urls and system hangs.
    Regards
    Ayyapparaj

  • Input Field with multiple selection

    I am planning to add an input field to my BSP application.
    I have already implemented a self-made F4 help for it.
    But now my customer wants a multiple-selection for it (as in the workbench, when you display the content of a database table).
    Is there anything I get for free, or do I have to implement this all on my own?

    Hi Daniel,
    Are you looking for implementation of select-options within BSP? For this you have a beautiful article by Thomas Jung... You look for it....
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cd465292-0801-0010-e19f-e67172032668
    Thanks...
    Regards,
    Ravikiran

  • Validate a input field with multiple values.

    Hi,I have to restrict decimal values for a input text field that is "Number"
    When i click on SAVE it will say, that decimal values are not allowed.
    This part is fine. But the problem is that when i save multiple entries(batch save). It validate the first row only and then as per the first row value it throws exception.
    I am using this piece of code to fetch values of  "Number".
    OAMessageTextInputBean oamessagetextinputbean = (OAMessageTextInputBean)webBean.findChildRecursive("Number");
    String qty = (String)oamessagetextinputbean.getValue(pageContext);
    // But this is only returning one value of the field Number. By using this value i am validating it against the Decimal values.
    How to get the value of the field Number on the next row. Also i need to validate it as well.
    A quick help is appreciated.
    Thanks in Advance.

    Hi Myvizhi,
    This is latest piece of code i am using. But still it is printing the value of QUANTITY in first row .
    public void processFormRequest(OAPageContext pageContext,
    OAWebBean webBean) {
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am =
    (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OAViewObject oaviewobject =
    (OAViewObject)am.findViewObject("PoRequisitionLinesVO");
    int rwcnt = oaviewobject.getRowCount();
    System.out.println(rwcnt +  "rwcnt");
    OATableBean oatablebean =
    (OATableBean)webBean.findIndexedChildRecursive("ItemTableRN");
    OAMessageTextInputBean oamessagetextinputbean =
    (OAMessageTextInputBean)oatablebean.findIndexedChildRecursive("Quantity");
    if (pageContext.getParameter("Save") != null ||
    pageContext.getParameter("Checkout") != null) {
    if (oatablebean != null) {
    RowSetIterator queryVOIter =
    oaviewobject.findRowSetIterator("queryVORow1");
    if (queryVOIter != null) {
    queryVOIter.closeRowSetIterator();
    queryVOIter = oaviewobject.createRowSetIterator("queryVORow1");
    System.out.println("queryVOIter is " + queryVOIter);
    while (queryVOIter.hasNext() &&
    i < rwcnt) // rowcount is number of rows
    String qty =
    (String)oamessagetextinputbean.getValue(pageContext);
    System.out.println("Value1 is " + oamessagetextinputbean);
    System.out.println("Value2 is " + qty);
    queryVOIter.next();
    i++;
    String MessageTextValue =
    oamessagetextinputbean.getValue(pageContext).toString();
    System.out.println("Value of mtv " + MessageTextValue);
    if (MessageTextValue != null ||
    MessageTextValue.length() != 0) {
    if (MessageTextValue.contains(".")) {
    throw new OAException("Decimal values not allowed in the Quantity field, Try Again",
    OAException.ERROR);
    } else {
    } else {
    Please help.
    Thanks.
    Chinmay

  • How to make a single image with multiple clickable points?

    Hi,
    I just started using CS4 yesterday, but am pretty confused. I managed my first little achievement with it, but am havign troubles. I'm not even sure of the capabilities of the software to be honest, but I would like to know if I can have a single image, then have sections of it which can be hovered over with a tag and a link to another part of my site. Is this something that can be done?
    Thanks!

    Hi,
    to reach several different links on the image you need to create so-called hotspot (I had to translate the following terms from my German Dreamweaver). How to do?
    Click into the image
    Open properties window
    Open list box orientation.
    Surround the image parts in question (look at the green arrow). Feel free/play with chosen forms.
    Hans-G.
    P.S.
    You shouldn't use only images on your site.

  • How to make a input field default?

    Can anyone help me this following query?
    --> I want to default a sequence count field value to 1? how can I do this? please help.
    Regards.

    Hi
    But where?
    In a SELECTION-SCREEN?
    If it's so:
    PARAMETERS: COUNT TYPE I DEFAULT 1.
    In a defination?
    DATA COUNT TYPE I VALUE 1.
    Can u give us more details?
    Max

  • How to make an editable bulleted list with multiple lines and custom bullets?

    How do I create an editable bulleted list in Acrobat Pro? I've figured out how to add text fields with multiple lines, and how to add a list box, but I don't see the check box for multiple lines in the list box or how to add bullet points. Can someone please give me step by step instructions? Also is it possible to use custom bullet points?

    Is it a text field or a list box field? The two are not the same...
    The bullets are something that the user will have to enter manually (into a text field, they can only select values in a list-box).
    They can use any unicode character, or special characters if the font used for that field allows for it. You can't use images for the bullets, if that's what you mean.

  • Text with multiple lines limit each line to 10 digits

    Im trying to create a Numeric Field with multiple lines and limit the character per line to 10
    ideally I want the users to be able to paste in a 10 digit number similar to this:
    0001234567
    0001234568
    0001234569
    I can set my pattern to num{zzzzzzzzzz} but not sure how to allow multiple lines
    Im using Adobe LC ES2 Verison 9.0
    Thanks!

    better option is to use INCLUDE statement in SCRIPTS. its a script control command and you no need to use READ_TEXT and to loop it and send each line to script.
    if you use the above INCLUDE control command, SAP will take care of printing total text of that Object.
    here is the syntax :
    <b>/: INCLUDE name [OBJECT o] [ID i] [LANGUAGE l] [PARAGRAPH p] [NEW-PARAGRAPH np]</b>
    here /: indicates its an Control command.
    you have to use NAME, ID, LANGUAGE adn OBJECT here.
    if you give these details in the Text editor of script layout,automatically data will be printed on the screen.
    ex:
    /: INCLUDE &EKKO-EBELN& OBJECT EKKO ID X LANGUAGE E
    Hope you got the Idea.
    <b>here is brief help about INCLUDE:</b>
    Use INCLUDE to include the contents of another text into your text. The text to be included exists separately from yours and is only copied at the time of the output formatting. With INCLUDE, since the text is only read and inserted during the output formatting, the most current version of the required text is always available.
    and IF you are very specific about using READ_TEXT to display the contents,
    then you have to LOOP that table and call the WRITE_FORM to print the line on the layout.
    LOOP AT IT_TDLINES.
      CALL FUNCTION 'WRITE_FORM'
    ENDLOOP.
    Regards
    Srikanth
    Message was edited by: Srikanth Kidambi

  • Error Message with multiple line

    Hi
    How to display a error message with multiple line?
    Example
         Goods movement not possible for material 101
         Goods movement not possible for material 102
         Goods movement not possible for material 103
    is it possible is ABAP? If so please advice me.
    Best Regards
    Asheek

    Hi Anoop,
    You can use same thing like this
    I suggest write ur message through this.
    First set the obecj.
    CALL FUNCTION 'APPL_LOG_SET_OBJECT'
    for local memory
    FUNCTION 'APPL_LOG_WRITE_MESSAGES'
             EXPORTING
                  OBJECT              = OBJECT
                  SUBOBJECT           = SUBOBJECT
                  UPDATE_OR_INSERT    = UPDATE_INSERT_FLAG
             TABLES
                  MESSAGES            = MESSAGE_TABLE
             EXCEPTIONS
                  OBJECT_NOT_FOUND    = 1
                  SUBOBJECT_NOT_FOUND = 2
                  OTHERS              = 3.
    the call for physical memory
    CALL FUNCTION 'APPL_LOG_WRITE_DB'
    In this process you only need to provide the Itab with error messages.
    Reg,
    Arpit

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • How to make a PDF form with expanding tabel or expanding fields, like in Word.

    How to make a PDF form with expanding tabel or expanding fields, like in Word.

    This is currently not possible in Formscentral. It is something we are working on for the future. Please stay tuned.
    Andrew Yarborough

  • How to make multi-box fields for name or address in a PDF form to be filled in?

    I would like to know how to make fields for name and address in a PDF form.
    I am now using Acrobat 8 Pro on Windows Vista. I have downloaded a form in the format of a PDF file. Basically it is just a file holding images of pages of the document, and there are no fields for me to type something on it using computer. This form will be used frequently by me, but I don't want to print it out and fill it in every time by hand. I want to fill it in in the computer and print copies of it when needed. The output will then be much more neat and tidy.
    I have seen PDF forms with blanks for typing name and address, which means the form can be filled in on the computer before printing. They are special, as these blanks allow users to type name and address with every character occupying a box in the field, which consists of ten boxes or so. These are not ordinary textfields. I want to make similar inputting field as well.
    Does anyone knows something about making these input fields with each character using 1 little box in the multi-box field? Any ideas are appreciated.

    Does anyone knows something about making these input fields with each
    character using 1 little box in the multi-box field?
    Use text fields with the comb of x characters feature.

Maybe you are looking for

  • Open Documet URL is not working

    Hi All, i have 2 reports A and B from e-fashion db. Breport is having prompt on CIty and report is having State. And i tried to open B report from A through the opendocument link it is saying "canot open link" message is displayed. Please check my UR

  • I need a sim card for my 3G refurbished phone and don't know which one to use.  I get a message IMEI 01181100937 939 4 How do I find the serial number

    I can't find which carrier to use on my refurbished I phone 3 G.  The screen says I need a sim card and has the message IMEI 01 181100 937 9394.  Also ICCID unknown.

  • Mail stuck in out box

    I switched to roadrunner.com and created a new message going to all 500 addresses in my address book. It wouldn't send using the roadrunner, so I resent using old earthlink.com smtp which worked. But now the one created using roadrunner.com smtp is s

  • Getting list of all users present in SIM

    Hi, I would like to update all the users (attributes of users) in SIM . Right now I am thinking to get list of all users present in SIM and get the view of each user and then update the particular attribute and chekin the view. and imp point to note

  • Database Keeps On Switching During Migration

    Hello. I am currently doing a mailbox migration from Exchange 2007 to Exchange 2013. I have 4 databases in Exchange 2013 which are A, B, C and D (each with different quotas). The databases have their copies on another Exchange server under DAG. Durin