Re: Using Crystal reports in MII
Hi Frank,Use this Google Custom Search and the topics 'MII "Crystal Reports" to find a wealth of information on the use of Crystal Reports with MII....
View ArticleRe: Pco monitoring issue.
Hi Raj, Question: But what condition should i check in MII transaction or which parameter from remote monitoring will tell me that PCo is down?Answer: The MII Transaction will called only when the PCo...
View ArticleRe: Best way to do it Upload and save file to SAP MII server
Try something like this: String str = new String(com.sap.lhcommon.util.Base64Util.encode(<YOUR_BYTE_ARRAY>), "UTF-8");
View ArticleRe: Best way to do it Upload and save file to SAP MII server
Hello Christian,Thanks for your time to reply.. i have already done the same, but still i get the garbled encoded string at TRX.i defined charset in my JSP as well . is it something related to...
View ArticleRe: Best way to do it Upload and save file to SAP MII server
I think its depreciated but doing this to the encoded string worked for me: str = java.net.URLEncoder.encode(str , "UTF-8");
View ArticleRe: Best way to do it Upload and save file to SAP MII server
Hi Christian, java.net.URLEncoder .do i need to import this package in MII environment? currently i am using 12.0
View ArticleRe: Best way to do it Upload and save file to SAP MII server
I dont think so. I don't have a 12.0 box to try but if the JRE is 1.3 you can't specify the encoding. Try it like this and see if it works:str = java.net.URLEncoder.encode(str);
View ArticleMII12.2 and Machine Interaction
Hello All, We are planning to implement SAP XMII 12.2 . I need some help on Machine automation. In our requirement , MII should be able to send the data (Input parameter for machine) and get the task...
View ArticleMII 14.0 web page popup warning
We have an irpt web page. Everytime we access that page a pop-up warning comes up: Java has discovered application components that could indicate a security concern: Name: sessionSetter. We want to...
View ArticleRe: MII 14.0 web page popup warning
HI Amr, You can use SAPUI5 library for creating the UI.Have a look at this blog:Making Engaging UI on SAP MII with SAPUI5 Also this is the SCN space for UI5:UI Development Toolkit for HTML5 Developer...
View ArticleRe: Best way to do it Upload and save file to SAP MII server
Hi Christian, this works perfect, Now I got the perfect working code . Thanks for your kind help and support!
View ArticleRe: Pco monitoring issue.
Hi Rohit, Thanks for your reply. Yes you are right. Trx does'nt trigger when either stop the agent or disable the dataserver connection. I have checked the trx execution by removing connection bw opc...
View ArticleERROR while getting BAPI list using JCo Action
Hi, We are using MII 14. I have created JCo connection and also configured connection alias. I am using this two in JCo interface action just to test whether the connection is working fine.But I am...
View ArticleRe: MII12.2 and Machine Interaction
Hi Anshul, You can achieve this by using Web service interface provided by equipment vendor. Steps (High Level)1.create a BLS in MII and make your business logic and use webservice action block to map...
View ArticleRe: Using Crystal reports in MII
Hi Frank, Have a look at this How to Guide:MII Crystal Reports How-to Guide It describes how to use data from MII 14.0 in Crystal Reports and then embed the report in a MII web(IRPT) page....
View ArticleRe: Using Crystal reports in MII
To expand on your question, the data comes from MII (as the datasource), is presented in a CR template which is then viewed in MII. My thought is that CR must execute when combining the data into the...
View ArticleRe: ERROR while getting BAPI list using JCo Action
I do not know the specific Role or Permission required. It might be in the help documentation,b ut the security folks should be able to figure it out from the error message. Someone else may know the...
View ArticleRe: Best way to do it Upload and save file to SAP MII server
Hi Christian, I have one issue :I want to send BASE64 string of more than 1KB file to MII transaction.from the above method mentioned, I get the correct BASE64 encoded String on Print lnBut same string...
View ArticleRe: Best way to do it Upload and save file to SAP MII server
You are probably hitting a limit on the url size. You may have to do a http post and pass the string in the document body or possibly call the transaction via the web service interface. Can you use the...
View ArticleRe: Best way to do it Upload and save file to SAP MII server
Hi Christian, i get error here : ContentManager.save("AppPhase2/WorkRequestDashboard/UploadedFiles/" + fileName , dataBytes , SessionHandler.getUser(request), false,null, false); i believe something...
View Article