To Retrive Folder List in SAP MII 12.0

Is there any option available in SAP MII 12.0 to retrieve List of Folders Available same as like Folder List Query in 11.5.

Hello,
try an XML Query with the following URL:
/XMII/Illuminator?Mode=TransactionFolderList&Server=XacuteConnector&Content-Type=text/xml
Filter the result by its "ParentPath" column to get a list of folders inside a provided parent folder. Make sure that you have increased the default query row count of 100 to get all folders on your system.
Hope this helps - good luck!
Matthias
Edited by: Michael Appleby on Jan 5, 2011 2:38 PM

Similar Messages

  • How to log in to SAP MII by using a custom xApp?

    Hi there,
    I'm developing a custom xApp with a context root of /mycustomapp
    I use some security contraints for it so the user has to log in to view the xApp.
    As I use some MII services the user has to be logged in to SAP MII, too. However, logging in to SAP NetWeaver doesn't automatically sign in the user to SAP MII, too.
    Is it possible at all?
    Accessing /mycustomapp leads to a login mask, but the user should be logged in to SAP MII, too.
    Regards
    Tobias

    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
      id="WebApp_ID" version="2.5">
      <display-name>mycustomapp</display-name>
      <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
      </welcome-file-list>
      <security-constraint>
      <display-name>Authentication of Users</display-name>
      <web-resource-collection>
      <web-resource-name>My Resource Name</web-resource-name>
      <url-pattern>/*</url-pattern>
      <http-method>GET</http-method>
      <http-method>POST</http-method>
      </web-resource-collection>
      <auth-constraint>
      <role-name>My_User_Role</role-name>
      </auth-constraint>
      </security-constraint>
      <login-config>
      <auth-method>FORM</auth-method>
      <realm-name>MyRealm</realm-name>
      </login-config>
      <security-role>
      <role-name>My_User_Role</role-name>
      </security-role>
    </web-app>
    web-j2ee-engine.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="web-j2ee-engine.xsd">
      <spec-version>2.4</spec-version>
      <security-role-map>
      <role-name>My_User_Role</role-name>
      <server-role-name>My_User_Role</server-role-name>
      </security-role-map>
    </web-j2ee-engine>
    Besides having the role My_User_Role my user also has the SAP_XMII_User role (and the corresponding developer roles).
    Regards
    Tobias My_User_Role

  • Reading File from a Desktop/ShareFolder in SAP MII 14.0

    Dear Experts,
    I have a situation where I want to read a CSV file from a source different than SAP MII server. Basic intention is to read a file from a desktop or some shared folder.
    My first doubt is- Is it really possible in SAP MII 14.0 version?
    But still I tried doing the same. Used Get File Text Loader action and text loader and provided file path from desktop which gives me an error. Here's the syntax I tried with mask as .csv:
    C://Users/XXX/Desktop
    C:\Users\XXX\Desktop
    C:/Users/XXX/Desktop
    Error I get is as follows:
    [ERROR] [Get_File_List_0]GetFileList: Access to the file path /C://Users/XXX/Desktop is not allowed
    Please advise, if it is really possible in MII 14.0 . If yes, Am I missing any steps?
    Regards

    Hi Kirti
    To read/load a file from your desktop you will need to execute some form of client side program like HTML or JS or applets. MII Transactions run on the MII server and would point to the Server's C:/ if the server has such a folder. Usually users do not have access to C drive of servers. Hence you see the error.
    You will need to write some program that executes on your desktop and pulls the file from your system and then posts to the server.
    Regards
    Partha

  • SAPUI5 in SAP MII 14.0 - error on running index.html

    Dear All,
    I am working on SAP MII 14.0.
    I am trying to run a sample example on SAPUI5 implementation in SAP MII 14.0 taken from link: http://scn.sap.com/community/manufacturing/mii/blog/2013/03/21/making-engaging-ui-on-sap-mii-with-sapui5
    But I got an Error when I tested index.html page !!
    Problem Description:
    My index.html code is :
    <!DOCTYPE HTML>  
    <html><head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <script src="/sapui5/resources/sap-ui-core.js" 
                          id="sap-ui-bootstrap“  type="text/javascript" 
                          data-sap-ui-libs="sap.ui.commons,sap.ui.table,sap.viz, sap.ui.ux3" 
                          data-sap-ui-theme="sap_goldreflection" > 
    </script>
      </head>  
          <body class="sapUiBody" role="application">  
          <div id='plantkpiDiv'></div>
    <script>  
      alert("1"); // this comes
      //register the application  
    jQuery.sap.registerModulePath("kpidashboard", "/XMII/CM/547555/SAPUI5/kpidashboard/webcontent"); 
      alert("2");   // this comes
    //instantiate the view
      var plantView = sap.ui.view({id:"idPlantView", viewName:"kpidashboard.PlantView", type:sap.ui.core.mvc.ViewType.JS});  
       //add the view to the div 
    alert("3"); // this does not come
      plantView.placeAt("plantkpiDiv");    
       </script> 
           </body>
    </html>  
    Folder Structure in Workbench is as follows:  /XMII/CM/547555/SAPUI5/kpidashboard/webcontent
    Inside webcontent I have created three files i.e. PlantView.controller.js , PlantView.view.js and index.html.
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)
    Timestamp: Tue, 11 Mar 2014 10:32:30 UTC
    Message: Unterminated string constant
    Line: 13
    Char: 260
    Code: 0
    URI: http://inpuneme01:50200/XMII/CM/547555/SAPUI5/kpidashboard/webcontent/index.html?JSESSIONID=G59R-clhqrId7QDW_a_VBOSXQqyvRAEC2ZsB_SAPqh1fgxWruoAQAKceTGLKZ-6J
    Message: failed to load 'kpidashboard.PlantView.view' from /XMII/CM/547555/SAPUI5/kpidashboard/webcontent/PlantView.view.js: SyntaxError: Unterminated string constant
    Line: 41
    Char: 11332
    Code: 0
    URI: http://inpuneme01:50200/sapui5/resources/sap-ui-core.js
    Thanks and Regards,
    Anshul Arora

    Hi Rohit,
    I checked and found that PCo Mgmt service was not started. SO I started it and now I am able to get the XML when I open PCO Mgmt URL in the browser of PCo Server
    But,
    When my agent is running, I don't get Browse button enabled in "Subscription Items" tab.
    When I stop the agent instance, I can see Browse button enabled in "Subscription Items" tab. But when I click on browse, it gives me following error:
    Not sure what's wrong?
    Soham

  • SAP MII Component Hierarchy : Customer Support System

    The SAP MII component hierachy in the SAP Customer Support System has been changed.  MII components will be listed under MFG (SAP Manufacturing) on November 22, 2008, instead of the previous XAP-MII component. 
    As of this date, all NEW messages can only be recorded under the new component identifiers.
    The new component hierarchy is as follows:
    MFG
    - MFG-MII   (SAP Manufacturing Integration and Intelligence)
      - MFG-MII-CON  (MII Content)
      - MFG-MII-CORE (MII Core Development)
          MFG-MII-CORE-BSC  (Business Suite Connectivity)
          MFG-MII-CORE-DTE  (MII Design Time Environment)
          MFG-MII-CORE-RTE  (MII Runtime Environment)
      - MFG-MII-SFC  (Shop Floor Connectivity)
          MFG-MII-SFC-PCO  (MII Manufacturing Data Services
          MFG-MII-SFC-UDS   (Universal Data Services)
    Edited by: Diana Hoppe on Dec 16, 2008 11:01 AM

    The SAP MII component hierachy in the SAP Customer Support System has been changed.  MII components will be listed under MFG (SAP Manufacturing) on November 22, 2008, instead of the previous XAP-MII component. 
    As of this date, all NEW messages can only be recorded under the new component identifiers.
    The new component hierarchy is as follows:
    MFG
    - MFG-MII   (SAP Manufacturing Integration and Intelligence)
      - MFG-MII-CON  (MII Content)
      - MFG-MII-CORE (MII Core Development)
          MFG-MII-CORE-BSC  (Business Suite Connectivity)
          MFG-MII-CORE-DTE  (MII Design Time Environment)
          MFG-MII-CORE-RTE  (MII Runtime Environment)
      - MFG-MII-SFC  (Shop Floor Connectivity)
          MFG-MII-SFC-PCO  (MII Manufacturing Data Services
          MFG-MII-SFC-UDS   (Universal Data Services)
    Edited by: Diana Hoppe on Dec 16, 2008 11:01 AM

  • Eclipse Plugin for SAP MII

    Good afternoon everyone.
    I am beginner and I've been reading about the eclipse plugin for SAP MII.
    And I was with some doubt someone could help me?
    1) This plugin is paid?
    2) With the plugion I can have all the features that the SAP MII Workbench?
    3) How can I get this plugin?
    Thank U.

    Hi Carlos,
    It should be available on your eclipse through this menu:
    I have tried to find it but it's not available. This could be due to many reasons but I think it could be that:
    a) I'm running Eclipse Luna so it might be possible that it is not listed because I'm using an unsupported version.
    b) I don't have the correct marketplace in my list of available marketplaces and I should add the correct one. This one doesn't look likely but I can't tell for sure.
    c) It has been discontinued and is no longer available for download in which case we won't be able to find it.
    If I find out what the problem was I'll let you know.
    Kind regards,
    Ibai

  • Sap mii file upload

    how to upload file using irpt page and store the file in sap mii web folder?

    hi,
    I make it working,
    This code is to get the Select file information and post to
    the transaction as input .The information is written in sap mii using the  transaction with  Write action.
    regards
    vinod

  • Error in /LogoPage.html  after deploying SAP MII 14.0 SP5

    Hi Experts,
    I am using SAP EHP1 for NW 7.3 SP07. Recently I upgraded from SAP MII 14.0 SP04 patch 5 to SP05 patch 2.
    After Upgrading I am getting many issues as below:
    1. When opening "http://hostname:port/XMII/" as file "/LogoPage.html" does not exist. When I checked the file its not exist in the server.
    2. When opening web pages I am getting java alert as "The application contains both signed and unsigned code"like that.
    I am using JRE v 1.6.0_21.
    Is that problem with the Patch that I deployed or any other issue.
    Please let me know?
    Regards
    G.Partheeban

    Hi Experts,
    I tried deploying with SUM,JSPM and telnet but no use. The file is not deployed properly. I guess this is the patch issue.
    I copied the Logopage and other file missing. Now the issue "1" is fixed but I am getting the below
    2. When opening web pages I am getting java alert as "The application contains both signed and unsigned code"like that.
    I am using JRE v 1.6.0_21.
    I also tried to revert back to SP04 using JSPM with the command "UpdateAll" and "UpdateSameand Lower" version. Can any one please suggest me how to revert back or how to solve the above errors?
    Regards
    G.Partheeban

  • SAP MII 14.0 unable to open workbench

    Hello Experts,
    I am facing issue while opening workbench .
    The exception thrown is as below :
    "com.sun.deploy.net.JARSigningException: Found unsigned entry in resource: http://[sever]:[port]/XMII/CMSLogicEditor/xalan.jar"
    I am using SAP MII 14.0 SP5 Patch 7 & Java 1.7 update 45.
    I have deployed pdf jar & fop jar yesterday but deleted back fop yesterday itself .
    In my temporary java resource files(control panel->Java->General ->Temporary Files -> View ) ,I see xalan & serializer jar updated date yesterday ,not sure if has anything to do with this.
    Please help on this issue.
    Thanks & Regards,
    Neha Kshirsagar

    Hi Swaroop ,
    We are currently using jre 1.6.31 or versions of 1.7.45.We have already tried few workarounds regarding this with enabling certain Java settings ,but nothing has worked till now.What I feel that this could be some java setting on server system issue or netweaver cache isn't cleared .
    Please fnd below screenshots as your request
    Thanks & Regards,
    Neha Kshirsagar

  • SAP MII 14.0 - Calling Transactions using SOAP Runner fails

    Hello All,
    We are calling transactions in SAP MII 14.0 from external apps using SOAP Runner and we are passing the login info in the payload. But we are getting the following error.
    We are passing the following in the payload.
    <xmii:LoginName>Username</xmii:LoginName>
    <xmii:LoginPassword>Password</xmii:LoginPassword>
    We are getting 401 unauthorized as the user name and password is not propagated to the MII.
    It works if we supply the info explicitly when we invoke the URL.
    Thanks,
    Kiran

    Hello Rajesh,
    I don't think that will be allowed. We usually pass the credentials in the payload and it has always worked for us in MII 12.1. But in MII 14.0 it does not seem to be working.
    Thanks,
    Kiran

  • Unable to Pass Parameters to I5Grid in SAP MII 14.0 SP05

    Hi Experts,
    There was a bug in SAP MII 14.0 SP04  where we were unable to pass parameters to I5Grid dynamically. I understand that this bug has been fixed in SP05 , so we applied following patches:
    Patches installed :
    a)      XMII05P_4-10008694.SCA
    b)      XMII05_0-10008694.SCA
    Note details mentioning this issue :
    2016927 - I5Grid does not take into account overridden parameters when updateGrid(true) is called
    But even after applying these patches, I am still not able to pass parameters to I5Grid dynamically from irpt page.  Does anyone have any insight to it? Is it working for any one of you?
    Regards,
    Kirti

    Hi Chirstian,
    I see this change working. I was doing a mistake while passing parameter to I5grid.
    What I was doing-
    Grid.getQueryObject().setParameter(1, linename);
    Correct Way:
    Grid.getQueryObject().setParameter("Param.1", linename);
    Thanks & Regards,
    Kirti

  • Generic Sort filter in SAP MII 14.0.5

    Hello,
    I am trying to use Generic Sort filter in SAP MII 14.0.5 and all i need to achieve is sort the XML nodes based on values. i am trying to give input as below XML and sort based on Value. but i am getting error. Input to Generic sort filter is mentioned below. i don't see much documentation for this block. any inputs will be greatly appreciated.
    Error:-
    "[Generic_Sort_Filter_0] Unknown property: <?xml version="1.0" encoding="UTF-8"?><Address>
    <Product>MAC_Address</Product>
    <value>78FF5700E419</value>
    <value>78FF5700E418</value>
    <value>78FF5700E420</value>
    </Address>"
    Input to Generic Sort Filter:-
    Source:-
    <Address>
    <Product>MAC_Address</Product>
    <value>78FF5700E419</value>
    <value>78FF5700E418</value>
    <value>78FF5700E420</value>
    </Address>
    Filter Colum1:- Local.OutputXML{/Address/value}
    -Adarsha.K.S

    I could be wrong but I seem to recall that Action only supported the MII xml document structure: /Rowsets/Rowset/Row etc.

  • SAP MII function issue in SAP MII 14.0

    Hi,
    Currently I was working on some content up gradation work in SAP MII 14.0 , but while working, I have got a strange think regarding SAP MII Functions. We have developed the same code in SAP MII 12.2 and faced the issue while migrating to 14.0. The issue is as follows,
    The function we have used in 12.2 is getvalue(name) as in the below screenshot,
    but while we have migrated to 14.0, then we saw the function has updated into getvalue(map, key) in 14.0
    I have no idea why parameter of the existing function got updated, but the problem is if someone want to migrate the existing code from 12.2 to 14.0 using such of function then he/she can get a "Conversion Exception" and at that time it will become bit hectic to identify the issue and change the logic to handle this in all the places.
    Regards,
    Suman

    Hello Suman,
       I guess it is a bug in MII 14.0. The help doc has the getValue(name) still. However, the newer function is not present in the same. I guess it was not documented. I guess, the getValue(map, name) is a newer function which somehow replaced the older one.
    I would suggest you to raise a support ticket. According to me, the getValue(name) and getValue(map, name), both should exist.
    Regards,
    Tufale Ashai.

  • How do I get multiple folders to appear again on an external drive after I accidentally did a 'remove' from my folder list?

    Help please!
    I accidentally did a right click remove of my folders on an external drive. The external drive shows in my folders list, but none of the folders that are still on it.
    The photos are still in the folders on the drive and in their folders.  I tried an import to make the folders appear, and LR sees all the photos as existing in the catalog, so it knows about the photos.  And LR does not re-import them.
    Just want to have the folders show up again in my folder list on the left.
    Anyone know how to fix this error I made? Thank you.

    For anyone interested, I had to add a folder to my external drive, then right click it and select SHOW PARENT FOLDER.  Thank you ADOBE SUPPORT, I am so relieved, feel stupid, but relieved.

  • Outlook 2010 on Exchange 2007 ~ Can no longer see Calendar in Folder List ~ Only viewable by right-clicking favorite icon and selecting 'Open in New Window'

    Office 2010, Windows 7 64 bit, BB sync, everything has been fine since forever. All of a sudden between Saturday and today, *poof* I can't get the calendar view.
    I have tried the switches, /resetfolder and all the rest, repair install Office, etc., no go.
    I can log into my OWA view and calendar shows up there, but on the local system, when you clicl on Calendar, it shows My Calendars at the top, but there is no calendar. The only way to view it is to right click Calendar and choose 'Open in New Window'.
    All my data is there, can add to it and all, but it is missing from the folder list, thereby making it very difficult to use.
    I also created a new profile, connected to Exchange ONLY and it still will only show the calendar if you select 'Open in New Window Only'. I can post a screen shot if this allows.
    Thanks in advance.
    Brian

     
    Hi ,
    I suggest you refer to the following steps to recreate the Calendar folder.
    1. Switch Outlook to Online mode.
    2. Start MFCMAPI and create a backup of the Calendar items
    a. Open the Calendar folder by double clicking it.
    b. Select all items (simple ctrl+a).
    c. Copy all items into an empty folder.
    d. Additionally you can create a backup using a PST file if you wish.
    3. Delete the Calendar folder using MFCMAPI.
    4. Close Outlook.
    5.Recreate Windows Profile and Outlook Profile.
    6. Start Outlook with “/resetfolders” switch, this will recreate the default Calendar folder.
    7. Try to set permissions on the Calendar folder to see how it works with a fresh and empty folder.
    8. Copy/Move the items back into the Calendar.
    By the way, I don’t understand “the local system” what you said, it can view My calendars at top in Outlook or OWA ?
    And it can’t view calendar list or the calendar content under My Calendar?
    Wendy Liu
    TechNet Community Support

Maybe you are looking for

  • Setting Payment terms in PO linking to base line date for payables.

    Hi can some help me by giving me simple  steps to create  the payment terms which will be captured in PO and payment is made with reference to baseline date. Example : 1. payment in 15 days from the date of GRN posting date. while doing MIRO, the bas

  • Method needed to identify Contacts that are not valid from the Comp Screen

    Problem My Company has 65k contacts in the system, we do not delete contacts that are no longer at company, as when we buy data our data in some cases will be more up to date that the third party data available on the market. This then means when a u

  • How to show muliti language data correctly using webi reports

    Hi , Can you please suggest me how to show multi language data correctly in webi reports . Do we need to install any lang pack in both server and client machine ? Thanks & Regards Venkat

  • Truncated error messages

    I'm using Firefox 10.0 with Yahoo edition 1.8. I'm getting an error message saying "this message is truncated" in 3 of 4 Yahoo recipients (not in 1 other Yahoo, nor in 1 non-Yahoo). The message body contains only a copy/pasted type-only image that co

  • Dynamic url access in weblogic

    Hi All, I am currently working on moving my application from oc4j to weblogic92. On oc4j I keep all my xsd file in Apache/htdocs as a best practice and whenver I add a newly created xsd to this folder it can be accessable on the fly. Now, on weblogic