Want to  hide middleware selection in connection creation

Hi all,
I want hide or remove the middle ware drivers in Middleware selection during connection creation  for business objects client version. I dont want my users to use some middlewares in the connection creation.
Thanks in advance.

Hi,
You can disable the middleware driver by going onto the BO server:
Go to "Add/Remove Programs" > select "Modify" > Go to "Database Access" > here you can diable all the drivers you don't need
Regards
Remi

Similar Messages

  • Select option , want to hide the selection field

    hi all,
    I have a select option
    s_flight  low to high
    as per my requirement i just want to show the low and high fields.
    I dont want "s_flight" to be displayed on the screen.
    Can someone please help me with this

    Goto Selection Text and in Text window infront of that selection text make text field blank..

  • How to hide some select-option of Logical Database in report?

    How to hide select-option of  Logical Database in report?eg . In Logical Database 'PNP' , my code is 'GET  PERNR' , excute the report , select-screen is displayed . I want to hide some select-options , such as PNPPERNR-LOW .
    Edited by: rongrong wang  on Mar 26, 2008 9:31 AM

    U need to write code in initialization as
    initialization.
    loop at screen.
    if screen-name = 'PNPPERNR-LOW'.
    screen-active = '0'.
    modify screen.
    endif.
    if screen-name = 'PNPPERNR-HIGH'.
    screen-active = '0'.
    modify screen.
    endif.
    endloop.

  • After updating my Apple TV I keep getting a message box asking if you want to hide Netflix.  How do I make this message go away?  I understand about going into the menu and select Hide or Show icon.

    After doing the recent Apple TV update I keep getting a message asking if I want to hide the last application I was using on Apple TV.   I understand how to go into the menu and select Hide or Show.   I selected Show and the next time I use Apple TV I get this annoying message.   Any ideas how to make this message go away?

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • I want to know the ways of connecting 9iAS to Database and clients to database through 9iAS as middleware.

    My question was about the necessity of implementing OID or any other version of LDAP.
    We have a new 9iAS and 8.1.7 database implementation and i have a doubt about their networking architecture.
    I want to know the ways of connecting 9iAS to Database and clients to database through 9iAS as middleware. We are debating if OID is compulsory or if we can go ahead with this implementation with out OID.
    Can you please help me and provide me couple of implementation designs(i.e connecting clients to database through 9iAS). It would be great if any one can provide me the implementation's with and with out OID.
    -Thanks

    Hi ,
    For all delta and full DTP loads you can get  information in table  RSICCONT .Check table  RSMONICDP  this will give you detail information .Here you will get all the information with timestamp and request id .
    Hope these tables will serve your purpose .
    Regards,
    Jaya

  • How do I delete a song from my Itunes library? I follow the instructions and right click on the song and click delete from the drop down menu but, then it asks me if I am sure I want to hide this song in Iclouds? I dont even know what Iclouds is?!?! HELP!

    How do I delete a song from my Itunes music library? I follow the instructions and right click on the song and then select "delete" as specified and my info claims at that point it will ask if I want to send this song to my trash bin, but, instead, when I try to delete the song, I get another window asking "are you sure you want to hide this song in iCloud? I don't even know what iCloud is?!?!? I don't want iCloud and just want to get rid of old songs!!! HELP ME!!!

    Short answer:
    Click Hide Song(s), it is what you wanted to do...
    Long answer:
    iTunes in the Cloud is a feature of your iTunes store account that allows you to redownload or stream your past purchases. When you delete a purchased track that is downloaded to your computer (like the first one shown here) you are asked if you also want to hide the song from iCloud. This would remove it from the computer and also stop it showing up with the iCloud symbol as the other tracks from that album (which are not downloaded) do.
    If a track shows with the cloud symbol you can play (stream) it by double-clicking the title, or click the cloud symbol to download a local copy to your library. If you try to delete one of these tracks you get a slightly different message confirming that you want to hide the track. Clicking hide will remove the listing from the library and any other device that shows your past purchases.
    Should you want to retrieve any item hidden in this way at a later date use Store > View My Account > iTunes in the Cloud > Hidden Purchases > Manage.
    To hide all your previous purchases that are not downloaded to your computer use Edit > Preferences > Store and untick Show iTunes in the Cloud purchases.
    tt2

  • How to hide the selection screen of a Logical datebase?

    Dear All,
    I used the logical database PNP in one of my program by maintain the attribute 'Logical Database' of this program.
    Now I want to hide all the selection screen of this PNP during the ABAP runtime environment.
    Who can tell me how I can realize it?
    Thank you!
    Regards,
    Brian Liu

    Hi,
    If you call the logical database using a function module, the selection
    screen is not displayed.
    To call a logical database from another program, use the function module LDB_PROCESS.
    <b>Example code:</b>
    TABLES SPFLI.
    SELECT-OPTIONS S_CARR FOR SPFLI-CARRID.
    TYPE-POOLS: RSDS, RSFS.
    DATA: CALLBACK TYPE TABLE OF LDBCB,
    CALLBACK_WA LIKE LINE OF CALLBACK.
    DATA: SELTAB TYPE TABLE OF RSPARAMS,
    SELTAB_WA LIKE LINE OF SELTAB.
    DATA: TEXPR TYPE RSDS_TEXPR,
    FSEL TYPE RSFS_FIELDS.
    CALLBACK_WA-LDBNODE = 'SPFLI'.
    CALLBACK_WA-GET = 'X'.
    CALLBACK_WA-GET_LATE = 'X'.
    CALLBACK_WA-CB_PROG = SY-REPID.
    CALLBACK_WA-CB_FORM = 'CALLBACK_SPFLI'.
    APPEND CALLBACK_WA TO CALLBACK.
    CLEAR CALLBACK_WA.
    CALLBACK_WA-LDBNODE = 'SFLIGHT'.
    CALLBACK_WA-GET = 'X'.
    CALLBACK_WA-CB_PROG = SY-REPID.
    CALLBACK_WA-CB_FORM = 'CALLBACK_SFLIGHT'.
    APPEND CALLBACK_WA TO CALLBACK.
    SELTAB_WA-KIND = 'S'.
    SELTAB_WA-SELNAME = 'CARRID'.
    LOOP AT S_CARR.
    MOVE-CORRESPONDING S_CARR TO SELTAB_WA.
    APPEND SELTAB_WA TO SELTAB.
    ENDLOOP.
    CALL FUNCTION 'LDB_PROCESS'
    EXPORTING
    LDBNAME = 'F1S'
    VARIANT = ' '
    EXPRESSIONS = TEXPR
    FIELD_SELECTION = FSEL
    TABLES
    CALLBACK = CALLBACK
    SELECTIONS = SELTAB
    EXCEPTIONS
    LDB_NOT_REENTRANT = 1
    LDB_INCORRECT = 2
    LDB_ALREADY_RUNNING = 3
    LDB_ERROR = 4
    LDB_SELECTIONS_ERROR = 5
    LDB_SELECTIONS_NOT_ACCEPTED = 6
    VARIANT_NOT_EXISTENT = 7
    VARIANT_OBSOLETE = 8
    VARIANT_ERROR = 9
    FREE_SELECTIONS_ERROR = 10
    CALLBACK_NO_EVENT = 11
    CALLBACK_NODE_DUPLICATE = 12
    OTHERS = 13.
    IF SY-SUBRC <> 0.
    WRITE: 'Exception with SY-SUBRC', SY-SUBRC.
    ENDIF.
    FORM CALLBACK_SPFLI USING NAME TYPE LDBN-LDBNODE
    WA TYPE SPFLI
    EVT TYPE C
    CHECK TYPE C.
    CASE EVT.
    WHEN 'G'.
    WRITE: / WA-CARRID, WA-CONNID, WA-CITYFROM, WA-CITYTO.
    ULINE.
    WHEN 'L'.
    ULINE.
    ENDCASE.
    ENDFORM.
    FORM CALLBACK_SFLIGHT USING NAME TYPE LDBN-LDBNODE
    WA TYPE SFLIGHT
    EVT TYPE C
    CHECK TYPE C.
    WRITE: / WA-FLDATE, WA-SEATSOCC, WA-SEATSMAX.
    ENDFORM.
    Regards,
    Sumit.
    Message was edited by: sumit kumar
    Message was edited by: sumit kumar

  • How to hide the selection-screen Begin of Block

    Hi,
    I copied the standard program into my new 'Z' prog.
    But i dont need a selection-screen begin of block and end of block i.e. I have to hide the entire block from the output screen.
    I can delete the selction-screen block , but the field which is present inside the block is used in several places of program
    and i dont know the purpose of the fields.
    Can any one help me to hide the block.
    Thanks in advanced
    Regards,
    Darshana

    Hi
    Use keyword NO-DISPLAY with the select options or parameter which u want to hide in the selection screen.
    No need to comment statements Begin of block or end of block.
    SELECTION-SCREEN BEGIN OF BLOCK ss_01 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_month FOR isellist-month no-display .
    PARAMETERS: p_email LIKE somlreci1-receiver no-display.
    SELECTION-SCREEN END OF BLOCK ss_01.
    It will work this way.
    Thanks

  • Hide multiple selection of parameter related to Standard Report Category.

    Hi,
    I have created the report program with the logical database PNPCE , report category HRF_PNOC having PNPPERNR in the selection screen With Multiple selection. I want to hide the multiple selection button  for this PNPPERNR in the selection screen.
    For example: we hide the multiple selection button in report program with the no-extension. The syntax for no-extension is shown below 
    select-options : p_kunnr for kna1-kunnr no-extension.
    Can any one help me out of this?
    Thank You,
    Swetha.C
    Edited by: Swetha Chevuru on Oct 28, 2011 12:22 PM

    Hi,
    Please see the below blog for detailed description of the problem that i am facing now
    http://swethacblog.blogspot.com/2011/10/how-to-hide-multiple-selection-button.html#!/2011/10/how-to-hide-multiple-selection-button.html
    Thank You,
    Swetha.C

  • A way to temporarily hide the selection box around an object while nudging it.

    InDesign
    I would like to see a simple "Hide All" type command, similar to the "Hide Extras" feature in Photoshop - this would leave the page in a blank/ "preview" like view, but with selected objects still selected and therefore able to be moved around without seeing the Blue Selection Box.
    PROBLEM:
    I am looking for a way to temporarily hide the selection box around an object while nudging it.
    I want to visually nudge items around to find the ideal placement and I find the selection box distracting how it follows the object around as it is being nudged.
    (For anyone familiar with Photoshop, —I am looking for something that works exactly like "Hide" cmd+H  (VIEW > Extras) does in PS - where the selection goes away but the object is still adjustable.

    Thanks, but I don't see how that's helpful really.
    SHIFT+W goes into full on presentation mode already.
    Also, —this still doesn't solve the problem of being able to move an element around without a selection box getting in the way.
    I don't believe that a solution exists, I'm just checking with the community if one does.

  • Command h doesn't hide my selection..it hides my photoshop program

    When I hit command H on my MAC it used to allow me to hide a selection. Now when I do it, the entire program is hidden instead.

    kbsc = keyboard shortcut (that's what I get for copy/pasting other's advice )
    Anyway, you want cmd H to hide your Selection Edges or "marching ants"
    Let's explain by screenshot
    Click here and you will get this white box. Inside the white box press "cmd h" on your keyboard.
    The new shortcut will show up with a warning. Click the "accept" button, click OK.
    Let me know how it turns out.

  • How to do range selection for connected clips?

    How to do range selection for connected clips? Whenever I press I or O, it only selects the primary storyline. I want select a portion of the connected clip and trim it.

    If you're using the 10.1.x, and if you set the playhead, so that the circle is over the connected clilp (you don't even need a range selection OR have the clip selected) you can type Option - [ to trim from the beginning of the clip to the playhead; you can type Option - ] to trim from the playhead to the end; or if you do set a Range selection, you can type Option - \ (backslash) to trim both ends off the clip preserving the range selection.
    If that circle isn't over the connected clip you require (perhaps you have a stack of clips) then you will need to click on the clip you need to have selected for the trim operation.

  • Hide the Selection-Screen fields

    Hello, how can i hide a Logic Database's Selection-Screen?

    In the event AT SELECTION SCREEN OUTPUT you can do a LOOP AT SCREEN and turn off the ACTIVE indicator.  Use the debugger to determine what the name of the field is that you want to hide.
    So something like
    LOOP AT SCREEN.
      IF SCREEN-FIELDNAME = 'the name'.
        SCREEN-ACTIVE = '0'.
        MODIFY SCREEN.
    ENDLOOP.

  • Hide multiple selection in REUSE_ALV_GRID_DISPLAY

    HI,
    I want to hide/dis able Multi selection option in ALV grid...................We are using FM REUSE_ALV_GRID_DISPLAY..........................
    Any Idea or suggestion how to do this
    FYI :
    1. I looked at the forum but could not find anything close to what I needed...................
    2. I know it is possible with object based development of ALV grid but in this case we want to use only 'REUSE_ALV_GRID_DISPLAY'
    Best Regards
    Kiran

    HI
      You can turn off multiple selection in one-click to be used as single-select component.
    for any detailed information u can even see details demo link below
    http://www.visualbis.com/products/multi-select-dynamic-grid/
    thank u

  • Local Connection Creation Problem

    I want to create a local connection, but it failed. It didn't appear any related dialog box after I click "Create Local Connections", it just remain same. Then, I try to use another way to create local connection by choosing "Local/Bequeath" for Connection Type via "New/Select Database Connection". However, it shown me "Status : Failure-Test failed: Incompatible version of libocijdbc[Jdbc:112030, Jdbc-OCI:112020" when I test the connection.
    Now I really confuse and don't know how to solve the problem.
    Software: Oracle SQL Developer (3.2.09)
    Build MAIN: 09.30
    Java(TM) Platform: 1.6.0_35
    I help anyone can solve my problem, thanks.
    Tan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    In Connections right click mouse and select - Create Local Connections, you can get every users in the folder : Auto-gereated local Connections:
    / as sysdba
    ANONMOUS
    SYSTEM
    system_xe
    SYSTEM and system_xe password is the one you put it in while setup.
    / as sysdba is the one with error when you try to open it:
    Incompatible version of libocijdbc[Jdbc:112030, Jdbc-OCI:112020
    This is version 3.2.20.9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Outputting for multiple screens / projectors

    Hello everyone I am preparing a video installation that I would like to project through 3 projectors onto three walls side by side. I would like to slide video clips from one wall onto the next or even stretch one video footage onto all 3 walls. (wit

  • Oracle reports 3.0

    Is there any way for sequencing of reports in Oracle reports 3.0 (developer 2000 2.1 rel). The specific problem is like this. I have a report-A to be printed for 150 branches. Then report -B and report-C and report-D. What I want is when report-A is

  • N97 Mini vs E72

    N97 Mini vs E72 Not sure if i should post this question just here or post it both here and in the E series sub forum, i'll post it in both just in case.... N97 Mini Pros Touch Screen Bigger Screen Fold out keypad 30fps Video (VGA) quality 5mp Carl Zi

  • Switching Languages & Spellchecking

    Hi I recently switched to pages from Word. I work in documents in English and Spanish primarily. How can I easily switch between the two languages so that spellchecking recognizes the correct one?

  • Capture Audio which can be heard from speakers..

    Hi.. I am currently facing a problem in capturing audio which can be heard from the speakers.. i.e. i want to capture audio generated by other applications. Till now I have been successful in capturing audio from microphone using JMF and Java Sound t