Synchronization text on MI client

When MI client synchronizes with server , Synchronization text appears . If the end users are not able to understand the meaning of sync text , I need to modify the sync text so that it would be user friendly .
How should I aproach this problem?  I need to know where on my MI application , the sync text messages are mapped with messages coming from server .
There is Sync log class which takes care of Sync messages . I can use it in my controller servlet to get the Sync messages and show them on MI client . But if I want to modify the sync messages , then I need to know where the messages are stored .
Can anybody tell me where on MI application the sync messages are stored ?
Thanks and Regards
Rucha Atre

Helloo Rucha,
  JAR file are just like zip files. If you have winrar installed on your local machine,
u can use winrar to unpack this jar file. From that unpacked contents, u can locate those file mentioned by Jo.U can edit these property files, since you can edit those property files using a text editor like notepad..Edit the messages accordingly and again replace the old property file with the modified one.Just pack the files again.
If u do not have winrar, then use the command prompt(if it is windows) to rename the .jar file to meg.zip.This .zip file can easily be unpacked using the winzip support available in the Windows XP.
<< checked there in MEg.jar file . This is a .Class file .>>
MEg.jar  file is not a .class file. its a .jar file which contains one or more class files. Jar file's contents could be a  number of class files or property files.
Regards,
Kishor Gopinathan

Similar Messages

  • Not able to create a text file in Client Machine using Forms 10g

    Hi - I'm mot able to create a text file in Client Machine using Forms 10g. I'm getting error when system executes the bolded line.(i.e. CLIENT_TEXT_IO.FOPEN). During run-time system is throwing "ORA-06508: PL/SQL: could not find program unit being called".
    I had attached webutil.pll in the form.
    Please advise me.
    DECLARE
    l_Temp CLIENT_TEXT_IO.FILE_TYPE;
    LC$Name Varchar2(100) ;
    LC$Fic Varchar2(100) ;
    LN$Lines Pls_integer := 0 ;
    LC$Line Varchar2(4000) ;
    Cursor C_CUR Is
    Select * From TEST_TEXTIO where rownum <= 50;
    BEGIN
    LC$Name := 'tmp_file.txt' ;
    LC$Fic := 'c:\temp\tmp_file.txt';
    Begin
    l_temp := CLIENT_TEXT_IO.FOPEN( 'C:\temp\tmp_file.txt', 'W');
    Exception
         when others then
         message( 'OPEN FILE ERROR ' || LC$Fic ||sqlerrm );
         display_error;
         raise form_trigger_failure;
    End ;
    -- Write the lines --
    For Cur In C_CUR Loop
         LC$Line := Cur.CODE || ' -> ' || Cur.COL1 || ',' || Cur.COL2 || ',' || Cur.Col3 ;
         CLIENT_TEXT_IO.PUT_LINE( LF$File, LC$Line ) ;      
         LN$Lines := C_CUR%ROWCOUNT ;
    End loop ;
    -- Close the file --
    CLIENT_TEXT_IO.FCLOSE( LF$File ) ;
    Exception
         When others Then
    message('err='||sqlerrm);message(' ');
    display_error;
    CLIENT_TEXT_IO.FCLOSE( LF$File ) ;      
         Raise ;
    END;
    Thanks.
    Arun

    Hi ,
    i have one Question though its not related to thos question if some could help me it will be really helpful,
    i have created one program to import and export excel to forms vice versa, if the form is attached with webutil its working fine am using ole2.but i have a new idea if i add this program in menu, it can be used for all the forms attched to that menu, i made program also, but problem am facing right now is if the form is not attched with webutil it will not work so is there possiblity to share my webutil from one form to another form ,so i will keep one form as a interface form in that webutil will be attched ,i can share that webutil to all other forms so that all the forms no need to attach webutil again
    if its possible means please suggest some ideas

  • Synchronize text to Powerpoint on iPod.

    Is there a way to synchronize text to a Powerpoint presentation on a iPod so that when the user clicks on a different chapter (enhanced podcast), the transcribed text begins at the same chapter. Right now the text starts at the beginning and the user has to scroll to find the chapter that matches the audio.
    This is with a Podcast created in GarageBand.

    Found some what I was looking for. Still looking for more.
    iPhoneAppProgrammingGuide.pdf Chapter 7 pages 143-162 at least for voice recording and playback.
    If someone has a pointer to translating text to speech, I haven't quite found that yet.
    -Carl

  • Write a text file on client

    I want to realise an applet which can write a text file on client. I use java 2 and an certified applet.
    I'm searching a script.
    If you have a solution or a script thank you.
    A+
    Ps: I'm french and sorry for my english

    FileOutputStream fos = new FileOutputStream(filname);
    DataOutputStream dos = new DataOutputStream(fos);
    try {
    dos.writeBytes("some string");
    } catch (Exception e) {
    out.println(e.toString());
    dos.close();
    fos.close();

  • Synchronize text files

    Hi,
    How can I download text files from Mobile Server to Oracle Lite Pocket PC Client?
    Thanks!!

    The first thing - did you grant right for the client user/group for your application?
    I use OLite-application approach quite extensively in our system and came to closing that the OLite tools for application management are useless. The simpliest and most error-proof method how to maintain applications in oracle lite is to create the application JAR manually and publish it using the web frontend. It's also better to maintain the application upgrades manually.
    Each application must have web.xml and setup.inf files in its JAR file. So the structure of MyApp.jar should look this:
    MyApp.jar
    /web.xml
    /setup.inf
    /files/myfile.exe
    The files directory isn't neccessary - you can place the files of your application anywhere in the JAR you want.
    The web.xml file defines only some basic attributes of the application + the definition for data synchronization - I strictly separate the data and application, so I have my web.xml files look quite simple like this:
    <?xml version = '1.0' encoding = 'WINDOWS-1250'?>
    <workspace>
    <application name="MyApp_PPC2003_XScale_CS">
    <app_info>
    <directory>/MyApp</directory>
    <virtualpath>/MyApp</virtualpath>
    <defaultpage/>
    <icon/>
    <description>application XY for PocketPC</description>
    <publication>DUMMY_PUBLICATION</publication>
    <platform>Oracle Lite PPC2003 XScale;CS</platform>
    <localroot>C:\olite_apps\MyApp\</localroot>
    </app_info>
    <app_db/>
    </application>
    </workspace>
    The setup.inf file defines what should exactly the installer on the client device do. It defines what files should be copied to the device, what values should be set in registry etc. You can find more info dealing with inf files in the documentation - Administration and Deployment Guide - Section 8.11, "Installation Configuration (INF) File". Very simple setup.inf file (just copy single file to the device) can look like this:
    <setup name="MyApp" version="1.0.0.0">
    <property>
    <location>\Program Files\MyApp</location>
    <patch>patch_1.0.0.0</patch>
    </property>
    <install>
    <action msg_i="$DIRECTORY_I$" msg_u="$DIRECTORY_U$">directory</action>
    <action msg_i="$FILE_I$" msg_u="$FILE_U$">file</action>
    <directory>
    <item>$APP_DIR$</item>
    </directory>
    <file>
    <item type='WINCE'>
    <src>files\myfile.exe</src>
    <des>$APP_DIR$\myfile.exe</des>
    </item>
    </file>
    </install>
    </setup>

  • Print text file to  client side printer

    Hi all,
    I have a character mode report which will print to a client side dot matrix printer in 6i. After converted to 10g, we cannot print to the client side printer (because we don't want to map so many print queue from the AS).
    So, I try to generate the report to a text file, then use webutil to transfer the txt file to the client PC, and then use Client_HOST to call the window PRINT command to print the text file to the client side printer.
    I have test this is successful, however, when I try to do the same thing to a report with Vietnam character, then it is not.
    The print request is sent to the printer, but the printer have no response.
    But that file can be print successfully if I open in Notepad and then print manually.
    I try to use window TYPE command and COPY command, but still have no luck.
    Can anyone give me some suggestions for this....
    Thanks!

    Qiu (guest) wrote:
    : In the browser/applet, the default "print" button can only
    print
    : screen to local printer, not the data I want. Use Report
    server,
    : I can't directly print to client side printer. Is there a way
    to
    : print data to local printer after press a button?
    Are u using Run_Product function in the when button pressed,
    then u can specify the format in which u want the output, option
    available are HTML and PDF, report server runs the report on the
    server and sends the output to the client machine. On the client
    machine u have to open the file and print it. I cannot print the
    report itself on the client machine.
    Try.
    Sailesh
    null

  • Creation of Text File on Client Machine

    I am using Oracle 11i EBS and I have a requirement to create a text file on the client's machine. The name of the file is suppose to be on a particular format (DDMMYY.TXT). It is an urgent requirement from our client and we need to go live in 3 days. Kindly helP me out.
    Regards

    Hi Hussain,
    I need to extract data from Oracle Applications table and then this data had to export in text file. User wants to do this through Oracle application front end. If you want more detail please let me know.
    Thanks

  • Download a text file to client machine

    Hello everyone,
    I'm trying to implement a report in EP6 SP2 version using Dynpage. I have it working perfectly, where in it displays the result in a Tree Format. But now the client wants a button, on clicking which it should download everything in a text file. I'm thinking of creating a text file and using FileOutputStream dumping the data into a text file. But I dont know how to open that text file or download it to the client machine ?
    Can someone helpme with this ?
    Thanks.

    Another thing you can do is create a table that you can insert the results of the UTL_FILE export. This table will basically track all of your UTL_file exports. You would just have to have three columns in the table. An ID, Filename, Directory. The ID would be your Primary Key, Filename would be the name of the file, and the Directory, would be directory in which the file is in. Then you can build a portal dynamic page that selects the results with a hyperlink. Then everything will work dynamically. Let me know if you have any questions.
    Thanks,
    Martin

  • Buttons just appearing as text for certain clients until enabled with onClick and enabled

    Would anyone know why buttons may disappear for some clients but not others.   I'm not finding a consistent pattern.  When I sign in locally or through vpn they display and behave properly, but when I sign in externally via Chrome or IE 11
    sometime the buttons only appear as text other disable buttons that are enabled on click.  I have a laptop with ie11 Win8 and desktop with ie11 win7.   The laptop displays the buttons proper behavior and the desktop does not.  
    anyone have any ideas.  Someone was working on the server recently and I'm wondering if any IIS setting may cause this problem.  Thanks for help!
    Buttons original state:
    <td><asp:Buttonrunat="server"Text="Print"ID="btnPrint"CssClass="tablerowheader"Enabled="False"/>
    <asp:Buttonrunat="server"Text="Submit"ID="btnSubmit"OnClick="btnSubmit_Click"
    CssClass="tablerowheader"Enabled="False"/></td>
    Buttons action:
    <asp:checkbox runat="server" id="chkSignature" onclick="EnableSubmitButton(this)" text="I Agree" Font-Bold+"true" checked="False">

    Solved.  The disabled status was being overwritten as null.

  • Can't edit text in a client's file... Wisdom appreciated!

    A client has sent me a file (PDF) that contains various elements: typography that's editable, illustrations that are editable, and some typography that does not seem to be editable in Illustrator.
    The apparently non-editable type shows up each character as an individual element, but not as outlines; the characters are in a bounding box but if I click View>outline, I don't see the character's outlines I just see an empty rectangle.
    The file came from an artworker and I don't know if he's got a different version of illustrator to me or what...
    Keen to sort this withough having to re-type out all of the detail...
    Any suggestions?!
    Thanks

    Likely a different version. Since you don't see the outlines OR the editable text in "Outline" mode, that tells me the text is embedded as a graphic or Symbol. Look in the Symbol panel and see if there are characters there.
    Can you "Jump into" an individual character by double-clicking?
    What do you see listed in the Layer panel for each element?

  • Synchronization error in win32 client  : java.io.IOException

    Hi,
       I am getting the following error while trying to download data into the client (win32 machine)
    20061226 23:12:40:474] E [MI/Sync ] Exception while synchronizing via http 
    com.sap.ip.me.api.services.HttpConnectionException: Exception while synchronizing (java.io.IOException: Server returned HTTP response code: 500 for URL: http://<server>:<port>/sap/bc/MJC/mi_host?sysid=dmi&client=100&~language=EN&ACKNOWLEDGE=X&) 
       Data is available in the MI middleware for the user and i see them in the O-waiting status using the transaction MEREP_MON on the ABAP side of MI. The user has all the neccessary authorizations(Including RFC) as well. I have also applied OSS note Note 1001292 - Synchronization failed and Device ID not generated. We are are MI 7.0 SPS10.
       Any help in identifying and resolving the issue would be appreciated.
    Thanks
    Narasimhan

    Hi Narasimhan
         From what i understand from this post is that the application data is not getting downloaded to the client from the server and the data is in O-waiting in the middleware.  One possibile reason for this is because of time out in the ABAP Sync Service.  There is a parameter named <i><b>icm/keep_alive_timeout</b></i>  which indicates the time between the last successful query and the termination of connection.  The default value for his parameter is 60 seconds.  Increasing this value to a higher value (preferably in minutes, depending on your landscape and amount of data) will definitely help. You can probably set the value of this parameter to around 10 mins.
       Go to transaction RZ11 and enter the above parameter name to display the current setting. Inorder to change the default value, please refer to note 824554 which describes this in detail
    Hope this helps
    Best Regards
    Sivakumar

  • Error while sending a text file to client as attachment

    I want to download a file on clicking a button. Here is my button code
    <input type="button" onClick="showdownloadwindow()" value="Download My file">
    The java script showdownloadwindow() should invoke a jsp that has code to construct the text file to be downloaded
    Here is the javascript function
    <script>
         function showdownloadwindow()
              var url = 'http://<%=request.getServerName()%>'+':'+<%=request.getServerPort()%>+'/downloadtextfile.jsp';     
              window.open(url,"","");
    </script>
    the downloadtextfile.jsp looks something like this
    <%
              response.setContentType("text/plain");
              response.setHeader("Content-disposition","attachment; filename=myfile.txt" );
              BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream());
              String temp="Put some text string for now";
              bos.write(temp.getBytes());
              bos.flush();
              bos.close();
              response.flushBuffer();
    %>
    i have two problems
    1. when the button "Download My file" is clicked a separate window is opened and then the save file dialog box appears. How can I change my code
    so that it only shows download window only ( not another browser window)
    2. myfile.txt contains some error in addition to the temp string
    Here is the error from myfile.txt
    <BR><H3>Original Exception: </H3>
    <B>Error Message: </B>SRVE0199E: OutputStream already obtained<BR>
    <B>Error Code: </B>500<BR>
    <B>Target Servlet: </B>/downloadtextfile.jsp<BR>
    <B>Error Stack: </B><BR>
    java.lang.IllegalStateException: SRVE0199E: OutputStream already obtained
    <BR>    
         at com.ibm.ws.webcontainer.srt.SRTServletResponse.getWriter&#40;SRTServletResponse.java:467&#41;
    <BR>    
         at org.apache.jasper.runtime.JspWriterImpl.initOut&#40;JspWriterImpl.java:170&#41;
    <BR>    
         at org.apache.jasper.runtime.JspWriterImpl.flushBuffer&#40;JspWriterImpl.java:163&#41;
    <BR>    
         at org.apache.jasper.runtime.PageContextImpl.release&#40;PageContextImpl.java:217&#41;
    <BR>    
         at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext&#40;JspFactoryImpl.java:149&#41;
    <BR>    
         at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext&#40;JspFactoryImpl.java:117&#41;
    <BR>    
         at com.ibm._jsp._downloadtextfile._jspService&#40;_downloadtextfile.java:93&#41;
    <BR>    
         at com.ibm.ws.jsp.runtime.HttpJspBase.service&#40;HttpJspBase.java:88&#41;
    <BR>    

    > Channel FILE_TLE_Sender_SalesOrder_CC: Empty document found - proceed without sending message.
    > Can someone tell me why this error is happening? 
    Maybe your source file is empty?
    This is exact what the error message says.

  • How to get plain text out of a multi line text field in Client Side Object Model?

    I am trying to read plain text from a MultiLineTextField in a List. This is how my code looks so far:
    //Get connection
    ClientContext context = new ClientContext("URL");
    Web site = context.Web;
    context.Load(site);
    context.ExecuteQuery();
    //Get list collection
    ListCollection lists = context.Web.Lists;
    context.Load(lists);
    context.ExecuteQuery();
    //Get specific list
    List menu = lists.GetByTitle("menu");
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXML = "<View/>";
    ListItemCollection dishes = menu.GetItems(camlQuery);
    context.Load(menu);
    context.Load(dishes);
    context.ExecuteQuery();
    //Iterate through all dishes
    foreach(ListItem dish in dishes)
    Console.WriteLine("Dish: {0}:", dish.FieldValues["Name"]);
    Console.WriteLine("Price: {0}:", dish.FieldValues["Price"]);
    //Here I get my problem
    Console.WriteLine("Ingredients: {0}:", dish.FieldValues["Ingredients"]);
    In the last line where I try to read the ingredients, I am reading from a MultiLineTextField which is set to RichText. It is also supposed to stay in RichText format, as hyperlinks are supposed to be added there. The problem is that the output not only contains
    div-tags but also some weird question marks I never added to the field. I am trying to solve this issue for a couple of days now but it seems that there are only two possible solutions.
    Set the field from RichText to PlainText, which is not an option in my case.
    Use Regex to remove the div-tags. Please do not suggest this option. Mainly because I do not consider this to be a clean solution for this issue. Plus, I tried it and it removes the tags but those weird question marks stay.
    There seems to be a third option I found
    here. It is also mentioned in this
    question and it seems to work. But I can not get it to work for me. This is how it looks:
    string myString = item.FieldMultiLineText[Field_Name];
    So I wonder what is item supposed to be here? I suppose it is not a
    ListItem because in my case it does not offer a FieldMultiLineText-property.
    A short, informative code snippet would be great if you decide to help me with this issue.
    Thanks in advance.
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

    Thank you for your reply. Unfortunately ListItem does not contain a definition for the Fields method.
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki
    You need to use the Microsoft.SharePoint class library and then use the sharepoint version of all the list objects you are using. See below.
    //Get connection
    ClientContext context = new ClientContext("URL");
    Web site = context.Web;
    context.Load(site);
    context.ExecuteQuery();
    //Get list collection
    SPListCollection lists = context.Web.Lists;
    context.Load(lists);
    context.ExecuteQuery();
    //Get specific list
    SPList menu = lists.GetByTitle("menu");
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXML = "<View/>";
    SPListItemCollection dishes = menu.GetItems(camlQuery);
    context.Load(menu);
    context.Load(dishes);
    context.ExecuteQuery();
    //Iterate through all dishes
    foreach(SPListItem dish in dishes)
    Console.WriteLine("Dish: {0}:", dish.FieldValues["Name"]);
    Console.WriteLine("Price: {0}:", dish.FieldValues["Price"]);
    //Here I get my problem
    SPFieldMultiLineText multilineField = dish.Fields.GetField("Ingredients") as SPFieldMultiLineText;
    string ingredients = "";
    if (multilineField != null)
    ingredients = multilineField.GetFieldValueAsText(dish["Ingredients"]);
    Console.WriteLine("Ingredients: {0}:", ingredients);}
    I hope this helps
    Alex

  • Synchronization HP t5335z Thin Client and USB GPS trip recorder

    Can't connect USB GPS trip recorder to my terminal server through HP t5335z Thin Client. Any suggestions?

    Hello Tony-CCS,
    Your system is one of our business units.
    Your question may be better answered on our business forums.
    Here is a link to the business forums.

  • [Windows 8.1 Desktop/Surface/Phone] connect client app to synchronization service(s)

    Hello Everybody!
    I have to do some research about:  what is the best way to set up my project, I am new to Azure.
    Situation:
    I need to develop a service(s) and client app(s) that are able to synchronize data with each other: files and database changes. the client app(s) must have the capability  to work online / offline,  offline: when there is no internet connection
    the data has to be stored local on the client device(s) and sync it later when there is active internet connection.
    Client Devices:
    Windows 8.1 (Windows 8.1 PC/Desktop)             
    Windows 8.1 RT (Windows 8.1 Surface tablet)
    Windows Phone 8.1 (Windows 8.1 Smart-phone)
    We prefer to create the clients as a C# Store App Application.
    Service:
    This might become , if technically possible and preferable, a Azure service who main task it is to manage the communication between the server and the clients
    Last days I spend my time doing research about how to get this done right.
    I found several interesting techniques, some of got all the features I needed, and some just a few, but most of them aren't supported on one or more devices.
    Microsoft Synchronization Framework
      Sync Toolkit WinRT / Phone
     Live SDK
    Microsoft Synchronization Framework - got all the features I need but is not supported on Win RT and Phone
    Sync Toolkit WinRT / Phone - Only Database Sync, is got bad documentation and unknown if supported on Desktop
    Live SDK - Libraries to integrate with OneDrive, Only File Sync
    Questions:
    Does Azure support all the devices?
    Is Azure supported in  C# Windows 8.1 Store Apps?
    Is Azure suited to host a service I described?
    Thanks in advanced!

    Hi JelteV,
    Thanks for posting!
    Base on my experience, if you wan to synchronize data with each clients. I suggest you could refer to this solution:
    1.Create a Sql Azure Database or storage account for storing your data 
    2.Create a WCF service (web role or work role ) for communication between Client and Database
    3.Set Up Table Structure (Important). I suggest you could add the deviceID and userID to distinguish the different data source. And add fields such as 'status', 'create time', 'latest update time' and so on.
    For example, you client insert a record into local database and set the 'status' as ‘stay update’ or '1'. When your client connect the database and synchronize the data to server, you could set the 'status' as 'updating' or '2' . After
    synchronization  data, you could change the status as 'updated' or '3'.
    According to this idea, the client CRUD -> change the local state code
    -> Sync data -> change the local state code ->
    synchronization is complete -> change the local state code .If the mobile device need operate the data on the service , it also need to change the server status code to be updated, to be deleted (deleted should
    be treated differently), the next time the client login server automatically checks the "state" as "pending action" and then synchronize the server to the client. So whether it is operating on a local table, or on the side of the direct
    operation of the service, you can ensure that the data is synchronized two tables.
    >>Does Azure support all the devices?
    >>Is Azure supported in  C# Windows 8.1 Store Apps?
    >>Is Azure suited to host a service I described?
    From your question, I think you could create a WCF service host on azure, and call WCF service form different devices. And this method is supported the different device and win8.1 store app.
    Also, please see this thread:
    http://stackoverflow.com/questions/14595738/net-data-synchronization-between-multiple-clients-and-a-central-server
    Hope this helps.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Mp4 Video file with a .lock extension

    Hi All, Need some help. I was recording a video on my 9360 when the battery died. After charging I could not find the video file. I connected to the computer and found the file, but it had a mp4.lock extension instead of the normal .mp4. I changed th

  • Itunes freezingg, itunes freezing, itunes freezing

    Hi, When I connect iTunes from my window xp laptop to my airport express it plays ok. However after a track finishes if I have not started playing another one within 10 seconds or so my iTunes freezes. Any ideas here would be much appreciated. Barron

  • Change the hover tool tip in the Skin

    Currently, the "Close" buttone in the Captivate skin says the word "Exit" when you hover over it. We changed the SWF so that the X icon is now a checkmark symbol because we are using the CLOSE button as an insurance policy to send the SCO calls back

  • ABAP Proxy URI

    Hello Everyone, Over the past couple of years I have been configuring the following in SM59 /sap/xi/engine?type=entry when going from a backend system to XI 3.0 and /sap/xi/engine?type=receiver when going from XI 3.0 to a backend system. My backend s

  • Customise Vintage Prints Slide show

    Hi, I've tried to make a slide show with the Aperture 3.4.5 and I liked the Vintage Prints theme. The only problem is, how can I decide if one or two pictures are displayed on a slide. I've tried to find an answer on the web, the only partial answer