XMII versus XI/PI

Hi Folks,
I have requirement from client where they want to directly interact with MES using XI :
I have few questions regarding this :
1. Is xMII a prerequisite to interface with MES ?
2.  How XI/PI can exchange data with MES using a prebuilt adapter?
3. How powerful XI/PI is while interacting with MES.?
4. Advantages of xMII over XI/PI while interacting with MES..
Regards,

hi
go through below links might be u will get u r answers
/thread/173946 [original link is broken]
Urgent!!!!! - Communication between MES, xMII, XI and SAP R/3 system?!!!
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/403696e3-53bf-2910-ab94-ee4a7d2ea391
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30f43a39-be98-2910-9d9c-a59785f44e41

Similar Messages

  • XI and Xmii

    Hi guys
    I have been doing XI for some time and came across a job asking for XI person to move onto xMii.
    I've read a little about xMii but still do not understand what the relationship is between it and XI.
    Is there one ?   So wondering how much SAP XI skills you need in a xMii role ?

    Hi Jonny,
    I think from what I have seen from my SAP XI colleagues that it is helpful to know something about mapping and using XML and XPATH (maybe XLST but not first place). Of course it always helps to have experience in using a middleware tool for connection and mapping tasks.
    However, if you start with MII, I would recommend to have a formal education to learn about the new or different concepts of MII compared to XI (MII business logic, MII portal, visualization and User Interface etc.). MII is no native SAP product but bought in from a US company, so the user interface to MII for developers needs getting used to.
    Maybe you find the following links useful.
    xMII Wiki
    [https://wiki.sdn.sap.com/wiki/display/xMII]
    Getting started guide with many examples of the visualization possibilities
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b7c79bd4-0a01-0010-4caf-bfb68ab98517]
    Thread XI versus MII
    [https://forums.sdn.sap.com/click.jspa?searchID=16265538&messageID=5049070]
    XI vs xMII (older thread)
    [/thread/173946 [original link is broken];
    Michael

  • 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

  • Outputting DVI to HDMI input in LCD TV versus using the DVI to RGB ?

    I am thinking of buying a mac mini to connect to a Toshiba 20HL85 TV in the lounge primarily to act as a "media server" and accessing Front Row for music, photo's, DVD watching etc. The question is which connection to use to go from the mini to the TV for Video (audio is fine as it will route into my AV Receiver)? The TV has an HDMI input, component video, s-video and a VGA port. The user manual for the TV says:
    Note: The HDMI jack is not intended for connection to and should not be used with a personal computer. For PC connection, use VGA cable and connect to the VGA port. The VGA port allows the following resolutions:
    Monitor Display modes:
    VGA 640x480 60Hz
    SVGA 800x600 56.3Hz
    SVGA 800x600 60.3Hz
    XGA 1024x768 60Hz
    WXGA 1280x720 60Hz
    WXGA 1280x768 60Hz
    I wanted to know a few things as I have no experience with the MAC mini and HDMI:
    1. Will I not get a better/crisper/sharper picture if I connect through a digital port like HDMI versus going through the VGA port?
    2. I have checked a few LCD TV's user manuals and they all seem to say the same thing i.e. "Do not connect a PC to the HDMI port" - I fail to understand this when the Apple site specifically says under "accessories for the MAC mini" that "HDMI is electrically similar to DVI, but has a different physical connector that may include an audio signal. You’ll need a DVI to HDMI adapter, such as the Belkin PureAV HDMI to DVI cable to use these televisions".
    3. What am I missing? Should I just go ahead and buy the DVI to HDMI cable and MAC mini and plug it in i.e. has anyone done this and had it work? Is it better than VGA (I would hope so)?
    Bottom line is does the MAC mini connect to any TV with an HDMI port or are there different types of HDMI ports and hence I need to search for the right TV first? If so, what must I look for? Thanks for any help I can get.
    Power Mac G5 Dual 2GHz   Mac OS X (10.4.5)  

    One word of advice. I just hooked up my mini to my 32" Lowe HD TV using a DVI to HDMI cable and it doesn't just work. The native resolution of the TV is not available for whatever reason so I have to bodge another resolution which looks terrible. When I plug my powerbook in via a DVI to VGA connector it just does work selecting the correct resolution automatically.
    Either the problem lies with the mini or with connecting to the HDMI socket. As the HDMI is simply a dvi with audio I can't see why it would cause problems but who knows. Given all the other problems I am currently having with the mini I am pointing the finger in that direction currently.

  • Billing doc cost PCA versus GL

    The billing doc cost should be different for the PCA posting versus the GL posting. We have transfer pricing activated as well as material ledger. On the material master the standard price for legal valuation is different than profit center valuation and that is fine. When the billing doc posts it uses standard price for legal valuation for the GL posting. It should use standard price for profit center valuation. It uses legal valuation instead. Goods issue does use the correct standard price for GL versus PCA though.
    How do I make the billing doc use the correct standard price ( profit center valuation ) for PCA?

    Hi,
    I am a bit confuesed on scenario explained by you and I am tring to restate the same:
    1.  You are using Transfer Pricing and Material Ledger is active.
    2.  You have different prices updated in Standard Price for Legal and Profit Center Valuations respectively.
    3.  When you make a goods issue, the system uses the Standard Price in the Legal Valuatoin for accounting. 
    4.  You need the system to use Profit Center Valuation Price for accounting.
    Opinion.
    The Goods issue as updated in the Financial Accounting should use only the Legal Valuation values.  The Profit Center Document anyhow will have the cost of sales based on the profit center valuation.  This is by design and correct approach.
    If your question is related to values posted in Profitability Analysis.  You need to activate profit center valuation in PA and then you will see that both values flow to Profitability Analysis.
    Hope this helps you.
    Varadharajan

  • Performance: Reports Builder versus Running on mid tier report server.

    Folks are wondering why a report takes 15 minutes when running on the middle tier report server, paper layout, pdf output displayed via adobe, versus running the paper layout from a laptop within Reports Builder.
    Any thoughts about the performance differences we now face with the 3 tier set up or suggestions on what we might tweak?

    hello,
    unfortunately your post did not specify what the difference in performance is and whether you are connecting to the same database and what platform your deployment environment as oppsed to your dev environment is.
    there are certainly some performance differences expected if the depoloyment platform is significantly different from the development paltform, but those differences should not be significant.
    there are certain things that might cause performance differences (e.g. graphs in reports, using DISPLAY vs. DEFAULT_DISPLAY on unix platforms, etc.) so knowing a bit more about your platform would be helpful.
    also it would be interesting to know if you see a similar degredation with other reports or even the test.rdf that comes with the product. last, but not least, have you tried to deploy your report to the OC4J that comes with the developer suite ? if so, do you see timings similar to the builder or more to your app server execution times ?
    thanks,
    philipp

  • Authorized versus Associated.....trying to share content

    What is the difference between a computer being AUTHORIZED to play content from an iTunes account versus a computer being ASSOCIATED with a device so it can be synced and play the content? It seems multiple computers can be AUTHORIZED to play content from multiple iTunes account but each device can only be ASSOCIATED with one iTunes account (or is it one computer) at a time. Is that correct?
    If so, can all the AUTHORIZED content on a computer (even if from multiple iTunes accounts) be synced to one ASSOCIATED iPad?
    I have a Work Computer (PC), Associated Work iPad and Work iTunes Account and a separate Home Computer (iMac), Associated Home iPad and Home iTunes account. I am trying to figure out how to share content? Currently all my content is in my Home iTunes Account / Computer. My Work iPad, Work iTunes Account are both new and I want to share some of my Home iTunes content on my Work iPad.
    I am concerned when I read that once a device is ASSOCIATED with an iTunes account it can not be ASSOCIATED with a different account for 90 days. I can't risk ASSOCIATING my Work iPad with my Personal iTunes Account and being locked out from syncing my Work iTunes account on my Work iPad for 90 days.

    Okay, I figured it out myself and will document it here so others may benefit.
    A computer can be AUTHORIZED to play/use content purchsed from multiple iTunes Accounts. There is a limit to the number of computers that can be AUTHORIZED per account (5 total) but no limit as to how many accounts a computer can be AUTHORIZED to play. Once you have AUTHORIZED all the accounts AND downloaded all the purchased content from each account to a computer, this content can be also be played on any device ASSOCIATED with the computer. A device can only be ASSOCIATED to one computer but one computer can have many devices ASSOCIATED to it. As an example, you can use apps purchased on from multiple iTunes accounts on an iPad as long as the computer the iPad is ASSOCIATED with is AUTHORIZED to use/play the content for each of the accounts. Another example: if you also purchased music from all the iTunes accounts, you could listen to it on an iPad, iPhone and iPod as long as all three were ASSOCIATED with the computer where all the accounts were AUTHORIZED.
    Hope this helps.

  • Multiple versus a single collection search with Verity

    I have a simple question about Verity search collection.
    We have been using verity for a number of years, but we have
    never done
    any real performance testing in regards to a single
    collection versus many.
    All documentation and articles argue for multiple small
    collections when
    indexing for better indexing performance. But what is the
    performance
    hit when searching 2 collections instead of 1 combined
    collection?
    How about 4 collections instead of 1?
    Thanks
    Don Vaillancourt
    Director of Software Development
    WEB IMPACT INC.
    phone: 416-815-2000 ext. 245
    fax: 416-815-2001
    toll free: 866-319-1573 ext. 245
    email: [email protected] <mailto:[email protected]>
    blackberry: [email protected]
    <mailto:[email protected]>
    web:
    http://www.web-impact.com
    address:
    http://maps.google.com
    <
    http://maps.google.com/maps?f=q&hl=en&q=99+atlantic+ave,+toronto&ie=UTF8&z=15&ll=43.640765 ,-79.420767&spn=0.013448,0.04343&om=1&iwloc=addr>
    This email message is intended only for the addressee(s) and
    contains
    information that may be confidential and/or copyright.
    If you are not the intended recipient please notify the
    sender by reply
    email and immediately delete this email.
    Use, disclosure or reproduction of this email by anyone other
    than the
    intended recipient(s) is strictly prohibited. No
    representation is made
    that this email or any attachments are free of viruses. Virus
    scanning
    is recommended and is the responsibility of the recipient.

    We are searching 7 collections with some 100.000 documents. I
    have not noticed any performance issues compared to searching only
    one collection.

  • 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.

  • NLS character set non AL32UTF8 versus AL32UTF8

    Good morning Gurus,
    RCU utility strongly recommends to have this parameter set to AL32UTF8.
    My database by default was set as WE8MSWIN1252.
    I have read a lot about these settings. and like to have exact steps to take to accomplish this. I posted this problem in "Problem with RCU utility' but did not get any response.
    My question is why oracle makes things difficult. I only use american language, if both are good for that then why do RCU requires to change it.
    I have seen people who have ignored this message had trouble down the road of installation process.
    I appreciate if some one can explain to me the implications of not changing versus changing.
    Is that means, my database has to be kept with AL32UTF8 parameter all the time after installation is done?
    Also another question
    I have 3 meg RAM on my laptop, Oracle requires 4, will this cause the problem during installation?
    Thank you
    j

    Hi,
    a change from we8mswin1252 to al32utf8 is not directly possible. This is because al32utf is not a binary superset of we8mswin1252.
    There are 2 options:
    - use full export and import
    - Use of the Alter in a sort of restricted way
    The method you can choose depends on the characters in the database, is it only ASCII then the second one can work, in other cases the first one is needed.
    It is all described in the Support Note 260192.1, "Changing the NLS_CHARACTERSET to AL32UTF8 / UTF8 (Unicode)". Get it from the support/metalink site.
    You can also read the chapters about this issue in the Globalization Guide: [url http://download.oracle.com/docs/cd/E11882_01/server.112/e10729/ch11charsetmig.htm#g1011430]Change characterset.
    Herald ten Dam
    http://htendam.wordpress.com

  • Sound Check in iTunes 10.6 is different versus Sound Check in iTunes 8.2

    Hi. My OS is Windows 7 Pro-64.
    I have lots of CD and I decided to convert them  in an mp3 library imported in iTunes (and “manually” in an iPod Classic) with Sound Check on (either in iTunes, or in iPod). I managed it with Windows XP and  iTunes 8.2 till last year. I always verified the Volume adjustment of each mp3 and the correlated hex values written in the field iTunNorm (using mp3Tag). So far I was quite satisfied of Sound Check because I use iPod like a “juke-box” (I don’t need a per album normalization).
    Last year I updated to Windows 7_64 and to iTunes 10.6 and I went on importing other mp3 files (from my CDs). But, with some test, (I imported the same file using iTunes 8 on a PC and using  iTunes 10 on  a different PC) I realized (with a very high probability) that:
    iTunes 10 apparently don't write iTunNorm tag anymore in the file mp3. I have a Volume adjustment, but with mp3Tag I can’t read any iTunNorm field with the famous ten hex values.
    iTunes 10 and iTunes 8 use a different way to calculate Sound Check; Volume adjustments calculated with iTunes 10 are lower of about 0,75-1,25 dB in average against iTunes 8. But sometimes  the difference may be very high (-3,5 dB or -5dB for example in iTunes 10 versus iTunes 8).
    When I updated to iTunes 10, my old library has been converted into the new format iTunes 10, but the old Sound Check (calculated with iTunes 8) did not change (no new calculation). So when I add new files to the library with iTunes 10, I have a discontinuity with the old files imported from iTunes 8 as far as Sound Check is concerned: the new files sound lower in average than the old ones.
    I don’t want to delete and re-import all my files in order to reset and homogenize the whole library (I’d lose all statistics and I’d waste lot of time to pass the file in iPod). And I don’t want using third part software like iVolume.
    My questions:
    Is it correct what I wrote at the point 1, 2, 3 stated over here and mainly at the point 2 (Different way to calculate Volume adjustments of iTunes 10 versus iTune 8)?
    Did iTunes 10 stop to use iTunNorm field to write Check Sound info in mp3 files?
    If not, where iTunes 10 write Sound Check info  to the mp3 file and how can I read it?
    What can I do to avoid the discontinuity in Sound Check values due to the use of iTunes 8 and iTunes 10?
      Thanks in advance for your answers.

    Assuming that one has the 'Sound Check' feature
    selected in both iTunes and on the iPod, do the
    volume changes take place when obtaining the audio
    via the 'line-out' port on the dock connector?
    For the 3G and earlier iPod's, no, Line Out is not affected by Sound Check.
    For the 4G and later iPod's, yes, Line Out is affected by Sound Check.
    Do some iPods work and others do not? Specifically,
    will my iPod mini (2nd Gen) send the adjusted volume
    through the dock connector?
    I have only actually tested the 3G and 4G models, I cannot say what other models do with any kind of reliability. I would expect that the Mini's would have the Line Out to be soundchecked, but I cannot say that for certain.
    Any way of using another method to bring the song
    volumes into a more reasonable range?
    MP3Gain and AACGain. These modify the MP3/AAC files directly, so after using them, turn off Sound Check everywhere.

  • 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

Maybe you are looking for

  • Bridge CC constantly re-caching some folders (again).

    My new Bridge CC on Win 7 is repeatedly re-caching thumbnails on some folders. Not all folders, just some, and that is my mystery. I have been doing extensive tests and yet can't determine what it is about some folders or their contents that cause a

  • SWING GUI blockes when doing a DB action with microsoft nativ JDBC driver

    hi, in a bigger project i have the problem that if i perform a DB action the GUI is blocked. It does not matter if i do the DB Action in invokeLater or in a SwingWorker or in a new Thread if i call the DB Action and i move another window over my wind

  • Windows and Mac Pro w/ Apple RAID card

    It happened i have a need to run Windows natively on Mac Pro with Apple RAID card installed. I know there is no Windows driver for that card, but i had a hope to bypass RAID card via connecting of internal SATA drive directly to iPass(SSF-8087) conne

  • Is PROVIDE-ENDPROVIDE statement obsolete ? Can I use it from now onwards?

    Hello Techies.. I am working on HR ABAP, I have used PNP LDB extensively. I came to know from SAP help that Provide-Endprovide statement has been obsolete in newer version of SAP. I am aware that it is obsolete in ABAP OO context. But does that mean

  • Help needed please in restoring all contacts

    My wife has recently upgraded to the 4s. I synced her 3gs to her iTunes account and then synced her new 4s to the old 3gs info. Now her contacts have vanished completely from BOTH phones. Cannot find them on either phone nor on her laptop?? Help!!!!