XMII 12.1

Dear all,
1. When the xMII 12.1 version available?
2. What are the prerequisites we need to use for the xMII 12.1?
Thanks
John R

John,
MII 12.1 Ramp-up Inquiry
MII v12.1 will run on NW CE 7.1 (http://service.sap.com/pam)
Regards,
Jeremy

Similar Messages

  • Program to execute BLT in xMII from SAP R/3

    Hi all,
    This an extension of [Calling Services and Queries in SAP xMII 11.5 from ABAP|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9f101377-0c01-0010-269f-c3ee905d583b] by Bimal Mehta.
    I have made the code ready to use since it takes lot of time to have the declaration and checking and all.
    Can anyone tell me how to post this as a Blog or in the Wiki ?
    REPORT  ZCALL_XMII_TRANS                              .
    parameters: p_trans(50) type c ,               " xMII Transaction
                p_rfcdes    type rfcdest DEFAULT 'SAP_XMII'," RFC Destination Created
                p_user(10)  type c ,               " xMII User Name
                p_pass(10)  type c .               " xMII Password
    * Data Declaration for RFC Connection
    data : i_rfc_destination type rfcdest.
    data : client type ref to IF_HTTP_CLIENT .
    * Data Declaration for Path, UserName, Password
    data : path type string.
    data:  if_query_field type TIHTTPNVP with header line,
           it_query_field type TIHTTPNVP .
    data:  i_user_name(5),
    * Transaction to be called in SAP xMII
           i_transaction type string,
    * Password of xMII
           i_user_password type string,
           if_str  type string,
           if_query type string.
    * This method checks for Existing RFC Connection of Name
    * i_rfc_destination and passes the parameters to CLIENT
    * Assign Parameters to Variables
    i_transaction     = p_trans.
    i_rfc_destination = p_rfcdes.
    i_user_name       = p_user.
    i_user_password   = p_pass.
    CALL METHOD
      CL_HTTP_CLIENT=>CREATE_BY_DESTINATION
      EXPORTING
        DESTINATION              = i_rfc_destination
      IMPORTING
        CLIENT                   = client
      EXCEPTIONS
        ARGUMENT_NOT_FOUND       = 1
        DESTINATION_NOT_FOUND    = 2
        DESTINATION_NO_AUTHORITY = 3
        PLUGIN_NOT_ACTIVE        = 4
        INTERNAL_ERROR           = 5
        others                   = 6.
    IF SY-SUBRC <> 0.
      write: / 'Destination Not Found'.
    ENDIF.
    * set request method
    CALL METHOD client->request->set_header_field
      EXPORTING
        name  = '~request_method'
        value = 'GET'.
    *build request path to XAcute Transaction
    path = '/Runner'.
    clear if_query_field.
    if_query_field-name = 'OutputParameter'.
    if_query_field-value = '*'.
    append if_query_field to it_query_field.
    clear if_query_field.
    if_query_field-name = 'Transaction'.
    * This is the Business Logic Transaction to be called in xMII
    if_query_field-value = i_transaction.
    append if_query_field to it_query_field.
    if not i_user_name is initial.
      if_query_field-name = 'XacuteLoginName'.
    * User name for the xMII
      if_query_field-value = i_user_name.                 " User Name
      append if_query_field to it_query_field.
      if_query_field-name = 'XacuteLoginPassword'.
      perform get_password
      using i_user_password
      changing if_str.
      if_query_field-value = if_str.
      append if_query_field to it_query_field.
    endif.
    * build query string
    if_query = cl_http_utility=>fields_to_string( fields = it_query_field
                                                  encode = 0 ).
    * build path
    */Runner?OutputParameter=*&Transaction=<Transaction Name>
    * &XacuteLoginName=<uname>&XacuteLoginPassword=<password>
    concatenate path '?' if_query into path.
    condense path.
    * Sets Header Field for the method with the Path
        CALL METHOD client->request->set_header_field
          EXPORTING
            name  = '~request_uri'
            value = path.
    * send request
        call method client->send
          EXCEPTIONS
            http_communication_failure = 1
            others                     = 4.
        if sy-subrc <> 0.
          call method client->close( ).
          WRITE / 'HTTP_COMMUNICATION_FAILURE'.
        endif.
    * get response
        CALL METHOD client->receive
          EXCEPTIONS
            http_communication_failure = 1
            http_invalid_state         = 2
            http_processing_failed     = 3
            OTHERS                     = 4.
        if sy-subrc <> 0.
          call method client->close( ).
          WRITE  / 'HTTP_COMMUNICATION_FAILURE'.
        endif.
        call method client->close( ).
        if sy-subrc <> 0.
          write 'NO_XML_DOCUMENT'.
        else.
          write:  / 'Execution Completed'.
        endif.
    *& Form get_password
    * get password string from base64 encoded value
    * -->i_password_encoded: encoded password
    * <--e_password: decoded password
    FORM get_password USING i_password
    CHANGING e_password.
      data: i_pwd type string,
      e_pwd type string.
      i_pwd = i_password.
      e_pwd = cl_http_utility=>decode_base64( encoded = i_pwd ).
      e_password = e_pwd.
    ENDFORM. " get_password

    https://www.sdn.sap.com/irj/sdn/submitcontent

  • How to set different navigation items for each content tab in xMII portal

    Hi,
    Scenario : I have added three content tabs in the xMII portal.
    I want to change the items in the navigation tree when each of the content tabs are selected.
    How is this possible?
    Please help.

    Vaishali,
    The built-in navigation tree is not intended for this sort of thing, where just like with the tabs it is intended to provide role/user based content links.
    You would be better off having your content tab link pass a criteria to the default target frame and allow a web page to give you the second level of dynamics.  Your content tab links could be something quite simple like "Page.irpt?Tree=1", "Page.irpt?Tree=2", "Page.irpt?Tree=3" and your irpt page would receive the Tree property and you could react accordingly in your web page.
    Regards,
    Jeremy

  • Com.sap.xmii.Illuminator.logging.LHException: java.lang.NoClassDefFoundErro

    Hello,
    Intermittently users get the following error when logging into the application which is built upon xmii:
    com.microsoft.sqlserver.jdbc.SQLServerResource
    At this point in the application it is trying to read information which is stored in a SQLServer database.
    We see the following errors in trace files:
    application [XMII] Processing HTTP request to servlet [Illuminator] finished with error.
    The error is: com.sap.xmii.Illuminator.logging.LHException: com.sap.xmii.Illuminator.logging.LHException: java.lang.NoClassDefFoundError: com.microsoft.sqlserver.jdbc.SQLServerResource
    Exception id: [00145E4D6... [see details]
    This is running on a NW JavaAs 7.0 SP18, MII 12.0 SP8.
    We've replaced the JDBC driver with one which SAP support told us would work, but that did not fix the problem either.
    We can get the problem to go away for a period of time by simply disabling and then re-enabling the Data Server connection.  It is using the IDBC Connector with a SQL connector type.  STATUS shows No. Connections Used 0, No. Connections Available 1, Max No. Connections Used 2.  Max. Wait Time 0.0.
    Ideas?

    Hi John,
    Before connecting SQL server with SAP MII, try connecting SQL server independently.
    It helps to narrow down the problem.
    If the independent connection works fine, try connecting with SAP MII with proper JDBC drivers
    Go through the SAP Note 1109274 & forum MII 12.1 - connection to MS SQL2005 database
    for more information on JDBC drivers.
    Thanks
    Rajesh Sivaprakasam.

  • Calling Webservice from Netweaver Portal to SAP XMII 12.0 using SSO

    Hello,
    we have a Netweaver 2004s based Portal and a Netweaver-based SAP XMII (v12.0) System providing Webservices.
    What we try to do is to call a webservice out of the Portal EAR Application using SSO.
    SSO-Konfiguration between Portal and XMII is done and works fine. I tested this using an URL-iView, which calls a https-URL on XMII and SSO-Authentification is done in the background.
    Now I want to call a Webservice using SSO.
    Without SSO (prodiving UID/PW), the webservice-call works fine.
    In order to use SSO with Webservice, I created a "Deployable Webservice Proxy" with "HTTP-Authentication" and "use SAP Logon Ticket" turned on.
    Then I remove Login/Password from my SOAP-Request and unfortunately it doesn't work.
    What do I have to consider in addition to the topics above?
    Can you provide any useful links with tutorials, hints, documentation, ...?
    Thanks in advance
    Andreas

    > Can you please list all the options that we have in order to implement SSO for EP and SAP GUI?
    >
    > I could not find any info in regards to the advantages and disadvantages of each SSO solution. Do you have any links that gives this information?
    If you search the forum here for the terms you have used, then you will find many of them and interesting discussions about advantages and disadvantages from different views. I think that in 1 or 2 hours you will be a guru
    > I am thinking more of using Kerberos authentication for SAP GUI and using OpenSSO (Sun's product)solution for EP 7.0.
    >
    > Do you know what SSO technologies are other companies implementing these days?
    I only know which solutions I have been involved in doing the security evaluations for and implementation support.
    I don't want to do any direct or indirect comparative advertizing here, but only wanted to point out to you that there is plenty of information if you use the search. What you need to understand is that other that SAP proprietary mechanisms and newer standards based initiatives (search for 'SAML'), this is often a 3rd party vendor question (and resulting discussion...).
    If you find a solution and want to specifically discuss it here, then this can most of the time be done in a civilized way...
    Cheers,
    Julius

  • Create a new user in xMII version 11.5

    I want to create a new user in xMII version 11.5 that has rights to view everything and create queries.  So far the user is part of the EVERYONE role and can view most of the items that the Admin can see.  My question what do I have to do in order to allow this user to create queries?  When I log in as this user and I click the query tab, it said that I do not have sufficient rights.

    I figured it was that simple.
    I haven't seen you on here in awhile.

  • Problem in retrieving multiple records SAP xMII from SAP using BAPIS

    Hi friends,
             In SAP xMII i called BAPI_USER_GETLIST by passing import parameters 10 and y.In r/3 BAPI returned 10 rows but In xMII it was returned only one Record.
    i want to display 10 records in sap xmii
    1) I created to connection ECC5 in Dataservices-->SAPSERVERConfiguration
    2)In BLS we placed JCO Interface inside Sequence
    3)In BLS I used ECC5 connectrion(using JCO Interface) and called  BAPI_USER_GELLIST
    4)In Links-->Transaction created two input values for "maxnoofrows","withusername" and output value is "userid".
    Input what i mapped 
    Transaction>"maxnoofrows" =====SAPJCOINTERFACE->Request>BAPI_USER_GETLIST>INPUT-->MAX_ROWS
    Transaction>"withusername" =====SAPJCOINTERFACE->Request>BAPI_USER_GETLIST>INPUT-->WITH_USERNAME
    Output what i mapped 
    SAPJCOINTERFACE->Response>BAPI_USER_GETLIST>TABELS>USERLITS >ITEM>USERNAME=====Transaction-->userid
    5)Saved the Transaction.
    6)In Query Template -->xactuateQuery selected
    7)In Datasource Query mode was selected ,Inputrarams i passed 10 and y as parameters.
    It was returned one user id from R/3 inSAP xMII
    please help me to retrive all  10 rows from r/3
    Regards
    Srikanth

    hi,
    What is the data type of Transaction output (userid)?
    Make this as XML type.
    The format which BAPI returns the result does not match with xMII XML format.
    Create a xMII XML document and configure with column name as userid. and by using repeater and XML row add all tho values to the document. Then assign whole doument to transaction output.
    Hope this will help to resolve the issue.
    Regards,
    Kishore

  • Conversion of Minitab to xMII XML format

    Hi,
      how to convert minitab file into xml format. i tried possibilities but facing problems. i tried for two psiibilities.
    1) i imported minitab file(.mtw) into BLS text loader. then i added flat file parser then StringList to XML parser. but it doesnt show correct xml output. it shows each row as single item.
    2) I saved minitab file as text file by applying comma seperator. then i opened that file in BLS. this file having column names but in BLS it consider each item as single row. for example if  i have 2x2 rows / columns means, BLS consider it as 4 rows and take column name also as row.
    how to solve it? how to convert minitab file as it is(with .mtw) extension to xMII XML format.
    -senthil

    Senthil,
    In xMII 11.5 SP3 in the Logic Editor under Misc Functions -> Minitab Export
    -Sam

  • Control recipe resending to xMII.

    Hi!!
    Control recipe can be sent to xMII through CO53 transaction.
    How can we resend the control recipe to xMII?
    Please Guide.
    Best Regards,
    Ajit Dubal.

    Hi Vijaya,
    I am able to send the control recipe but need to know how to resend the control recipe.
    Rgds,
    Ajit

  • XMII installation on Windows 2003 Server ( 64- Bit)

    Hello,
    Can we install xMII 11.5 SR01 on Win 2003 server ( 64 -Bit ) ??? When i am trying to download xMII software from SAP market place , under xMII downloads
    -> i can see only win32 link.
    Thanks
    Sharat

    Sharat,
    Did you try installation? I think that hasn't problem. The Windows 2003 Server has the full compabillity with x86 (32 bits) softwares.
    Post here your issues, I will try to help you. I'm very interested in this results.
    Regards,
    Vinicius Martins
    Neoris/Konitech
    Brasil

  • Update ABAP Report in SAP R/3 with data from xMII

    Hi Experts,
    How do we update some PP reports in SAP R/3 from xMII .
    We have sucessfully got all the data from the historians in the plant and also established connection between SAP R/3 and xMII.
    1. We also need to store the data passed in SAP R/3 in a Z-table and fetch data from there.
    2. How the BLS in xMII can be called from SAP R/3 to update the table.
    Thanks in advance.
    Regards,
    [Vivek K|https://forums.sdn.sap.com/profile.jspa?userID=2097685]

    Vivek,
    You can very well do this using a remote enabled function module.  For this,
    1) Write a function module which takes input (tag name & value) and inserts in z table.
    2) Set it remote enabled.
    3) Define your SAP server under data services - > SAP Server Configurations.
    3) Write a BLS transaction which calls this RFC using SAP JCO action. Here you can use the configuration that you defined in earlier step. Set the input parameters.
    4) Execute the transaction and you can put an external breakpoint in your RFC for debugging.
    I think when you said you are getting data xacute query, even that will execute such kind of BLS transaction.
    Mike.

  • JCO Proxy Error while connecting xMII into SAP R/3 Server

    Hi All
    When we try connect out SAP xMII server to the SAP R/3 Server using JCo (JCO Interface), we are getting an error
    "Fatal Error: JCOProxy Error:Name or Password is incorrect, please re-enter"
    We have checked the userID and password for logging into the SAP R/3 System and it is all correct and we are also able to login with the same userID/password using SAPGui. All the other details like SAP Server, Client Instance is all correct.
    appreciate if someone can help resolving this.
    Thanks and Regards
    Biju Kumar

    Hi Biju,
    I have also experienced this error. We are using xMII 12.0.1 with SAP R/3 4.6B. Please make sure that your password is in lowercase without special characters. Also check the xMII-logs if there is some more information about the error.
    If nothing helps, delete the SAP server entry in Data Services and re-enter it. Maybe this makes it work. I found that either the password was different or the new entry helped.
    Regards
    Michael

  • Display xMII Trends and graphs in SAP R/3

    Dear all,
    We have a requirement to see the trends of various production lines from xMII in SAP R/3 itself.
    Is it possible to have this graph in SAP ?
    Even if we are able to see the webpage then also it is ok.
    We are having RFC connection established already within xMII and SAP.
    Thanks in Advance,
    Regards,
    Vivek K

    Found it :
    http://www.erpgenie.com/abap/controls/htmlviewer.htm

  • Is there any way to limit the number of RFC calls from xMII to SAP R/3

    Hi All!
    I wanted to know whether the number of simultaneous RFC connections made from xMII to SAP R/3 system can be controlled in any way. Suppose we have a scenario wherein some million Sales Orders or Production Orders are to be updated in SAP R/3 from xMII in a short span of time. For all these updations to take place, multiple RFC calls will be established from xMII to SAP at the same time. This will increase the load on the SAP R/3 system and affect performance of the SAP R/3 system. Is there any check on xMII side to limit the number of RFC calls that can be made to SAP R/3 system?
    Regards
    Anupam

    Anupam,
    If you are using 11.5 just keep in mind that the JCO connection points to a single application server (based upon the SAP Server alias connection settings), but the traffic itself to make a BAPI request is effectively the same as any client user traffic.  There will obviously be limitations on performance and throughput, with network and server constraints added to the number and size of the R/3 requests, but there is no magic formula to plug-in because of all of these variables.
    If you are using 12.0 (or plan to migrate when it goes GA) then taking advantage of the JRA (java resource adapter) and the associated application server pooling that it offers on the NetWeaver side of things will greatly help you in the throughput capacity.
    If you have put some of your xMII application into either test or productive use and are running into issues then I would highly recommend entering the specifics into the customer / partner support portal so that they can help you through any associated problems.
    Regards,
    Jeremy Good

  • Graphs from xMII to SAP R/3 Enterprise 4.7

    Hi Experts, 
    We are having an requirement to display a graph from xMII to SAP R/3.
    The graph is based on the data collected from the historians.
    Is it possible to display the graph in SAP R/3 through some RFC ?
    Else, Can we pass on all the data from xMII to a z-table in SAP R/3 and generate graphs ?
    Please let me know your suggestions.
    Regards,
    Vivek K

    There is a GUI control for displaying web pages within SAPGUI. Sorry, I can't recall the object

  • IChart & Fixed Query /w scooter values in legend (xMII 11.5.1)

    Hello all, this is my first post here and I hope that I can get some help.
    Environment Details:
    Server: Windows 2003, xMII 11.5.1, Java Plugin 1.4.2_13
    Client: Windows XP, IE6, Java Plugin 1.4.2_13
    My problem is that I cannot get scooter values to show in the legend with a simple iChart & Fixed Query.  At least not without more problems.  Let me explain...
    The following chart & query does not show scooter values in the legend (values are shown in the upper left hand corner for the selected item though):
    <applet name="ProcessDataApplet" height="421" width="1259" code="iChart" archive="illum8.zip" codebase="/Illuminator/Classes" "mayscript="true">
    <param name="Mode" value="FixedQuery" />
    <param name="QueryTemplate" value="Allvac/AMP/QueryTemplate" />
    <param name="DisplayTemplate" value="Allvac/AMP/DisplayTemplate" />
    <param name="Server" value="MONROE_VAR_ARMS" />
    <param name="Query" value="SELECT [TIMESTAMP],[ACTUAL_FURNACE_CURRENT],[ACTUAL_FURNACE_VOLTAGE],[RAM_VELOCITY] FROM [PRODUCT_HEADER] INNER JOIN [PRODUCT_AUDIT_DATA] ON ([PRODUCT_HEADER].[PRODUCT_KEY] = [PRODUCT_AUDIT_DATA].[PRODUCT_KEY]) WHERE [PRODUCT_HEADER].[PRODUCT_KEY] = '525cb615-1b15-4b07-aa7c-9f1df9c47ba3' AND [TIMESTAMP] >= '02/27/2008 03:21:22' AND [TIMESTAMP] <= '02/27/2008 15:14:34' ORDER BY [TIMESTAMP] ASC" />
    <param name="RowCount" value="8558" />
    <param name="ChartType" value="Line" />
    <param name="AxisValueColumn" value="TIMESTAMP" />
    <param name="XAxisFontSize" value="10" />
    <param name="LegendWidth" value="40" />
    <param name="LegendFontSize" value="10" />
    <param name="GlobalServerScaling" value="false" />
    <param name="ZeroBasedScale" value="true" />
    <param name="UseScreenResolution" value="false" />
    <param name="EnableDoubleClickRefresh" value="false" />
    <param name="ShowMouseTracking" value="true" />
    <param name="ShowScooter" value="true" />
    <param name="AutoScale.1" value="true" />
    <param name="Decimals.1" value="2" />
    <param name="AutoScale.2" value="true" />
    <param name="Decimals.2" value="2" />
    <param name="MinRange.3" value="0.00000" />
    <param name="MaxRange.3" value="0.40000" />
    <param name="Decimals.3" value="2" />
    </applet>
    I went one step further to see if I could get the scooter values shown in the legend.  I modified the query to use the StartDate & EndDate placeholders like so:
    SELECT [TIMESTAMP],[ACTUAL_FURNACE_CURRENT],[ACTUAL_FURNACE_VOLTAGE],[RAM_VELOCITY] FROM [PRODUCT_HEADER] INNER JOIN [PRODUCT_AUDIT_DATA] ON ([PRODUCT_HEADER].[PRODUCT_KEY] = [PRODUCT_AUDIT_DATA].[PRODUCT_KEY]) WHERE [PRODUCT_HEADER].[PRODUCT_KEY] = '525cb615-1b15-4b07-aa7c-9f1df9c47ba3' AND [TIMESTAMP] >= [SD] AND [TIMESTAMP] <= [ED] ORDER BY [TIMESTAMP] ASC
    I also added my initial StartDate & EndDate parameters:
    <param name="StartDate" value="02/27/2008 03:21:22" />
    <param name="EndDate" value="02/27/2008 15:14:34" />
    NOW the scooter values are shown in the legend, which is great, but all of a sudden the zoom is broken.  When I select an area to zoom and then click the zoom button, it zooms to a completely different area of the chart.  This is worse than my original problem.
    Can someone please help me out with this?  I have a feeling I'm leaving out something simple, but I can't find it.
    By the way, my display template and query template used in this example are empty so that I could show all parameters to you.
    Thanks,
    Bryan

    I removed scaling and accuracy parameters.  I also removed some parameters that controlled styling.  I added global auto scaling. 
    Now X & Y are updating properly on zoom.  Although unzoom isn't working for start date and end date.  They stay at the zoomed date.  The post data also shows the zoomed dates being sent to the server after unzoom.  The Y range updates properly on unzoom.
    Here is my updated applet html:
    <applet name="ProcessDataApplet" height="421" width="1259" code="iChart" archive="illum8.zip" codebase="/Illuminator/Classes" "mayscript="true">
    <param name="Mode" value="FixedQuery" />
    <param name="InitialUpdate" value="true" />
    <param name="QueryTemplate" value="Allvac/AMP/QueryTemplate" />
    <param name="DisplayTemplate" value="Allvac/AMP/DisplayTemplate" />
    <param name="Server" value="MONROE_VAR_ARMS" />
    <param name="Query" value="SELECT [TIMESTAMP],[ACTUAL_FURNACE_CURRENT],[ACTUAL_FURNACE_VOLTAGE],[RAM_VELOCITY] FROM [PRODUCT_HEADER] INNER JOIN [PRODUCT_AUDIT_DATA] ON ([PRODUCT_HEADER].[PRODUCT_KEY] = [PRODUCT_AUDIT_DATA].[PRODUCT_KEY]) WHERE [PRODUCT_HEADER].[PRODUCT_KEY] = '525cb615-1b15-4b07-aa7c-9f1df9c47ba3' AND [TIMESTAMP] >= [SD] AND [TIMESTAMP] <= [ED] ORDER BY [TIMESTAMP] ASC" />
    <param name="RowCount" value="10000" />
    <param name="StartDate" value="02/27/2008 03:21:22" />
    <param name="EndDate" value="02/27/2008 15:14:34" />
    <param name="ChartType" value="Line" />
    <param name="GlobalAutoScale" value="true" />
    <param name="UseScreenResolution" value="false" />
    <param name="ShowMouseTracking" value="true" />
    <param name="ShowScooter" value="true" />
    <PARAM NAME="Trace" VALUE="true">
    </applet>
    This problem isn't making any sense to me.  The documentation makes it sound like showing the current values in the legend is as easy as setting ShowScooter = true.  This wasn't the case for me though.  I had to use the [SD] and [ED] placeholders in my fixed query before the values would show up in the legend.  But then zooming breaks.  It looks like we're heading in the right direction to get the zooming fixed, but at the cost of being able to scale each pen.
    The first thing you said to me in your first post was that I'm using a 3+ years old version of xMII.  Are you saying there is a good chance this is a bug?  I was pretty convinced from the beginning that this problem is a bug.  The customer I am working for set me up with an xMII 11.5.1 server because that is what they are using in production.  Is there an online document with a list of bug fixes between versions?  If this is a known bug in 11.5.1 then maybe I can get the go ahead to upgrade.

Maybe you are looking for

  • How to link Excel tabs so data shows up in one report

    I have a huge excel file with 16 tabs (sheets) of data. Each tab has an excel speadsheet filled. I have the data in Crystal. Each tab shows up as a separate table. I've tried to link each in different ways but can only get one table to show up in the

  • After updating to 10.6.1 issues burning cds

    Since latest iTunes update I am getting error messages or cd burs and first two tracks are fine and the rest are scratchy or don't play at all. Having no problems when using windows media player to burn so not my burner.  Have slowed speed to 2x, eli

  • MM02 - Restriction

    Hi, I have requirement where i need add password for a particular view and  user That is for given user if he select MRP1 tab it should ask for password in order to  entering or changing data. Then similarly one requirement , In Quality view  i need

  • SSL Plug In Problem

    Hi, I've downloaded several Solid State Logic plug ins, but I'm having HUGE problems getting them to load each time I open Logic.  I get a message saying that the licence cannot be found for any plug in inserted across a bus, but those inserted on in

  • OBSC is very slow

    I've install OBSC in one client and it is connected to a database that resides in other machine. Platform for client: win98 Platform for database: Solaris 2.6 Database version: 8i When i try to run OBSC Architect, it becomes very slow. It takes about