Minitab - xMII

Hi,
  how to integrate minitab with xmii and where to download minitab export jar file?
-senthil

Senthil,
The minitab feature comes preinstalled with version 11.5 SR02 and above.  This feature will format any data into minitab format for you to read.  There is no need for a minitab jar file just install SR02 or greater.
Refer to this post on how to use the Minitab action blocks Minitab Export Action Block
Regards,
Erik

Similar Messages

  • 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

  • XMII - Minitab Conversion

    Hi,
      i want to convert data from xmii to minitab. I am running server from other system.I am using BLS. In writeFile action,  i am giving file path in run time.  if  i give path as D:\<file name>.mtw means, it stores file in xmii server system's D drive. how can i store it in my system?
    -senthil

    It is actually quite easy to do.  Simply create a String output parameter in your BLS transaction, and call the transaction via a URL using the Runner servlet.  Be sure to put a "virtual file name" on the end of your URL of the form &Dummy.mtw or whatever.  If Minitab is installed on the client PC, it will automatically open the results from that URL.  It also wouldn't hurt to add &Content-Type=application/minitab to the URL.
    The power of BLS that a lot of people don't realize is that it can stream back virtually any format, without the need to save it to disk.
    Rick

  • Integrating Minitab with xMII

    Hi ,
        I like to integrate Minitab with xMII 11.5 (earlier version ) ,i know in SR2 and later we have minitab integrated by default. But my query is whether we able to integrate minitab in xMII 11.5(earlier version). If yes,how can be done?
    Thanks,
    Bala

    To convert a minitab file into xml you should be able to use a text loader to obtain the file and the a FlatFileParser in conjunction with a StringListToXML.  The StringListToXml_0.Delimiter needs to be set to tab.
    To convert xml to minitab format you a repeater on the datasource with a write file in the repeater.  You'll also need to use the tab and crlf functions to build it correctly.
    But the real solution should be to upgrading to SR3.
    Regards,
    Jamie

  • Cookie Support in xMII portal

    Hi,
    i created one web page. in this i set ChartClickEvent and i get querytemplate of that chart. then i click button to send result of querytemplate to Minitab. i set alert messages to display value of query template and SQL query that is going to send for conversion. i got these values via cookie in javascript. this page is working fine when i call this via browser i.e directly i typed as
    http://<server name>/Illuminator/PortalLogin.jsp?target=/minitab.htm&IllumLoginName=<user name>&IllumLoginPassword=<pass word>&session=true
    but in xMII paotal i add one link to this page via navigation. when i click button to export, it display null messages in alert and it wont convert anything. but the same page working fine outside xMII portal. what is the problem? Is it problem in cookie? because it display values when i call this from browser but displaying null when i call from xMII protal. how to solve this? please help me.
    -senthil

    Are you setting the values in your cookie when you access the page from the portal? I havent used them in a long time, but I'm pretty sure cookies are Domain specific. So if you set in while in one Domain, its not avilable via another. Maybe acessing the page thru the portal puts it in a different Domain?

  • Displaying PDF files created with BLS in xMII 12

    Hi all,
    we are creating dynamic PDF Reports and store them in an xMII Web folder like "/Project/WEB/PDFFiles/".
    The problem is that I cannot display the PDF File after creation to the user, because when I use the URL it says an error like "file cannot be found". Only after I open the Workbench and "publish" the file, the URL works and the PDF is opened.
    Can I execute the "publish" command from the web page via JavaScript? Or from the BLS after it has created the PDF?
    Regards
    Michael

    Hi, Michael.
    The rendered PDF document is stored in a "string" parameter.    Create a transaction output parameter of type string, and name it "PDFContent".  Now, to stream the data back, create a hyperlink of the format:
    http://<yourserver:yourport>/<this depends on your version>/Runner?Transaction=YourFolder/YourTransaction&OutputParameter=PDFContent&OutputContentType=application/pdf
    When the user clicks on this link, the PDF will be generated and sent to the browser and should automatically open the Adobe PDF Reader.  Note that this technique can be used with all kinds of different content (I've done the same for BLS-created HTML, SVG, PDF, CSV, and even Minitab statistical files).
    In some cases, you may need to "trick" IE into forcing an open of the PDF viewer, in which case you might want to tweak the URL as follows:
    http://<yourserver:yourport>/<this depends on your version>/Runner?Transaction=YourFolder/YourTransaction&OutputParameter=PDFContent&OutputContentType=application/pdf&PDFContent.pdf
    Sometimes IE uses the ".pdf" at the end, sometimes it uses the content type/mime type.  Seems inconsistent.
    Best regards,
    Rick

  • Minitab to XML conversion

    Hi,
    i have table in Minitab as
    S0190  S0192  S0195
      47        44        47
    where S0190,S0192,S0195 are column names. i tried to convert this into XML format in BLS. I loaded this mtw file in text loader and connected to Flat file parser as text loader string content to Flat file parser input. i got output for this as
      <?xml version="1.0" encoding="UTF-8" ?>
    - <Rowsets DateCreated="2007-08-29T19:33:11" EndDate="2007-08-29T19:33:11" StartDate="2007-08-29T19:33:11" Version="11.5.3">
    - <Rowset>
    - <Columns>
      <Column Description="LineNumber" MaxRange="0" MinRange="0" Name="LineNumber" SQLDataType="5" SourceColumn="LineNumber" />
      <Column Description="Line" MaxRange="0" MinRange="0" Name="Line" SQLDataType="1" SourceColumn="Line" />
      </Columns>
    - <Row>
      <LineNumber>1</LineNumber>
      <Line>'S0190'</Line>
      </Row>
    - <Row>
      <LineNumber>2</LineNumber>
      <Line>'S0192'</Line>
      </Row>
    - <Row>
      <LineNumber>3</LineNumber>
      <Line>'S0195'</Line>
      </Row>
    - <Row>
      <LineNumber>4</LineNumber>
      <Line />
      </Row>
    - <Row>
      <LineNumber>5</LineNumber>
      <Line>4,700000000e+001</Line>
      </Row>
    - <Row>
      <LineNumber>6</LineNumber>
      <Line>4,400000000e+001</Line>
      </Row>
    - <Row>
      <LineNumber>7</LineNumber>
      <Line>4,700000000e+001</Line>
      </Row>
    - <Row>
      <LineNumber>8</LineNumber>
      <Line />
      </Row>
      </Rowset>
      </Rowsets>
    i tried many ways to convert this into xMII XML format, but didnt get XML format. how to convert this format into XML format? can i use repeater, for next? In this it take column names (S0190..) as rows. how to set as column in XML format?
    thanks in advance
    -senthil

    hi
    You may use the "Column" action (under xMII XML Output in BLS) and "Row" action to set the column names and map the values in the rows respectively in the XML file. Of course you have to use 'Repeater' action to loop the input table contents to be shown in the XML output.
    Regards
    Som

  • 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

  • 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

Maybe you are looking for

  • Volume control problem with 30GB iPod 3G, Universal Dock, and Apple Remote

    I just hooked up my 30GB iPod 3G to the Universal Doc and tried the my new Apple remote. The only buttons on the remote that work in controlling my iPod while on the dock are the play/pause and the skip forward and back buttons. For some reason the v

  • APPLICATION SERVER FILE PATH

    Friends to surf the flat file   function module what we use is 'KDGET_FILENAME_ON_F4'_ like this what is the fuction module for application server?????

  • 3d graph and coordonnates

    How may I use in the Basic_Properties.vi the coordonnates system imput? wath appened for X,Y,Z inputs for a cylindric or spheric chose? MF

  • IsCellEditable

    I'm using a DefaultTableModel for the JTable. I want to disable editing for all the rows in column 0. Is it possible. Also how do I set the cellediting to false for a defaultTableModel . thnks

  • Regarding sap 6.0 ecc

    Hi masters if the client purchased SAP 6.0 ECC in the market, what r the components the client have besides of 6.0 ECC.  for ex net viewer or best practice like this wht r the befits client have. thanqu raj