Oracle Telesales Help Urgent Urgent

Hi All,
My current client is about to go live in 4 weeks and are miles off with there Oracle telesales module.
My client has just completed there first testing phase and all was not OK after.
Can any one help?
if so please contact me at [email protected] or call me on 1 314 255 1314
regards Jody.

Hi Jody,
Please send details of what the issue is at [email protected]
Thanks,
Asra.

Similar Messages

  • Need some quick help - fairly urgent!

    I've just taken over a new job and have been the task of finishing the new brochure for Christmas, there's not a lot to do but a lot of the measurements need changing
    This is the layout I'm dealing with..
    All the boxes have been made in Illustrator
    The text has been done in In'Design and it seems every piece of text is it's own box if that makes sense
    My question is, if I select the whole specification box - copy, paste it into Adobe Illustrator and change the text there, then paste the edited box back into In-Design, will I lose quality when it gets printed?
    I'm worried if I do it this way it may come out blurred? Or am I just worrying about nothing?

    I couldn't find an Illy file in the end and have ended up creating tables in ID to replicate what was already there!
    Didn't take very long and I guess if I didn't do it now, I'd come across the same situation next time!
    Date: Wed, 30 Nov 2011 08:48:07 -0700
    From: [email protected]
    To: [email protected]
    Subject: Need some quick help - fairly urgent!
        Re: Need some quick help - fairly urgent!
        created by Peter Spier in InDesign - View the full discussion
    There certainly are viable "quick fix" solutions proposed here, and if the dealine is looming and this file never needs to be touched again I might be tempted, but they are only postponing the pain for a file that needs periodic updates, and I wouldn't waste effort on them, myself, when that time can be put toward a proper rebuild now if that's the ultimate goal.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4054725#4054725
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4054725#4054725. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in InDesign by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Unable to get Rmi program working. Help plz - urgent.

    Any help to get this problem resolved would be of help.
    I get the error as below:
    D:\test\nt>java Client
    Server
    Client exception: Error marshaling transport header; nested exception is:
    javax.net.ssl.SSLException: untrusted server cert chain
    java.rmi.MarshalException: Error marshaling transport header; nested exception is:
    javax.net.ssl.SSLException: untrusted server cert chain
    javax.net.ssl.SSLException: untrusted server cert chain
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write([DashoPro-V1.2-120198])
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:76)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:134)
    at java.io.DataOutputStream.flush(DataOutputStream.java:108)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:207)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:178)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:87)
    at Server_Stub.passArgs(Unknown Source)
    at Client.main(Client.java, Compiled Code)
    the server was invokde as:
    D:\test\nt>java -Djava.rmi.server.codebase="file:/d:/test" -Djava.policy=d:/test/policy Server a b c
    Server bound in registry
    where policy had allpermission
    The server program is given as below:
    import java.net.InetAddress;
    import java.rmi.Naming;
    import java.rmi.registry.LocateRegistry;
    import java.rmi.registry.Registry;
    import java.rmi.RemoteException;
    import java.rmi.RMISecurityManager;
    import java.rmi.server.UnicastRemoteObject;
    public class Server extends UnicastRemoteObject implements Message
         private static String[] args;
         public Server() throws RemoteException
              // super();     
              super(0, new RMISSLClientSocketFactory(),
                   new RMISSLServerSocketFactory());
         public String[] passArgs() {
              System.out.println(args[0]);
              System.out.println(args[1]);
              System.out.println(args[2]);
              System.out.println(args.length);
              System.out.println();
              return args;
         public static void main(String a[])
              // Create and install a security manager
              if (System.getSecurityManager() == null)
                   System.setSecurityManager(new RMISecurityManager());
              args=a;
              try
                   Server obj = new Server();
                   // Bind this object instance to the name "Server"
                   Registry r = LocateRegistry.createRegistry(4646);
                   r.rebind("Server", obj);
                   System.out.println("Server bound in registry");
              } catch (Exception e) {
                   System.out.println("Server err: " + e.getMessage());
                   e.printStackTrace();
    The RMISSLServerSocketFactory class is as below:
    import java.io.*;
    import java.net.*;
    import java.rmi.server.*;
    import javax.net.ssl.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    import javax.security.cert.X509Certificate;
    import com.sun.net.ssl.*;
    public class RMISSLServerSocketFactory implements RMIServerSocketFactory, Serializable
         public ServerSocket createServerSocket(int port)
              throws IOException     
              SSLServerSocketFactory ssf = null;
              try {
                   // set up key manager to do server authentication
                   SSLContext ctx;
                   KeyManagerFactory kmf;
                   KeyStore ks;
                   char[] passphrase = "passphrase".toCharArray();
                   ctx = SSLContext.getInstance("TLS");
                   kmf = KeyManagerFactory.getInstance("SunX509");
                   ks = KeyStore.getInstance("JKS");
                   ks.load(new FileInputStream("testkeys"), passphrase);
                   kmf.init(ks, passphrase);
                   ctx.init(kmf.getKeyManagers(), null, null);
                   ssf = ctx.getServerSocketFactory();
              } catch (Exception e)
                   e.printStackTrace();
                   return ssf.createServerSocket(port);
    The RMIClientSocketFactory is as below:
    import java.io.*;
    import java.net.*;
    import java.rmi.server.*;
    import javax.net.ssl.*;
    public class RMISSLClientSocketFactory     implements RMIClientSocketFactory, Serializable
         public Socket createSocket(String host, int port)
              throws IOException
              SSLSocketFactory factory =(SSLSocketFactory)SSLSocketFactory.getDefault();
              SSLSocket socket = (SSLSocket)factory.createSocket(host, port);
                   return socket;
    And finally the client program is :
    import java.net.InetAddress;
    import java.rmi.registry.LocateRegistry;
    import java.rmi.registry.Registry;
    import java.rmi.RemoteException;
    public class Client
         public static void main(String args[])
              try
                   // "obj" is the identifier that we'll use to refer
                   // to the remote object that implements the "Hello"
                   // interface
                   Message obj = null;
                   Registry r = LocateRegistry.getRegistry(InetAddress.getLocalHost().getHostName(),4646);
                   obj = (Message)r.lookup("Server");
                   String[] s = r.list();
                   for(int i = 0; i < s.length; i++)
                        System.out.println(s);
                   String[] arg = null;
                   System.out.println(obj.passArgs());
                   arg = obj.passArgs();
                   System.out.println(arg[0]+"\n"+arg[1]+"\n"+arg[2]+"\n");
              } catch (Exception e) {
                   System.out.println("Client exception: " + e.getMessage());
                   e.printStackTrace();
    The Message interface has the code:
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface Message extends Remote
         String[] passArgs() throws RemoteException;
    Plz. help. Urgent.
    Regards,
    LioneL

    hi Lionel,
    have u got the problem solved ?
    actually i need ur help regarding RMI - SSL
    do u have RMI - SSL prototype or sample codings,
    i want to know how to implement SSL in RMI
    looking for ur reply
    -shafeeq

  • Please i need help very urgent !!! after deleting my exchange account because the company changed the password , I lost 150 200 contacts and i need to get them back very soon ! please help

    Please i need help very urgent !!! after deleting my exchange account because the company changed the password , I lost 150 200 contacts and i need to get them back very soon !  i never backed up on itunes ..please help

    No. The contacts are "owned" by the Exchange server.
    The Exchange server is owned by the company.
    Everything on the Exchange server is owned by the company.
    If you quit or were terminated, and your access to the system has been revoked, then there is nothing you and do at this point. Once you deleted the account from your phone, all of the associated data was deleted.
    NEVER store personal information on company systems.

  • Lsmw issue plz help its urgent

    Hi Experts ,
    i need to create a LSMW using batch input .
    but the requirement is on the basis of conditions my recording need to be changed .
    dat means
    3127POL09 3127POL09-1 CTR 3127-1003E 100 FUL
    3127POL09 3127POL09-2 WBS 3127POL01 60 FUL
    for ctr i ill have to post data in screen number 200
    and for wbs i ill have to post data in screen number 400 .
    can we put some conditions in recording in lsmw ?
    i no we can create multiple recording but how can we use them to fullfill my requirement .
    plz help its urgent
    thanx in advance

    Hi,
    Within LSMW, there is an option to write our own code wherein this code can be incorporated.
    This is in the Field Mapping Option...
    Just go to the Menu Extras->Layout
    and click on the check box Form Routines
    Global Data.
    Here you can define Global Variables and also perform your ABAP Coding.
    Regards,
    Balaji.

  • Javafx deployment in html page(please help me urgent)

    i used the following method to deploy javafx in an html page.
    javafx file is:
    package hello;
    import javafx.scene.*;
    import javafx.stage.Stage;
    import javafx.scene.text.Text;
    import javafx.scene.text.Font;
    import javafx.scene.paint.Color;
    import javafx.scene.effect.DropShadow;
    Stage {
        title: "My Applet"
        width: 250
        height: 80
        scene: Scene {
            content: Text {
                x: 10  y: 30
                font: Font {
                     size: 24 }
                fill: Color.BLUE
                effect: DropShadow{ offsetX: 3 offsetY: 3}
                content: "VAARTA"
    I save the file as HelloApplet in a 'hello' named folder in my D:
    after that i downloaded from internet html code as
    <html>
        <head>
            <title>Wiki</title>
        </head>
        <body>
            <h1>Wiki</h1>
            <script src="dtfx.js"></script>
            <script>
                javafx(
                    archive: "HelloApplet.jar",
                    draggable: true,
                    width: 150,
                    height: 100,
                    code: "hello.HelloApplet",
                    name: "Wiki"
            </script>
        </body>
    </html>now i typed in DOS prompt as javafxc.exe HelloApplet.fx & i got the class files .
    _The main problem which is coming is how to create HelloApplet.jar file which is used in the html page without which the html page is not displaying the javafx script. Please help me urgently i am in the middle of my project & stuck up due to JAVAFX                   i am using WIndowsXP & javafx-sdk1.0 when i am typing jar command inside hello package it is displaying invalid command.in DOS prompt. If there is any other method to deploy javafx in html page then specify it also.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Crossposted: [http://forums.sun.com/thread.jspa?threadID=5323288].
    Please don't crosspost without notifying others. It is rude in terms of netiquette. Stick to one topic.

  • How to enable java script in my Firefox browser? help its urgent.

    how to enable java script in my Firefox browser? help its urgent.

    go to '''about:config''' and search for '''javascript.enabled''' change its value to '''true'''
    *[http://kb.mozillazine.org/About:config about:config]

  • Migration to an asm instance. plz help me urgent

    RMAN> BACKUP AS COPY DATABASE FORMAT '+DGROUP1';
    Starting backup at 20-AUG-07
    Starting implicit crosscheck backup at 20-AUG-07
    using target database controlfile instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=328 devtype=DISK
    ORA-19501: read error on file "+DGROUP1/sravan/backupset/2007_08_03/nnsnf0_ora_asm_migration_0.260.1", blockno 1 (blocksize=512)
    ORA-17507: I/O request size is not a multiple of logical block size
    Crosschecked 7 objects
    Finished implicit crosscheck backup at 20-AUG-07
    Starting implicit crosscheck copy at 20-AUG-07
    using channel ORA_DISK_1
    ORA-19587: error occurred reading 8192 bytes at block number 1
    ORA-17507: I/O request size 8192 is not a multiple of logical block size
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 08/20/2007 16:53:21
    ORA-19587: error occurred reading 8192 bytes at block number 1
    ORA-17507: I/O request size 8192 is not a multiple of logical block size

    > plz help me urgent
    Adjective
        * S: (adj) pressing, urgent (compelling immediate action) "too pressing to permit of longer delay";So you are saying that your problem is a lot more important than any other person's problem on this forum?
    And you're demanding a quick response from professionals that give you and others assistance here in their free time without getting a single cent compensation?
    Don't you think that this "it is urgent!" statement severely lacks manners?

  • Help! Urgent!!!  tree in web page

    I am new in Swing. I need to implement a tree in web page. The tree should appear in the left of a frame and the corresponding content should be displayed in the right of the frame.
    Could anyone give me an example? I need this help very urgently. Thank you very much in advance.
    my email addr:
    [email protected]

    this is mtmcode.js
    i try to send u another part of the code
    // Morten's JavaScript Tree Menu
    // version 2.3.0, dated 2001-04-30
    // http://www.treemenu.com/
    // Copyright (c) 2001, Morten Wang & contributors
    // All rights reserved.
    // This software is released under the BSD License which should accompany
    // it in the file "COPYING". If you do not have this file you can access
    // the license through the WWW at http://www.treemenu.com/license.txt
    * Define the MenuItem object. *
    function MTMenuItem(text, url, target, tooltip, icon)
    this.text = text;
    this.url = url ? url : "";
    this.target = target ? target : "";
    this.tooltip = tooltip;
    this.icon = icon ? icon : "";
    this.number = MTMNumber++;
    this.submenu = null;
    this.expanded = false;
    this.MTMakeSubmenu = MTMakeSubmenu;
    function MTMakeSubmenu(menu, isExpanded, collapseIcon, expandIcon)
    this.submenu = menu;
    this.expanded = isExpanded;
    this.collapseIcon = collapseIcon ? collapseIcon : "menu_folder_closed.gif";
    this.expandIcon = expandIcon ? expandIcon : "menu_folder_open.gif";
    * Define the Menu object. *
    function MTMenu()
    this.items = new Array();
    this.MTMAddItem = MTMAddItem;
    function MTMAddItem(item)
    this.items[this.items.length] = item;
    * Define the icon list, addIcon function and MTMIcon item. *
    function IconList()
    this.items = new Array();
    this.addIcon = addIcon;
    function addIcon(item)
    this.items[this.items.length] = item;
    function MTMIcon(iconfile, match, type)
    this.file = iconfile;
    this.match = match;
    this.type = type;
    * The MTMBrowser object. A custom "user agent" that'll define the browser *
    * seen from the menu's point of view. *
    function MTMBrowser()
    this.cookieEnabled = false;
    this.preHREF = "";
    this.MTMable = false;
    this.cssEnabled = true;
    this.browserType = "other";
    if(navigator.appName == "Netscape" && navigator.userAgent.indexOf("WebTV") == -1)
    if(parseInt(navigator.appVersion) == 3 && (navigator.userAgent.indexOf("Opera") == -1))
    this.MTMable = true;
    this.browserType = "NN3";
    this.cssEnabled = false;
              else if(parseInt(navigator.appVersion) >= 4)
    this.MTMable = true;
    this.browserType = parseInt(navigator.appVersion) == 4 ? "NN4" : "NN5";
              else if(navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4)
    this.MTMable = true;
    this.browserType = "IE4";
              else if(navigator.appName == "Opera" && parseInt(navigator.appVersion) >= 5)
    this.MTMable = true;
    this.browserType = "O5";
    if(this.browserType != "NN4")
    this.preHREF = location.href.substring(0, location.href.lastIndexOf("/") +1);
    * Global variables. Not to be altered unless you know what you're doing. *
    * User-configurable options are at the end of this document. *
    var MTMLoaded = false;
    var MTMLevel;
    var MTMBar = new Array();
    var MTMIndices = new Array();
    var MTMUA = new MTMBrowser();
    var MTMClickedItem = false;
    var MTMExpansion = false;
    var MTMNumber = 1;
    var MTMTrackedItem = false;
    var MTMTrack = false;
    var MTMFrameNames;
    var MTMFirstRun = true;
    var MTMCurrentTime = 0; // for checking timeout.
    var MTMUpdating = false;
    var MTMWinSize, MTMyval, MTMxval;
    var MTMOutputString = "";
    var MTMCookieString = "";
    var MTMCookieCharNum = 0; // cookieString.charAt()-number
    * Code that picks up frame names of frames in the parent frameset. *
    function MTMgetFrames()
    if(MTMUA.MTMable)
    MTMFrameNames = new Array();
    for(i = 0; i < parent.frames.length; i++)
    MTMFrameNames[i] = parent.frames.name;
    * Functions to draw the menu. *
    function MTMSubAction(SubItem)
    SubItem.expanded = (SubItem.expanded) ? false : true;
    if(SubItem.expanded)
    MTMExpansion = true;
    MTMClickedItem = SubItem.number;
    if(MTMTrackedItem && MTMTrackedItem != SubItem.number)
    MTMTrackedItem = false;
    if(MTMEmulateWE || SubItem.url == "" || !SubItem.expanded)
    setTimeout("MTMDisplayMenu()", 10);
    return false;
              else
    return true;
    function MTMStartMenu()
    MTMLoaded = true;
    if(MTMFirstRun)
    MTMCurrentTime++;
    if(MTMCurrentTime == MTMTimeOut)
                        { // call MTMDisplayMenu
    setTimeout("MTMDisplayMenu()",10);
                        else
    setTimeout("MTMStartMenu()",100);
    function MTMDisplayMenu()
    if(MTMUA.MTMable && !MTMUpdating)
    MTMUpdating = true;
    if(MTMFirstRun)
    MTMgetFrames();
    if(MTMUseCookies)
                                  MTMFetchCookie();
    if(MTMTrack)
                        MTMTrackedItem = MTMTrackExpand(menu);
    if(MTMExpansion && MTMSubsAutoClose)
                        MTMCloseSubs(menu);
    MTMLevel = 0;
    MTMDoc = parent.frames[MTMenuFrame].document
    MTMDoc.open("text/html", "replace");
    MTMOutputString = '<html><head>\n';
    if(MTMLinkedSS)
    MTMOutputString += '<link rel="stylesheet" type="text/css" href="' + MTMUA.preHREF + MTMSSHREF + '">\n';
                        else if(MTMUA.cssEnabled)
    MTMOutputString += '<style type="text/css">\nbody {\n\tcolor:' + MTMTextColor + ';\n}\n';
    MTMOutputString += '#root {\n\tcolor:' + MTMRootColor + ';\n\tbackground:transparent;\n\tfont-family:' + MTMRootFont + ';\n\tfont-size:' + MTMRootCSSize + ';\n}\n';
    MTMOutputString += 'a {\n\tfont-family:' + MTMenuFont + ';\n\tfont-size:' + MTMenuCSSize + ';\n\ttext-decoration:none;\n\tcolor:' + MTMLinkColor + ';\n\tbackground:transparent;\n}\n';
    MTMOutputString += MTMakeA('pseudo', 'hover', MTMAhoverColor);
    MTMOutputString += MTMakeA('class', 'tracked', MTMTrackColor);
    MTMOutputString += MTMakeA('class', 'subexpanded', MTMSubExpandColor);
    MTMOutputString += MTMakeA('class', 'subclosed', MTMSubClosedColor) + MTMExtraCSS + '\n<\/style>\n';
    MTMOutputString += '<\/head>\n<body ';
    if(MTMBackground != "")
    MTMOutputString += 'background="' + MTMUA.preHREF + MTMenuImageDirectory + MTMBackground + '" ';
    MTMOutputString += 'bgcolor="' + MTMBGColor + '" text="' + MTMTextColor + '" link="' + MTMLinkColor + '" vlink="' + MTMLinkColor + '" alink="' + MTMLinkColor + '">\n';
    MTMOutputString += MTMHeader + '\n<table border="0" cellpadding="0" cellspacing="0" width="' + MTMTableWidth + '">\n';
    MTMOutputString += '<tr valign="top"><td nowrap><img src="' + MTMUA.preHREF + MTMenuImageDirectory + MTMRootIcon + '" align="left" border="0" vspace="0" hspace="0">';
    if(MTMUA.cssEnabled)
    MTMOutputString += '<span id="root"> ' + MTMenuText + '<\/span>';
                        else
    MTMOutputString += '<font size="' + MTMRootFontSize + '" face="' + MTMRootFont + '" color="' + MTMRootColor + '">' + MTMenuText + '<\/font>';
    MTMDoc.writeln(MTMOutputString + '</td></tr>');
    MTMListItems(menu);
    MTMDoc.writeln('<\/table>\n' + MTMFooter + '\n<\/body>\n<\/html>');
    MTMDoc.close();
    if(MTMUA.browserType == "NN5")
    parent.frames[MTMenuFrame].scrollTo(0, 0);
    if((MTMClickedItem || MTMTrackedItem) && MTMUA.browserType != "NN3" && !MTMFirstRun)
    MTMItemName = "sub" + (MTMClickedItem ? MTMClickedItem : MTMTrackedItem);
    if(document.layers && parent.frames[MTMenuFrame].scrollbars)
    MTMyval = parent.frames[MTMenuFrame].document.anchors[MTMItemName].y;
    MTMWinSize = parent.frames[MTMenuFrame].innerHeight;
                                  else if(MTMUA.browserType != "O5")
    if(MTMUA.browserType == "NN5")
    parent.frames[MTMenuFrame].document.all = parent.frames[MTMenuFrame].document.getElementsByTagName("*");
    MTMyval = MTMGetYPos(parent.frames[MTMenuFrame].document.all[MTMItemName]);
    MTMWinSize = MTMUA.browserType == "NN5" ? parent.frames[MTMenuFrame].innerHeight : parent.frames[MTMenuFrame].document.body.offsetHeight;
    if(MTMyval > (MTMWinSize - 60))
    parent.frames[MTMenuFrame].scrollBy(0, parseInt(MTMyval - (MTMWinSize * 1/3)));
    if(!MTMFirstRun && MTMUA.cookieEnabled)
    if(MTMCookieString != "")
    setCookie(MTMCookieName, MTMCookieString.substring(0,4000), MTMCookieDays);
                                  else
    setCookie(MTMCookieName, "", -1);
    MTMFirstRun = false;
    MTMClickedItem = false;
    MTMExpansion = false;
    MTMTrack = false;
    MTMCookieString = "";
    MTMUpdating = false;
    function MTMListItems(menu)
    var i, isLast;
    for (i = 0; i < menu.items.length; i++)
    MTMIndices[MTMLevel] = i;
    isLast = (i == menu.items.length -1);
    MTMDisplayItem(menu.items[i], isLast);
    if(menu.items[i].submenu && menu.items[i].expanded)
    MTMBar[MTMLevel] = (isLast) ? false : true;
    MTMLevel++;
    MTMListItems(menu.items[i].submenu);
    MTMLevel--;
                        else
    MTMBar[MTMLevel] = false;
    function MTMDisplayItem(item, last)
    var i, img;
    var MTMfrm = "parent.frames['code']";
    var MTMref = '.menu.items[' + MTMIndices[0] + ']';
    if(MTMLevel > 0)
    for(i = 1; i <= MTMLevel; i++)
    MTMref += ".submenu.items[" + MTMIndices[i] + "]";
    if(MTMUA.cookieEnabled)
    if(MTMFirstRun && MTMCookieString != "")
    item.expanded = (MTMCookieString.charAt(MTMCookieCharNum++) == "1") ? true : false;
                        else
    MTMCookieString += (item.expanded) ? "1" : "0";
    if(item.submenu)
    var usePlusMinus = false;
    if(MTMSubsGetPlus.toLowerCase() == "always" || MTMEmulateWE)
    usePlusMinus = true;
                        else if(MTMSubsGetPlus.toLowerCase() == "submenu")
    for (i = 0; i < item.submenu.items.length; i++)
    if (item.submenu.items[i].submenu)
    usePlusMinus = true; break;
    var MTMClickCmd = "return " + MTMfrm + ".MTMSubAction(" + MTMfrm + MTMref + ");";
    var MTMouseOverCmd = "parent.status='" + (item.expanded ? "Collapse " : "Expand ") + (item.text.indexOf("'") != -1 ? MTMEscapeQuotes(item.text) : item.text) + "';return true;";
    var MTMouseOutCmd = "parent.status=parent.defaultStatus;return true;";
    MTMOutputString = '<tr valign="top"><td nowrap>';
    if(MTMLevel > 0)
    for (i = 0; i < MTMLevel; i++)
    MTMOutputString += (MTMBar[i]) ? MTMakeImage("menu_bar.gif") : MTMakeImage("menu_pixel.gif");
    if(item.submenu && usePlusMinus)
    if(item.url == "")
    MTMOutputString += MTMakeLink(item, true, true, true, MTMClickCmd, MTMouseOverCmd, MTMouseOutCmd);
                        else
    if(MTMEmulateWE)
    MTMOutputString += MTMakeLink(item, true, true, false, MTMClickCmd, MTMouseOverCmd, MTMouseOutCmd);
                                  else
    if(!item.expanded)
    MTMOutputString += MTMakeLink(item, false, true, true, MTMClickCmd, MTMouseOverCmd, MTMouseOutCmd);
                                  else
    MTMOutputString += MTMakeLink(item, true, true, false, MTMClickCmd, MTMouseOverCmd, MTMouseOutCmd);
    if(item.expanded)
    img = (last) ? "menu_corner_minus.gif" : "menu_tee_minus.gif";
              else
    img = (last) ? "menu_corner_plus.gif" : "menu_tee_plus.gif";
              else
    img = (last) ? "menu_corner.gif" : "menu_tee.gif";
    MTMOutputString += MTMakeImage(img);
    if(item.submenu)
    if(MTMEmulateWE && item.url != "")
    MTMOutputString += '</a>' + MTMakeLink(item, false, false, true);
                        else if(!usePlusMinus)
    if(item.url == "")
    MTMOutputString += MTMakeLink(item, true, true, true, MTMClickCmd, MTMouseOverCmd, MTMouseOutCmd);
                                  else if(!item.expanded)
    MTMOutputString += MTMakeLink(item, false, true, true, MTMClickCmd);
                                  else
    MTMOutputString += MTMakeLink(item, true, true, false, MTMClickCmd, MTMouseOverCmd, MTMouseOutCmd);
    img = (item.expanded) ? item.expandIcon : item.collapseIcon;
              else
    MTMOutputString += MTMakeLink(item, false, true, true);
    img = (item.icon != "") ? item.icon : MTMFetchIcon(item.url);
    MTMOutputString += MTMakeImage(img);
    if(item.submenu && item.url != "" && item.expanded && !MTMEmulateWE)
    MTMOutputString += '</a>' + MTMakeLink(item, false, false, true);
    if(MTMUA.browserType == "NN3" && !MTMLinkedSS)
    var stringColor;
    if(item.submenu && (item.url == "") && (item.number == MTMClickedItem))
    stringColor = (item.expanded) ? MTMSubExpandColor : MTMSubClosedColor;
                        else if(MTMTrackedItem && MTMTrackedItem == item.number)
    stringColor = MTMTrackColor;
                        else
    stringColor = MTMLinkColor;
    MTMOutputString += '<font color="' + stringColor + '" size="' + MTMenuFontSize + '" face="' + MTMenuFont + '">';
    MTMOutputString += ' ' + item.text + ((MTMUA.browserType == "NN3" && !MTMLinkedSS) ? '</font>' : '') + '</a>' ;
    MTMDoc.writeln(MTMOutputString + '</td></tr>');
    function MTMEscapeQuotes(myString)
    var newString = "";
    var cur_pos = myString.indexOf("'");
    var prev_pos = 0;
    while (cur_pos != -1)
    if(cur_pos == 0)
    newString += "\\";
                        else if(myString.charAt(cur_pos-1) != "\\")
    newString += myString.substring(prev_pos, cur_pos) + "\\";
                        else if(myString.charAt(cur_pos-1) == "\\")
    newString += myString.substring(prev_pos, cur_pos);
    prev_pos = cur_pos++;
    cur_pos = myString.indexOf("'", cur_pos);
    return(newString + myString.substring(prev_pos, myString.length));
    function MTMTrackExpand(thisMenu)
    var i, targetPath, targetLocation;
    var foundNumber = false;
    for(i = 0; i < thisMenu.items.length; i++)
    if(thisMenu.items[i].url != "" && MTMTrackTarget(thisMenu.items[i].target))
    targetLocation = parent.frames[thisMenu.items[i].target].location;
    targetPath = targetLocation.pathname + targetLocation.search;
    if(MTMUA.browserType == "IE4" && targetLocation.protocol == "file:")
    var regExp = /\\/g;
    targetPath = targetPath.replace(regExp, "\/");
    if(targetPath.lastIndexOf(thisMenu.items[i].url) != -1 && (targetPath.lastIndexOf(thisMenu.items[i].url) + thisMenu.items[i].url.length) == targetPath.length)
    return(thisMenu.items[i].number);
    if(thisMenu.items[i].submenu)
    foundNumber = MTMTrackExpand(thisMenu.items[i].submenu);
    if(foundNumber)
    if(!thisMenu.items[i].expanded)
    thisMenu.items[i].expanded = true;
    if(!MTMClickedItem)
                                                      MTMClickedItem = thisMenu.items[i].number;
    MTMExpansion = true;
    return(foundNumber);
    return(foundNumber);
    function MTMCloseSubs(thisMenu)
    var i, j;
    var foundMatch = false;
    for(i = 0; i < thisMenu.items.length; i++)
    if(thisMenu.items[i].submenu && thisMenu.items[i].expanded)
    if(thisMenu.items[i].number == MTMClickedItem)
    foundMatch = true;
    for(j = 0; j < thisMenu.items[i].submenu.items.length; j++)
    if(thisMenu.items[i].submenu.items[j].expanded)
    thisMenu.items[i].submenu.items[j].expanded = false;
                                  else
    if(foundMatch)
    thisMenu.items[i].expanded = false;
                                            else
    foundMatch = MTMCloseSubs(thisMenu.items[i].submenu);
    if(!foundMatch)
    thisMenu.items[i].expanded = false;
    return(foundMatch);
    function MTMFetchIcon(testString)
    var i;
    for(i = 0; i < MTMIconList.items.length; i++)
    if((MTMIconList.items[i].type == 'any') && (testString.indexOf(MTMIconList.items[i].match) != -1))
    return(MTMIconList.items[i].file);
                        else if((MTMIconList.items[i].type == 'pre') && (testString.indexOf(MTMIconList.items[i].match) == 0))
    return(MTMIconList.items[i].file);
                        else if((MTMIconList.items[i].type == 'post') && (testString.indexOf(MTMIconList.items[i].match) != -1))
    if((testString.lastIndexOf(MTMIconList.items[i].match) + MTMIconList.items[i].match.length) == testString.length)
    return(MTMIconList.items[i].file);
    return("menu_link_default.gif");
    function MTMGetYPos(myObj)
    return(myObj.offsetTop + ((myObj.offsetParent) ? MTMGetYPos(myObj.offsetParent) : 0));
    function MTMCheckURL(myURL)
    var tempString = "";
    if((myURL.indexOf("http://") == 0) || (myURL.indexOf("https://") == 0) || (myURL.indexOf("mailto:") == 0) || (myURL.indexOf("ftp://") == 0) || (myURL.indexOf("telnet:") == 0) || (myURL.indexOf("news:") == 0) || (myURL.indexOf("gopher:") == 0) || (myURL.indexOf("nntp:") == 0) || (myURL.indexOf("javascript:") == 0))
    tempString += myURL;
              else
    tempString += MTMUA.preHREF + myURL;
    return(tempString);
    function MTMakeLink(thisItem, voidURL, addName, addTitle, clickEvent, mouseOverEvent, mouseOutEvent)
    var tempString = '<a href="' + (voidURL ? 'javascript:;' : MTMCheckURL(thisItem.url)) + ' ';
    if(MTMUseToolTips && addTitle && thisItem.tooltip)
    tempString += 'title="' + thisItem.tooltip + '" ';
    if(addName)
    tempString += 'name="sub' + thisItem.number + '" ';
    if(clickEvent)
    tempString += 'onclick="' + clickEvent + '" ';
    if(mouseOverEvent && mouseOverEvent != "")
    tempString += 'onmouseover="' + mouseOverEvent + '" ';
    if(mouseOutEvent && mouseOutEvent != "")
    tempString += 'onmouseout="' + mouseOutEvent + '" ';
    if(thisItem.submenu && MTMClickedItem && thisItem.number == MTMClickedItem)
    tempString += 'class="' + (thisItem.expanded ? "subexpanded" : "subclosed") + '" ';
              else if(MTMTrackedItem && thisItem.number == MTMTrackedItem)
    tempString += 'class="tracked"';
    if(thisItem.target != "")
    tempString += 'target="' + thisItem.target + '" ';
    return(tempString + '>');
    function MTMakeImage(thisImage)
    return('<img src="' + MTMUA.preHREF + MTMenuImageDirectory + thisImage + '" align="left" border="0" vspace="0" hspace="0" width="18" height="18">');
    function MTMakeBackImage(thisImage)
    var tempString = 'transparent url("' + ((MTMUA.preHREF == "") ? "" : MTMUA.preHREF);
    tempString += MTMenuImageDirectory + thisImage + '")'
    return(tempString);
    function MTMakeA(thisType, thisText, thisColor)
    var tempString = "";
    tempString += 'a' + ((thisType == "pseudo") ? ':' : '.');
    return(tempString + thisText + ' {\n\tcolor:' + thisColor + ';\n\tbackground:transparent;\n}\n');
    function MTMTrackTarget(thisTarget)
    if(thisTarget.charAt(0) == "_")
    return false;
              else
    for(i = 0; i < MTMFrameNames.length; i++)
    if(thisTarget == MTMFrameNames[i])
    return true;
    return false;
    function MTMFetchCookie()
    var cookieString = getCookie(MTMCookieName);
    if(cookieString == null)
              { // cookie wasn't found
    setCookie(MTMCookieName, "Say-No-If-You-Use-Confirm-Cookies");
    cookieString = getCookie(MTMCookieName);
    MTMUA.cookieEnabled = (cookieString == null) ? false : true;
    return;
    MTMCookieString = cookieString;
    MTMUA.cookieEnabled = true;
    // These are from Netscape's Client-Side JavaScript Guide.
    // setCookie() is altered to make it easier to set expiry.
    function getCookie(Name)
    var search = Name + "="
    if (document.cookie.length > 0)
              { // if there are any cookies
    offset = document.cookie.indexOf(search)
    if (offset != -1)
                        {   // if cookie exists
    offset += search.length
    // set index of beginning of value
    end = document.cookie.indexOf(";", offset)
    // set index of end of cookie value
    if (end == -1)
    end = document.cookie.length
    return unescape(document.cookie.substring(offset, end))
    function setCookie(name, value, daysExpire)
    if(daysExpire)
    var expires = new Date();
    expires.setTime(expires.getTime() + 1000*60*60*24*daysExpire);
    document.cookie = name + "=" + escape(value) + (daysExpire == null ? "" : (";expires=" + expires.toGMTString())) + ";path=/";

  • Re: HELP! URGENT! lost email messages!

    had to shut down due to time constrictions, sorry for pushing the need for help, but I was desperate to recover vital lost messages. I tried everything suggested in the Mail help records and past discussion posts. At this point (next morning) my mail is still lost.
    any suggestions will be appreciated.
    ORIGINAL POST:
    HELP! URGENT! lost email messages!
    Posted: Jan 21, 2007 6:29 PM
    I started, two days ago, receiving four of each message coming to me. I just looked at my accounts and saw two of my primary account (POP.ipa.net is the Incoming mail server), I'd never seen the second one before, so I deleted it.
    Went to my (Mac Mail ver. 2.1) mail browser and all my inbox and sent and junk messages now show the same message: "The message from [email protected] concerning “Receipt for Your Payment to (account name)” has not been downloaded from the server. You need to take this account online in order to download it."
    WHAT!!!!!!??????
    I went to Apple discussions and found a problem similar from today and followed the advice there by David Gimeno:
    "In the Finder, go to the ~/Library/Mail/POP-username@mailserver/ account folder, and look at the contents of INBOX.mbox and Sent Messages.mbox."
    did this and found nothing under either .mbox folder ...
    HELP!!! IMPORTANT MESSAGES ARE IN THE BALANCE!

    If you deleted a POP account, then all your mail stored in that account’s mailboxes has been wiped out, not just moved somewhere, and you were warned that this would happen by the following alert:
    Remove Account
    Are you sure you want to remove the <AccountType> account "<AccountName>"?
    This will permanently delete the account setup information, mailboxes, and messages from your computer. Messages stored on the mail server will not be affected.
    To prevent that from happening, you should have moved your mail to custom “On My Mac” mailboxes instead of leaving it in the account’s mailboxes.
    If the messages are not on the server, and you don’t have a backup, your only option in the case of Mail 2.x is to try to salvage as many deleted *.emlx files as possible with a data recovery tool such as Data Rescue II, TechTool Pro, or FileSalvage (the files to be recovered would be different in the case of Mail 1.x). Of these, the only one I know for sure that can currently recover deleted *.emlx files is FileSalvage. Stop using your computer right now if you want to try that, as anything you do with the computer may cause the deleted files to be overwritten. Actually, your anxiety may very well have already caused some of those messages to be irretrievably lost.
    As to why you appear to have lost messages from the account that remains in Mail as well, note that for each account, Mail creates a folder within ~/Library/Mail/ whose name starts with the account type (POP, IMAP, Mac), followed by the account username and the incoming mail server. Deleting a mail account causes the corresponding account folder to be deleted as well.
    You should never, ever, set up two accounts in Mail with the same Account Type, User Name, and Incoming Mail Server. Two such accounts would share the same account folder in the filesystem, and deleting one of them would cause the (shared) account folder to be deleted as well...

  • Routine--- help its urgent.

    hai gurus,
    Here is the scenario.
    I am extracting the data from r/3.There is one field called "ITM_DESCRIPTION" in this i am gettting an # char only for single record and due to this delta loads are getting failed.
    we had already wriiten the code for eliminating # for that field but dont know its not working. So i am planning out to skip that particular record for a particular Purchase order number.
    Is there any such code to eliminate the particular record.
    Many thanks in advance.
    any one has the code plz send the code.
    Help its urgent.
    full points assured
    regards
    KP

    hai Oscar,
    I had already done this one.
    still geting the same problem.
    can u send me any code that i can add in SR of TR.
    regards
    Kp

  • Urgent Urgent help needed :( :(

    Can anyone help me urgently. I'm a mac user and occasionally use windows which i now regret profusely. I am about to loose several folders which i backed up on my memory stick which i plugged onto a windows system which i suspect had a virus.
    I now cannot open any of the folders as they come up as unix executable files. What does this mean?? And more importantly, can any of these folders be retrieved? I have work from as far back as 10 years ago. I don't mind loosing some of it but some are way too important. Please please help me....I'm too desperate to get my folders back. Does anyone know if a anti virus could clean the memory stick and hopefully also retrieve the work?? Any information would be massively appreciated.
    I risk loosing all my business accounts, business plans, catalogues, client records plus tonnes of other precious work and info.
    And just in case anyone is wondering, i thought saving all this on a memory stick was safe and i moved all my folders there to free up memory space on my I Book.
    Please help.
    Thanks

    First step, is to calm down. Panicking is only going to lead to mistakes.
    Second step, as mentioned, is to make an identical copy of the disk.
    Third step, is to work on fixing the COPY of the data. DO NOT TRY TO "FIX" YOUR ONLY COPY!! This way, if you make a mistake, you can just erase the botched copy, and re-copy the original.
    For the second step, use Disk Tools to make a disk image of your ahem "backup" disk.
    Go into Finder, and select "Utilities" from the "Go" menu. Then double-click on "Disk Utility".
    Select your Flash device from the leftmost pane. Not just the Partition which has your data, click on the item that represents the entire flash disk. RESIST THE URGE TO CLICK ON "Repair Disk"!
    From the "File" menu, click "New", which will bring-up a submenu. From the Submenu, click the last item, "Disk image from Disk1". Yours might not say "Disk1", it might end with a different number.
    Give the disk image a name that you'll recognize. Under Image format, select "Read Only" for now. Leave "Encryption" setting at "None". Click "Save". Depending on the size of your flash drive, this may take a while. BE PATIENT.
    Eject your flash drive.
    Select your Disk Image, and then click on "Repair Disk". Again, this will take a while. Again, be patient!
    If this fixes the disk copy, be glad, say thank you, and then sign-up for a Drop-box account, buy a dedicated external Hard Drive, and setup Time Machine, etc. Most of all, learn and realize that "backup copy" means "redundant copy", not "only copy". If this doesn't fix the problem, post any details to this forum, and we'll try to help as best we can.

  • I made upgrade for IOS to 7.04 but my iphone is second hand and when iphone need to make activation ,i don't have the apple ID so my iphone didn't work from this time so please help me urgent

    I made upgrade for IOS to 7.04 but my iphone is second hand and when iphone need to make activation ,i don't have the apple ID so my iphone didn't work from this time so please help me urgent.

    There isn't one.
    amrzaky wrote:
    I can't contact with previous owner s i need another solutoin
    The Apple ID and Password that was Originally used to Activate the iDevice is required.
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund, as you will not be able to re-activate it.

  • Urgent urgent help!!! :( :(

    Can anyone help me urgently. I'm a mac user and occasionally use windows which i now regret profusely. I am about to loose several folders which i backed up on my memory stick which i plugged onto a windows system which i suspect had a virus.
    I now cannot open any of the folders as they come up as unix executable files. What does this mean?? And more importantly, can any of these folders be retrieved? I have work from as far back as 10 years ago. I don't mind loosing some of it but some are way too important. Please please help me....I'm too desperate to get my folders back. Does anyone know if a anti virus could clean the memory stick and hopefully also retrieve the work?? Any information would be massively appreciated.
    I risk loosing all my business accounts, business plans, catalogues, client records plus tonnes of other precious work and info.
    Please help.
    Thanks

    I am also a windows user. Try to install a virus protection system. Bring your USB to another windows computer, virus-free, and upload the files. Windows should recognise the files and retrieve them. Then, make backup copies of the files on a CD.

  • HT201210 i have an error of no 11. kindly help, needed urgently

    i have an error of no 11. kindly help, needed urgently
    when i try to upgrage my
    iphone 3gs wit 4.1 to new latest 5.1
    it gives the erorr of 11. what that mean? Reply as soon as you can !
    thnx

    Error -1 may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.

Maybe you are looking for

  • Text message sound going off randomly

    The sound of an incoming text message is constantly going off on my phone. I am not receiving new messages. I checked and it does not appear to be my other apps. Any ideas?

  • Mac Office 2008 powerpoint

    I know this is in the wrong forum but Im not sure where to put it. Im trying to print out multiple slides on a single piece of paper for a school project. I cant figure it out for the life of me. Can someone give me step by step directions on how to

  • Upgrading ECC5.0 to ECC6.0 and Internet Sales ISA4.0 CRM4.0

    We are performing a technical upgrade of ECC5.0 to ECC6.0 and we are seeking confirmation and instructions for connecting our existing ISA4.0 system to ECC6.0.  I have searched OSS and SDN and queried our SAP account manager for some confirmation and

  • Laptop connection to more than one BT hub

    I currently use a BT Broadband wireless hub to connect my laptop to the internet at my home address. Now that I am retired, I would like to set up an additional BT Broadband account at my holiday flat, but first I would like to know if I can have two

  • Which is the best way to transfer the file through the LAN

    I need to transfer files of Size in MB from one PC to another. I have done it by File Copy function with the file path "\\Receiver\C:\File.txt". but it takes 1 Sec approximately for the 10KB of file size. I also need to monitor the file transfer prog