How to create dropdown in BSP application

Hi Gurus,
I want to implement a dropdown listbox in my BSP application. Once the dropdown is clicked, it should show "TRUE" and "FALSE". Would appreciate if you could give me the code. This should be implemented in MVC.
Thanks,
David.

Hi David...
Try this code...in the Layout
                            <htmlb:dropdownListBox id        = "DDLB1"
                                                   width     = "100%"
                                                   disabled  = "FALSE"
                                                   onSelect  = "onInputProcessing"
                                                   selection = "<%= lw_sel_mvtyp %>" >
                                  <htmlb:listBoxItem key   = "S"
                                                     value = "Select the Option" />
                                  <htmlb:listBoxItem key   = "F"
                                                     value = "FALSE" />
                                  <htmlb:listBoxItem key   = "T"
                                                     value = "TRUE" />
                            </htmlb:dropdownListBox>
Hope this helps.
<b><i>Do reward each useful answer..!</i></b>
Thanks,
Tatvagna.
Message was edited by:
        Tatvagna Shah

Similar Messages

  • How to create a directory in application server

    Hi all,
    How to create a directory in application server through Progaram??
    eg:\tmp - is already existing
    I want to create \tmp\fi 
    Within \tmp\fi - i should able to store my file,,,
    Kindly help me urgent...

    Hello San,
    Either contact Basis guys at ur end for the same or u can do it dynamically via a piece of ABAP code, i hope it wll help u.
    call function 'GUI_CREATE_DIRECTORY'
         exporting
    dirname = '//<ip_address>/qfilesvr400/<host>/usr/sap/TST/SYS/Folder1'
         exceptions
              failed  = 1
              others  = 2.
    Reward If Helpful.
    Regards
    Sasidhar Reddy Matli.

  • How to create dropdown box, radio button,check box in wad

    Hi,
    How to create dropdown box, radio button,check box in wad.
    Thanks,
    cheta.

    Cheta,
    This are all standard Web Items in the WAD. Drag them onto your template and then make the changes you need to them in their Properties.
    Regards
    Gill

  • How to search string in BSP Application?

    Hi,
    Report ‘RS_ABAP_SOURCE_SCAN’ is to search string in ABAP. How to search string in BSP Application?
    In standard BSP Application is calling another BSP application and this hard coded in application.
    Regards,
    ...Naddy

    Hello Naddy,
    7 Years later and it seems there is still no possible way to search a string in a BSP application.
    Using Report BSP_EXPORT_CLASSES (Uncheck list of packages, provide BSP application name) I was able to download the complete BSP application to my desktop computer; after that I used TotalCommander (free edition) to scan the files for the string. (Mode set to UTF8)
    Ugly workaround but it works.
    Regards

  • How user will execute the BSP application I created...

    Hi,
    I have created a BSP application which has various pages with flow logic.
    Now to execute it I use execute icon and then I get moved to web browser.
    The application is working cool.
    But what I am wondering is user is not going to go to code and use excute button to execute the code.
    So how can he do the execution of page ?

    You have lots of options (and no generally users don't go to SE80 and launch your application from there).
    1.  Give out the URL to your application. Users can launch the application directly from the URL in the browser. The URL could be stored in the Browser Favorites or as a desktop icon.
    2.  If you use the Netweaver Portal - create a BSP iView for the application and attach it to the users' role.
    3.  A BSP URL can be added as a link in the SAP Easy Access Menu.  Under favorites, just choose Insert Other Object
    4.  You can create an ABAP Transaction code. In the program under this transaction code, you could host the BSP application in an HTML Control or open it externally in a browser via CL_GUI_FRONTEND_SERVICES=>EXECUTE.  It is fairly easy to create a generic ABAP program to launch BSP application and receive the application name via a Transaction Code Parameter. You can build a specfic URL to a BSP application in code using CL_BSP_RUNTIME=>CONSTRUCT_BSP_URL.

  • How to customize a standard bsp application

    hi folks,
    i want to know what is the SAP recommended way of customizing a standard SAP BSP application. is it directly modifying the BSP application or is it creating a z application using report bsp_customize & then modifying it or is it anything else?
    thanks in advance,
    Sagar.

    if you explained what you are trying to achieve you may get a better response, this blog shows an example of how the bap app was changed.
    /people/suchita.phulkar/blog/2010/09/07/inbound-and-outbound-plugs--what-are-they-and-how-to-make-use-of-them-for-navigations-and-data-transfer-between-views-of-different-components
    There are other blogs for changing the layout, adding tables, adding fields, etc....

  • How to find where a BSP application is called?

    Hello Experts,
    I am having a reqmnt. there is this standard BSP application and we have created a Zapplication for that. now i want replace teh call to standard application to my newly created application. hence i am trying to find out whre in main application this sub application is called. how can i go about it?
    are there any tricks or tips?
    where-used did not give no returns,
    Please suggest,
    thanks,
    Hitesh

    Please try this....
    DATA: lo_ex TYPE REF TO cx_root,
                 lo_appl_ctrl TYPE REF TO cl_hrrcf_application_ctrl       .
    CHECK exist_exception( ) EQ false.
      TRY.
        Call success message
          lo_appl_ctrl = get_application_ctrl( ).
          IF lo_appl_ctrl IS BOUND.
            CALL METHOD lo_appl_ctrl->set_controller
              EXPORTING
                p_application = 'zer_XXX'   "BSP Applicaiton Name
                p_controller  = 'message_v_apne.do "Controller Class name
                p_comp_id     = 'message'.
          endif.
        CATCH cx_root INTO lo_ex. "EC CATCH_ALL
          add_exception( lo_ex ).
      ENDTRY.
    Regards,
    Ramki.

  • How to create sap directories in application server by coding.

    Hi Experts,
    Please tell me how to create a sap directory via coding in application server.
    Please tell me step by step n send the code also.I have tried alot using FM  'SXPG_COMMAND_EXECUTE' but i dont know how to use it n wht are d parameters i need to pass.
    Also, i found that we need to create a external command in SM69 to pass in this FM...i dont know how to create this.
    Please help me out.

    Hi friend,
    1. Goto to Transaction SM69.
    2. Click on F5.
    3. Click on F6.
    4. Enter a name in Command Name box          ex: z_com
    5. Enter a os command in Operating system command box.     ex: mkdir (creating a directory)
    6. Give location in application server in Parameters for operating system command box   ex: /C dir
    7. Click Save.
    Goto SE 38 and develop a report using FM 'SXPG_COMMAND_EXECUTE' .
    Ex:
    REPORT  zawi_demodownload                       .
    data: g_out like BTCXPM occurs 0,
            z_com type SXPGCOLIST-NAME  value 'mkdir'.
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
      EXPORTING
        commandname                         = z_com
      TABLES
        exec_protocol                       = g_out
      EXCEPTIONS
       NO_PERMISSION                       = 1
       COMMAND_NOT_FOUND                   = 2
       PARAMETERS_TOO_LONG                 = 3
       SECURITY_RISK                       = 4
       WRONG_CHECK_CALL_INTERFACE          = 5
       PROGRAM_START_ERROR                 = 6
       PROGRAM_TERMINATION_ERROR           = 7
       X_ERROR                             = 8
       PARAMETER_EXPECTED                  = 9
       TOO_MANY_PARAMETERS                 = 10
       ILLEGAL_COMMAND                     = 11
       WRONG_ASYNCHRONOUS_PARAMETERS       = 12
       CANT_ENQ_TBTCO_ENTRY                = 13
       JOBCOUNT_GENERATION_ERROR           = 14
       OTHERS                              = 15.
    IF sy-subrc = 0.
    ENDIF.
    Thanks.......

  • How to create clustering on oracle application server on windows

    hi,
    i want to know how can i create clustering on oracle application server on windows machine.
    regards

    I think that you need to configure Web cache for this as a frontend, and two or more servers behind it.
    Try to read :
    Metalink DOC ID 312834.1
    http://www.oracle.com/technetwork/developer-tools/forms/documentation/advancedformsconf-128186.pdf
    Edited by: Marcos_Pawloski on 15/12/2010 00:02

  • How to create dropdown or checkbox in report painter?

    hi experts,
    I would like to ask on how to create a dropdown / checkbox in my report painter's selection
    screen.
    thanks,

    Hi,
    For check box and list box look at the below example,
    TYPE-POOLS: vrm.
    DATA: w_param TYPE vrm_id,
          it_values TYPE vrm_values,
          wa_value LIKE LINE OF it_values.
    PARAMETERS: p_rec_ty AS LISTBOX VISIBLE LENGTH 10,
                p_check AS CHECKBOX.
    AT SELECTION-SCREEN OUTPUT.
      w_param = 'P_REC_TY'.
      wa_value-key = '1'.
      wa_value-text = 'AAAAA'.
      APPEND wa_value TO it_values. "Add values like this for the list box
      wa_value-key = '2'.
      wa_value-text = 'BBBBB'.
      APPEND wa_value TO it_values.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = w_param
          values = it_values.
    START-OF-SELECTION.
      READ TABLE it_values INTO wa_value INDEX p_rec_ty. "Get the value for the particular key
      WRITE: wa_value-text , p_check.
    Regards,
    Maoj Kumar P
    Edited by: Manoj Kumar on Feb 6, 2009 10:54 AM

  • How to create URL in Oracle Application Server ?

    Hello,
    I would like to know how to create a URL in Oracle Application server (LINUX) so that our application can be invoked from each and every machine in our
    local hosting.I expect a quick reply.

    You question is not so clear. Basically, after installing infrastructure and middle-tier instances, you can simple run http://localhost:port/appication from any web browser.
    If not, what is your requirements?
    Jaffar

  • How to create form in oracle application express

    hi friends,
    i am a new person in oracle application express software.
    i just want to ask that can we use oracle application express as a front end for oracle 10g database???
    if yes then can any one tell me that how to create form in it?
    is there any connection string to connect that form with oracle 10g.
    Please do me reply soon thanks

    To this forum... please:
    Oracle Application Express (APEX)
    Greetings

  • How to create login page for application with jheadstart

    Is there a how to section for jheadstart?
    After reviewing the jheadstart developer's guide. I am still left with lot of questions:
    1. how to create a login page to allow access to an application using username/password from a database table
    2. how to change the title graphic (jheadstart demo) to (my application)
    3. how to execute a query by hitting enter instead of a mouse clicking a button
    Any suggestion to search for such practical questions in this forum or other blogs and such is appreciated.

    Mahin,
    You can set Authentication Schemes for your applications. If you are using Application Express Authentication, you can create additional users from here:
    1. From Application Express home, click Manage Application Express users.
    2. Click Create to create users. To create end user, select "no" to developer and admin.
    - Christina

  • How to create datasource for standalone application using JPA

    In the persistence.xml configuration file, we have data source got it from web server configuration file, and created by server like Jboss or tomcat.
    I just wonder how to create this same data source via Java stand-alone application?
    I have Java standalone application embedded Jetty server running with JPA module. Question is how to setup or create data source from my Java application just like web server; which called by persistence.xml?
    Thanks,

    Hello,
    Sharepoint deployment is completely different. I don't think you can deploy any solution as wizard in prod so you have to first identify what you want to deploy.
    If you just want to deploy only web application then backup/restore process is available in sharepoint. you can use STSADM or powershell to deploy your web app.
    http://technet.microsoft.com/en-us/library/ee748618%28v=office.14%29.aspx
    If there is any custom code or .NET code then create a WSP package and deploy it on prod. If you have multiple WSP's then create a batch file (as exe package) then run this package on prod.
    http://www.ironspeed.com/Designer/9.1.1/WebHelp/Part_VI/SharePoint_Solution_Package_WSP_Deployment.htm
    Let us know in case any doubt
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to create customized Disco Viewer applications

    I've searched the Orcale websites and handbooks for "how to" on this issue. At the moment I know the most basic ways to customize the Disco Viewer user interface:<br>
    editing ui_config.xml, pref.txt, using url-arguments etc.
    In addition, the documentation tells me that by using xsl/html editors it is possible to create a completely customized application. I have found the xsl-files like gui_components.xsl.
    Can someone tell me where to find more information about how to get started, use of tools etc.?

    Hi,
    i have H4 Help problem.
    how can i restrict an attributes of infoobject in H4 Help value.
    Please help me
    Madhu

Maybe you are looking for

  • Why will my macbook pro no longer open pdfs in my browsers?

    All of a sudden, I can no longer open pdfs in my browers (Safari and Firefox). I can dowload them to my computer and then open them, but I would like to be able to view them online. Any suggestions? Thanks.

  • How to Configure logical path and how to retrieve physical path for an IDOC

    Hi , I want to configure logical path for an IDOC, and then I need to retrieve Physical path from this logical path using a FM (eg. FILE_GET_NAME). How to configure the logical path for an idoc ? Regards , Harshit Rungta

  • DISK,VM,NETWORk,PROCESS COUNTER INFO

    Hi, 1. For VM I am using the cpu_vminfo_t to collect the VM counters? The value that I get for pages page in is 4605 (pages page in /lbolt_time). The values for pages paged out is 3881 again divided by lbolt time. Are these values correct? What is th

  • How to hide Subject Areas

    Hi, I am using BI analytics Apps RPD. By default they are showing Subject Areas and Dashboards. I have already Hide the Dashboards. But i am not able to hide Suject Areas. How can i hide Subject Areas. Help me on this. Thanks

  • Why does AU Lab keep overloading?

    I downloaded and installed AU Lab and Sunflower.  I dialed in the 31 band eq and have my computer speakers with sub sounding like a monster home stereo.  The thing that is confusing me is that every time I sit idle, walk away for a minute, or go into