How can i filter trough the text in a InfoObject

Hi all,
i need to filter in 0EQUIPMENT some advices that has   VEH but in the denomination, the text, now how can i do this?

Hi,
In BEx query designer, right click the Infoobject 0EQUIPMENT and go for restrict. There you select the option single value ranges.
Select the text and give the selection as contains pattern with VEH.
This will list down all the equipment which has contains text VEH. Then you can restrict.
Hope this helps
Regards
Akhan

Similar Messages

  • How can I get just the text to resize, rather than the entire web page?

    I used to be able to re-size just text on a webpage by typing Ctrl + +. Today, the entire webpage re-sizes, and when I move to another page it reverts. (I see this mostly in Facebook.). Why did this change, and can I go back to having just the text re-size?

    ''How can I get just the text to resize -- zoom text only''
    steps
    #"Alt" if no menu bar, then
    # View > Zoom > Zoom Text Only
    Zoom text of web pages - MozillaZine Knowledge Base
    :http://kb.mozillazine.org/Zoom_text_of_web_pages
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    Several protocols may be used.
    Here I describe two of them.
    (1) the one which I use : install and use the "Convert to Lowercase" service available in the free WordService
    (2) copy your text, paste in TextEdit and enter the Edit menu.
    I guess that you will recognize the items in your English menu.
    I apologize but I don't know the English items.
    Yvan KOENIG (VALLAURIS, France) jeudi 16 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How can i filter at the app store for an itouch 1st gen v 3.1.3 ?

    how can i filter at the app store for an itouch 1st gen v 3.1.3 ?

    vitofromoak park wrote:
    how can i filter at the app store for an itouch 1st gen v 3.1.3 ?
    Sorry, but I don't believe there is way that you can.  You'll just have to make sure to read the minmium requirements of any App you are about to purchase to ensure that it is compatible and will run on your iPod Touch running iOS v3.1.3.
    B-rock

  • How can I delete all the text in one story?

    Yeah, it's a dumb question. I've done some pretty complex things using ExtendScript, yet I can't seem to figure out how to remove all of the text in one story.
    Any help would be greatly appreciated.
    -Dan.

    myStory.contents = "";
    myStory.texts[0].remove();
    either should do the job.
    Dave

  • How can i get back the text of child

    I did an application to connect a db and show the datas in table.but the text of all such as button or textview seems disappear.how can I get them back?
    Here's the snap picture of my problem.
    http://img191.photo.163.com/rocboy_yang/13457324/655578057.jpg

    Hello Ty Lu,
    Have you hardcoded the text values for each button in the 'text' property of each button or are they assigned programaticaly from the context, are you using the message pool, perhaps for translation?
    Perhaps just right-clicking on your project in NWDS and selecting 'Reload' will straighten things out for you, give it a try.
    Regards,
    Patrick.

  • A textblock on a Samsung tablet is changing it's width but the rectangel behind stays the original size, how can I make sure the text looks the same as in the muse preview?

    The sample site for this would be:
    http://www.gdmpro.de/index.html

    Hello David,
    It wasn't because of the size of the widget, which was correct. The same problem actually also occurred with the tabbed panels, some how the text just floated over the set boundaries from the widgets, which seems to me to be a bug. The solution for this problem was to change one of the characters of the text in the font size. I just increase a period one point and than the text filled the correct size of the text field.
    You can see at:
    http://www.gdmpro.de/tablet/leistungen.html
    It would be great if this could be fixed for future releases. It is very impotent to me and my costumers that websites appear correct over any kind of device.

  • How can I make sure the text size on front panel will be adjusted by itself from PC to PC?

    In my VIs under VI Properties -- Window Size, I checked the two boxes:
     --Maintain proportions of window for different monitor resolutions
    --Scale all objects on front panel as the window resizes
    It seems that it worked for everything on front panel except the pure text wording that I put there for instruction purpose.  The size of those text stuff didn't get changed proportionally after my application was built and run on different machines so some of them got cut off and looked messy.
    Does anyone know how to fix this problem?
    Thanks very much!

    Hi Andrew,
    Thank you for looking at my problem!
    Both my development system and test system are Window XP. The font size are all set to Normal. What other details do you need to know?
    The text on front panel shows well on my development machine. But when the .exe runs on my test machine, the text size was not adjusted by itself so the text body got cut off.
    I found a way to "fix" this problem: I had to drag the text box down and right so there is enough magin between the text body and the box on the right and at the bottom. I had to try it a few times until it finally shows well on my test machine. However, with those magins, it doesn't look nice on my development machine anymore. Also, I only tried on one test machine, if it looks good on one test machine, will it look good on all the other machines? Eventually my app is going to run on Window 7. I'll have to test that out and find out if it's still going to be a problem. Anyway, I don't feel this is the right way to do it. I hope someone knows what I'm talking about and have a soluction to it.
    Thanks very much!

  • How Can I view all the Text in a User_Views

    I am using vb.net 2012 and I am trying to display the text from the built in User_Views from an oracle database. When I try to display the Text field, it only shows me the first 1000 bytes.  The Text field has a datatype of Long.
    Here is an example of my code
    imports System
    Imports System.Data
    Imports System.Data.OleDb
    Private Sub btnViewSource_Click(sender As Object, e As EventArgs) Handles btnViewSource.Click
    Dim ConnString As String
    Dim Conn As OleDbConnection
    Dim Cmd As OleDbCommand
    Dim OleDBAdapter As New OleDbDataAdapter
    Dim DtaRdr As OleDbDataReader
    Dim sql As String = ""
    Dim TblNm As String
    TblNm = lstAllViews.Text
    If TblNm = "" Then
    Exit Sub
    End If
    ConnString = modFC.GetConnectionString(DBType)
    Conn = New OleDbConnection(ConnString)
    Try
    Conn.Open()
    Catch ex As Exception
    MsgBox(ex.ToString)
    Exit Sub
    End Try
    sql = "Select View_Name, Text_Length, Text FROM USER_VIEWS where View_Name = '" & TblNm & "'"
    Try
    Cmd = New OleDbCommand(sql, Conn)
    DtaRdr = Cmd.ExecuteReader()
    If DtaRdr.Read = True Then
    Dim frmtb As New frmTextBox
    frmtb.TextBox1.Text = DtaRdr("text").ToString
    frmtb.Text = DtaRdr("view_name").ToString
    frmtb.Show()
    Else
    MsgBox("no record", vbExclamation)
    End If
    Catch ex As Exception
    MsgBox(ex.Message & vbCrLf & sql)
    Exit Sub
    End Try
    Conn.Close()
    End Sub
    John Schultz

    I was able to find the reason I could only get the first 1000 characters.
    Since I am using the Provider=OraOLEDB.Oracle.1 as my data source, one of the parameters was ChunkSize=1000.  Once I changed this to ChunkSize=32000, I was able to retrieve the entire Text from the User_Views.  Thank you for your help, I would
    not have even looked there, except you mentioned the ODP.Net and in trying to implement that into my software, I noticed the connection string in my existing code was only 1000 bytes.
    Thank You - John
    John Schultz

  • How can I take off the text on the bookmark bar and just leave the Icons of the bookmarks on the boomark bar ?

    I'd like to save space for more sites on my bookmark bar so I'd like to take off the text on the bookmark bar and just leave the site Icon's...that way there will be much more space to add on more sites to my bookmark bar.

    SImple open the bookmark properties and erase the name, to open the bookmark properties:
    *Go to '''Bookmarks''' >> '''Show all bookmarks''' >> or press '''Ctrl+Shift+B ''' click on the bookmark to see the properties.
    *Go to bookmark page click on the blue star to see the properties or Press Ctrl+D

  • How can I move from the text body to the inspector in voiceover - need to change spacing

    I want to get to the inspector (for formatting text in Pages), but cannot seem to find the correct keystrokes.  After marking text, I would like to double space (or go from double spacing back to single spacing). 

    You're welcome
    If those pages are publicly accessible without the need to log in and authenticate then you can post a link and I will see if I can come up with some code for [https://addons.mozilla.org/firefox/addon/stylish/ Stylish] or [http://kb.mozillazine.org/userContent.css userContent.css]

  • HT3577 How can I turn off the text editing feature on an iPhone 4 with iOS 6.x - when my Mom taps the phone, it always brings up copy.  It does not do this for me so I am assuming it is the way her disability forces her fingers to hit the screen.

    My Mom has tremors and when she uses her iPhone and taps to select, the way she hits the keyboard causes the copy selection to appear.  It is not an issue with her phone because it does not do this for me.  I would like to shut off the double tap feature.  I have already tried Settings/General/Accessibility/Home speed typing = slowest.

    The editing menu doesn't come up when you double tap. It comes up when you press and hold. It can't be turned off.

  • How can i disable turning the text from black to red when hovering over with a mouse in some forums?

    In some forums posts turn to red when the mouse is in the forum post box. That didn't happen in previous versions of Firefox. It also happens in Opera if that is helpful. Thank you for the help.

    You're welcome
    If those pages are publicly accessible without the need to log in and authenticate then you can post a link and I will see if I can come up with some code for [https://addons.mozilla.org/firefox/addon/stylish/ Stylish] or [http://kb.mozillazine.org/userContent.css userContent.css]

  • How can i turn off the spam filter?

    How can i turn off the spam filter for HP eprintcenter?

    zanganah;
    I hope you are doing well and sorry to learn that you are having this issue;
    Most of the time when you have issues receiving emails is that the email have something like FWD  subject line. Eliminate that. 
    Does the email have a title? Make sure it does.
    ePrint emails can only have one email address in the “To:” field. To send an email to your printer and to additional email addresses of friends and family at the same time, put your printer's email address in the “To:” field, and put your friends/family email addresses in the “BCC” (blind carbon copy) field.
    Also this are some of the limitations of the service to keep in mind;
    The attachment size or number of attachments exceeded the allowed limit.
    There is a 5 MB limit to the email and a 5MB limit to each attachment. HP ePrint supports a maximum of 10 attachments to a single email. Emails that exceed these limits will not print.
    Is the attached file supported by ePrint? Supported attachments include:
    Microsoft Word
    Microsoft PowerPoint
    Microsoft Excel*
    Text files (.txt)
    PDF
    HTML
    Images (bmp, jpg, png, gif, tiff)
    * HP strongly recommends that you preview documents in Excel before printing.
    Hope this helps:
    RobertoR
    And Remember . . .
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info in apps) and reverted back to all my old data.  How can I retrieve all the lost data??

    I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info added to apps) and reverted back to all my old data (literally uploaded all of my old texts and 1400 old pics and deleted anything new).  How can I retrieve all the lost data?? Please help!!

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

Maybe you are looking for

  • Uninstall preinstalled applications

    Hi: I just got a Nokia 6650 from ATT wireless that comes with many applications that require subscriber fees that I do not want.  However, the normal uninstall through the Apps Manager will not work, resulting in the error mesage "Uninstallation not

  • Navigate to Web Page always opens a new window

    Hi, I am using action link "Navigate to Web Page" for column interaction. The source report is in a dashboard page and by clicking on this column should navigate to another dashboard page carrying some parameters. It works fine but everytime it opens

  • Itunes 9.2 won't launch on Mac OSX Leopard

    Hi - recently my itunes 9.2 has decided not to launch. I get no error messages, it just crashes on me and the rest of the iMAC runs poorly for 10 minutes or so. It then catches up but sometimes it won't even shut down properly. Do I reinstall itunes?

  • Dynamic generate JCheckBoxes...

    Hello, can anybody give me an impulse? It concerns the following: - my script is reading out a folder (reading out the names of the files in this folder) - I get a String[] array with the names in it - on the basis of the names in the String[] array

  • R830 Camera not working after Windows 10 upgrade

    I have recently upgraded to Windows 10 in my Toshiba R830 model laptop. after upgrading my Toshiba Web camera - HD is not working and i am unable to update with new driver. Please advise a solutions. Thanks and Regards Rakesh