ALE interface to same client - different machines.

Is it possible to create an ALE Interface to the same client(200 to 200) for sample testing or customizing ??
Thanks in advance.

I think this depends on the logical system name of the clients. you can check in scc4.
regards,
martin

Similar Messages

  • IDOC Message type  ACC_DOCUMENT -  Same Client different company Code

    Hi guys ,
    I need your advice , I´m trying to create an IDOC to send my accounting  postings via IDOC from one company to other in the same client  , I did I think the whole process to achive that ,  meaning I went to tnx : SALE , SM59, WE21  but now in BD64 im facing the following problem  : in the message type box , i filled the fields like this :
    Model view       TEST                          
    Sender             GCQCLNT100                     
    Receiver           GCQCLNT100                     
    Message Type  ACC_DOCUMENT 
    but I got the error : Client and server must be different. !! , so I dont know what to do now ,  any advice ?  Im not sure if  I need a Distribution model for what I want to do ? or maybe i can´t send idocs in the same client ??
    thank you Guys.

    When I stored an IDOC with the IDOC_INBOUND_ASYNCHRONOUS  function, I believe I only had the receiver configured.
    I created the idoc table, control structure, etc., did the save with the FM above...then the receive side had a process code and standard FM....

  • I want to take everything off one ipad and put it on a different one. Same account, different machine. How is this done?

    Subject says it all. The orignal machine is backed up to my computer and the cloud, however only about a 3rd of the apps appear in the left "Sync apps" column on itunes. How do i get EVERYTHING off machine one, and put it on machine two?
    Thanks!

    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device - http://support.apple.com/kb/HT2109
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store

  • RMI client running from different machine giving error

    HI all
    I am trying to run the sample application getStart hello world.
    I am able to run the java applet from the same machine ....
    but i am get error when i am trying run client applet from the different machine .
    (HelloApplet exception: access denied (java.net.SocketPermission)
    client applet on machine1 and server and registory on machine2 in same lan .
    i copied the Helloapplet.class and Helloclient.html to machine1.
    appletviewer Helloclient.html
    but the java version is different in both machines.......
    can any one give some idea ....
    the errror i am geting is :
    HelloApplet exception: access denied (java.net.SocketPermission Neind-ws-003 res
    olve)
    java.security.AccessControlException: access denied (java.net.SocketPermission N
    eind-ws-003 resolve)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:272)
    at java.security.AccessController.checkPermission(AccessController.java:
    399)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
    at java.lang.SecurityManager.checkConnect(SecurityManager.java:1042)
    at java.net.InetAddress.getAllByName0(InetAddress.java:559)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:449)
    at java.net.Socket.<init>(Socket.java:100)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:25)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:120)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:499)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:190
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:174)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:318)
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    at java.rmi.Naming.lookup(Naming.java:84)
    at examples.hello.HelloApplet.init(HelloApplet.java:23)
    at sun.applet.AppletPanel.run(AppletPanel.java:344)
    at java.lang.Thread.run(Thread.java:484)
    The helloapplet.java code is :
    package examples.hello;
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.rmi.Naming;
    import java.rmi.RemoteException;
    public class HelloApplet extends Applet {
    String message = "blank";
    // "obj" is the identifier that we'll use to refer
    // to the remote object that implements the "Hello"
    // interface
    Hello obj = null;
    public void init() {
         try {
              System.out.println("Path looking: " +getCodeBase().getHost());
         //obj = (Hello)Naming.lookup("//" +
              //     getCodeBase().getHost() + "/HelloServer");
                   obj = (Hello)Naming.lookup("//Neind-ws-003/HelloServer");
         message = obj.sayHello();
         } catch (Exception e) {
         System.out.println("HelloApplet exception: " +
                        e.getMessage());
         e.printStackTrace();
    public void paint(Graphics g) {
         g.drawString(message, 25, 50);
    The helloclient.html code:
    <HTML>
    <title>Hello World</title>
    <center> <h1>Hello World</h1> </center>
    The message from the HelloServer is:
    <p>
    <applet
              code="examples.hello.HelloApplet"
    width=500 height=120>
    </applet>
    </HTML>

    Your problem is at the following line.
    obj = (Hello)Naming.lookup("//Neind-ws-003/HelloServer");
    The line you had commented beforehand is
    //obj = (Hello)Naming.lookup("//" +
    // getCodeBase().getHost() + "/HelloServer");
    This worked because the applet was being retreived from the same server where the RMI server exists.
    Remember, applets can only connect themselfs to the same host they are stored in and retreived from. This is because of VM, the sandbox does not allow you to connect to other machines other than the server where it resides on. If you use a applet viewer it might work if you loosen the security features. On a browser i do not belive it can be done. Maybe if you modify your security options for the VM you are able to achieve something, but personally i'm going for the "It cannot be done " answer because of what I said before.
    Hope this helps
    If any trouble then reply and I'll answer later.
    Rui P.

  • How can i look up a EJB residing in different machine from client side?

    hai ,
    How can i look up a EJB residing in different machine from client side?
    this is my code...........i don't know what should i use as Initial Context Factory...................i am using a sun appserver 8............
    package com.parx.lms.lmsdelegate;
    import com.parx.lms.exception.LMSException;
    import javax.naming.Context;
    import javax .ejb.CreateException;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.rmi.PortableRemoteObject;
    import java.rmi.RemoteException;
    import com.parx.lms.controller.*;
    import com.parx.lms.vo.UserVo;
    import com.parx.lms.exception.BusinessException;
    import java.util.Hashtable;
    import java.lang.*;
    public class LmsDelegate{
    private final static String JNDI_NAME="LmsBean";
    private static String url="http://localhost:4848";
    public static Lms lms = null;
    public void getController() throws CreateException,
    NamingException,RemoteException{
    if(lms == null){
    Hashtable h=new Hashtable();
    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************");
    h.put(Context.PROVIDER_URL,url);
    System.out.println("Before Loading Context in Delegate");
    Context ctx=new InitialContext(h);
    System.out.println("Loaded Context in Delegate");
    Object obj=ctx.lookup(JNDI_NAME);
    System.out.println("Loaded Object in Delegate");
    System.out.println("Before Loading Home in Delegate");
    LmsHome home = (LmsHome )PortableRemoteObject.narrow(obj,com.parx.lms.controller.LmsHome.class);
    System.out.println("Loaded Home in Delegate");
    lms = home.create();
    System.out.println("Loaded remote in Delegate");
    public void addUserDelegate(UserVo vo) throws BusinessException{
    try{
    getController();
    System.out.println("Before calling the addUser of Session");
    lms.addUser(vo);
    }catch(CreateException e){
    System.out.println("Create Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    }catch(NamingException e){
    System.out.println("Naming Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    catch(RemoteException e){
    System.out.println("Remote Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    }catch(LMSException e){
    System.out.println("duplicate user name--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    pls help me..........

    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************")
    Each app server provides their own jndi factory class. For ex for weblogic it is weblogic.jndi.WLInitialContextFactory. SInce you are using sun app server, check if there are any examples to find out or the docs.
    private static String url="http://localhost:4848
    Since the client is in a different machine the localhost is not going to work here. provide the url or the machine name of the system in which ur sunapp server is running. In addition u will need to have the stubs of the remote interfaces in ur client machine.

  • How to copy data of a table to the same but on a DIFFERENT MACHINE?

    Hello experts,
    I want to copy all entries of table TE422 to the same, but on a <u>different machine</u>. I created a transport request (workbench request using TABU) intending to copy the entire table data from QA into DEV environment.
    However, this is not working, because, in our installation, QA is on one server, and DEV on another! So, in a way, each machine seem to be transparent to the other and I cannot, or, do not know, how to specify the DEV environment as target.
    I was told that I have to do something at the OS level. That is to say, have some kind of SQL query which collects data from one and uploads it onto the other.
    Now my question is: Is there a SAP way to do this, that is to say, forget the SQL thingy and do it with some SAP transaction? If yes, how? If not, do you have a sample code which does this please?
    Your help is greatly appreciated.
    Goharjou

    Method 1:
    You can transport using ALE/IDOC, Write a simple outbound function moule in Source System and Develop a Inbound function module in target system.
    Method 2:
    Download the entire table contents into a flat file from source system by developing a simple report using WS_DOWNLOAD function module. Then Develop a report using WS_UPLOAD in target system and upload thd flat file.
    Thanks & Regards,
    Vijay

  • Client in a different machine..

    Hi,
    I ve a problem with JMS. I am developing a JMS Application with WebSphere and MQ Series.
    The application runs fine if i have the both the publisher and subscriber in the same machine.
    Now i want to move the client to a different machine say X. To do that should the machine 'x' need to have WebSphere environment because i'm using WebSphere for JNDI.
    If the machine doesnot have the WebSphere environment is it possible to achieve.
    If yes how to do that..
    Thanks
    MeenaO

    I think the jndi service can be accessed froma remote m/c, you can initialize the context with the appropriate paramters, so the lookups on the topic and connection factories and continue with your work.

  • Same FM version, same file, font behaves differently on different machines

    I've been tasked with finding a "number in circle" font that my client can use in lists with up to 99 entries, without doing anything fancy. They just want to use their Numbered1 (for the first list entry) and Numbered (for subsequent list entries) styles and not have to define additional styles, do bizarre keystrokes, etc,
    I was able to solve the problem on my own machine. I found a free font called CombiNumerals LTD that did the trick. I made a list with 99 entries and the numbers looked great. Two-digit numbers were contained within one circle, just like they wanted.
    Strangely, when I moved my test file to one of the client's machines, the font did a switcheroo and didn't work at all. I ended up with numbers in semi-circles and all kinds of problems. It's very strange because both machines have the same OS (Windows XP), same service pack (3), same version of Framemaker, same everything. I'm wondering if a different registry setting is causing the problem. However, I have no clue what to look for. Any ideas?

    Hi everyone, thanks for your help. I finally figured this out. It is not a Frame issue; it's a Windows issue. My machine runs Windows XP sp3, but this possibly applies to other versions.
    To enable ligature support in Windows XP, you must enable East Asian language support:
    Click Start > Control Panel > Regional & Language Options.
    Click the Languages tab.
    Select the Install files for East Asian languages check box. Click OK.
    Windows XP may prompt you to install your Windows XP disk.
    A very simple, but rather unintuitive fix. The font works great now. If you want a two-digit number in a circle, you just type the two numbers next to each other. And numbers from 1 - 99 will appear in sequence within a Frame autonumbered list.

  • Client on different Machine - No route to host

    Hi,
    I'm pretty much frustrated right now. I try to get the following running for more than days now, hopefully someone can help me, since it seems to be a quite simple problem:
    I have a Client/Server RMI Application, to make my first steps with RMI.
    First I defined the Interface Server.java:
    import java.rmi.*;
    public interface Server extends Remote
         int getValue() throws RemoteException;
    then I implented the Server (ServerImpl.java):
    import java.util.*;
    import java.rmi.server.*;
    import java.rmi.RemoteException;
    public class ServerImpl extends UnicastRemoteObject implements Server
         private int value;
         public ServerImpl() throws RemoteException
              this.value = 3;
         public int getValue() throws RemoteException
              return this.value;
    and a process which uses it (ServerProc.java):
    import java.rmi.*;
    import java.rmi.registry.*;
    import java.rmi.server.UnicastRemoteObject;
    class ServerProc
         public static void main (String args [])
              if(System.getSecurityManager() == null)
                   System.setSecurityManager(new RMISecurityManager());
              try {
                   ServerImpl obj = new ServerImpl();
                   Naming.rebind("rmi://localhost/Server",obj);
              }catch (Exception e){
                   System.out.println(e);
    My Client is as follows (Client.java):
    import java.rmi.*;
    class Client
         public static void main(String args [])
              Server server;
              try {
                   server = (Server)Naming.lookup("rmi://192.168.0.1/Server");
                   System.out.println(server.getValue());
              }catch(Exception e){
                   System.out.println(e);
    The Server is on the machine with IP 192.168.0.1 and the Client on the Machine 192.168.0.15. (both XP SP2)
    I compiled the sercer code with "javac ServerProc.java" und afterwards did "rmic ServerImpl"
    then I run the rmiregistry with "start rmiregistry" und the server with "java -Djava.security.policy=java.policy ServerProc"
    The policy file is the following:
    grant{
    permission java.security.AllPermission;
    Then I compiled the Clientcode on the client to which I first copied the "Server.class" and "ServerImpl_Stub.class" Files and then did "javac Client.java"
    And run the Client with "java Client".
    THen the following exception appears:
    java.rmi.ConnectIOException: Exception creating connection to: 192.168.120.254;
    nested exception is:
    java.net.NoRouteToHostException: No route to host: connect
    I don't know where this IP adress comes from, but when I run the same client on the server machine It works without problems. I have no clue what to do.
    Can someone help me please. That would be great.
    Thanks in advance
    Ben

    i feel your pain same happen to me all i can advise
    is to lose the " System.setSecurityManager(new
    RMISecurityManager());
    if you don't call it it will revert to the default
    one.No it doesn't, it reverts to no security manager, and absence of stubs wouldn't cause NoRouteToHost either.
    Your problem seem to be either a DNS problem where the server host doesn't know its own IP address or else it has > 1 NIC and an inconvenient choice is being made between them. In case 1, fix the DNS; in case 2, set -Djava.rmi.server.hostname to the desired IP address in the server JVM.

  • ALE with Same Client

    Is it possible to use ALE with Same client...when PO created and send message to IDOC. Than come back the same client to create the SO? As i know, it is possible to go for another client or system. I am not sure is it possible in the same client and also any limition about this?
    For eg:-
    A purchase order is created in company code 1000.
    Then using ALE,the system will generate an Idoc to transfer data to another company code 2000.And the system will generate corresponding CustmerOrder(SO) in company code 2000.

    Hi,
    Configuring the ALE/Idoc scenerio for the same client is very much possible, because you would defining the same client/port but might used different message type. But so you think this will help you rather than that if the clinet is same rather than configuring the ALE/IDOC setting why not write a piece of ABAP code finding the proper USER EXIT/INCLUDE .i.e. when a PO is created with company code ABC then that USEREXIT will trigger which will send those data to another company code. The user exit can easily be identified by the functional guys.
    Mostly the ALE/Idocs scenerios are used when we have multiple clients or multiple system.
    Hope this helps.
    Cheers,
    Jay

  • HR Authorisation Management for different companies in the same client

    Hi,
    Could anyone please help in this....
    My client has two companies. They want to restrict the authorisation to both the companies so that no one can see each other companies data and at the same time access tha data.
    For Eg, there are two payroll officers, each in both the companies, If i give authorisation to run Payroll driver(PC00_M40_CALC), anyone of them can run payroll for any of the companies. (though,their Payroll area is different). There are many restrictions to be maintained like Maintance of Master data, Maintanance of OM structure as assignement of position, running Payroll, viewing the payslip etc...
    How can this all be restricted so that, the respective  companies can view and access their own data without interfering in to the other company.
    I could only find object P_PYEVRUN which helps me restrict to view the created documents of posting for other company code.
    Can anyone put light on how i should proceed further... I heard we can restrict HR master data, but what all i know is we can restrict at infotype level. My problem is, two persons should access PA30(each from different companies), but should not be able to edit other companies data.
    Thanks
    --Pranitha

    Hi ,
    If you are creating the another company undar the same client . then you can not use different no. range.
    or if you are going different client for different compnay code then you can use different number range for material master.
    SAM

  • Can I run 2 different domains with same name but on 2 different machines?

    I am trying to setup 2 domains with same name (sharedcds1) on 2 different machines (Machine1 and Machine2).
              When I start the weblogic managed server 1 (sharedcds1managedserver1) on Machine2, it throws an error saying it has some conflicts with the managed server 1 running on Machine1. How did the managed server of one machine know about the other server. Can I run 2 different domains with same name but on 2 different machines?
              Here is the error in the log -
              <Jun 14, 2005 10:53:29 AM EDT> <Error> <Cluster> <BEA-000123> <Conflict start: You tried to bind an
              object under the name weblogic.transaction.coordinators.sharedcds1managedserver1 in the JNDI tree.
              The object from 4596206652609838848S:130.170.61.153:[9505,9505,-1,-1,9505,-1,-1,0,0]:sharedcds1:s
              haredcds1managedserver1 is non-clusterable, and you have tried to bind more than once from two or m
              ore servers. Such objects can only be deployed from one server.>
              <Jun 14, 2005 10:53:29 AM EDT> <Error> <Cluster> <BEA-000123> <Conflict start: You tried to bind an
              object under the name weblogic.transaction.coordinators.sharedcds1managedserver1 in the JNDI tree.
              The object from 8842351474821025197S:130.170.61.154:[9505,9505,-1,-1,9505,-1,-1,0,0]:sharedcds1:s
              haredcds1managedserver1 is non-clusterable, and you have tried to bind more than once from two or m
              ore servers. Such objects can only be deployed from one server.>
              Thanks
              Satish

    Yes you can. Make sure that domains configured to use different multicast address. WLS uses multicast for communications between nodes in domain.
              although your configuration will work, you could have troubles if you going to execute inter-domain calls between domains/servers with the same names.

  • Why differences in the way different machines handle the same code??

    OK, I've posted some other threads re some difficulties in getting the same code to function identically on, not only different platforms, but even on different machines running Windows!
    Here's another, and I would really appreciate an explanation:
    I have a tree control. Per the user's request, I made the right button function the same way it does on MS File Explorer: When they right click, the currently selected nodes are compared to the node they clicked over. If they clicked over a selected node, then the context menu for the nodes selected is displayed. If they clicked over a different node, then the selection is changed to the new node and the context menu displayed. If they right click over the tree control, but not a node in the tree, then the selection is cleared and no context menu is displayed.
    Works great on my machine.
    However, on some machines, no context menu is displayed, nor is the node selected... UNLESS THEY ALREADY HAVE A NODE SELECTED. I.e., if they have no nodes in the tree selected, they cannot display the context menu by right clicking on a node, nor does the selection change to the node they right click over. It only works if they already have something selected.
    My app is distributed as an executable jar file and I am distributing the JRE with it, so there are no class path issues or differences in the JDK. Basically, my problem can be paraphrased as: Why doesnt' Swing behave the same way on different machines...? At least why not the same on the eame machine.
    It's driving me nuts to think that I've resolved some UI glitch only to find out that, no, it's only fixed on some machines, not others.
    Thanks.

    Well, I normally develop on OSX and then deploy to Windows. But, this last build I have switched to Windows XP. The kinds of differences I am seeing are subtle: what triggers a repaint of the UI and now, it seems, what events are getting triggered by mouse clicks.
    My deployment is an executable jar file, therefore it uses the manifest in the jar, not any classpath variables. I deploy an entire JRE along with the app, and the bat file that launches the app ensures that is the JAVA_HOME I'm using.
    I can only guess that it's some underlying difference in versions of the platform and OS that causes this.
    Here's the entire code for this latest issue re the popups:
            private void maybeShowPopup(NodeInfoTree tree, MouseEvent e) {
                if (e.isPopupTrigger()) {
                    //  They clicked the platform dependent popup trigger...
                    int x = e.getX();
                    int y = e.getY();
                    TreePath[] selectedPaths = tree.getSelectionPaths();
                    if (selectedPaths == null) {
                        selectedPaths = new TreePath[0];
                    TreePath clickedPath = tree.getPathForLocation(x,y);
                    if (clickedPath == null) {
                        //  they right clicked, but not on a node, so clear the selection and return
                        tree.clearSelection();
                        return;
                    } else {
                        // They clicked on a path, so let's see if it is a selected
                        // node.  Search the selected array of paths, short circuiting
                        // out if it is found...
                        boolean foundInSelection = false;
                        for (int i=0; (!foundInSelection && (i < selectedPaths.length)); i++) {
                            foundInSelection = clickedPath.equals(selectedPaths);
    if (!foundInSelection) {
    // They right clicked elsewhere than the selection, so
    // reset the selection to the new path...
    tree.setSelectionPath(clickedPath);
    final TreePath menuPath;
    selectedPaths = tree.getSelectionPaths();
    if (selectedPaths == null) {
    return;
    } else {
    menuPath = selectedPaths[selectedPaths.length-1];
    // Since they did click on a node, now we need to determine
    // what popup menu should be displayed...
    tree.scrollPathToVisible(menuPath);
    NodeInfo ni = (NodeInfo) menuPath.getLastPathComponent();
    // If the last path component is null, then they don't have
    // anything selected, so we do nothing
    if (ni == null) return;
    // See if the Node is overriding our default popup menu...
    com.harcourt.applications.tgen.browser.nodes.NodeMenu nodeMenu = ni.getMenu();
    nodeMenu.activate(tree.getView(),ni);
    JPopupMenu popup = (JPopupMenu) nodeMenu;
    if (popup != null) {
    popup.show(e.getComponent(),
    e.getX(), e.getY());
    The nodeMenu.activate call is just used to check whether or not certain menu options need to be enabled or disabled before displaying the menu. My theory right now is that, on some of these machines (all windows), a right click of the mouse is not generating a mouse event unless they have already something selected. I don't think it's a focus issue, because if they left click to select a node, and then ctrl-left click to de-select it, the right button then no longer generates a popup menu. They must select a node, then right click. Maybe there's no mouse event generated, or maybe this line is failing on some machines?:
    TreePath clickedPath = tree.getPathForLocation(x,y);

  • Same float code compiled differently on different machines

    Hi,
    Scenario:   same project build on different machines. and then both the  application executed on
    same machine .. giving  slightly different results..(like 23.07499   to 23.07500)
    project involves many float operations.  project build on vs2013. c++
    there is difference oberved in the final value of float calculations..  like 23.07499   to 23.07500
    seems , Same float code compiled differently on different machines,  any input
    Regards,
    james

    >Scenario:   same project build on different machines. and then both the  application executed on same machine ..
    giving  slightly different results..(like 23.07499   to 23.07500)
    Do you get consistent results with the same executable each time you
    run it?
    Assuming you do, and the only difference is the EXEs, what's the
    difference between them - there must be something. Have a look at "How
    to compare binary images of the same project builds"
    https://support.microsoft.com/en-us/kb/164151/ and see if that sheds
    any light onto the issue.
    Dave

  • Create a new branch On same OR different Client

    Dear Experts,
    Can anyone tell me the advantages and disadvantages of same vs different client, from FI & CO view, as we are having a new foreign branch in another country, should we use the same client or a different client?
    For e.g.:
    Client 100 Company A - present
    Client 100 Company B - new
    OR
    Client 100 Company A - present
    Client 200 Company B - new
    Regrads,
    Mohammad

    Hi Mohammed,
    It would be better to choose the first option ie, choosing the same client. Please refer the attachment which deals with this topic.
    Same or different client
    two different organization on one system
    more than one company code
    Warm regards,
    Murukan Arunachalam

Maybe you are looking for

  • Verizon will try to screw you watch out

    Feb my daughter moved and went out on her own.  I called to cancel her line.  The boy I talked to told me to put it on vacation because I might need the line foe another device.  I told him I didn't have nor would I have another device.  Cancel the l

  • Read file and store the file into a string

    i want to read the file and copy it to a string. i wrote this code but don't know what to do next.. please help me urgent..... File file_to_text = new File("c:\\wtgapp.xml"); String wtgapp_string=new String(); try BufferedInputStream stream = new Buf

  • Error screens when opening up dreamweaver; effecting functionality.

    When opening up a file in Dreamweaver, two error screens pop up. The first one says "Attempted an unsupported operation" and the second one says, "Encountered an improper argument". Dreamweaver will still work after this but becomes very buggy and ce

  • Parse of Date based conditions has broken since installing FP3.2

    Just upgraded an AIX BO3.1 sp3 box to Fix Pack 3.2 (both BOE and BOE SAP Integration) Have a mandatory filter object based on a date - format being DD.MM.YYYY. Am now getting the following error when parsing the Universe on a fp32 client... Parse Fai

  • New Envy All in One won't let me use my email address to email scans

    Hi, I have just purchased 2 HP Envy 7640 e All in One Series machines. Setting up the Scan to email option I have to insert my own email address for it to send me a pin number (and to put on emails it sends out - I think ??) my email is:   [email protected]