ChooseFromList form title

Hi All,
          I have my choosefromlist from a user-defined table registered as a user-defined object. My problem is I would like to change the form title of that form instead of using this format: <List of (Name of the object in User-Defined Object Registration)>. Thanks.
Regards,
Rodmann

Du,
It is just the requirement of my functional to have a more descriptive title of my choose from list. Thanks anyway..
Regards,
Rodmann
Edited by: Rodmann Navarro on Nov 24, 2009 4:06 AM

Similar Messages

  • Item ID for Minimize, Maximize button at system form title bar

    Hi,
    Can anyone help me out finding Item ID for Minimize, Maximize and close buttons at system form title bar (Left side Title of form and right side three buttons). I need ID for these items, if anyone knows please reply. will appreciate help on same.
    Thanks,
    Jay

    I'm tryin to get over with Item master screen strech machenism. I've Added matrix at pane 6 and position is not fixed when ever form is rezised or base product font size is changed. I've alredy tried providing values to top left width height through oexisting item vaues, I'm not using any integer value. Let me know if i can freez it's position ....... Sample code below
    oExistingItem = oForm.Items.Item("174")
    oItem = oForm.Items.Add("mtx_MFGALS", SAPbouiCOM.BoFormItemTypes.it_MATRIX)
    oItem.Top = oExistingItem.Top + oExistingItem.Height + oExistingItem.Height
    oItem.Width = oExistingItem.Width + oExistingItem.Width
    oItem.Height = oExistingItem.Width
    oItem.Left = oExistingItem.Left
    oItem.FromPane = "6"
    oItem.ToPane = "6"
    oMatrix = oItem.Specific
    oMatrix.Columns.Add("Col0", SAPbouiCOM.BoFormItemTypes.it_EDIT)
    oMatrix.Columns.Item("Col0").TitleObject.Caption = "Line #"
    oMatrix.Columns.Add("Col1", SAPbouiCOM.BoFormItemTypes.it_EDIT)
    oMatrix.Columns.Item("Col1").TitleObject.Caption = "Name"
    oMatrix.AutoResizeColumns()
    Regards,
    Jay

  • Change Form Title.

    Dear Expert.,
    Pls tell me the method to change form title i have code as below :
    If (pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD) Or (pVal.EventType = SAPbouiCOM.BoEventTypes.et_ALL_EVENTS) Then
    If pVal.FormTypeEx = "149" Then
    oForm.Title = "สำนักงาน"
    end if
    end if
    but it have problem when i choose from list or I do anything on this form... it will change to the standard form title..
    Do u have the method to change it forever.?
    Thanks for ur help.
    sivhour.

    do it in the eventtype et_FORM_ACTIVATE.
    Regards,
    Wilson

  • Find Multiple Form Titles

    I’m working on a forms 6i to 10g upgrade project. Before we begin we want to audit our forms (about 200 in total). What I want to do is somehow find the form title of each form within my application.
    Is there an easy way to do this or can i create a batch file to do this for me?

    I played around with the "IFF2XML90.bat" batch file provided with Forms 10g and found that it will convert a 6i Form to a Forms 10g .xml file. This being the case, you can use this batch file to convert all of your Forms 6i forms to xml files. Then you can search the xml file for the <FormModule> tag to find the Title property of your form. The xml file will look something like the following:
    <Module version="90040100">
       <FormModule Name="REC_GROUP" Title="MODULE2" ConsoleWindow="MAIN" MenuModule="DEFAULT&SMARTBAR" DirtyInfo="true">As you can see from this example the name of my 6i form is "REC_GROUP" and the title of the Form Module is "MODULE2". You should be able to write a Windows batch file or a UNIX script to look for these XML tags to find the Title of each of your forms.
    Hope this helps.
    Craig...

  • Adobe form title won't print in BOLD font

    Hi Gurus,
    When creating an adobe form, I used the standard PM form interface and created my own form design.  I have a problem with the form title which should appear in the header of my page as it currently does.  The problem is that I can't change the font size or format (I can change it but the format isn't reflected in the output).  It is a bound read only text field using the field TITLE_PAGE-TITLE imported by the standard interface.
    Is it not possible to format bound fields?  I have some text fields which are static and the bold formatting works fine.
    Regards,
    Simon

    I see no one has answered, it may have been a stupid question.  I've realised that it is obviously possible and very simple but I've had problems with activation.  For some reason every time I activate and test the form with real data it reverts to a former version, this is why my text wasn't appearing in bold.  The only way I have been able to get around this problem is by downloading the form, deleting it in SAP and then uploading it again, a bit of a pain but it works.
    If anyone has any ideas on what the prob could be I would appreciate any answers,.
    Regards,
    Simon

  • FORM.title not defined?

    Hi,
    In one page I have defined FORM.title. I test the length of
    the value in FORM.titel in a second page. If the condition is true
    it tells me the FORM field does not exist.. Infact, if I CFDUMP
    FORM it says struct is empty, but if I provide a value of 5 or more
    characters it list all of the form fields.
    Why would this be?
    In create_news.cfm..
    <cfform name="form1" method="post"
    action="create_news2.cfm?newsid=#newsid#">
    <input name="title" type="text" size="50"
    maxlength="50">
    In create_news2.cfm...
    <cfif #Len(Trim(FORM.title))# LT 5><cflocation
    URLcreate_news2.cfm?error=1"></cfif>
    thanks

    In create_news.cfm..
    <cfform name="form1" method="post"
    action="create_news2.cfm?newsid=#newsid#">
    <input name="title" type="text" size="50"
    maxlength="50">
    In create_news2.cfm...
    <cfif #Len(Trim(FORM.title))# LT 5><cflocation
    URL="create_news2.cfm?error=1"></cfif>
    The error is to be expected. I second Charlie. When
    Len(Trim(FORM.title)) is 4 or less, the browser is instantly
    redirected from the page
    create_news2.cfm to itself. However, the second visit is by
    redirection, not by form-posting. So the variable
    FORM.title will cause an error because it is undefined.
    In edit_main.cfm...
    <cfform name="form1" method="post"
    action="edit_main2.cfm">
    <input name="p1title" type="text" size="35"
    maxlength="35">
    <input name="p1image" type="text" size="50"
    maxlength="50">
    ..etc..
    In edit_main2.cfm...
    <!--- Titles too short? --->
    <cfif #len(trim(FORM.p1title))# LT 3>
    <cflocation URL="edit_main.cfm?error=1">
    </cfif>
    This one works because you redirect to a page that does not
    use the variable
    FORM.p1title. It is usually a neat solution to do it on one
    page, thus
    <cfif isDefined("FORM.title") and Len(Trim(FORM.title))
    GTE 5>
    <!--- code to do the business using form-scoped variables
    --->
    <cfelse>
    <cfform name="form1" method="post"
    action="#cgi.script_name#?newsid=#newsid#">
    <input name="title" type="text" size="50"
    maxlength="50">
    </cfform>
    </cfif>

  • Change a system form title

    Hi all,
    I want to modify the BP master data form title.
    I have developed an add-on where i used a BP master data form. when i click on my submenu the BP master data form is activate but i won't the title "Business Partners master data". I want "Fiche consignataire" when BP master data form is activate.
    Help me please.

    Hi,
    If I understand you question wll you should try this:
    Select Case pVal.FormTypeEx
        Case "134"
            Select Case pVal.EventType
                Case SAPbouiCOM.BoEventTypes.et_FORM_LOAD
                    Dim form As SAPbouiCOM.Form = SBO_Application.Forms.Item(pVal.FormUID)
                    form.Title = "my title"
            End Select
    End Select
    Hope it helps,
    D.

  • Display forms title as a part of IE window title

    Hi,
    Does anyone know how to display forms title as a part of IE window title in Webforms 10g?
    For example: if I am on the Order Entry form, the IE title would be Order Entry - Microsoft Internet Explorer.
    Thanks all,
    L

    Thanks Terrible :-)
    Yes, I did change the pageTitle in the formsweb.cfg to have the Application name. And you are right that is the one time only...
    I would like to somehow passing a forms title as a variable that is appended to the Application title at runtime.
    Gerd, you mention about the java applet which can interact back to the IE-engine. Have you done one before? I am new to this concept.
    Thanks all for your help :-)
    L

  • How to display  dates dynamically in tabular form title

    Hi,
    I have a requirement of displaying dates of the week as title of each column heading in the tabular form dynamically (or) Is there a way to display the dates for each week as the titles for each column dynamically?Could anyone suggest me on this requirement?
    Thanks & Regards,
    Balaji.P.K.

    Hi Balaji,
    if you want to be very generic than create a report based on a "PL/SQL Function returning SQL Query" and set the Report Column Headers to "PL/SQL" and specifiy a function returning the Header Titles.
    brgds,
    Peter
    get Syntax Highlighting for the Application Builder: http://apex.oracle.com/pls/apex/f?p=APEX_DEVELOPER_ADDON:ABOUT:0:::::
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • 'Forms' title on alert windows, can it be changed?

    For Alerts, the default title in the upper left corner of the window displays 'Forms'. Is there any way to modify this to display something other than 'Forms'? I would like to change it to something such as 'Logoff alert', or 'delete customer alert' etc...
    Thanks
    Todd Janovicz

    ... and look at the other things you can do with set_alert_property.
    It means you can reuse the same alert for different purposes rather than keep creating new ones.

  • Change System Form Title

    Hi All,
    Is it possible to change the name/description of system forms? For eg. I want to change the name of "Sales Order" form to "Service Order" or probably something else..can this be done?
    If it is possible, can anyone please help me with a sample code? Also, if the changes are possible then will the name change also reflect in the main menu?
    Thanks in advance.

    HI,
    Write this code inside Item Event
       If pVal.FormTypeEx = "139" Then
                If pVal.EventType <> SAPbouiCOM.BoEventTypes.et_FORM_UNLOAD Then
                    Dim oForm As SAPbouiCOM.Form
                    Try
    oForm =SBO_Application.Forms.Item(FORMUID)
    oForm.Title="Service Order"
            Catch ex As Exception
                    End Try
                End If
            End If
    Hope this will help you
    Regards,
    BBN

  • Web form title is full of names

    Hi
    I just created a simple web form and as usual since I must use the title field now it's full of titles from imported user list to my CRM.
    Why does it do this? This is absolutly lame.

    Because you had a mall formed input and you put all your first names into the title coloumn instead of the first name coloumn and imported that in.
    You will need to go into that and clear them all out and look to do a correct import as well to fix the CRM.

  • How to hide forms title

    Hi,
    I want to hide the title of the form. We are really tight in our form and we don't need this title. I tried this but without success...
    SET_WINDOW_PROPERTY('CG$WINDOWS_1', TITLE,'');
    the only way I manage to "hide" the title is by moving the window. But when I do this, there is a vertical scrollbar even if I specify "Show Vertical Scroll Bar" to NO
    SET_WINDOW_PROPERTY('CG$WINDOW_1',POSITION,0,-20);
    Thanks a lot!!!

    Luis Cabral : your syntax was good :)
    But it's seem that they have their own title bar. I know that this solution would work if we where in VB. In VB a MDI child, when maximized, share it's title bar with the application title bar!
    Inolau: Thanks for the link...
    previously the first command line was to maximize the forms_mid_window
    then I maximize the main window after I was moving the window. This solution gave me a scroll bar...
    ummm if I use in order (as told in the link)
    set_window_property('window1',position,0,-18);
    set_window_property(FORMS_MDI_WINDOW,window_state,maximize);
    set_window_property('window1',window_state,maximize);
    when I use this, the forms_mid_window is not maximized. And when I maximized it perfect!!!!
    I change the order to
    SET_WINDOW_PROPERTY('CG$WINDOW_1',WINDOW_STATE,MAXIMIZE);
    SET_WINDOW_PROPERTY('CG$WINDOW_1',POSITION,0,-18);
    set_window_property(forms_mdi_window,window_state,maximize);
    and.... WOOOOOOWWWW :) you guys ROCK!!!!

  • Choosefromlist with Form in FIND_MODE

    Hi all,
    - I've a user table @TBL with two fields: Code and Name
    - I've created in my .NET application a SAP FORM with a button a two EditText: on bind with Code, the other with Name
    - I've put my form in FIND_MODE
    When I click on button "Find" I have a ChooseFromList empty, or better I see Choosefromlist form, I see number of records but I don't seen record fields: Code and Name.
    It's a bug?
    My SAP Version is 2005 A SP 01 PL 10.
    Thanks

    Hi Giovanni
    You have created a UDO for this Form??
    Whe you created the UDO you can specific the find fields.

  • Have an image as title and form underneath?

    Hi, I'm trying to put an image on the top of my Midlet. Currently it has a form as a 'init' with a few items in it. The problem is I want an image as title intstead of String title. Can i remove the title in form and kind of move it down so that i can put an image on top of my form. if so, can you guide me how please (classes methods). Or is there any other possibilities like form in canvas maybe?
    thanks
    indy

    You can't change the Form title by an Image. One thing you can do is put an ImageItem the beginning of your Form, looking like a title. This way you can control the Image alignment and other things.
    Raphael

Maybe you are looking for

  • Not seeing Apple TV 1st gen in iTunes

    I am connected on my guest network because I cannot remember the passord for my main network.  Don't know if that could be a problem, but when I went to try to figure out the original password I can't even figure out where to go on my iMac to try and

  • Oracle 9i in windows XP Pro

    Hi, I was installing oracle 9i in windows XP Pro and it hung in half of the installation and none of the products were fully installed , so i can uninstaller to unistall to product. Now I am not able to remove the folder and it says some of the appli

  • My game keeps crashing

    it worked fine before... but now my game crashes. heres the event log Process: Bejeweled 2 [610] Path: /Applications/Bejeweled 2 Deluxe/Bejeweled 2 Deluxe.app/Contents/Resources/.Game/Bejeweled 2 Deluxe.app/Contents/MacOS/Bejeweled 2 Identifier: com.

  • Updates are downloaded in 32 bit form and 64 bit form,I have a 64 bit windows 7 operating system?

    why does my windows 7 operating system 64 bit download half 32 bit important updates  and half 64 bit important updates. This isnt good for smooth operation of my computer and it wastes time and space while I am trying to get work done online and the

  • Can i know the copy controls functionality for on standard order to billing

    hi, sap gurus, can i know the copy controls to be set in for functioning standard order to billing document. plz say the config settings and t.code for that ie order to billing regards, balaji.t 09990019711.