Re: Adding applet events to i5Grids and i5Charts
Hi Maaz, You can use the following function to register for rowselection in i5Grid. function funcToBeCalledOnRowSelect() { alert("Row selected!!"); } var g = new...
View ArticleRe: How to pass tag name and value dynamically in the output of PCo...
Hi Suman, Currently there is no PCo mechanism to detect which tag has changed value and assign that tagname and value to a notification output. The Notification Trigger type = Always will fire the...
View ArticleRe: Using a webservice
Hi Minakshi, If you just need the WSDL of the transaction use the URL without the credentials. http://<url>:<portno>/XMII/WSDLGen/ProjectFolder/TRX/SampleTrxBut first, You would need to...
View ArticleUpload File To Oracle
Hello experts, From an MII web page, what is the easiest way to allow a user to browse to a file and then insert the file into a row in an Oracle database? The file browsing part is easy with the HTML...
View ArticleCreate XML file in network folder
Hello All, I am reading data from SQL tables and getting in the form of XML. I need to create a xml file with the same data and store the file in network folder.The name of the file should be with...
View ArticleTransaction Execution from URL
Hi Experts, Need Your help to know how i can get the transaction output in Plain Text form using the URL. Currently I am trying the following URL...
View ArticleRe: Create XML file in network folder
Hi Anshul , Try this: "\\\\drive\\folder\\" & datenow & ".XML"Concatenation operator in MII is '&'.Regards,Saumya Govil
View ArticleRe: Create XML file in network folder
Hi Saumya, This is generating with date 2014-04-10T09 but the file is not containing the XML extension and file size is of 0 KB. Please suggest. Regards.Anshul
View ArticleRe: Create XML file in network folder
Hi Anshul,dateformat(datenow, “MM-dd-yyyyThh:mm:ss”,“yyyyMMddhhmmss”)&".xml" will return a datetimestamp value for a file name which you can then substitute for TEST.xml. So your result right now...
View ArticleRe: Create XML file in network folder
Try it with removing the spaces between pieces of expression. For example, instead of & datenow &, it should be &datenow&. It also does not know how to interpret the special character...
View ArticleRe: Create XML file in network folder
Hi Mik, It's returning .XML file with data but no name of file. Regards.Anshul
View ArticleRe: Create XML file in network folder
Hi Anshul, Try this: "\\\\drive\\folder\\"& dateformat(datenow, "yyyy-MM-dd'T'HH:mm:ss","yyyyMMddHHmmss") & ".xml" Regards,Saumya Govil
View ArticleRe: Create XML file in network folder
Hi Saumya,Good catch. hh needs to be HH. I think there is a problem in the Help documentation where I copied it from. I don't recommend including spaces around the "&" symbols as a general rule....
View ArticleRe: res://ieframe.dll/acr_error.htm in IE 9 and IE 10
Hello Gregory, You need to upgrade your JRE 6 version to update 24 or above. Please check this:Why does Internet Explorer 9 crash after I visit a web page with Java applets? Regards,Rutika Bodas
View ArticleRe: res://ieframe.dll/acr_error.htm in IE 9 and IE 10
My coworker who is experiencing this problem tried right-clicking the icon for IE 10 and running as administrator. He found that this solved the problem for him. Rutika, your approach may be as good or...
View ArticleRe: Create XML file in network folder
If you're able to save a file outside the Netweaver webspace, you're security settings are NOT configured right .. I'd enable the local machine FTP server in windows and use the FTP action block to...
View ArticleRe: Strange switch error
Hi Fabio, Looks strange. I am keen to know how your transaction is called?Check if this could possibly be due to some property value not getting refreshed? Regards,Saumya Govil
View ArticleRe: Changing MII WSDL Structure
Hi Neha, Could you please explain a little more what for example would you like to change in the WSDL?Can changing it in the transaction itself help? Or maybe, you create another transaction to achieve...
View ArticleRe: Changing MII WSDL Structure
Hi Saumya Thank you for quick reply. when we expose MII trx as web service,WSDL format is like below:<?xml version="1.0" encoding="utf-8" standalone="no" ?> - <definitions...
View ArticleRe: Changing MII WSDL Structure
Hi Neha, Thanks for the WSDL details. I understand that your web service accepts one input parameter called WebServiceInput. Now what I an keen to know is that what kind of methods do you want to...
View Article