Creating a Search accessing predefined information in Excel

So a bit more about my project:
I need to create an app that can search through a set of data, once found I can use that data to define what value should be stored there. I want the search to be quick, and functional. I feel limited user interaction will be the best. Using predefined excel
sheets to define product codes, sizes, along with locations of the products. 
I would like it to make a search in the way that the Playstation Store does. Select a letter (by touch), and it gives you a list of items under that letter, then based on what the user selects displays sizes for that item. Finally asking a quantity for that
item.
Screen 1: This screen would start by asking for a Location using Rows A-V, Selecting row R would display locations 1-25. Selecting one of these would display a A-E, followed a 1 or a 2 (left or right location). Our locations look like this V13D2. Once a
location was selected Screen 2 would be brought up.
Screen 2: If I had the products, ABC, CDF, and CFG, the main screen would show the letters A, and C, touching C, would show me CDF and CFG. Touching CFG would show me sizes Small, Medium, Large, X-Large, or predefined ones for that specific product. Once
I have selected the ones I am looking for I can enter an amount. Once done I return to Screen 1.
I tried looking through some settings but was unsure if I needed to create a new screen for each item, or if I could setup actions to change the displayed text at the top, along with changing the button text with the next following set of options. So if
the user was trying to type location V13D2, the top would show what the user has already typed in (V13), while the buttons would display what data was available (in this case D)

I created a search which acts like this by default.
I added a input textbox InputText1 as search facility.
The items in the concerning gallery are provided by the following function:
   Filter(Gallery1, Lower(InputText1!Text) in Lower(Gallery1))
Every key filters the gallery again and is case insensitive.
Like a charm.
This can be done with buttons as well, but will create some effort in making those buttons dynamic and filter the gallery accordingly. You need to facilitate undo  etc. So you are building your own keyboard. Maybe the user does not even like that. Less
is more?
Hope this helps.

Similar Messages

  • Create Indesign book from paths in an excel sheet

    Hello All
    I have started to learn some scripting, and want to know if it is possible to read information from Excel sheet? In this case it is paths to Ind files.
    Today we are working with several documents which we compile into a book, this to create custom-made manuals for our customers. The script I'm looking for or will try to create will use these paths from the excel sheet to compile an Indesign book.
    Any tips where I can find information about similar tasks.
    Please respond

    Thanks for your advices.
    So if I understood it right it is impossible for Java or VB through Indesign to access information located within sheets in an Excel document. That is too bad.
    We don't have the possibility to convert the .xls to for example .csv, becouse of .csv does not support more than one sheet. An SQL database could be a possible solution, but this shouldn’t either work?
    What I don’t really understand is why you can merge information from an excel sheet into an Indesign page, but not collect strings from an excel sheet when running a script.

  • Access transaction information from a GOS

    Hello,
    I am creating a new generic object service for a transaction. I have no problems with the creation but I would like to know if once the user has clicked in the service and the new screen pop ups, is it possible to access the information from the original transaction?
    I know you have the business object associated with most of the information, but my question is if, for example you can access elements of the transaction layout, i.e. access internal tables or data structures. Is that possible? I understand that these information has to be somewhere because once you close the service you return to the original transaction.
    Best regards,

    Deepti,
    Search this forum for <b>WDProtocolAdapter</b> if you are on NW04s or for term <b>WDWebContextAdapter</b> otherwise (NW04). In later case do not use Requerst object and internal methods to get reference, use standard API methods instead.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Store+search+view+print inventory,store+search+print rent information

    Good morning,
    I need some help regarding my Java Project. I was told by my lecturer to do one program[probably java applets] to store all informations about CDs and Videos.
    The program should be able to :
    1)store,view,search and print the informations of CDs and Videos.
    2)store,view,search and print the informations of customers
    This are the informations that need to be stored for:
    CDs:
    1. Title of album
    2. artist
    3. number of tracks
    4. total playing time
    5. comments
    Videos:
    1. Title of video
    2. Name of director
    3. total playing time
    4. comment
    For search CDs and Vidoes information, user will key in the artist name(for CDs) and director name (for video)
    For the renting section:
    1)the employee will be able to key in customer transaction.
    2) The customer must be a member to rent the CDs and Videos.If not, he / she must registers first.
    3)The transaction will be recorded in terms of the CDs/Videos informations, date of rent,due date and payments.
    4)The applet must also can identify which customer that has not pay/not return yet. If he or she does not return yet, he or she wont be able to rent .
    Here is some of coding that I have made:
    Name:TestRandomAccessFile[only for Videos]
    *i dont know how to combine CDs.
    *This applet coding only consists of register informations about Videos and View ONLY
    //TestRandomAccessFile.java: Store and read data
    //using RandomAccessFile
    package Store;
    import java.io.*;
    import java.awt.*;
    import java awt.event.*;
    import javax.swing.*;
    import CHapter9.MyFrameWithExitHandling;
    import javax.swing.border.*;
    public class TestRandomAccessFile extends MyFrameWithExitHandling
         //Create a tabbed pane to hold two panels
         private JTabbedPane jtpVideo = new JTabbedPane ();
         //Random access file for access the student.dat file
         private RandomAccessFile raf;
         //Main method
         public static void main (STring[]args)
         TestRandomAccessFile frame = new TestRandomAccessFile ();
         frame.pack ();
         frame.setTitle ("Test Random Access File");
         frame.setVisible ("True");
         //Default constructor
         // Open or create a random access file
         try
         raf=new RandomAccessFile("video.dat","rw");
         catch(IOException ex)
         System.out.print ("Error: " + ex);
         System.exit (0);
         //Place buttons in the tabbed pane
         jtpVideo.add (new RegisterVideo(raf),"Register Video");
         jtpVideo.add (new ViewVideo(raf),"View Video");
         //Add the tabed pane to the frame
         getContentPane().add(jtpVideo);
         //Register video panel
         class RegisterVideo extends Jpanel implements ActionListener
         //Button for registering a video
         private JButton jbtRegister;
         //Video information panel
         private VideoPanel videoPanel;
         //Random access file
         private RandomAccessFile raf;
         //COnstructor
         public RegisterVideo (RandomAccessFile raf)
         //Pass raf to RegisterVideo Panel
         this.raf=raf;
         //Add videoPanel and jbtRegister in the panel
         setLayout Pnew BorderLayout ());
         add (videoPanel= new VideoPanel(),BorderLayout.CENTER);
         add(jbtRegister= new JButton ("Register"),BorderLayout.SOUTH);
         //Register listener
         jbtRegister.addActionListener(this);
         //Handle button actions
         public void actionPerformed(ActionEvent e)
         if (e.getSource()==jbtRegister)
         Video video=videoPanel.getVideo();
         try
         raf.seek(raf.length());
         video.writeVideo(raf);
         catch (IOException ex)
         System.out.print ("Error:" + ex);
         //View video panel
         class ViewVideo extends JPanel implements ActionListener
         //Buttons for viewing video information
         private JButton jbtFirst,jbtNext,jbtPrevious,jbtLast;
         //Random access file
         private RandomAccessFile raf=null;
         //Current Video Record
         private Video video = new Video ();
         //Create a Video panel
         private StudentPanel studentPanel=new StudentPanel ();
         //File pointer in the random access file
         private long lastPos;
         private long currentPos;
         //Contsructor
         public ViewVideo (RandomAccessFile raf)
         //Pass raf to ViewVideo
         this.raf=raf;
         //Panel p to hold four navigation buttons
         JPanel p=new Jpanel();
         p.setLayout(new FlowLayout(FlowLayout.LEFT));
         p.add(jbtFirst=new JButton("First"));
         p.add(jbtNext=new JButton("Next"));
         p.add(jbtPrevious=new JButton("Previous"));
         p.add(jbtLast=new JButton("Last"));
         //Add panel p and studentPanel to ViewPanel
         setLayout(new BorderLayout());
         add(studentPanel;BorderLayout.CENTER);
         add(p,BorderLayout.SOUTH);
         //Register listeners
         jbtFirst.addActionListener(this);
         jbtNext.addActionListener(this);
         jbtPrevious.addActionListener(this);
         jbtLast.addActionListener(this);
         //Handle navigation button actions
         public void actionPerformed(ActionEvent e)
         String actionCommand=e.getActionCommand();
         if(e.getSource() instanceof JButton)
         try
         if ("First".equals(actionCommand))
         if(raf.length()>0)
         retrieve(0)l
         else if ("Next".equals(actionCommand))
              currentPos=raf.getFilePointer();
              if (currentPos<raf.length())
         retrieve(currentPos);
         else if ("Previous".equals(actionCommand))
              currentPos=raf.getFilePointer();
              if (currentPos<raf.length())
         retrieve(currentPos-2*2*Video.RECORD_SIZE);
         else if ("Last".equals(actionCommand))
              lastPos=raf.getFilePointer();
              if (lastPos<raf.length())
         retrieve(lastPos-2*Video.RECORD_SIZE);
         catch (IOException ex)
         System.out.print("Error:"+ex);
         //Retrive a RECORD at specific position
         public void retrieve(long pos)
         try
         raf.seek(pos);
         video.readVideo(raf);
         videoPanel.setVideo(video);
         catch (IOException ex)
         System.out.print ("Error lagi la wei:"+ex);
         //This class contains static method to read and write fixed length      //records
         class FixedLengthStringTo
         //Read fix number of the chracter from DataInput stream
         public static String readFixedLengthString(int size;DataInput in)
         throws IOException
         char c[]=new char [size];
         for (int=0;i<size;i++)
         c=in.readChar();
         return new String(c);
         //Write fixed number of chracter (string with padded space
         //to DataOutput Stream
         public static void writeFixedLengthString (String s,int size, Data.Output out) throws IOException
         char cBuffer[]=new char[size];
         s.getChars(0,s.length(),cBuffer,0);
         for (int i=s.length();i<cBuffer.length;i++)
         cBuffer[i]=' ';
         String newS=new String (cBuffer);
         out.writeChars(newS);
    File name:CD
    package Kedai;
    import java.io.*;
         public class CD
         private String title;
         private String artist;
         private String tracks;
         private String time;
         private String comment;
         //Specify the size of four string fileds in record
         final static int TITLE_SIZE=32;
         final static int ARTIST_SIZE=32;
         final static int TRACKS_SIZE=20;
         final static int TIME_SIZE=10;
         final static int COMMENT_SIZE=40;
         //the total size of the record un bytes,a Unicode
         //character is 2 bytes size
         final static int RECORD SIZE= (TITLE_SIZE+ARTIST_SIZE+TRACKS_SIZE+TIME_SIZE+COMMENT_SIZE);
         //Default constructor
         public CD()
         //Construct with specified data
         public CD (String title,String artist,String tracks,String time,String comment)
         this.title=title;
         this.artist=artist;
         this.tracks=tracks;
         this.time=time;
         this.comment=comment;
         public String getTitle()
         return title;
         public String getArtist()
         return artist;
         public String getTracks()
         return tracks;
         public String getTime()
         return time;
         public String getComment()
         return comment;
    //Write a CD to a data output stream
    public void writeCD (DataOutput out) throws IOException
    FixedLengthStringIO.writeFixedLengthString(title,TITLE_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(artist,ARTIST_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(tracks,TRACKS_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(time,TIME_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(comment,COMMENT_SIZE,out);
    //Read CD from data input stream
    public void readCD(DataInput in) throws IOException
    title=FixedLengthStringIO.readFixedLengthString(TITLE_SIZE,in);
    artist=FixedLengthStringIO.readFixedLengthString(ARTIST_SIZE,in);
    tracks=FixedLengthStringIO.readFixedLengthString(TRACKS_SIZE,in);
    time=FixedLengthStringIO.readFixedLengthString(TIME_SIZE,in);
    comment=FixedLengthStringIO.readFixedLengthString(COMMENT_SIZE,in);
    File name:Video
    package Kedai;
    import java.io.*;
         public class Video
         private String title;
         private String director;
         private String time;
         private String comment;
         //Specify the size of four string fileds in record
         final static int TITLE_SIZE=32;
         final static int DIRECTOR_SIZE=32;
         final static int TIME_SIZE=10;
         final static int COMMENT_SIZE=40;
         //the total size of the record un bytes,a Unicode
         //character is 2 bytes size
         final static int RECORD SIZE= (TITLE_SIZE+DIRECTOR_SIZE+TIME_SIZE+COMMENT_SIZE);
         //Default constructor
         public Video()
         //Construct with specified data
         public Video (String title,String director,String time,String comment)
         this.title=title;
         this.director=director;
         this.time=time;
         this.comment=comment;
         public String getTitle()
         return title;
         public String getDirector()
         return director;
         public String getTime()
         return time;
         public String getComment()
         return comment;
    //Write a video to a data output stream
    public void writeVideo (DataOutput out) throws IOException
    FixedLengthStringIO.writeFixedLengthString(title,TITLE_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(director,DIRECTOR_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(time,TIME_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(comment,COMMENT_SIZE,out);
    //Read video from data input stream
    public void readVideo(DataInput in) throws IOException
    title=FixedLengthStringIO.readFixedLengthString(TITLE_SIZE,in);
    director=FixedLengthStringIO.readFixedLengthString(DIRECTOR_SIZE,in);
    time=FixedLengthStringIO.readFixedLengthString(TIME_SIZE,in);
    comment=FixedLengthStringIO.readFixedLengthString(COMMENT_SIZE,in);
    I need help in terms of:
    1)store,view,search and print the informations of CDs and Videos.
    2)store,view,search and print the informations of customers
    What should I modify my coding above?What should I do next?Can anyone give me the code since I'm not good enough in creating Java coding.Please. The submission is on 30 September

    You made three mistakes:
    1) You posted to a JSP/JSTL forum when asking about applet code. Maybe you should redirect your thread to a more appropriate forum - Like one for Applets or general Java Programming.
    2) You waited for the last few days to try tosolve your problem. If you spent time working on it little by little you would be closer to a solution.
    3) You begged for someone to do the work for you. Asking for help is one thing. That I was willing to do, even though you posted to the wrong forum, but then you said: "someone do it for me because I am not good enough" which really means: "Someone help me cheat and hand in your work as my own because I am too lazy to do it myself."
    If you can't do the work, maybe you should drop the course.

  • How to create a search with multiple criteria

    Hi
    I've a table that contain staff information. (name, dept. position, ext, email...etc)
    I've created a search page that allow the user to search any field. The result should appear in the same page
    first i've created the form:
    enter staff First_Name:
    enter Dept. :
    select position:
    submit button
    Then I've created the record set that select all the feilds from the table, now i need a help in the criteria, This is what I used:
    SELECT *
    FROM tblstaff
    WHERE First_Name LIKE %colname% AND Dept = coldept
    for both colname and coldept
    default = 1
    runtime value = $HTTP_POST_VARS['First_Name']    -    $HTTP_POST_VARS['Dept']
    It seems to work fine when i enter all the values in the search form. but what if i left some fields empty? In other word how can I add (All in the drop down menu and accept empty value for the text search)??
    can anyone help me?

    The simplest way to do this is to add a wildcard character to the end of coldept and make the field optional.
    SELECT *
    FROM tblstaff
    WHERE First_Name LIKE %colname% AND Dept LIKE coldept%
    If the department field is left empty, it will match all departments.
    By the way, you should not be using $HTTP_POST_VARS or $HTTP_GET_VARS. It's obsolete code, and will break on a modern installation of PHP. Use $_POST and $_GET instead.

  • How can I create a search plugin for multiple fields

    There are a number of sites that have search capabilities but they require entries into multiple fields.
    One such site is for instance the IBM Employee directory.
    (http://www.ibm.com/contact/employees/servlets/lookup)
    On this site - in order to get usable results - I have to enter both First name and Last name of the employee I'm looking for.
    I created a search plugin for the site, however I wasn't able to split the entered text into two parts and provide them as separate fields for the form.
    Is there a way to do this?
    Regards,
    Imre

    Hi,
    This is excellent. Not search-plugin though but but this is as good as a search-plugin. (Even better, as I haven't seen any solution with the plugins for the problem.)
    I didn't know that it was possible to use javascript as bookmark location.
    Thanks,
    Imre

  • Creating a search form based on a table.

    Hello,
    I'm currently trying to create a search form which performs a searchquery in values stored in a table in my database.
    The table is filled peoples names,lastnames ,telephonenumbers and departments.
    I can use the sample application to make a form based on the tableview but this returns a search textfield for every column in the table. I just want 1 searchfield/textfield to search on ALL columns at the same time and display the other fields as labels when returning the queryresults.
    I tried searching the forums for an explanation on how to build said form and I checked Metalink but I have yet to find one. Anyone out there willing to help me out?
    thanks in advance,
    Melvin K.

    Why not use an instr with your data in a bind variable in your where clause for the select?? Page 1 sets an item called P2_Parameter with your value string slightly modified ('12345','345632','645534534','3434344')
    Select a,b,c,d,e from some_table where INSTR(TO_CHAR(Lookup_column,'099999999'),:P2_Parameter)
    Maybe that will work? Its off the top of my head, but should get you what you want.. (But to agree with one of the other posters, it is a BAD Design..) I would try like an interactive report to allow them to enter in acct #'s or whatever these are and let them access the rows that way..
    Thank you,
    Tony Miller
    Webster, TX

  • How to access request information in a webservice implementation (10.1.3)

    Hi,
    I have created a java webservice from WSDL in JDeveloper 10.1.3.4.
    In the Impl class I would like to access HTTP request information.
    Can I do this in a direct way?
    If not, I have made a custom javax.xml.rpc.handler.Handler (by extending GenericHandler)
    In this class I can access the information that I need from the MessageContext that is available there.
    How can I get information from the Handler to my Impl?
    Groeten,
    HJH

    Found the answers:
    1. The service Impl should implement the javax.xml.rpc.server.ServiceLifecycle interface.
    In this way you get access to a javax.xml.rpc.server.ServletEndpointContext, which gives access to amongst others javax.xml.rpc.handler.MessageContext, which gives access to request information
    2. In the Handler it is possible to store information on the MessageContext, which can be accessed in the service Impl (see 1.).
    Groeten,
    HJH

  • Issues while creating a search project in BCC

    Hi There,
    Migrating the apps from 2007.3 to 10.0.3.Experiencing issues while creating a search project.
    Step #1.In Search Administration,navigating through Project > Global Settings & creating a Content Label named as "Catalog"
    Step #2.Navigating through Project > Create Production Project.Creating a project with Content Set as "CatalogSet"
    Step #3.Adding a Content with this info:
              Content Name: Catalog
              Type of Content : ATG Repository
              IndexingOutputConfig Path : /atg/commerce/search/ProductCatalogOutputConfig
              Host name : localhost
              RMI : 10160 ( RMI port of commerce instance)
         Creating a content & getting the message as New Content "CatalogTest" has been created.
         Issue #1: Content is not displaying in the Content eventhough content has been created successfully.
         Issue #2: Getting error for "Default Text Processing Options"
         You can refer these issues in the attached screenshot "Content-Page-with-error.jpg"
    Step #4.Creating a new TPO as "English" & trying to "Associate Search Project" & getting an error.Refer the attached error log "Associate-Search-Project.log"
    Due to these issues, "Build Index" button is disabled.Did anybody experienced these issues? Any help/comments are appreciated.
    Also attached the full server logs as commerce-server.log & publishing-server.log.
    Since no options for attachment in this forum, I posted the attachment in this link.Please refer it.
    https://groups.google.com/forum/?fromgroups#!topic/atg_tech/csEHi-x3Nyc
    Thanks in advance!
    Mani
    Edited by: user11263665 on Apr 25, 2012 10:38 PM

    We faced the same problem when migrating from 2007 to ATG 10.0.3. The reason this error comes up is because the Search depends on a local customization adapter /atg/searchadmin/adapter/customization/LocalCustomizationDataAdapter which adds English as a language in the text processing options.
    After the migration you need to import the initial ATG search related data into your Search schema. These instructions have been mentioned in the ATG install guide. Here is the extract from the docs.
    Note: The import scripts import data using startSQLRepository. Make sure your JTDataSource and
    FakeXADatasource are configured to permit this in home/localconfig. JTDataSource should automatically
    point to FakeXADataSource. FakeXADataSource should point to the administration database, and
    FaxeXADataSource_production should point to the production database. Note that some product
    installation processes, including Oracle ATG Web Knowledge Manager Self Service, need FakeXADataSource
    pointed at the production database, so you may need to change the FakeXADataSource between installations.
    once you are done with the configurations above, import only the searchadmindata xml into search schema as this imports the LocalCustomizationDataAdapter config information into your search schema. Once this is done, you should be good to index.
    <ATG10dir>\home\bin\startSQLRepository.bat|sh -m SearchAdmin.AdminUI
    -repository /atg/searchadmin/SearchAdminRepository -import
    <ATG10dir>\Search10.1\SearchAdmin\common\data\initial\searchadmindata.
    xml

  • How to create a ms-access database at runtime using java

    hi, this is ravi kiran,
    i have a situation where i need to create a new ms-access database with one table in it at runtime(when user clicks on some button).
    i have been searching many sites to know how to do this in java, but i didnot find any thing useful.
    plz tell me how to do this in java.
    plz help me, its urgent
    thanx in advance.

    Here's how I did it. Research does help, but sometimes looking at others code does too... You do have to have a dummy file that you made with access though. You can't just make a file file.mdb (it will be corrupt)
         public void createDatabase(String database) throws SQLException{
              try{
                   // This file needs to have been created with MS Access
                   File dbfile = new File(this.dataBaseDir + "dummy.mdb");
                   // This is the new database file being made
                   File newFile = new File(this.dataBaseDir + database + ".mdb");
                   // Copy all bytes from dummy file to new DB file.
                   FileInputStream instream = new FileInputStream(dbfile);
                   FileOutputStream ostream = new FileOutputStream(newFile);
                   int numBytes = instream.available();
                   byte inBytes[] = new byte[numBytes];
                   instream.read(inBytes, 0, numBytes);
                   ostream.write(inBytes, 0, numBytes);
              catch(FileNotFoundException e) { e.printStackTrace();}
              catch(IOException e) { e.printStackTrace();}
              if(DEBUG) System.out.println("creating the " + database + " database");
         }

  • How can I copy information from Excel and Paste it into a fillable field?

    I have a job site quote fillable packet that I go through when quoting a new job. I also have a fullly detailed excel sheet with all sorts of pricing and data. When I am done filling out the excel sheet, the numbers all compile into a new area that is broken down by phases of the project.
    On the last page of the fillable packet I have an estimate page, a spot where I can input the pricing for each phase of the project, each individual field (there are six) then totals into a fillable field on the bottom of the page.
    Currently I have to select the 6 consecutive cells in excel, open up my PDF, paste the information in a text box, then manually type in each line item.
    Is there a way for me to create a field that I could paste excel sheet data in? Is there a table or some way to paste each cell into one of six text fields?
    Any help would be appreciated!
    Thanks.

    All that should be necessary is to open the ebook, highlight what you wish to copy with the cursor (hold left click, and drag to the end of the section you wish), then either right click and choose copy OR command + c on your keyboard, then move the cursor to the desired section of your Word document, and either right click and choose paste OR command + V to paste the selection.

  • Can i create a ms-access database (very urgent)

    hi folks
    i really need help in creating a ms-access database, i searched the forums but i couldnot find any answers.
    i really appreciate if anyone can tell how to create a ms-access database

    hi folks
    i really need help in creating a ms-access database, i
    searched the forums but i couldnot find any answers.
    i really appreciate if anyone can tell how to create a
    ms-access databaseIn java, the actual mdb file? You can't.
    The best you can do is create an empty mdb file and copy each time you need to create a new one.

  • How to create Global password and user information list in Linux

    Hi ,
    OS is : OEL, We have some requirement, we need to create global password and Users information, that location sould be accessable to all users, can any one guide me how to do it in Linux.

    Could you give us a little more details? Are u looking for something like a centralized authentication system? or....what exactly?
    kido

  • A problem creating a Search Help against domain table dd07v...

    At present I use FM DDIF_DOMA_GET to retrieve the Domain Values for a given field/domain. I then populate a drop-down list box with these values and use in a conventional dynpro.
    However, what I would like to do is create a search help against the field characteristics which access table dd07v and retrieve the values for the domain. I'm stuck on the search help part because I don't know how to define the domain name within the search help so that the correct dd07v values are retrieved..
    Do you think this is possible, or should I give up now.?.
    Jas

    Problem resolved. You can hard code values, like the domain name within the search help.
    Although I have found that if you don't use a search help and you have domain values then your drop-down list values will be automatically populated from the domain values for the field. At least in my dynpro it does.
    Jas

  • Creating a search help with SAP UI5 and js?

    Hello com,
    I am trying to create a search help, collecting data from a table.
    Is there something similar to the typical ABAP search help in SAP UI 5?
    ABAP:
    PARAMETERS: lv_alias TYPE dsh_alias MATCHCODE OBJECT dashboard_alias_f4,
    I found this in the Demo Kit:
    // create a simple SearchField
    var oSearch = new sap.ui.commons.SearchField("providerSearch", {
            searchProvider: new sap.ui.core.search.OpenSearchProvider({
                    suggestType: "json",
                    suggestUrl: "/demokit/suggest?q={searchTerms}",
                    icon: jQuery.sap.getModulePath("sap.ui.core", '/') + "mimes/logo/txtonly_16x16.ico"
            search: function(oEvent){
                    alert("Search triggered: " + oEvent.getParameter("query"));
    //attach it to some element in the page
    oSearch.placeAt("sample4");
    But how can i connect it with the specifiy data table?
    Thanks,
    Domenik

    Hi,
    you need to create OData service which will retrieve (search) the required information and then need to create UI5 application to consume it.
    you can refer this blog How to Implement Value Help (F4) with SAP UI5 which covers both parts.
    if you are having SP08 version of SAP Gateway then creating search help is very simple. refer my blog Creating OData service based on Search Help
    Regards,
    Chandra

Maybe you are looking for

  • Error with payment in Appworld

    Device: Bold 9900 Carrier: CMNET (China mobile) Appworld doesn't let me buy things. Somehow credit cards registered in China are unacceptable, says "we cannot process your card" something, most blackberry users in China got such problem, error codes

  • Mitgliederbereiche in Adobe Muse erstellen

    Nabend zusammen, gibt es in Adobe Muse irgendwie die Möglichkeit (wie in CMS) einen Mitgliederbereich zu erstellen, der Passwortgeschützt ist? Meine Googlesuche blieb bisher erfolglos. Vielleicht hat ja jemand einen Tipp... Grüße und gute Nacht!

  • How to find 'Changes or LOGS on INFOCUBE'

    Dear Friends, How to find the changes on any INFOCUBE or ODS or MULTIPROVIDERS, like data loading, and any key figures, Chanractaeristics removed or added. Can we have any logs for the same. Pls help me. Thanks in Adavnace, DORA

  • Itunes shuts down immediatley

    So, I open my itunes and it opens for like 2 seconds and then it disappears. GONE ! I followed one of the other threads and copy and dragged some of my folders, it seems to work sometimes, but now when i click on Music Store or Purchased Music it imm

  • How do I Install old CS5 onto my new Maverick??

    How do I install my old CS5 onto my new Maverick?