Text in listbox

hi guys i want to dispaly some text like this 'Find in Archive', 'Search in System',
in dropdown list box i ahve taken in the internal table 'it_archive' and pass this internal table in FM CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'...
but when am excuting the text is not displaying in the dropdown listbox.. plz any one help me on this its Urzent
DATA: BEGIN OF it_archive occurs 0,
        arc(16) TYPE C VALUE 'Find in Archive',
        sys(18) TYPE C VALUE 'Search in System',
      END OF it_archive.

hi Murali,
Provide the int table name in the table variable .
Use it like this :
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'give the name of field as displayed in the screen  '
value_org = 'S'
display = 'F'
DYNPROFIELD = 'screen field name '
IMPORTING
USER_RESET = ''
TABLES
value_tab = it_archive
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
IF sy-subrc <> 0.
ENDIF.
Revert if further help needed !
Regards,
Ranjita

Similar Messages

  • Unnecessary text behind listbox after converting from a web-page

    When I make convertation from htm-page containing listbox to pdf, there also appear text on the back of Listbox object. The strings are equal to Listbox values. If I create listbox manually, these strings not appear. How to fix this bug?

    OK, I see now what you mean. It's been a while since I've web-captured an HTML form and I've never noticed that before. I don't think there's anything you can do to prevent it from happening though. You can change the color of the text so it's not visible, or remove it through redaction or other editing tools.

  • The listbox event.changeEx is not giving proper index, when the text in the list is all in Chinese.

    We have a PDF built from Acrobat Pro. There is a listbox with text in Chinese.The listbox event.changeEx is not giving proper index, when the text in the list is all in Chinese. Do we need to set any configuration for the PDFs to work with Chinese text for listbox selection event.
    Something like Font or locale in adobe pro or the Windows 7 OS to be in Chinese.
    Please suggest.

    Please share your thoughts on the issue

  • Windows Phone DataTemplate

    Hi,
    I am new in Windows Phone development, I have a listbox with a datatemplate, in the datatemplate there is a textblock named mytextblock, I can not access the textblock by using the name in MainPage.xaml.cs. But I want to change the forebackground color of
    the textblock. Please help me. Sorry for my bad english.
    <ListBox Name="MyListBox">
    <ListBox.ItemTemplate>
    <DataTemplate>
    <TextBlock Name="MyTextBlock" Text="{Binding Text}"/>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>

    Hi frrey gdfkaj,
    >>I can not access the textblock by using the name in MainPage.xaml.cs.
    Yes, we can not access the textblock control which are in the DataTemplate by using its name in code behide. But we can use the
    VisualTreeHelper to help us find the textblock control.
    For the detailed information, please try to refer to my reply in this thread:
    https://social.msdn.microsoft.com/Forums/en-US/4b7f99f2-a468-4a7e-8f54-2d8c54af6e7d/how-to-access-the-texblocks-in-a-listbox?forum=wpdevelop
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • IE 11 compatibility issues

    Hi Support team,
    My code works perfectly on IE 9 but does not work properly on IE 11. I have a list box which has some elements and has a button to select an element move it Up/Down. I am able to select an element and move it Up/Down, but only once.
    I am not able to select any other element after that.
    I am not allowed to use the below tag in my code.
    <meta http-equiv="x-ua-compatible" content="IE=EmulateIE9" >
    Below is my code u can open it on IE 11 browser and check.
    <HTML>
    <HEAD>
    <STYLE type="text/css">
    body { font-family:Arial; }
    a { color:#00f; text-decoration:none; }
    </STYLE>
    <SCRIPT type="text/javascript">
    function listbox_move(listID,direction){
    var listbox=document.getElementById(listID);
    var selIndex=listbox.selectedIndex;
    if(-1==selIndex){alert("Please select an option to move.");return;}
    var increment=-1;
    if(direction=='up')
    increment=-1;
    else
    increment=1;
    if((selIndex+increment)<0||(selIndex+increment)>(listbox.options.length-1)){return;}
    var selValue=listbox.options[selIndex].value;
    var selText=listbox.options[selIndex].text;
    listbox.options[selIndex].value=listbox.options[selIndex+increment].value;
    listbox.options[selIndex].text=listbox.options[selIndex+increment].text;
    listbox.options[selIndex+increment].value=selValue;
    listbox.options[selIndex+increment].text=selText;
    listbox.selectedIndex=selIndex+increment;
    function listbox_moveacross(sourceID,destID){
    var src=document.getElementById(sourceID);
    var dest=document.getElementById(destID);
    var picked1 = false;
    for(var count=0;count<src.options.length;count++){
    if(src.options[count].selected==true){picked1=true;}
    if(picked1==false){alert("Please select an option to move.");return;}
    for(var count=0;count<src.options.length;count++){
    if(src.options[count].selected==true){var option=src.options[count];
    var newOption=document.createElement("option");
    newOption.value=option.value;
    newOption.text=option.text;
    newOption.selected=true;
    try{dest.add(newOption,null);
    src.remove(count,null);
    catch(error){dest.add(newOption);src.remove(count);
    count--;
    function listbox_selectall(listID,isSelect){
    var listbox=document.getElementById(listID);
    for(var count=0;count<listbox.options.length;count++){
    listbox.options[count].selected=isSelect;
    </SCRIPT>
    <TITLE>Listbox JavaScript functions</TITLE>
    </HEAD>
    <BODY>
    <table border="1" align="center" style="border-collapse:collapse;">
    <tr>
    <td colspan="5" align="center"><font size="+2"><b>Listbox Functions</b></font></td>
    </tr>
    <tr valign="top">
    <th>Move up/down</th>
    <td></td>
    <th colspan="3">Move left/right</th>
    </tr>
    <tr valign="top">
    <td>
    <SELECT id="a" size="10" multiple>
    <OPTION value="a">Afghanistan</OPTION>
    <OPTION value="b">Bahamas</OPTION>
    <OPTION value="c">Barbados</OPTION>
    <OPTION value="d">Belgium</OPTION>
    <OPTION value="e">Bhutan</OPTION>
    <OPTION value="f">China</OPTION>
    <OPTION value="g">Croatia</OPTION>
    <OPTION value="h">Denmark</OPTION>
    <OPTION value="i">France</OPTION>
    <OPTION value="j">Canada</OPTION>
    </SELECT>
    </td>
    <td>&nbsp;&nbsp;&nbsp;</td>
    <td>
    <SELECT id="s" size="10" multiple>
    <OPTION value="a">Afghanistan</OPTION>
    <OPTION value="b">Bahamas</OPTION>
    <OPTION value="c">Barbados</OPTION>
    <OPTION value="d">Belgium</OPTION>
    <OPTION value="e">Bhutan</OPTION>
    <OPTION value="f">China</OPTION>
    <OPTION value="g">Croatia</OPTION>
    <OPTION value="h">Denmark</OPTION>
    <OPTION value="i">France</OPTION>
    <OPTION value="j">Canada</OPTION>
    </SELECT>
    </td>
    <td valign="middle">
    <a href="#" onclick="listbox_moveacross('s', 'd')">?</a>
    <br/>
    <a href="#" onclick="listbox_moveacross('d', 's')">?</a>
    </td>
    <td>
    <SELECT id="d" size="10" multiple>
    <OPTION value="a">Albania</OPTION>
    <OPTION value="b">Bohemia</OPTION>
    <OPTION value="c">Brazil</OPTION>
    <OPTION value="d">Bhutan</OPTION>
    <OPTION value="e">Bolivia</OPTION>
    <OPTION value="f">Chile</OPTION>
    <OPTION value="g">Cuba</OPTION>
    <OPTION value="h">Djibouti</OPTION>
    <OPTION value="i">Finland</OPTION>
    <OPTION value="j">Greece</OPTION>
    </SELECT>
    </td>
    </tr>
    <tr>
    <td>
    Move <a href="_____#" onclick="listbox_move('a', 'up')">? up</a>,
    <a href="#" onclick="listbox_move('a', 'down')">? dn</a>
    </td>
    <td>
    </td>
    <td>
    </td>
    <td>
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    Select
    <a href="#" onclick="listbox_selectall('a', true)">all</a>,
    <a href="#" onclick="listbox_selectall('a', false)">none</a>
    </td>
    <td>
    </td>
    <td>
    Select
    <a href="#" onclick="listbox_selectall('s', true)">all</a>,
    <a href="#" onclick="listbox_selectall('s', false)">none</a>
    </td>
    <td>
    </td>
    <td>
    Select
    <a href="#" onclick="listbox_selectall('d', true)">all</a>,
    <a href="#" onclick="listbox_selectall('d', false)">none</a>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>

    Hi,
    According to your description, I think it would be better to provide your question at Internet Explorer Development Forum. Please access to the link below to access Internet Explorer Development Forum:
    Internet Explorer Internet Explorer Dev Center:
    http://social.msdn.microsoft.com/Forums/ie/en-US/home?category=iedevelopment
    Roger Lu
    TechNet Community Support

  • Is it possible to have two fonts apply to one string? or use symbols amongst normal font?

    Hi,
    Is it possible to apply two different fonts to one string, or use symbols amongst normal font? My purpose is to display an Omega symbol after some number.
    ".99982 Ω" or "-180 φ"
    I am using version 6.0,
    Thanks in advance!
    Solved!
    Go to Solution.

    It's not possible to use differnt fonts in the same text control (string, text message, text box, listbox...) or in the label for any control.
    An alternative solution can be to use a font that natively includes the letters / symbols you need. Within CVI 6 native fonts you can use NISystemMetaFont which includes uppercase omega letter together with other commonly used greek letters (and uppercase / lowercase alphabet and numbers, of course  ).
    In charmap the font is seen as NISYSTEM: with that program you can see all characters included in the font file and select / copy each of them to paste in CVI controls if you need it.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • DoubleClick List Item with Icon (is this a bug)

    DoubleClick event is not called when you double click an Icon
    displayed in a list !
    Help ! is this a bug or me being thick ??
    Demo App Below (just supply your own Icon.)
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="566" height="526">
    <mx:Script>
    <![CDATA[
    [Embed(source="icons/folder.gif")] public var
    folderIcon:Class;
    [Bindable]
    public var myList: Array = [ {label:"None", data:"",
    myIcon:"folderIcon"},
    {label:"Dataset", data:"Dataset", myIcon:"folderIcon"},
    {label:"Image", data:"Image", myIcon:"folderIcon"},
    {label:"Interactive Resource", data:"Interactive",
    myIcon:"folderIcon"},
    {label:"Moving Image", data:"MovingImage",
    myIcon:"folderIcon"},
    {label:"Software", data:"Software", myIcon:"folderIcon"},
    {label:"Sound", data:"Sound", myIcon:"folderIcon"},
    {label:"Text", data:"Text", myIcon:"folderIcon"}];
    public function ItemSelected():void {
    Log.text = "Clicked " + listbox.selectedItem.label + "\r" +
    Log.text;
    public function ItemDoubleClick():void {
    Log.text = "DoubleClicked " + listbox.selectedItem.label +
    "\r" + Log.text;
    ]]>
    </mx:Script>
    <mx:List x="127" y="30" id="listbox" labelField="label"
    width="312" height="275"
    borderStyle="solid" iconField="myIcon" cornerRadius="6"
    enabled="true"
    doubleClickEnabled="true" doubleClick="ItemDoubleClick();"
    click="ItemSelected();"
    dataProvider="{myList}">
    </mx:List>
    <mx:TextArea x="127" y="393" width="312" height="80"
    liveScrolling="true" id="Log"/>
    <mx:Label x="128" y="367" text="Log"/>
    </mx:Application>

    You got my mind cranking so your fix did help me. Thank you
    very much. Here is my archaic workaround.
    // To get around the double click on the list box adobe bug
    private var doubleClickTimer:Timer = new Timer(1000, 1); //
    one second
    private var singleClick:Boolean = false;
    private function courseFiles_click():void
    if(isDoubleClick())
    courseFiles_doubleClick();
    private function isDoubleClick():Boolean
    var myReturn:Boolean = false; // default false
    if(singleClick)
    myReturn = true; // we get here if it is a double click so
    return true
    if(singleClick == false)
    // init timer
    doubleClickTimer.start();
    doubleClickTimer.addEventListener(TimerEvent.TIMER_COMPLETE,
    onTimerCompleteDoubleClickTimer);
    singleClick = true;
    return myReturn;
    private function
    onTimerCompleteDoubleClickTimer(evt:TimerEvent):void
    singleClick = false; // set it to false after the timer
    interval
    }

  • How to use struts in a jsp where controls are dynamically decided

    Hi,
    In My JSP...
    I don't know how many text field,listbox,radio button i need to display...
    Depending on the user naviagation it is dynamically decided ... how many all the above mentioned control (text field,listbox,radio ) need to display.
    Here the problem is all the name of the control (text field,listbox,radio ) are dymaically decided..so in this case how do i wirte setter and getter in the Action Form.
    Thanks
    balaji

    indexed or mapped fields... For example, in the form, you have this:
         private HashMap map = new HashMap();
         public Object getField(String key) {
              return (map.get(key));
         public void setField(String key, Object value) {
              map.put(key, value);
         }Then in the JSP:
    <html:text property="field(fieldName)" /> Where the "field(.." part is the property name (get/setField) and the "..(fieldName)" part is a unique key for the map. This can be simply done as field(text1), field(text2), etc.
    There are also index fields, where you use an Object array (I think) and field[index] as the name (field[0], field[1], etc.). You can use <%= %> scriptlets to write the property value for the tag, of course.

  • Values from listbox to appear as a list in a text box.

    I am using Acrobat X to create a PDF form. I have a listbox where multiple selections can be made and need these export values to appear in a text box as a list with one value per line. I have managed to get the values to appear in the text box, however they are appearing in a continuous line separated by a comma. I have very little knowledge of Java Script and would appreciate any assistance.

    A better option is to use this code (the reason it's better is because one of the values can contain a comma, and then it will be split with the code above):
    var v = this.getField("Awards").value;
    if (typeof v == "string") event.value = v;
    else event.value = v.join("\r");

  • Loading data from text file into ListBox

    I have data in a text file that I want to load into a
    listbox... I have fully mastered handling strings and arrays so I'm
    going to need some help...
    I was wondering how do I get flash to load a text file that
    contains the data below.. and display it line for line like I want
    it to list down the component
    "Launch;7.1.7.6"
    "Engine;7.1.7.6"
    "OSX;7.0.0.2" (or something close to that)
    and I was wondering how do i just get it to take it fromt he
    file.. line for line from where it says exeversion in the file and
    list it in the listbox...
    I'm really thankful to anybody that helps.
    Data in text file:
    quote:
    exeversion=Launch;7.1.7.6;
    exeversion=Engine;7.1.7.6;
    exeversion=LinuxX86;7.0.0.2;
    exeversion=LinuxPPC;7.0.0.2;
    exeversion=LinuxMIPS;7.0.0.2;
    exeversion=OSX;7.0.0.2;
    exeversion=Config;7.1.7.6;
    exeversion=UI;7.1.7.7;
    exeversion=JAVA;7.0.4.5;

    nobody cna help me? i really need to know or have a tutorial
    or something so i can learn from it... i really appreciate anyone
    who helps

  • How do I programatically change the text in a listbox that is contained in a cluster?

    How do I programatically change the text in a listbox that is contained in a cluster?

    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

  • How to get Text instead of key in a ListBox or DropDown

    Hi,
    I have a Listbox Country and I would like to get the Country name selected instead of key.
    for example if i select India , i am getting corresponding key value for India not the actual text India.
    How would i get that
    I am using this.rawValue to get the key
    Thanks
    Bala Duvvuri

    Hi Bala,
    Have you tried this:
    Place the following JavaScript code on the Change event of your ListBox
    xfa.host.messageBox("TEST: " + xfa.event.newText);
    This code should give you the actual Text for your entries.
    Hope this helps,
    Harman

  • Having trouble reading specific lines from a text file and displaying them in a listbox

    I am trying to read specific lines from all of the text files in a folder that are reports. When I run the application I get the information from the first text file and then it returns this error: "A first chance exception of type 'System.ArgumentOutOfRangeException'
    occurred in mscorlib.dll"
    Below is the code from that form. 
    Option Strict On
    Option Infer Off
    Option Explicit On
    Public Class frmInventoryReport
    Public Function ReadLine(ByVal lineNumber As Integer, ByVal lines As List(Of String)) As String
    Dim intTemp As Integer
    intTemp = lineNumber
    Return lines(lineNumber - 1)
    lineNumber = intTemp
    End Function
    Public Function FileMatches(ByVal folderPath As String, ByVal filePattern As String, ByVal phrase As String) As Boolean
    For Each fileName As String In IO.Directory.GetFiles(folderPath, filePattern)
    If fileName.ToLower().Contains(phrase.ToLower()) Then
    Return True
    End If
    Next
    Return False
    End Function
    Private Sub frmInventoryReport_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim intcase As Integer = 1
    Dim strTemp, strlist, strFile As String
    Dim blnCheck As Boolean = True
    strFile = "Report Q" & intcase.ToString & ".txt"
    Do While blnCheck = True
    strFile = "Report Q" & intcase.ToString & ".txt"
    Dim objReader As New System.IO.StreamReader("E:\Furry Friends Animal Shelter Solution\Furry Friends Animal Shelter\" & strFile)
    Dim allLines As List(Of String) = New List(Of String)
    Do While objReader.Peek <> -1
    allLines.Add(objReader.ReadLine())
    Loop
    objReader.Close()
    strlist = ReadLine(1, allLines) & "" & ReadLine(23, allLines)
    lstInventory.Items.Add(strlist)
    intcase += 1
    strTemp = intcase.ToString
    strFile = "Report Q" & intcase.ToString & ".txt"
    blnCheck = FileMatches("E:\Furry Friends Animal Shelter Solution\Furry Friends Animal Shelter\", "*.txt", intcase.ToString)
    Loop
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim intcase As Integer = 1
    Dim strTemp, strlist, strFile As String
    Dim blnCheck As Boolean = True
    strFile = "Report Q" & intcase.ToString & ".txt"
    Do While blnCheck = True
    strFile = "Report Q" & intcase.ToString & ".txt"
    Dim objReader As New System.IO.StreamReader("E:\Furry Friends Animal Shelter Solution\Furry Friends Animal Shelter\" & strFile)
    Dim allLines As List(Of String) = New List(Of String)
    Do While objReader.Peek <> -1
    allLines.Add(objReader.ReadLine())
    Loop
    objReader.Close()
    strlist = ReadLine(1, allLines) & "" & ReadLine(23, allLines)
    lstInventory.Items.Add(strlist)
    intcase += 1
    strTemp = intcase.ToString
    strFile = "Report Q" & intcase.ToString & ".txt"
    blnCheck = FileMatches("E:\Furry Friends Animal Shelter Solution\Furry Friends Animal Shelter\", "*.txt", intcase.ToString)
    Loop
    End Sub
    End Class
    Sorry I'm just beginning coding and I'm still a noob. Any help is appreciated. Thank you!

    Ok, so if I'm following this correctly you should be able to just loop through all of the files in that folder whose file name matches the pattern and then read the first 22 lines, recording only the first and the last.
    Exactly how you store the animal data probably depends on how you are going to display it and what else you are going to do with it.  Is there anything other than name and cage number that should be associated with each animal?
    You might want to make a dataset with a datatable to describe the animal, or you might write a class, or you might just use something generic like a Tuple.  Here's a simple class example:
    Public Class Animal
    Public Property Name As String
    Public Property Cage As String
    Public Overrides Function ToString() As String
    Return String.Format("{0} - {1}", Name, Cage)
    End Function
    End Class
    With that you can use a routine like the following to loop through all of the files and read each one:
    Dim animals As New List(Of Animal)
    Dim folderPath As String = "E:\Furry Friends Animal Shelter Solution\Furry Friends Animal Shelter\"
    For Each filePath As String In System.IO.Directory.GetFiles(folderPath, "Report Q?.txt")
    Using reader As New System.IO.StreamReader(filePath)
    Dim lineIndex As Integer = 0
    Dim currentAnimal As New Animal
    While Not reader.EndOfStream
    Dim line As String = reader.ReadLine
    If lineIndex = 0 Then
    currentAnimal.Name = line
    ElseIf lineIndex = 22 Then
    currentAnimal.Cage = line
    Exit While
    End If
    lineIndex += 1
    End While
    animals.Add(currentAnimal)
    End Using
    Next
    'do something to display the animals list
    Then you might bind the animals list to a ListBox, or loop through the list and populate a ListView.  If you decided to fill a datatable instead of making Animal instances, then you might bind the resulting table to a DataGridView.
    There are lots of options depending on what you want and what all you need to do.
    Reed Kimble - "When you do things right, people won't be sure you've done anything at all"

  • How to change the text size of a multicolumn listbox ?

    I would like to have all text in my multicolumn listbox biger and bold. I don't find anything with property node.

    Hi
    Use the Positioning tool to select the entire Multicolumn Listbox. Then use the Text Settings in the LabVIEW toolbar to change the font, style and so on. You will see that the font of all the items in your Multicolumn Listbox (including its label) are changed at once.
    If you want to change only one item, than you can use the Text tool.
    Luca P.
    Application Engineer
    National Instruments
    Regards,
    Luca

  • How can I justify text in a multicolumn listbox cell dynamically

    I use a multicolumn listbox with two columns to display an event list. Then number of events is different and can exceed the number of displayed rows. I need to justify the text in the first column to right dynamically.
    Is there any way?

    I would split the listbox in two different listboxes, each one with its specific format (make it static).
    Doc-Doc
    http://www.machinevision.ch
    http://visionindustrielle.ch
    Please take time to rate this answer

Maybe you are looking for

  • Safari will not open on mini Macintosh

    I have a mini Mac with Yosemite installed. Safari will not open and all I see is a coloured pinwheel. The only way out is to keep opening finder and force quit safari? I have similar set up with iPhone 5c and iPad mini neither has a problem. Apple su

  • How do I scan a document, and where does it appear once scanned?

    I have located the scan feature in System Preferences/Print&Scan and successfully scanned a document so it appeared in the preview pane. How do I find the scanned document?

  • Report output in a text file

    Hello, I am using report 6i and I would like to have the output of my report in a file, such as text file. I tried with the systems parameters (DESNAME, DESTYPE ...) but it dosent work. Does someone could help me with that? Thankyou in advance.

  • Work flow for Goods issue MIGO_GI

    Hi friends, I want to develop a work flow for good issue MIGO_GI  transaction.  Is there any standard work flow this scenario. When I deliver the 4 materials, the Material cost is 100*4 = 400, if the Material cost is greatr than 500, mail should trig

  • T61p + Windows 7 64bit + Intel AMT Drivers.

    Hi all, I've recently installed Windows 7 x64 on my T61p (6459-CTO). I've installed the drivers and all the devices and running fine except two: PCI Serial Port PCI Simple Communications Controller After a failing to find drivers for these, I googled