Display New, Save, Query buttons on the screen/applet in siebel application

Hi,
I have created one application screen using siebel tools. I want to display 'New', Save', 'Query' etc. buttons to be displayed on that screen in siebel application. How can i do that?
Thanks & regards,
Bhushan

Hi,
You should have used the wizard to create your applet. That way you can pick the controls you want on your applet.
You can also add them manually.
You should be reading Siebel bookshelf and finding the answers for yourself. Don’t be lazy!
R
Robert Ponder
Lead Architect and Director
Ponder Pro Serve
cell: 770.490.2767
fax: 770.412.8259
email: [email protected]
web: www.ponderproserve.com

Similar Messages

  • Urgent help needed: how to display a list of records on the screen

    Hello,
    This is very urgent. Can anyone help me. I have posted this query of mine before also but still no reply came. My whole application is dependent on this problem. Actually I am developing an application for mobile phone using MIDP. I have a record store which contains personal details for users. I am able to add records to the record store. Now I want that these records can be edited. For this I want to display a list of firstname field on the screen (and not console) so that i can select a user to edit its details. I have written the code to read the records and individual fields and display it on the console but i want to display that list on screen. I tried list and array but it s giving some error.
    I am giving the code to read the records below. Please tell me how can I display it in a list on the screen.
    public void readStream(){
    try
    byte[] recData=new byte[50];
    String varname;
    ByteArrayInputStream strmBytes = new ByteArrayInputStream(recData);
    DataInputStream strmData=new DataInputStream(strmBytes);
    if (rsperdt.getNumRecords() > 0){
    ComparatorString comp=new ComparatorString();
    int i=1;
    RecordEnumeration re=rsperdt.enumerateRecords(null, comp, false);
    while(re.hasNextElement()){
    rsperdt.getRecord(re.nextRecordId(), recData,0);
    System.out.println("Record #" + i );
    varname = strmData.readUTF();
    System.out.println("Name #"+varname);
    System.out.println("---------------------------");
    i=i+1;
    strmBytes.reset();
    comp.compareStringClose();
    re.destroy();
    strmBytes.close();
    catch(Exception e){
    System.err.println("read Records class:read");
    }

    I could not understand ur point "post the code in tags". I am pasting the code below. Please help as my whole application is stuck due to this problem and I have a deadline of 7th oct.
    This midlet is getting called from some other midlet.
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.microedition.rms.*;
    import java.io.*;
    import java.util.*;
    public class frmread extends Form implements CommandListener
    static final String rec_store="db_per";
    private RecordStore rsperdt=null;
    private Vector vecname;
    private ChoiceGroup chname;
    private boolean flagSortByPriority = false, flagShowPriority = true;
    private Form fmmain;
    private Command cmdBack;
    private teledoc midlet;
    public frmread(String title, teledoc midlet)
    super(title);
    this.midlet = midlet;
    openRecStore();
    this.setCommandListener(this);
         chname = new ChoiceGroup("new", Choice.EXCLUSIVE);
         vecname = new Vector();
         cmdBack = new Command("Back", Command.BACK, 1);
    fmmain = new Form("Record Search");
         addCommand(cmdBack);
    setCommandListener(this);
    readStream();
         rebuildTodoList();
         closeRecStore();
    * Process events for this form only
    protected void rebuildTodoList()
    for(int j=chname.size(); j>0; j--)
         chname.delete(j-1);
         int priority;
         todoitem item;
         String text;
         StringBuffer sb;
         for (int j=0; j<vecname.size(); j++)
              item=(todoitem) vecname.elementAt(j);
              priority = item.getPriority();
              text = item.getText();
              sb = new StringBuffer((flagShowPriority ? (Integer.toString(priority) + "-"): ""));
              sb.append(text);
              chname.append(sb.toString(), null);
    public void commandAction(Command c, Displayable s)
    if (c == cmdBack){
    midlet.displayteledoc();
    public void readStream(){
    try
    byte[] recData=new byte[100];
    String varname;
    int varname1=0;
         ByteArrayInputStream strmBytes = new ByteArrayInputStream(recData);
         DataInputStream strmData=new DataInputStream(strmBytes);
         if (rsperdt.getNumRecords() > 0){
    ComparatorString comp=new ComparatorString();
    int i=1;
              int id = 1;
              vecname.removeAllElements();
              RecordEnumeration re=rsperdt.enumerateRecords(null, comp, false);
    while(re.hasNextElement()){
         rsperdt.getRecord(re.nextRecordId(), recData,0);
    System.out.println("Record #" + i );
    varname = strmData.readUTF();
                   varname1 = strmData.readInt();
                   id = re.nextRecordId();
                   System.out.println("Name #"+varname);
                   todoitem item = new todoitem(varname1, varname, id);
                   vecname.addElement(item);
                   System.out.println("---------------------------");
                   i=i+1;
    strmBytes.reset();
              comp.compareStringClose();
              re.destroy();
    strmBytes.close();
    catch(Exception e){
    System.err.println("read Records class:read");
    public void openRecStore(){
    try{
    rsperdt=RecordStore.openRecordStore("db_per",true);
    catch(RecordStoreException e){
    db(e.toString());
    public void closeRecStore(){
    try{
    rsperdt.closeRecordStore();
    catch(Exception e){
    db(e.toString());
    public void db(String str){
    System.err.println("Msg:" + str);
    class ComparatorString implements RecordComparator{
    private byte[] recData = new byte[20];
    private ByteArrayInputStream strmBytes = null;
    private DataInputStream strmDataType = null;
    public void compareStringClose(){
    try{
    if(strmBytes != null)
         strmBytes.close();
    if(strmDataType != null)
         strmDataType.close();
         catch (Exception e)
    public int compare(byte[] rec1, byte[] rec2)
         String str1, str2;
         try {
              int maxsize = Math.max(rec1.length, rec2.length);
              if (maxsize > recData.length)
              recData = new byte[maxsize];
                   strmBytes = new ByteArrayInputStream(rec1);
                   strmDataType = new DataInputStream(strmBytes);
                   str1=strmDataType.readUTF();
                   strmBytes = new ByteArrayInputStream(rec2);
                   strmDataType = new DataInputStream(strmBytes);
                   str2=strmDataType.readUTF();
                   int result=str1.compareTo(str2);
                   if (result == 0)
                   return RecordComparator.EQUIVALENT;
                   else if (result < 0)
                   return RecordComparator.PRECEDES;
                   else
                   return RecordComparator.FOLLOWS;
                   catch (Exception e)
                   return RecordComparator.EQUIVALENT;

  • ABAP Programming to display more than 255 characters in the screen

    Hi
       I want to display more than 255 characters in the screen after executing a report but i cant able to do that.
    Please help me to find out the solution.
    Thanks
      Mrutyunjaya Trpathy

    Hai tripathy,
    when the output of a report contains columns extending more than 255 characters in length.  In such cases, this set of ALV functions can help choose selected columns and arrange the different columns from a report output and also save different variants for report display. This is a very efficient tool for dynamically sorting and arranging the columns from a report output. The report output can contain upto 90 columns in the display with the wide array of display options.
    The commonly used ALV functions used for this purpose are;
    1.REUSE_ALV_VARIANT_DEFAULT_GET
    2.REUSE_ALV_VARIANT_F4
    3.REUSE_ALV_VARIANT_EXISTENCE
    4.REUSE_ALV_EVENTS_GET
    5.REUSE_ALV_COMMENTARY_WRITE
    6.REUSE_ALV_FIELDCATALOG_MERGE
    7.REUSE_ALV_LIST_DISPLAY
    8.REUSE_ALV_GRID_DISPLAY
    9.REUSE_ALV_POPUP_TO_SELECT
      hope u can try in this way.
    REGARDS,
    PRABA.

  • How to print the Module pool screen using a push button in the screen

    Hi Every one,
                         i have developed a module program , which have a selection screen and it display the output in a structured way.
    output includes boxes, texts etc...
    my problem is :---
    How to print the Module pool screen using a push button in the screen.

    When the "Print" button is pressed:
    leave to list-processing and return to screen 100.  "(current screen)
    Call a transaction that runs your print program.
    Rob

  • I tried to soft reset my ipod touch with the top button and the screen button.  it turned off and went to the blue screen with the apple.  now it won't do anything-it has stayed on that scren for 4 hours now.  does anyone know how i can fix this?

    i tried to soft reset my ipod touch with the top button and the screen button.  it turned off and then went to the blue screen with the apple like it should.  however, it now just stays on that screen.  it has a sort of clock looking thing at the bottom of the apple that does not move either.  it has stayed on this screen for over 4 hours.  i also can not hard reset it in itunes.  i am not really goood at this sort of thing.  does anyone have this problem or a possible solution?  thanks

    See Here for
    Frozen or unresponsive iPod touch
    The Basic Troubleshooting Steps are:
    Restart..  Reset..  Restore...
    Try this First... You will Not Lose Any Data...
    Turn the iPod Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... (But can take Longer...)
    Release the Buttons...
    Turn the iPod On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • How do i save what is on the screen as a pdf or other picture file?

    Question
    how do i save what is on the screen as a pdf or other picture file?

    Hi jvanek, see in the next link how you can do that, and save a [http://en.wikipedia.org/wiki/Screenshot screenshot ] as a PNG file :
    [https://support.mozilla.org/el/kb/how-do-i-create-screenshot-my-problem How do I create a screenshot ?]
    thank you

  • Reader XI has the print button off the screen when on 800x600 resolution

    Reader XI has the print button off the screen when on 800x600 resolution as well, how to fix without changing resolution?  A user needs the resolution set to that for her eyes.
    I see that this was an issue in Reader X and update 10.1.3 resolved it.  What was the fix?

    The scrollbar appears and works but unfortunately the dialog size is still too big therefore the print button ends up being hidden by the windows taskbar. Could you please make sure that the print dialog size is calculated against the work area (desktop size minus the taskbar, there's a win32 API to get that) rather than the whole desktop to fix the issue?
    That would also fix another issue: when the taskbar is sized higher than usual whatever the resolution you have it could still end up covering the print buttons but if you calculate against the work area rather than the desktop area that issue would be fixed as well.
    Please don't leave it unfixed because even if the requirements say 1024x768 if you have higher DPI settings or have a taskbar with a non-default size the print button could easily become unreacheable.

  • HT201263 None of these answers help my problem.  My ipad will not leave the Apple logo.  I hold both buttons and the screen goes black, then the apple logo immediately pops back up.  I can't do anything because the apple logo just keeps popping back on.

    I haven't been able to find any answers that solve my problem.  My Ipad will not leave the Apple logo.  I hold both buttons and the screen goes black and then the Apple logo immediately pops back up.  I can't get the red slider screen at all.  No matter how many times I hold down both buttons the screen goes black and then the Apple logo pops right back on.

    Before you do anything else, try charging via a wall outlet for a while, since its off. Then try turning it back on.
    When you put the device into recovery mode it allows you to restore the device when no other options work. You do risk losing everything currently strored on the ipad itself. Hopefully you've performed regular backups either via itunes, icloud or both. Evern if you have synced content to either of those, you may not lose everything. All previous purchases have been saved in the itunes and app stores, so you can dowload them again.
    while the ipad is off, press and hold the home button and plug the usb cord into the ipad. You should see a message pop up on the itunes window on your compoter screen that state it has discoverd an ipad in recovery mode.
    You should now be able to restore

  • Can there HOME BUTTON(the circular button under the screen)or any other button on the front of the phone flash an LED light on notifications

    pls reply and if it is 'no' then pls advice the apple company to do this in the next iPhone.

    Can the HOME BUTTON(the circular button under the screen) or any other button on the front of the phone flash an LED light on notifications

  • Hi i had my ipad mini on the windowsill and the touch screen is not working or the button on the screen and the screen is coming away is there anything i can do

    hi i had my ipad mini on the windowsill and the touch screen is not working or the button on the screen and the screen is coming away is there anything i can do will apple take it back

    pvonk wrote:
    Apple does not replace or take back devices that are damaged.
    Depends on the damage. The battery came loose in my iPhone. When Apple opened the phone to redo the glue they discovered the speakers were also loose. Apple replaced the phone.
    If the glue was properly bonded or had some other flaw Apple will replace the device if the device is still under warranty.

  • Is there a way to activate facetime without pusing a button/touching the screen? Can you voice activate?

    Is there a way to activate facetime without pusing a button/touching the screen? Can you voice activate? I just bought the newest i-pad.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • How to grey button on the screen

    Hi Experts,
    I created a simple button on the screen, now i want it to be grey which means user couldn't click on it for triggering any event, i checked the SCREEN attributes, and only could see 'INVISIBLE','ACTIVE' are related for this. but i tried to set any one of them to 0, and it failed.
    So please help to tell me how to make the button as grey?
    Thanks,
    Lynn Liu

    You need
    screen-input = 0.
    Regards
    Marcin

  • LG Optimus Zone. is there anyway to take the carama button off the screen and use one of the physical buttons on the phone to take pictures??

    Duplicate discussion - please see:
    LG Optimus Zone. is there anyway to take the carama button off the screen and use one of the physical buttons on the pho…
    Message was edited by: Admin Moderator

        Hello jr1984
    Awesome question. Unfortunately there isn't a way to reassign the buttons. There may be a 3rd party application for the camera that would have a  different option.
    JoeL_VZW
    Follow us on Twitter @VZWSupport

  • HT201412 My iPhone will not respond even once it is hooked to iTunes nor will it respond when I hit the power (reset) button. The screen mentions that the system is checking for "borrowed blocks" (small writing in the top right corner).

    My iPhone will not respond even once it is hooked to iTunes nor will it respond when I hit the power (reset) button. The screen mentions that the system is checking for "borrowed blocks" (small writing in the top right corner).

    Are you using the charger and cable that came with the phone?
    Are you using an unauthorized third party charger?

  • TS3694 Why does my ipod keeps powering off, and when I turned if on, I have to press down the power button and the screen button at the same time ???

    Why does my ipod keeps powering off, when I have to turn it on ... I have to press on the power button and the screen button at the same time ??? over and over again. I just got this in December 2011 as a gift.

    I am having similar 'freezing' problems with many programs (Mail, Safari, iTunes, etc.). I have done a clean install of Lion instead of an upgrade when it came out. Perhaps something went wrong with my install? I'm thinking about wiping and reinstalling.

Maybe you are looking for

  • How do I use auto-form recognition to create PDF forms in Acrobat XI?

    I used to use Acrobat 9 to create PDF forms that would allow me to fill in text into the fields that were created.  Acrobat XI seems to have changed the way this function is performed.  Previously, I could run an auto form recognition wizard, do some

  • Transferring all music from ipod to new computer with Windows Vista

    I need help!!! I recently bought a new computer that has windows vista, and I do not have access to my old computer. I have tried following the online help but I cannot figure out how to transfer all of my music files from my nano to this new compute

  • Does a youview+ box DTR T-2100 work with video sen...

    Hello, I've read that some youview boxes won't work well with video senders because the analogue (scart - connected to the video sender) and digital (HDMI - connected to the main telly) cannot send signals simultaneously. Can anyone confirm if this i

  • Explain Plan results analysis

    I have EXPLAIN PLAN results for some SELECT queries. What is the difference between INDEX UNIQUE SCAN and INDEX RANGE SCAN?

  • Target Cost (Planned Cost)

    Hi All.. Preliminary Costing of Product Cost Collector is created. After backflush activity, the PCC display is not showing TARGET COSTS in Costs detail screen. wat could be the cause for this..?? how to rectify it..?? As Target Costs are all ZERO (