How to set when press Tab in column matrix, then it will show a list

Hi
I want to my form exactly as Sales order, so when I press Tab in item No (on sales order) column it will show list of item
So I want to create my own form with matrix, and in the first column I want to set Tab event, so when I press Tab in that column it will shown list of something from database.
how to get an event Tab in column matrix ??
and what object in the list of item form (on sales order) ?? matrix or grid or something else ??
Thanks

Hi,
Linking a ChooseFromList to the matrix column should give you what you want. Samples of using the ChooseFromList can be found in the SDK HelpCenter and here in the SDN forum. For example:
choosefromlist in the fields of a matrix
Kind Regards,
Owen
P.S. Please note, you have posted this question in the general SAP Business One forum. Your question is more about development so I would recommend you post in the SAP Business One SDK forum rather than here.

Similar Messages

  • How to set default values for boolean columns

    I'm trying to deploy some content types and columns into a site with a feature. All it's ok, except that I'm trying to set a default value for boolean columns with no success.
    I've tried to set default value at column level:
    <Field ID="{EFE23A1D-494E-45cf-832E-45E41B17F0CF}" Name="ScopeSpanish" DisplayName="Se publican noticias en español"
    Type="Boolean" Hidden="FALSE" Group="Columnas ShaCon" >
    <Default>TRUE</Default>
    </Field>
    and at content type level:
    <FieldRef ID="{EFE23A1D-494E-45cf-832E-45E41B17F0CF}" Name="ScopeSpanish" DefaultValue="TRUE" Required="TRUE" />
    But in any case, when i create a new item with this content type, default value is applied.
    Can anyone tell how to set default values for boolean columns?
    Thanks in advance,
    Regards,
    Sergio

    In the field definition you can set
    <Default>1</Default>
    or
    <Default>0</Default>
    How to set the default value Null?

  • How to set 'Material Master' tab as default in standard transaction CG54?

    Hi All
    I am having a requirement to call the transaction CG54 from a custom program. On calling the transaction, I need to put some default values to the input fields and the default tab selected should be 'Material Master'. I am able to default input fields using BDC Transaction call. Can anybody guide me how to set Material Master tab as the default tab selected?
    Thanks in advance
    Rinzy Deena Mathews

    Hi All
    Solved the issue by myself.
    Initialization of tab in transaction CG54 is based on the values in the standard table TCGSGP - EHS: Search parameter (reproduction from SET/GET memory).
    Calling of the transaction CG54, with default values and parameters can be done with the help of following standard function module:
    *-- Types
      TYPES : BEGIN OF t_obj_tab.
              INCLUDE STRUCTURE rcgapplobj.
      TYPES : END OF t_obj_tab.
      TYPES : tt_obj_tab  TYPE t_obj_tab OCCURS 20.
      TYPES: BEGIN OF t_zplm02,
               sbgvid TYPE zppr_de_sbgvid,
             END OF t_zplm02.
    *-- Internal Tables
      DATA: li_obj_tab    TYPE tt_obj_tab WITH HEADER LINE,
            li_report     LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_variant    LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_subid_tab  TYPE espre_subid_rep_tab_type WITH HEADER LINE,
            li_report_m   LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_variant_m  LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_subid_tab_m TYPE espre_subid_rep_tab_type WITH HEADER LINE,
            li_zplm02     TYPE STANDARD TABLE OF t_zplm02.
    *-- Structures
      DATA: ls_addinf     TYPE rcgaddinf,
            ls_rcgradmsel TYPE rcgradmsel,
            lw_zplm02     TYPE t_zplm02.
    *-- Variables
      DATA: lv_trtype     TYPE rcgdialctr-trtype VALUE 'D',
            lv_actype     TYPE rcgdialctr-actype VALUE 'D',
            lv_viewappl   TYPE tcgl3-repappl     VALUE 'MATMASTER',
            lv_sel_valdat TYPE rcgradmsel-valdat,
            lv_sel_langu  TYPE rcgradmsel-langu,
            lv_ucomm      TYPE syucomm,
            lw_gen        TYPE char10,
            lv_flag       TYPE esp1_boolean,
            lv_werks      TYPE werks_d,
            lv_bsbgvid    TYPE zppr_de_bsbgvid.
    *-- Parameters
      ls_addinf-aennr      = sy-datum.
      ls_addinf-valdat     = sy-datum.
      ls_rcgradmsel-sbgvid = iw_gen.
      ls_rcgradmsel-matnr  = p_matnr.
      ls_rcgradmsel-namcat = 'MATNR'.
      ls_rcgradmsel-reprefflg = abap_true.
      ls_rcgradmsel-numcat = 'NUM'.
    *-- Application Object
      li_obj_tab-repappl = 'MATMASTER'.
      li_obj_tab-objectkey = p_matnr.
      APPEND li_obj_tab.
    *-- Evaluate selection screen and fill keytab
      CALL FUNCTION 'C1G0_KEYTAB_FILL_FROM_RADMSEL'
        EXPORTING
          i_radmsel             = ls_rcgradmsel
          i_valdat              = ls_addinf-valdat
          i_actype              = lv_actype
          i_flg_popup_no_param  = abap_true
        IMPORTING
          e_flg_cancel          = lv_flag
        TABLES
          i_applobj_tab         = li_obj_tab
          e_keytab_report       = li_report
          e_keytab_variant      = li_variant
          e_subid_refreport_tab = li_subid_tab
        EXCEPTIONS
          OTHERS                = 1.
    *-- Initilize Report Header Buffer
        CALL FUNCTION 'C1AP_ESTDH_BUF_INIT'
          EXPORTING
            i_aennr  = ls_addinf-aennr
            i_valdat = ls_addinf-valdat.
    *-- Parameters
        ls_addinf-aennr      = sy-datum.
        ls_addinf-valdat     = sy-datum.
        ls_rcgradmsel-sbgvid = iw_gen.
        ls_rcgradmsel-matnr  = p_matnr.
        ls_rcgradmsel-namcat = 'MATNR'.
        ls_rcgradmsel-reprefflg = abap_true.
        ls_rcgradmsel-numcat = 'NUM'.
    *-- Application Object
        li_obj_tab-repappl = 'MATMASTER'.
        li_obj_tab-objectkey = p_matnr.
        APPEND li_obj_tab.
    *-- Initial report block tree of information
        CALL FUNCTION 'C1G2_ENTRY_INQUIERY'
          EXPORTING
            i_trtype              = lv_trtype
            i_actype              = lv_actype
            i_addinf              = ls_addinf
            i_viewappl            = lv_viewappl
            i_sel_valdat          = lv_sel_valdat
            i_sel_langu           = lv_sel_langu
            i_rcgradmsel          = ls_rcgradmsel
          IMPORTING
            e_okcode              = lv_ucomm
          TABLES
            i_keytab_report       = li_report
            i_keytab_variant      = li_variant
            i_subid_refreport_tab = li_subid_tab
            i_applobj_tab         = li_obj_tab.
    With Regards
    Rinzy Deena Mathews.

  • Version 33, problems when moving tab to new window, then if you open a new tab in that window it doesn't switch to it unless you use Ctrl-Tab?

    Version 33, problems when moving tab to new window, then if you open a new tab in that window it doesn't switch to it unless you use Ctrl-Tab.

    Type '''about:preferences'''<enter> in the address bar.
    Select '''General.''' Look for '''Tabs.'''
    Turn on '''When I open a link in a new tab, switch to it immediately'''

  • I have problem with my iPhone 4s, the problem is i can't turn on wifi, though i have wifi address in my iPhone setting when i go to the general then about option, i tryed many options like turning of iPhone in airplan mode, reset options, but still the s

    I have problem with my iPhone 4s, the problem is i can't turn on wifi, though i have wifi address in my iPhone setting when i go to the general then about option, i tryed many options like turning of iPhone in airplan mode, reset options, but still the same, its gray button of wifi, please help me.

    Hello Pllumb,
    It sounds like you are unable to turn on Wi-Fi because the option is grayed out in Settings. Use these steps from the following article named:
    iOS: Wi-Fi settings grayed out or dim
    http://support.apple.com/kb/ts1559
    Restart your iOS device.
    Make sure that airplane mode is off by tapping Settings > Airplane Mode.
    Reset the network settings by tapping Settings > General > Reset > Reset Network Settings.
    This will reset all network settings, including Bluetooth pairing records, Wi-Fi passwords, VPN, and APN settings.
    Make sure that your device is using the latest software. To do so, connect your device to your computer and check for updates in iTunes.
    If you still can't turn Wi-Fi on, please contact Apple for support and service options. If you can turn Wi-Fi on but are experiencing other issues with Wi-Fi, please see these steps.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • How to Set Up Content Blocker to Block All Sites Except Those That Are Listed?

    How to Set Up Content Blocker to Block All Sites Except Those That Are Listed by Firefox?

    One other item I thought I would pass along...
    I noticed that the NVG589 gets terribly confused if a device behind it isn't setup properly first to be a static address.
    Here's the behavior: Say you have a router of your own and you intend to give it one of the addresses from your static IP block. You decide to set it up first and don't make the changes initially in the 589 to force it to be a static IP of some kind-- whether in the private or the public block. You configure the router in this case with DHCP. Your router starts handing out addresses in its own IP range however your configured it.
    But look what the 589 thinks is happening: it sees the DHCP client name associated with the same MAC address changing constantly. It makes entries for each different client name in its device list, sometimes aging out, sometimes not.
    Now trying to save the private IP will result in a "missing data" error. Worse, trying to change things to a public static IP will result in similar messages about the IP being in the wrong range.
    The same issue can also occur if the device was setup statically in the private range and you try to change it to a public static IP.
    The only way to fix this:
    1) If you intend to advertise the router on an IP from your static block, disconnect all devices from the router and the RG, except for the router you want to setup. Wait for the RG to see them as "offline" in the device list. Alternatively, if you intend to setup another device or server on a Static IP, make sure it is the only device connected to the RG.
    2) Switch the IP allocation to "Public"
    3) Renew the lease on the device
    4) Go into the IP Allocation page and fix the IP to one of the public static IPs from your pool
    5) Reconnect all devices.
    Generally, the best practice is to setup each static IP device before connecting any others to the RG.

  • Does not start, but when I shut down the computer then the browser shows up right before sytem shuts down.

    I am having problems with Firefox. When I click on the shortcut, or the .exe file nothing happens. I check task manager to see if it is running and it does not show Firefox is running.
    But when I shut down the computer then the browser shows up right before the computer shuts down. I have tried starting the browser in safe mode and the same thing happens. I cannot give any troubleshooting info because the browser is not visible for me to click on help or any other button.

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox and any leftover program files and then reinstall Firefox. Please follow these steps one by one:
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu) and confirm all upcoming messages.
    #Now, uninstall Firefox by following the steps mentioned in the [[Uninstall Firefox from your computer#w_uninstall-firefox|Uninstall Firefox]] article.
    '''IMPORTANT:''' On Windows, the uninstaller has the option to remove your personal data and settings. Make sure that you do '''not''' check this option; otherwise all of your bookmarks, passwords, extensions, user customizations and other Firefox [[Profiles|user profile data]] will be removed from your computer.
    After uninstalling Firefox on Windows, delete the "Mozilla Firefox" program folder, located by default in one of these locations:
    * '''(On 32-bit Windows)''' ''C:\Program Files\Mozilla Firefox''
    * '''(On 64-bit Windows)''' ''C:\Program Files (x86)\Mozilla Firefox''
    #Go to the Windows Start menu and click on "Computer".
    #In the Explorer window that opens, double click Local Disk (C:) to open the C:\ drive.
    #Find the "Program Files (x86)" folder or "Program Files" folder.
    #* On 32-bit Windows, double-click the '''Program Files''' folder to open it.
    #* On 64-bit Windows, you will see a "Program Files (x86)" folder AND a "Program Files" folder. Open the '''Program Files (x86)''' folder.
    #Look for a '''Mozilla Firefox''' folder. If you find one, right-click it and select ''Delete'' and confirm that you want to move the folder to the Recycle Bin.
    Now, go ahead and reinstall Firefox:
    #Double-click the downloaded installation file and go through the steps of the installation wizard.
    #Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • Change selected row when press tab

    Hi
    I use JDev11.1 with ADF, i have grid in my jsf page, this grid are updatable, i need when i press tab and go to next record set selected row that cursor on it, how can i do that?
    Thanks

    Hi,
    one option is to add a clientListener to the input text fields, intercept the tab key and then use a serverListener component to reference a managed bean method that
    - sets the row currency to the next row
    - PPRs the table so it shows the selection change
    Frank

  • LOV is not populating when pressing tab in OAF with common value

    Hi,
    How to make the LOV gets populated after entering any value and press the tab button.
    For ex: If i enter item number "100012" and press tab then the LOV is displaying the values and item description is auto-populated.
    In my case there are two values with '100012'..once i enter this value and press tab it says Loading, but no options comes up. “Loading” just goes away. But when i clicked on lov icon am seeing the values...
    I checked disable validation is not set to true, it has been set to false.
    Pls give me any suggestions.
    Regards
    --Harry                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Naren,
    Sorry for late response...am sick actually....
    yes, In my case there are two item numbers '100012', with different vales(in lov region teble).
    Regards
    --Harry                                                                                                                                                                                                                                                                                                                                                                   

  • How to set different renderers to same column

    I am trying to set different renderer to same column.
    table.getColumn("columnname").setCellRenderer(
                   FirstCellRenderer);
    table.getColumn("columnname").setCellRenderer(SecondCellRenderer);
    I want both to work at the same time.
    It is taking the second renderer but not first.
    Can anyone please help me, how can i achive it.

    In my situation i need first renderer for all the columns in the table.
    Second renderer only for one column.(which shows thw column value as tooltip)
    Can you please tell me how can i do it.
    when i tried to consolidate in one renderer , it is showing me the same value to all the columns.

  • How to set the new tab URL?

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    How do I set the new tab URL? When I click on a new tab, this does not open my home page URL.
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Logitech Device Detection
    *Office Plugin for Netscape Navigator
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Provides additional functionality on Facebook. See our web site for details.
    *Shockwave Flash 10.0 r45
    *iTunes Detector Plug-in
    *4.0.50524.0
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    *DRM Netscape Network Object
    *Npdsplay dll
    *DRM Store Netscape Plugin

    Middle-click the Home button instead.
    Or just install https://addons.mozilla.org/en-US/firefox/addon/777/

  • Populate LOV when pressing tab in OAF

    Hi,
    I have created LOV for a field which is under a Region.
    The LOV works when clicking on the Torch and then click GO.
    How to make the LOV gets populated after entering a text and press the tab button.
    For ex: If i enter +"Sup"+ and press tab then the LOV must list all the values starting with the name Sup.
    Please advice,
    Thanks in Advance.
    Jegan

    Hi Jegan,
    If i am clearly getting your requirement then this is the default property of LOV. when you enter some value and TAB out it will execute your LOV Query.
    Regards,
    Gyan

  • How to set a New Tab as the start page in Firefox and lock in my choice of web sites

    You may set the New Tab page Firefox shows when opening a new tab as its start page, and you can lock in the web sites you want displayed there.
    I set my browser to open a New Tab as its start page and have locked in six destinations from which to choose on my start page.
    First I open Firefox and open a new tab. Then I delete any open tabs other than this New Tab. Optionally, I can also set a second tab to open to a specific web site
    Next I go to Tools and Options (or Edit and Preferences in Linux) and select the General tab on the far left. Click on
    [Use Current Pages].
    Each time I open Firefox it will open showing me the New Tab.
    I can select from pages that I have already visited the six pages I want to have appearing on my New Tab every time. Supposing there are no pages locked in yet, and I don't want the site in the top left. I hit the X in its thumbnail's top right corner, it disappears and every other site thumbnail moves up and there is a new site appearing in the sixth slot. Note that if I have visited one page frequently, it may appear more than once, or be replaced by itself. If that happens, just keep deleting until the page you want shows up.
    If I find a site that I want to save, then there is a thumbtack in the top left corner of the thumbnail. It is black, but if I click it it turns blue, and the thumbnail is a keeper.
    This web site is in the second row, second over, but I want it to be up on the top row. Just drag and drop and the two sites exchange places. Make sure it has a blue thumbtack. The lock-down thumbtacks and delete X symbols appear in the top left and top right, respectively while the mouse is hovering over them.
    It is possible to delete a saved site, and it is possible to undo the thumbtack. Simply click the X to delete or click the blue thumbtack to unlock the site and turn the thumbtack black.
    You may choose to tack down a few sites and let the remainder float in and out, driven by your browsing history.
    Through my use of this approach, I have instant access to my club's web site, two Webmail sites, and some other often-visited places on the Web, all in one start page.
    About the only thing I really don't need there is a Google search box, for if I enter my search terms in the address bar I get the same result as if I had specifically typed in the search box.
    Some add-ons, often potentially unwanted programs (PUPs), will replace the Firefox about:newtab (address of the New Tab) with eBay, Facebook, Twitter icons among others, and a different search engine. These icons may have a nicer appearance than the default Firefox New Tab, but you may also be looking at extra, unnecessary work for the computer, especially if behind the pretty icons there is a hidden agenda.
    Personally, I would stay clear of these add-ons, and perform some scanning with an up-to-date antivirus and antimalware software.

    If this is not a pinned (App) tab then the home page should open in that tab.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • AcroPDF.dll crash systematicaly when pressing TAB in any PDF

    I am using the Acrobat ActiveX (AcoPDF.dll) for viewing PDF documents.
    When a PDF is displayed, pressing TAB key several times makes the document to scroll to the end of document.
    If I press TAB again, then the application crash.
    This happens with all PDF.
    My application is written in C++, but I did a try with the sample (AcrobatActiveXVB) provided in the SDK (9.1), witthout any modification.
    The result is the same.
    Does any body has experienced the same ? Is there a way to prevent AcroPDF to crash.
    Considering that it happens systematicly, the Reader 9 activex can not be used to display PDF.
    By the way, I did a try with the Reader 8 activeX and it worked fine without crash.
    Thanks for your help.

    It is a problem of Adobe Reader 9 and Adobe Acrobat 9. Read this:
    http://forums.adobe.com/thread/530591?tstart=0

  • Help on how to set value on LinkButton type column

    Hello,
    Can I programmatically set a value on Item No. in matrix on Sales Quotation which is of type SAPbouiCOM.LinkedButton?
    This code helped me set values to an edittext type column
    Dim et As SAPbouiCOM.EditText = oMatrix.Columns.Item(matrixColumnID).Cells.Item(rowNumber).Specific
    et.Value = value
    Dim et As SAPbouiCOM.LinkedButton = oMatrix.Columns.Item(matrixColumnID).Cells.Item(rowNumber).Specific
    How can set value for the Item No.?
    Thanks and Regards,
    Sheetal

    Just treat the Item No. column as an EditText for purposes of setting its value.
        Dim sboEdit As SAPbouiCOM.EditText
        Set sboEdit = sboMatrix.Columns("1").Cells(lngRow).Specific
        sboEdit.Value = "XXXXXX"
    John.

Maybe you are looking for

  • Install eyetv hybrid software on new Mac mini

    I just bought the new Mac mini ( without DVD drive) and was wondering if there is any way to get the eyetv hybrid software on it?  I previously had the old Mac mini and was able to insert the DVD for the install.  I just didn't think about that befor

  • Mac logs out without warning, and displays no error message.

    Hi. I hope someone can figure this out. I'm using Mac OS X Version 10.5.6, and it is relatively new (Bought sometime last fall, O8). Within the last month, I've noticed several occasions where I will log in, and before I do anything, I'm immediately

  • Iphoto wont save imported photos from iphone

    Iphoto will import iphone photos, but as soon as iphoto is closed the photos are not saved to iphoto. Therefore I cannot download my photos off my iphone to iphoto. How do I get iphoto to keep the pics I import from my iphone?

  • How to email photos on IPad ??

    Don't know how to send photos on email from my I Pad. HELP!!!

  • Extension of Infoobject length

    Hi Experts,                       We are taking email field from R/3 table which is 240 char long.We want to use that as an infoobject in BI side.But in BI characterstic infoobject does not allow charcters more than 60. Can anyone suggest how can we