Under Line for Text

Hi,
I have a screen for my report and it has few text and I/O elements. First I created few of those and later added some more. The once which were added first have underline under the text, the later once does not have under line. I do not see any difference in their type, format, etc.
Please help me solve this issue.
Thanks,
Neelu.

Hi,
Try to use
selection-screen begin of line.
selection-screen comment 1(31) text-004.
parameter: p_matnr like mara-matnr.
selection-screen end of line.
Note: Only parameters can only be used inside begin of line and end of line.
Please check my question related to same query
Re: How to avoid white lines
Then that lines will disappear
aRs

Similar Messages

  • ??command line for texting to phone number??

    Hi there are few commands on https://support.skype.com/en/faq/FA171/can-i-run-skype-for-windows-desktop-from-the-command-line
    but i am looking command for texting to phone number?

    Hi, Cigilgan, and welcome to the Community,
    Any new command lines would be introduced via an update to the FAQ article you cited.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Our Ipad type line for text disappears after taking a photo to send and only after a restart

    Hello.  We have two Ipads and two Iphones. Our newest Ipad has an issue with I message. If we take a photo to send by text the type screen and line disappears. The only way to get it back is to shut the device and then the type line returns. We have turned the message off on on with the same result. Our Ipad 2 and both our 4s and 5 phones don't seem to have the issue. Any thoughts? We are also did the icloud update and no change happened. Is this a bug or are we missing something? Messaging works fine until we take a picture then the type bar and keyboard disappear. The taken photo goes to photos.. The only way to get messages to work is to shut off the device and then it works until we try to add another new picture. It seems to work if we use an existing photo from the library.

    This sounds like you may have the camera's "Image Review" option set to "hold".
    When you take a photo, two things normally happen.
    1)  The camera should write the image to your memory card.  You'll know when it's writing to your memeory card because there is a red LED ligth which is active when the camera is using the card.  When the light goes out, the camera is finished.
    2)  The camera can be set to do "Image Review".  By default, when you take an exposure, the camera will display the image on the rear screen for just a few seconds.  But this behavior can be customized.
    Your choices for image review are "Off", 2 seconds, 4 seconds, 8 seconds, or "Hold".  If Off is selected you wont get any image review.  If "Hold" is selected, the image you just took will appear on the rear LCD and will never go away until you manually clear it.  You can just do a half-press of the shutter button to clear it (it wont get in the way of you taking more shots... just ignore it.)
    You can find instructions on this on page 166 of your T3i Instruction Manual which describes how to change this setting.
    Tim Campbell
    5D II, 5D III, 60Da

  • New line for Text in a row

    Hi Guys 
    i have a Row Data with below Text in Sqlserver 2008 
    Email:[email protected] University,Bachelors,1986---University of Virginia School of Law,Doctor of Jurisprudence,1991---French,Working---Italan,Fluenty---Phone:zzz zzz zzzz
    out put required as new column 
    Email:[email protected]
    Wesleyan University,Bachelors,1986
    University of Virginia School of Law,Doctor of Jurisprudence,1991
    French,Working
    Italan,Fluenty
    Phone:zzz zzz zzzz
    Regards
    Bhasker 
    hi

    Hello,
    You can also use a UDF to split the text with string and return a table.
    --create UDF splitstring()
    CREATE FUNCTION dbo.splitstring ( @stringToSplit VARCHAR(MAX),@delimiter nvarchar(10))
    RETURNS
    @returnList TABLE ([Name] [nvarchar] (500))
    AS
    BEGIN
    DECLARE @name NVARCHAR(255)
    DECLARE @pos INT
    WHILE CHARINDEX(@delimiter, @stringToSplit)>0
    BEGIN
    SELECT @pos = CHARINDEX(@delimiter, @stringToSplit)
    SELECT @name = SUBSTRING(@stringToSplit, 1, @pos-1)
    INSERT INTO @returnList
    SELECT @name
    SELECT @stringToSplit = SUBSTRING(@stringToSplit, @pos+len(@delimiter), LEN(@stringToSplit)-@pos)
    END
    INSERT INTO @returnList
    SELECT @stringToSplit
    RETURN
    END
    declare @string varchar(MAX)='Email:[email protected] University,Bachelors,1986---University of Virginia School of Law,Doctor of Jurisprudence,1991---French,Working---Italan,Fluenty---Phone:zzz zzz zzzz'
    select * from splitstring(@string,'---')
    --drop UDF
    drop function splitstring
    Reference:http://stackoverflow.com/questions/10914576/tsql-split-string
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Display more than one line of text for events?

    I couldn't find this in the forum... I just recently updated to Leopard. Now when I put events in iCal, it only displays one line of text in the month calendar view. I'd really like to see the whole description of the event, even if it's two or three lines. I can't find anything in preferences that addresses this, and various searches are not yielding anything. Help?
    -mel

    Hi there.
    Usually in iCal if you want more than one line of text for timed events, resizing the window will help. Under all-day events, iCal will always show you one line of text, but if there is more space it will show you more text. So, also resizing the window for this will help to see the text.
    Take care.

  • How do I create 2 motion tweens for one line of text?  the text needs to "fly-in-right", I can do that,

    how do I create 2 motion tweens for one line of text?  the text needs to "fly-in-right", I can do that, then it needs to "fly-out-bottom" again, I can do that, but not on the same line of text...any ideas...

    my question
    1- there is any way to assign the Fetch process to specific region so the process take all item in these region only.
    2- how can create manual process to fetch row into specific items in page ( i tray these code
    SELECT col1, col2, col3 ....
    INTO :P1_ITEM1, :P1_ITEM, :P1_ITEM...
    FROM table
    WHERE id = :P_id ) but no data retrieve .
    I do not think that it is possible to have more than one Automated Row Fetch process in a given page. See the thread:
    ORA-01403: no data found : Unable to fetch row multiple automated row fetch
    On your second question, the manual process should work provided:
    P_ID has a value when the process executes. You can do it this way:
    i. Make this process as a on-load After/Before header process
    ii. Make sure that P_ID page item has value when the process executes (set it from another page or before the pl/sql process executes)

  • Line Item text diplay for different wage components

    Hi Experts,
    My Client wants the exact narration (Monthwise) in line item text for the salary components which are posted to accounts. If I am using FB03 then the system is allowing me to maintain it manually, but it's not possible for headwise different salary components for 20,000 employees (Which is the manpower strength of the client) is there any other workaround for it? Is it possible that the monthwise narration will float for the wage components through the respective module?
    Please help in this regards.

    Hi Experts,
    My Client wants the exact narration (Monthwise) in line item text for the salary components which are posted to accounts. If I am using FB03 then the system is allowing me to maintain it manually, but it's not possible for headwise different salary components for 20,000 employees (Which is the manpower strength of the client) is there any other workaround for it? Is it possible that the monthwise narration will float for the wage components through the respective module?
    Please help in this regards.

  • CREATE SUBSTITUTION RULE FOR u0093COPYING LINE ITEM TEXT FOR LINE ITEMSu0094

    Hi every body
    When user post transactions in FB60 we have give the line item text, Suppose no.of lineitems are there in tht instnace my client asked to create the substitution rule to “COPYING LINE ITEM TEXT FOR LINE ITEMS”
    pls tell me the processes how to create the substitution rule
    Plz can anyboby help me out...
    laxmi velaga

    sorry,
    link doesn't work:
    here's the content:
    you must add your rules at event 3 (complete document)
    in an exit of ZGGBS000:
    data htext type bseg-sgtxt.
    *find
      LOOP AT BOOL_DATA-BSEG INTO BSEG
                      WHERE    bseg-sgtxt <> space.
      move  bseg-sgtxt to htext.
      ENDLOOP.
    *copy
      LOOP AT BOOL_DATA-BSEG INTO BSEG
                      WHERE    bseg-sgtxt = space.
      move  htext to bseg-sgtxt
    *modify
      MODIFY BOOL_DATA-BSEG FROM BSEG.^
      ENDLOOP.
    http://help.sap.com/saphelp_47x200/helpdata/en/5b/d231a843c611d182b30000e829fbfe/frameset.htm
    please reward useful answers
    thanks and regards
    Andreas

  • Field Char(255) for texts in accounting line item

    Hi Experts,
    I need a field with type/len char(255) for texts in accounting line item.
    I know I can use Long Text (EENO_DYNP-ZEILE) but it is not shown in TCode FAGLL03 and that is my need.
    Please help me.
    Best regards,
    Itajaci Júnior

    Hi Paul,
    Thanks for your reply.
    I already have these fields active, but unfortunately the sum of their sizes is not enough. Also, I would have to split the text into four fields and I think that it is not the best option for the customer.
    One more time, thanks for your answer.
    Any other ideas? It can be a Z field. The most important is that it be shown in Tcode FAGLL03.
    Regards,
    Itajaci Júnior

  • Need help to change line item text for 220 Line items

    Hi Specialists,
    The user has posted a reversal entry ( doc type : Manual Accrual) using TCODE FBS1.
    It has 220 line items.
    Is there a way in SAP he can change the text of All Line Items for a particular document number in one shot ( Mass Change).
    Pls note : Header text remains same . Only the line item text needs to be changed in one shot .
    For Eg :
      1 50 2758000047 Accruals for CAS               Accrl - Dec 08 / Nalini Marketing(Door Mats) - Oth
      2 50 2758000047 Accruals for CAS               Accrl - Dec 08 / SKC - M&E Repair
    Changed Description:
      1 50 2758000047 Accruals for CAS               Accrl - Jan 09 / Nalini Marketing(Door Mats) - Oth
      2 50 2758000047 Accruals for CAS               Accrl - Jan 09 / SKC - M&E Repair
    Thanks,
    Abhinav.

    Hi
    This is possible, please follow as below:
    If it is GL (FBL3N), Customer (FBL5N), Vendor (FBL1N) line item use the TCODE' mentioned.
    In the selection screen, if possible give all the document numbers (it is possible with addition selection).
    Once you get the output with the line item, select all line items and go to the menu options  there you can see the mass change option, it will give one popup screen give the new value in the text field and proceed further.
    VVR

  • Director imposes maximum line length for text?

    I'm trying to learn Director again after years away and so much has changed. I can't find the answer for this after searching. To the best of my knowledge, I'm using the default installed settings for Dir. 11
    I've been opening and updating old Dir. 6.5 files in Dir 11 and the text gets mangled. Long lines (10-20 inches) of headline text get the right side chopped off. My new movie size is 2560x1550 (for 30" monitor).
    I'm trying to recreate these long lines of headline text (most are 48 pt helvetica x 20 + inches wide, some much bigger pt. size) by typing it in the text panel. This is difficult to describe: After 20 inches of text, according to the ruler, Director begins condensing the whole line, compacting it more as the text panel double-vertical-line expander bar is dragged right and expanded, opening the text field so lines don't break to a second line. Director alters the letter width and spacing of the line more as the panel expander is dragged to the right, basically smashing the line of text flush left more with every increment the panel is expanded right. If the text entry panel is expanded to the full width of my 30" monitor before typing any letters, then all the characters subsequently typed are distorted and compressed as they are typed in.  This occurs with every font.
    What is going on here? How to create  line of live text longer than 20" that Director doesn't smash together?
    TIA!
    Mac OS 10.5.8 / MacPro 2 x 2.26 GHz Quad-Core Intel Xeon / 6GB ram / 30" Apple Cinema Display / Director 11

    Hi,
    I'm not following what's happening. Could you attach a sample DIR with the problem text? Otherwise, you could email the file at [email protected]
    Dean
    Director Lecturer / Consultant / Director Enthusiast
    http://www.deansdirectortutorials.com/
    http://www.multimediacreative.com.au

  • I don't want a new row for each line of text

    I have exported a pdf document which is a table full of text in columns (by month). The conversion seems to react randomly so that in some places several lines of text in a column are converted to just one cell (great, just what I want) and then in others, a block of text gets split into a row for each line of text --- very annoying ...
    What would make this happen? Is there a workaround so that you can tell the conversion how to react to blocks of text?
    hope someone can help

    For optimal export the PDF needs to be a well-formed tagged PDF.
    The basic PDF page content has no format, styling, rows, columns,  etc. 
    Just objects painted to the PDF page at a specified  location. 
    You can return to the authoring file, clean that up to support accessible PDF output, then post process the PDF with Acrobat XI Pro to finalize making the PDF PDF/UA compliant. Export of that would be better.
    You can manually tag the PDF such that it is PDF/UA compliant than export from that . This would provide you better export. 
    You can clean up the export you already have. 
    Be well...

  • Line item texts restriction for GL accounts

    Hi Gurus,
    I had lots of the Line item texts defined at the client level which can be choosen at the time of document postings.Can we restrict the line item texts with respect to GL accounts number to which we are postings.i.e.If I choose a particular GL account only few of the texts assigned to GL accounts needs to be displayed for text field.
    Thanks in advance.
    Regards,
    Abhinandan

    Hi Parul,
    The fast entry for invoices and credit memos are possible in SAP. Pl refer the URL link for detailed answer to ur question:
    'http://help.sap.com/erp2005_ehp_03/helpdata/EN/20/7248d7852d11d3b84700a0c930dc87/frameset.htm'
    Regards,
    Amish.

  • Multiple Lines of Text For Each Clip in Project Panel

    Premiere CC latest update. Mac Mavericks
    I would like to disply multiple lines of text for each clip in the Project Panel.
    I have a couple paragraphs in the Description box, and I would like to be able to read all the text in the Description box.
    As it stands, it is very difficult to read more than one sentence in the Description box.
    Is there any way that I can view all the text in the Description box?

    Hi sats_sandy,
    To keep some tags and remove unused tags in the schemaxml file the multiple line of text, you can use regular expression to remove the unwanted tags.
    Here is a sample code snippet:
     private static string RemoveSpecifyHtml(string ctx) {
                string[] holdTags = { "a", "img", "br", "strong", "b", "span" };//tags to be reserved
                // <(?!((/?\s?li)|(/?\s?ul)|(/?\s?a)|(/?\s?img)|(/?\s?br)|(/?\s?span)|(/?\s?b)))[^>]+>
                string regStr = string.Format(@"<(?!((/?\s?{0})))[^>]+>", string.Join(@")|(/?\s?", holdTags));
                Regex reg = new Regex(regStr, RegexOptions.Compiled | RegexOptions.Multiline | RegexOptions.IgnoreCase);
                return reg.Replace(ctx, "");
    Thanks,
    Qiao Wei
    TechNet Community Support

  • Set to new line for each label/text combination ?

    Dear All,
    Wish to enquire how to set to next line for each label/text combination in relation to the following code ? Please advise.
    import java.awt.*;
    public class ScanImageForm {
    public static void main(String args[]) {
         ScanImageForm scanImageForm = new ScanImageForm();
         scanImageForm.Display();
    public void Display() {
         Frame frame = new Frame();
         Panel panel = new Panel();
         frame.add(panel);
         Label labelVehNo = new Label("Vehicle No:");
         Label labelDateofLoss = new Label("Date of Loss:");
         Label labelImageType = new Label("Image Type:");
         Label labelImageDesc = new Label("Image Desc:");
         TextField textVehNo = new TextField();
         TextField textDateofLoss = new TextField();
         TextField textImageType = new TextField();
         TextField textImageDesc = new TextField();
         textVehNo.setColumns(10);          
         textDateofLoss.setColumns(10);
         textImageType.setColumns(10);
         textImageDesc.setColumns(30);
         panel.add(labelVehNo, BorderLayout.WEST);
         panel.add(textVehNo, BorderLayout.CENTER);
         panel.add(labelDateofLoss, BorderLayout.WEST);
         panel.add(textDateofLoss, BorderLayout.CENTER);
         panel.add(labelImageType, BorderLayout.WEST);
         panel.add(textImageType, BorderLayout.CENTER);
         panel.add(labelImageDesc, BorderLayout.WEST);
         panel.add(textImageDesc, BorderLayout.CENTER);
         frame.setSize(500, 500);
         frame.setVisible(true);

    if u want to set label and textfield side by side .
    then u have to set The layout is GridLayout().
    to ur example
    Panel p=new Panel(new GridaLayout(3,2))
    means three rows to columns.

Maybe you are looking for

  • No extensions in Safari 5 preferences .

    I just installed Safari 5 and there isn't an extensions tab in the preference window. I tried re-installing it which didn't help. I also tried installing an extension to see if that would somehow enable the feature. It told me to turn extensions on i

  • OWB ORA-2000 unable to analyze table

    During execution I received the error above. In the mapping, I have two targets in two different schema's. I receive the error on the target that is in a different schema than the mapping. Is there a workaround? We do not have rights to grant analyze

  • ECC 6.0 IDES install requires disk that does not exist?

    Hello all, When doing the installation, there is one portion that asks for: Java Component Netweaver 7.0 SR3 I am doing an ECC 6.0 IDES install for Oracle/ Linux. In the listing, I only see: 51033513 NW 7.0 SR3 SP14 Java Based SW Comp *but this does

  • CCM documentation

    Folks, Where can I obtain any and all docs on CCM's intricate workings, i.e., call flow diagrams; profile relation to other CCM components; and so on? All Admin, System, and other docs I've seen simply instruct on what data to enter in the various fi

  • My webmail account freezes when I try to create a new email.

    Windows 7;Firefox 11.0. Ameritech.net email account. When I try to send a new email, I type a letter in the "TO:" line. A drop down menu opens from my contact list. I select an email address and the menu and webmail freezes. I've already contact amer