F.13 I am running this Tcode

hello
I am running this Tcode after that there is any prosses for that pls let me klnow
Thanks
Ashihs

Hi,
This program is used to clear open items in customer, vendor, and G/L accounts automatically (in particular in GI/IR clearing accounts).
The program selects all the accounts described by the value sets and which contain credit and debit postings.
The following items are not cleared:
• Noted items
• Statistical postings and certain special G/L transactions (down payment and change)
• Items with withholding tax postings (country-specific)
In the test run, check which items would be cleared. Then choose the green arrow to go back and restart the report, but this time without the test run indicator. The log that now appears displays the cleared documents and the clearing document number
<i>Pls. assign points, if useful</i>
Regards,
sridevi

Similar Messages

  • ABAP dump while running the tcode MIGO

    Hi All,
    I am getting the abap dump while running the tcode MIGO when I searched I got two relevant sap notes but our functional team said that its not applicable in our case.
    Please find the details of ST22 analysis-:
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          17.04.2009 13:18:45
    Short text
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    Error analysis
        Short text of error message:
        No RFC destination is defined for SAP Global Trade Services
        Long text of error message:
        Technical information about the message:
        Message class....... "/SAPSLL/PLUGINR3"
        Number.............. 002
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "MESSAGE_TYPE_X" " "
        "SAPLMBWL" or "LMBWLU21"
        "MB_POST_GOODS_MOVEMENT"
    SAP Notes i have reffered 1098491, 1041122
    Currently we are running on SAP_APPL     600     0007     SAPKH60007     
    Regards,
    Prashant

    Hi Rohit,
    This particular note is valid for
    Support
    Packages Release Package
    Name
    PI 2004_1_46B SAPKIPZI38
    PI 2004_1_46C SAPKIPZI48
    PI 2004_1_470 SAPKIPZI58
    PI 2004_1_500 SAPKIPZI68
    Our system is running on PI_BASIS     2006_1_700     0005     SAPKIPYM05
    Pls suggest.
    Regards,
    Prashant

  • Want run some tcode throug URL in ECC6.0

    We configured Integrated ITS in ECC 6.0 it is working fine but
    if i enter any Tcode in URL but it showing SAP Easy access screen only .i want run some tcode throug URL .Can you please let me know how solve this issue.
    Thanks in advance

    Hi,
    Your URL should probably look something like:
    http://hostname:port/sap/bc/gui/sap/its/webgui?~transaction=sm50
    this would start webgui in transaction SM50.
    regards
    nag

  • Help me to run this simple RMI example

    When i m running this example in standalone pc it works but while running on to different pc it gives error though I m giving the IP address from client of server.. If anyone can help me out plz help.
    Code:
    ReceiveMessageInterface
    import java.rmi.*;
    public interface ReceiveMessageInterface extends Remote
    void receiveMessage(String x) throws RemoteException;
    Server code:
    import java.rmi.*;
    import java.rmi.registry.*;
    import java.rmi.server.*;
    import java.net.*;
    public class RmiServer extends java.rmi.server.UnicastRemoteObject
    implements ReceiveMessageInterface
    int thisPort;
    String thisAddress;
    Registry registry; // rmi registry for lookup the remote objects.
    // This method is called from the remote client by the RMI.
    // This is the implementation of the �ReceiveMessageInterface�.
    public void receiveMessage(String x) throws RemoteException
    System.out.println(x);
    public RmiServer() throws RemoteException
    try{
    // get the address of this host.
    thisAddress= (InetAddress.getLocalHost()).toString();
    catch(Exception e){
    throw new RemoteException("can't get inet address.");
    thisPort=3232; // this port(registry�s port)
    System.out.println("this address="+thisAddress+",port="+thisPort);
    try{
    // create the registry and bind the name and object.
    registry = LocateRegistry.createRegistry( thisPort );
    registry.rebind("rmiServer", this);
    catch(RemoteException e){
    throw e;
    static public void main(String args[])
    try{
    RmiServer s=new RmiServer();
    catch (Exception e) {
    e.printStackTrace();
    System.exit(1);
    Client code:
    import java.rmi.*;
    import java.rmi.registry.*;
    import java.net.*;
    public class RmiClient
    static public void main(String args[])
    ReceiveMessageInterface rmiServer;
    Registry registry;
    String serverAddress=args[0];
    String serverPort=args[1];
    String text=args[2];
    System.out.println("sending "+text+" to "+serverAddress+":"+serverPort);
    try{
    // get the �registry�
    registry=LocateRegistry.getRegistry(
    serverAddress,
    (new Integer(serverPort)).intValue()
    // look up the remote object
    rmiServer=
    (ReceiveMessageInterface)(registry.lookup("rmiServer"));
    // call the remote method
    rmiServer.receiveMessage(text);
    catch(RemoteException e){
    e.printStackTrace();
    catch(NotBoundException e){
    e.printStackTrace();
    }

    When we compile with rmic skeleton and stub get created then we hav to place stub at each client ???Your remote client applcation need only _Stub.class fiels.
    Is there way by which we can know how many clients are connected to the
    server and there IP address, can anyone give the code... I guess that you should use a RMI login/logout method to register/unregister your client connection information into a databse or a simple static Hashtable(Vector) object.

  • I am trying to run this sample on my machine

    I am trying to run this sample on my machine as per the instructions to
    install the sample in WLISampleUserGuide.pdf. When I go to the step 6 of the
    installation, I get the following error in the Weblogic Server Console.
    <Sep 17, 2001 10:47:36 AM GMT+05:30> <Error> <Management> <Error
    initializing module certificate.war
    of application samples:Name=certificate,Type=Application from path
    .\config\samples\applications: w
    eblogic.management.MBeanCreationException: cannot find referenced module
    certificate.war>
    <Sep 17, 2001 10:47:46 AM GMT+05:30> <Error> <Management> <Error
    initializing module console.war of
    application samples:Name=console,Type=Application from path
    .\config\samples\applications: weblogic.
    management.MBeanCreationException: cannot find referenced module
    console.war>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component cer
    tificate.war of application samples:Name=certificate,Type=Application:
    java.io.FileNotFoundException
    : .\config\samples\applications\certificate.war (The system cannot find the
    file specified) ((localP
    ath: java.io.FileNotFoundException:
    .\config\samples\applications\certificate.war (The system cannot
    find the file specified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application certificate: error
    retrieving component [Caching Stub]Proxy for
    samples:Name=certificate,Location=myserver,Type=WebAppC
    omponentConfig,ApplicationConfig=certificate>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component con
    sole.war of application samples:Name=console,Type=Application:
    java.io.FileNotFoundException: .\conf
    ig\samples\applications\console.war (The system cannot find the file
    specified) ((localPath: java.io
    .FileNotFoundException: .\config\samples\applications\console.war (The
    system cannot find the file s
    pecified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application console: error retr
    ieving component [Caching Stub]Proxy for
    samples:Name=console,Location=myserver,Type=WebAppComponent
    Config,ApplicationConfig=console>
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    .java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    .java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicCollaborate> <INFO:
    WebLogic Collaborate Serv
    er started successfully.>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <WebLogic
    Server started>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer>
    <SSLListenThread listening on port 70
    02>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <ListenThread
    listening on port 7001>
    Once I put the certificate.war and console.war from
    D:\bea\wlintegration2.0\config\mydomain\applications, the errors related to
    the
    certificate.war and console.war file are not shown. The Weblogic Server
    Console now shows the following
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    .java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    .java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    Did anybody face this problem with this sample? Can somebody help me out
    with this. I am also looking for some basic ways of developing a PIP using
    Rosettanet. Is there is any site that gives such information. I have seen
    the BEA site on rosettanet. That does not help me.
    Regards,
    Dharnidhar Vemuri
    mailto: [email protected]

    Hi
    I am also facing this similar problem. Could any one tell me the root cause of
    this problem.
    Thanks in advance.
    Thanks and Regards
    Ramko
    "weblogic.integrator.developer" <[email protected]> wrote:
    I am trying to run this sample on my machine as per the instructions
    to
    install the sample in WLISampleUserGuide.pdf. When I go to the step 6
    of the
    installation, I get the following error in the Weblogic Server Console.
    <Sep 17, 2001 10:47:36 AM GMT+05:30> <Error> <Management> <Error
    initializing module certificate.war
    of application samples:Name=certificate,Type=Application from path
    ..\config\samples\applications: w
    eblogic.management.MBeanCreationException: cannot find referenced module
    certificate.war>
    <Sep 17, 2001 10:47:46 AM GMT+05:30> <Error> <Management> <Error
    initializing module console.war of
    application samples:Name=console,Type=Application from path
    ..\config\samples\applications: weblogic.
    management.MBeanCreationException: cannot find referenced module
    console.war>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component cer
    tificate.war of application samples:Name=certificate,Type=Application:
    java.io.FileNotFoundException
    : .\config\samples\applications\certificate.war (The system cannot find
    the
    file specified) ((localP
    ath: java.io.FileNotFoundException:
    ..\config\samples\applications\certificate.war (The system cannot
    find the file specified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application certificate: error
    retrieving component [Caching Stub]Proxy for
    samples:Name=certificate,Location=myserver,Type=WebAppC
    omponentConfig,ApplicationConfig=certificate>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component con
    sole.war of application samples:Name=console,Type=Application:
    java.io.FileNotFoundException: .\conf
    ig\samples\applications\console.war (The system cannot find the file
    specified) ((localPath: java.io
    ..FileNotFoundException: .\config\samples\applications\console.war (The
    system cannot find the file s
    pecified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application console: error retr
    ieving component [Caching Stub]Proxy for
    samples:Name=console,Location=myserver,Type=WebAppComponent
    Config,ApplicationConfig=console>
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    ..java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    ..java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicCollaborate> <INFO:
    WebLogic Collaborate Serv
    er started successfully.>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <WebLogic
    Server started>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer>
    <SSLListenThread listening on port 70
    02>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <ListenThread
    listening on port 7001>
    Once I put the certificate.war and console.war from
    D:\bea\wlintegration2.0\config\mydomain\applications, the errors related
    to
    the
    certificate.war and console.war file are not shown. The Weblogic Server
    Console now shows the following
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    ..java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    ..java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    Did anybody face this problem with this sample? Can somebody help me
    out
    with this. I am also looking for some basic ways of developing a PIP
    using
    Rosettanet. Is there is any site that gives such information. I have
    seen
    the BEA site on rosettanet. That does not help me.
    Regards,
    Dharnidhar Vemuri
    mailto: [email protected]

  • Trying to open Terminal I get;You are not authorised to run this application. The administrator has set your shell to an illegal value.

    Hi There Y'all,
    I have recently downloaded MacKeeper. It ran OK for a bit, but has recently stopped allowing Internet security updates and switching on of the internet protection options.
    Asked for help at MacKeeper. Their initial advice did not work, so a very nice technician was going to remotely attempt to fix the issue.
    He however needed/still needs access to Terminal, a to me unbeknown Utility feature of my MacBook pro with Mac OS X 10.6.8.
    While attempting to open Terminal the following came up
    You are not authorised to run this application.
    The administrator has set your shell to an illegal value.
    Did do a diskverify permission and repair and restart.
    Did check my admin settings in advanced options and have the /bin/bash.
    Any advice anyone.
    Thanks.
    in site out

    After finally localing private/etc/shells through Go>Go to folder and replacing the empty shells with the shells~orig I have permission again to open Terminal. Thanks. Another step.
    (Why though can't I access  /private/etc/...  through Finder's search?)
    Should work but the file or folder needs to exists to access it.  If you typed in /private/etc/shells and the file wasn't there there's no place to access.  Certainly /private/etc was there so that would have worked.
    So what will happen by inputting the lines
    ls -Fvl /bin/bash
    ls -Fvl /etc/shells
    more /etc/shells
    into Terminal?
    Basically to find out what you already seemed to find out.  The first command was to display owner, group, and permissions of  /bin/bash and to tell me whether it still existed.
    Similarly for /etc/shells.
    And the last command would have just displayed what was in /etc/shells.
    By the way /private/etc and /etc are the same folder.

  • Office 2013 ODT The operating system is not presently configured to run this application

    hi!
    We have RDS 2012 R2 setup up and running with session host, connection broker, rd gateway and rd web. AS office 2013 can be deployed using APP-V 5 SP2, we have created .appv pkg using ODT as mentioned in this
    guide . It was working fine for 2 days and then suddenly we started to get error popup window saying
    "The operating system is not presently configured to run this application" . We are receiving this error on Session host server(win 2k12 r2) which is App-V 5 sp2 client, when we try to open any office 2013 app.
    And If check on App-v server which is also a publishing server. In event viewer i see this log entry.
    Log Name:      Microsoft-AppV-Server-Publishing/Admin
    Source:        Microsoft-AppV-Server-Publishing
    Event ID:      215
    Level:         Error
    Description:
    The request URL doesn't contain the query string for the client OS.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-AppV-Server-Publishing" Guid="{825C7963-9E32-4E3B-B74A-DF2CC3B6822B}" />
        <Execution ProcessID="3092" ThreadID="5176" />
        <Channel>Microsoft-AppV-Server-Publishing/Admin</Channel>
     </Event>
    SaM

    We have the same issue. All other applications seem to work fine.
    App-V 5.0 SP1 with hotfix package 2 installed on the App-V Management/Publishing server. We only use Windows Server 2012 RDS instead of R2. On the RDS servers, App-V 5.0 SP2 is installed. We use User Profile Disks and also used the ODT for Office
    2013.
    I our case it worked for a few hours. We didn't change anything (no updates of other things) other than having a few users try to login with different accounts to test the application. Reinstalling the client doesn't work and we also tried to removed
    all AppVClientPackages and then clear the cache from locations like:
    %LOCALAPPDATA%\Microsoft\AppV\Client\VFS
    %APPDATA%\Microsoft\AppV\Client\VFS
    C:\ProgramData\App-V
    I'll post a solution if I find one.

  • How can I save my data and the date,the time into the same file when I run this VI at different times?

    I use a translation stage for the experiment.For each user in the lab the stage position (to start an experiment) is different.I defined one end of the stage as zero. I want to save the position , date and time of the stage with respect to zero.I want all these in one file, nd everytime I run it it should save to the same file, like this:
    2/12/03 16:04 13567
    2/13/03 10:15 35678
    So I will track the position from day to day.If naybody helps, I appreciate it.Thanks.

    evolution wrote in message news:<[email protected]>...
    > How can I save my data and the date,the time into the same file when
    > I run this VI at different times?
    >
    > I use a translation stage for the experiment.For each user in the lab
    > the stage position (to start an experiment) is different.I defined one
    > end of the stage as zero. I want to save the position , date and time
    > of the stage with respect to zero.I want all these in one file, nd
    > everytime I run it it should save to the same file, like this:
    > 2/12/03 16:04 13567
    > 2/13/03 10:15 35678
    >
    > So I will track the position from day to day.If naybody helps, I
    > appreciate it.Thanks.
    Hi,
    I know the function "write to spreadsheet file.vi"
    can append the data
    to file. You can use the "concatenate strings" to display the date,
    time as well as data... Hope this help.
    Regards,
    celery

  • I need help to run this package and i got some error

    create or replace
    PACKAGE BODY SUBS_INS_API_sun
    AS
    PROCEDURE SUBSCRIBER_INS_sun
        (SOURCE_SYS_ID IN VARCHAR2,
        TRACKING_ID IN VARCHAR2,
        ACCOUNT_NO IN VARCHAR2,
        prepaidActDevDetails_tab IN prepaidactdvcdetailsobj_sun,
        ERROR_CODE OUT VARCHAR2)
    IS
    Input_Parameter_Is_Null EXCEPTION;
    pragma exception_init(Input_Parameter_Is_Null,-2000);
    prepaidAccountDetails prepaidActDevDetails_tab:= prepaidActDevDetails_tab(NULL,NULL,NULL,NULL,NULL);
    STATUS VARCHAR2(1):='1';
    cust_no VARCHAR(10);
    m_mac_id VARCHAR2(20);
      subscriber_master_Rec subscriber_master%ROWTYPE                 :=NULL;
      flg NUMBER(1);
    BEGIN
       IF(Source_Sys_Id IS NULL OR Tracking_Id IS NULL OR ACCOUNT_NO IS NULL OR prepaidAccountDetails.LAST=0) THEN
        RAISE Input_Parameter_Is_Null;
      END IF;
      BEGIN
             select cm_cust_no into cust_no from customer_master where cm_cust_id=ACCOUNT_NO and cm_status in('A','P','0');
          EXCEPTION
          WHEN NO_DATA_FOUND THEN
            DBMS_OUTPUT.PUT_LINE('NO DATA FOUND');
                   STATUS:='0';
        END;
      BEGIN
         FOR i IN prepaidAccountDetails.FIRST .. (prepaidAccountDetails.LAST) LOOP
         prepaidAccountDetails1:=prepaidActDevDetails_tab(i);
         prepaidAccountDetails1.Status_of_device:='1';
         IF (prepaidAccountDetails.Account_id is NULL OR prepaidAccountDetails.Mac_Id is NULL or prepaidAccountDetails.LOB_value is NULL) THEN
          RAISE Input_Parameter_Is_Null;
                END IF;
                IF(prepaidAccountDetails.LOB_value = 'VDO') THEN
                 IF(prepaidAccountDetails.Channel_Line_Up is NULL) THEN
                  Error_code :='SI002';
                 DBMS_OUTPUT.PUT_LINE('NO DATA FOUND');
                 STATUS:=0;
                  prepaidAccountDetails.Status_of_device:='0';
                 END IF;
                END IF;
                begin
                   select 1 into flg from subscriber_master where pm_phone_no=prepaidAccountDetails.Mac_Id and pm_status in('P','0','A','B');
                EXCEPTION
                 WHEN NO_DATA_FOUND THEN
                  flg:=0;
                 END;
                 if(flg=1) then
                  DBMS_OUTPUT.PUT_LINE('NO DATA FOUND');
                  STATUS:=0;
                  prepaidAccountDetails.Status_of_device:='0';
                 END IF;
                 begin
                  select md_mac_id into m_mac_id from mac_details where md_mac_id=prepaidAccountDetails.Mac_Id and md_start_date<=sysdate
                  and md_status='A';
                EXCEPTION when OTHERS then
                  Error_code :='SI004';
                 DBMS_OUTPUT.PUT_LINE('NO DATA FOUND');
                  STATUS:=0;
                  prepaidAccountDetails.Status_of_device:='0';
                 end;
              if(STATUS= 1 and prepaidAccountDetails.Status_of_device='1') then
               SELECT PM_SUBS_ACT_NO_SEQ.nextval
               INTO subscriber_master_rec.PM_SUBS_ACT_NO
               FROM dual;
              subscriber_master_Rec.pm_phone_no          :=prepaidAccountDetails.Mac_Id;
            subscriber_master_Rec.pm_open_date         :=sysdate;
              subscriber_master_rec.pm_status            :='P';
              subscriber_master_rec.PM_CUST_LVL_YN:='S';
             subscriber_master_rec.PM_EQUP_CODE:=prepaidAccountDetails.LOB_value;
             subscriber_master_rec.PM_HOME_AREA:='HOM';
             subscriber_master_rec.PM_USG_CODE:='USG';
             subscriber_master_rec.PM_NO_TYPE:='S';
             subscriber_master_rec.PM_TCG_CODE:='DEF';
             subscriber_master_rec.PM_APLN_DATE:=sysdate;
              subscriber_master_rec.PM_USER2:=prepaidAccountDetails.LOB_value;
              subscriber_master_rec.PM_USER3:=prepaidAccountDetails.Channel_Line_Up;
              subscriber_master_rec.pm_cust_no:=cust_no;
              INSERT INTO subscriber_master VALUES subscriber_master_rec;
            END IF;
         END LOOP;
        END;
      END SUBSCRIBER_INS_sun;
    END SUBS_INS_API_sun;
    and
    i got this error
    Package Body PREPAID_TESTNEW.SUBS_INS_API@PREPAID_TESTNEW
    Error(73,4): PL/SQL: Statement ignored
    Error(73,99): PLS-00302: component 'LAST' must be declared
    Error(87,6): PL/SQL: Statement ignored
    Error(87,37): PLS-00302: component 'FIRST' must be declared
    please help to run this package if anyone knows

    now i corrected my package. It working fine. But, how to run this package via procedure. my procedure check below. I give all the details about my package check below.
    ---pkg specification
    create or replace
    PACKAGE SUBS_INS_API_SS
    IS
    PROCEDURE SUBSCRIBER_INS_SS
        (SOURCE_SYS_ID IN VARCHAR2,
        TRACKING_ID   IN VARCHAR2,
        ACCOUNT_NO IN VARCHAR2,
        prepaidActDevDetails_tab IN prepaidActDeviceDetails_tabobj,
        ERROR_CODE OUT VARCHAR2);
    END SUBS_INS_API_SS;
    -----pkg body
    create or replace
    PACKAGE BODY SUBS_INS_API_SS
    AS
       PROCEDURE log_error (ip_code          IN VARCHAR2,
                            ip_message       IN VARCHAR2,
                            ip_description   IN VARCHAR2)
       IS
       BEGIN
          INSERT INTO ERR_LOG (IEL_REF_ID,
                               IEL_DATE,
                               IEL_CODE,
                               IEL_MSG,
                               IEL_DESC)
               VALUES (IVRS_ERR_LOG_SEQ.NEXTVAL,
                       SYSDATE,
                       ip_code,
                       ip_message,
                       ip_description);
       EXCEPTION
          WHEN OTHERS
          THEN
             ROLLBACK;
       END log_error;
       PROCEDURE INSERT_WS_LOG (SOURCE_SYS_ID   IN VARCHAR2,
                                STATUS          IN VARCHAR2,
                                TRACKING_ID     IN VARCHAR2,
                                ACCOUNT_ID      IN VARCHAR2,
                                MAC_ID          IN VARCHAR2)
       IS
          ws_log_rec   WS_LOG%ROWTYPE := NULL;
       BEGIN
          SELECT WS_LOG#REC#ID.NEXTVAL INTO ws_log_rec.rec#id FROM DUAL;
          ws_log_rec.VER#ID := 1;
          ws_log_rec.CRE#TS := SYSDATE;
          ws_log_rec.wl_source := SOURCE_SYS_ID;
          ws_log_rec.wl_status := Status;
          ws_log_rec.wl_tracking_id := tracking_id;
          ws_log_rec.wl_account_id := account_id;
          ws_log_rec.wl_mac_id := mac_id;
          INSERT INTO ws_log
               VALUES ws_log_rec;
       EXCEPTION
          WHEN OTHERS
          THEN
             ROLLBACK;
       END INSERT_WS_LOG;
        PROCEDURE REPLICO_DEV_INFO( Acc_id IN VARCHAR2, Mc_Id IN VARCHAR2,channel IN VARCHAR2,
                                     LOB_VAL IN VARCHAR2, outlet1 IN VARCHAR2, kit_cod IN VARCHAR2,
                                     serial_No IN VARCHAR2, shipperr IN VARCHAR2, estm_recived_date IN date)                                                                
        IS
                  Replico_device_info_det_Rec   Replico_device_info_det%ROWTYPE := NULL;
                  REC_ID  NUMBER;
        BEGIN
                  SELECT REPLICO_DEVICE_INFO_DET#RECID.nextval INTO REC_ID FROM dual; 
                   Replico_device_info_det_Rec.REC#ID := REC_ID;                 
                   Replico_device_info_det_Rec.ACCOUNT_ID := Acc_id;
                   Replico_device_info_det_Rec.MAC_ID := Mc_Id;               
                   Replico_device_info_det_Rec.CHANNEL_LINE_UP := channel;
                   Replico_device_info_det_Rec.LOB_VALUE := LOB_VAL;  
                   Replico_device_info_det_Rec.OUTLET := outlet1;
                   Replico_device_info_det_Rec.KIT_CODE := kit_cod;                
                   Replico_device_info_det_Rec.SERIAL_NUMBER := serial_No;                
                   Replico_device_info_det_Rec.SHIPPER := shipperr;                
                   Replico_device_info_det_Rec.ESTIMATED_RECIVED_DATE := estm_recived_date;
                  INSERT INTO replico_device_info_det
                        VALUES Replico_device_info_det_Rec;
                  EXCEPTION
                          WHEN OTHERS
                          THEN
                              ROLLBACK;
        END REPLICO_DEV_INFO;
       PROCEDURE SUBSCRIBER_INS_SS (
          SOURCE_SYS_ID              IN     VARCHAR2,
          TRACKING_ID                IN     VARCHAR2,
          ACCOUNT_NO                 IN     VARCHAR2,
          prepaidActDevDetails_tab   IN     prepaidActDeviceDetails_tabobj,
          ERROR_CODE                    OUT VARCHAR2)
       IS
          Input_Parameter_Is_Null       EXCEPTION;
          PRAGMA EXCEPTION_INIT (Input_Parameter_Is_Null, -2000);
          prepaidAccountDetails         prepaid_act_dvc_details_obj
                                           := prepaid_act_dvc_details_obj  (NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL,
                                                                              NULL);
          STATUS                        VARCHAR2 (1) := '1';
          cust_no                       VARCHAR (10);
          m_mac_id                      VARCHAR2 (20);
          channel_lineup                VARCHAR2 (25);
          LOB_VALUE                     VARCHAR2 (25);
          subscriber_master_Rec         subscriber_master%ROWTYPE := NULL;
        Replico_device_info_det_Rec   Replico_device_info_det%ROWTYPE := NULL;
          flg                           NUMBER (1);
          plan_code                     VARCHAR2(10);
          subs_aact_no                 NUMBER(20);
          m_plan_code1               payment_transaction_history.TH_PLAN_CODE%type;
          m_payment_mode1           payment_transaction_history.TH_PAYMENT_MODE%type;
          pm_phone_no_cur        subscriber_master.pm_phone_no%type;
          pm_status_cur          subscriber_master.pm_status%type;
          pm_user2_cur          subscriber_master.pm_user2%type;
          pm_user9_cur        subscriber_master.pm_user9%type;
          pm_cust_no_cur       subscriber_master.pm_cust_no%type;
          pm_cust_1            subscriber_master.pm_cust_no%type;
          cm_i                 customer_master.cm_status%type;
         CURSOR subs_rec is select pm_cust_no, pm_phone_no, pm_status, pm_user2, pm_user9 from subscriber_master
         where pm_cust_no = cust_no and pm_status= 'S';
       BEGIN
          IF (   Source_Sys_Id IS NULL
              OR Tracking_Id IS NULL
              OR ACCOUNT_NO IS NULL
              OR prepaidActDevDetails_tab.LAST = 0)
          THEN
             RAISE Input_Parameter_Is_Null;
          END IF;
          BEGIN
             SELECT cm_cust_no
               INTO cust_no
               FROM customer_master
              WHERE cm_cust_id = ACCOUNT_NO AND cm_status IN ('A', 'P', '0');
          EXCEPTION
             WHEN NO_DATA_FOUND
             THEN
                ERROR_CODE := 'SI001';
                log_error ('SI001',
                           SQLERRM,
                           'No Customer exist with Active or Pre Actiavted');
                INSERT_WS_LOG (Source_Sys_Id,
                               'F',
                               Tracking_Id,
                               Account_No,
                               prepaidAccountDetails.Mac_Id);
                STATUS := '0';
          END;
          BEGIN
             FOR i IN prepaidActDevDetails_tab.FIRST ..
                      (prepaidActDevDetails_tab.LAST)
             LOOP
                prepaidAccountDetails := prepaidActDevDetails_tab (i);
                prepaidAccountDetails.Status_of_device := '1';
                IF (   prepaidAccountDetails.Account_id IS NULL
                    OR prepaidAccountDetails.Mac_Id IS NULL
                    OR prepaidAccountDetails.LOB_value IS NULL)
                THEN
                   RAISE Input_Parameter_Is_Null;
                END IF;
                IF (prepaidAccountDetails.LOB_value = 'VIDEO')
                THEN
                   /* Commented as channel lineup is not coming from the input request */
                   /*IF(prepaidAccountDetails.Channel_Line_Up is NULL) THEN
                    Error_code :='SI002';
                   log_error ('SI002', SQLERRM, 'Channel line up is mandatory for Video');
                   INSERT_WS_LOG(Source_Sys_Id,'F',Tracking_Id,Account_No,prepaidAccountDetails.Mac_Id);
                   STATUS:=0;
                    prepaidAccountDetails.Status_of_device:='0';
                   END IF;*/
                   SELECT EC_CHANNEL_LINEUP
                     INTO channel_lineup
                     FROM ELIGIBLE_CUSTOMER
                    WHERE EC_CUSTOMER_NO = cust_no;
                END IF;
                BEGIN
                   SELECT 1
                     INTO flg
                     FROM subscriber_master
                    WHERE     pm_phone_no = prepaidAccountDetails.Mac_Id
                          AND pm_status IN ('P', '0', 'A', 'B');
                EXCEPTION
                   WHEN NO_DATA_FOUND
                   THEN
                      flg := 0;
                END;
                IF (flg = 1)
                THEN
                   ERROR_CODE := 'SI003';
                   log_error ('SI003',
                              SQLERRM,
                              'Customer Already Exist with given Mac Id');
                   INSERT_WS_LOG (Source_Sys_Id,
                                  'F',
                                  Tracking_Id,
                                  Account_No,
                                  prepaidAccountDetails.Mac_Id);
                   STATUS := 0;
                   prepaidAccountDetails.Status_of_device := '0';
                END IF;
                BEGIN
                   SELECT md_mac_id
                     INTO m_mac_id
                     FROM mac_details
                    WHERE     md_mac_id = prepaidAccountDetails.Mac_Id
                          AND md_start_date <= SYSDATE
                          AND md_status = 'A';
                EXCEPTION
                   WHEN OTHERS
                   THEN
                      ERROR_CODE := 'SI004';
                      log_error ('SI004', SQLERRM, 'Invalid Mac Id');
                      INSERT_WS_LOG (Source_Sys_Id,
                                     'F',
                                     Tracking_Id,
                                     Account_No,
                                     prepaidAccountDetails.Mac_Id);
                      STATUS := 0;
                      prepaidAccountDetails.Status_of_device := '0';
                END;
                 select pm_cust_no into pm_cust_1 from subscriber_master where pm_cust_no = cust_no;
                IF (STATUS = 1 AND prepaidAccountDetails.Status_of_device = '1')
                THEN
                     SELECT DECODE (prepaidAccountDetails.LOB_value,
                                  'HSD', 'HSD',
                                  'VIDEO', 'VDO')
                     INTO LOB_VALUE
                     FROM DUAL;
            OPEN subs_rec;
            LOOP
            FETCH subs_rec into pm_cust_no_cur, pm_phone_no_cur, pm_status_cur, pm_user2_cur, pm_user9_cur;
              IF subs_rec%FOUND THEN
                 IF
                  ( pm_cust_1 = pm_cust_no_cur and pm_user2_cur= LOB_VALUE and pm_user9_cur = prepaidAccountDetails.outlet and pm_status_cur = 'S')
                    THEN
                        update subscriber_master set pm_phone_no = prepaidAccountDetails.Mac_Id, pm_status = 'P', pm_name = prepaidAccountDetails.Mac_Id
                        where pm_cust_no = pm_cust_no_cur and pm_user9 = prepaidAccountDetails.outlet;
                         select cm_status into cm_i from customer_master where cm_cust_no = pm_cust_no_cur;
                            IF( cm_i = '0')
                            THEN
                                update customer_master set cm_status = 'P' where cm_cust_no = pm_cust_no_cur;
                             END IF;
                             REPLICO_DEV_INFO( prepaidAccountDetails.Account_id, prepaidAccountDetails.Mac_Id,channel_lineup,
                                               prepaidAccountDetails.LOB_value, prepaidAccountDetails.outlet, prepaidAccountDetails.kit_code,
                                               prepaidAccountDetails.serial_Number, prepaidAccountDetails.shipper,prepaidAccountDetails.estimated_recived_date);
                    ELSIF
                        ( pm_cust_1 = pm_cust_no_cur and pm_user2_cur= LOB_VALUE and pm_user9_cur = null and pm_status_cur = 'S')
                          THEN
                             update subscriber_master set pm_phone_no = prepaidAccountDetails.Mac_Id, pm_status = 'P', pm_name = prepaidAccountDetails.Mac_Id, pm_user9 = prepaidAccountDetails.outlet
                             where pm_cust_no = pm_cust_no_cur and pm_user9 = NULL;
                             update customer_master set cm_status = 'P' where cm_cust_no = pm_cust_no_cur;
                             REPLICO_DEV_INFO( prepaidAccountDetails.Account_id, prepaidAccountDetails.Mac_Id,channel_lineup,
                                               prepaidAccountDetails.LOB_value, prepaidAccountDetails.outlet, prepaidAccountDetails.kit_code,
                                               prepaidAccountDetails.serial_Number, prepaidAccountDetails.shipper,prepaidAccountDetails.estimated_recived_date);
                    END IF;
                 ELSIF subs_rec%NOTFOUND THEN
                       SELECT PM_SUBS_ACT_NO_SEQ.NEXTVAL
                       INTO subs_aact_no
                       FROM DUAL;
                       subscriber_master_rec.PM_SUBS_ACT_NO := subs_aact_no;
                       subscriber_master_Rec.pm_phone_no :=
                        prepaidAccountDetails.Mac_Id;
                       subscriber_master_Rec.pm_open_date := SYSDATE;
                       subscriber_master_rec.pm_status := 'P';
                       subscriber_master_rec.PM_CUST_LVL_YN := 'S';
                       subscriber_master_rec.PM_EQUP_CODE := LOB_VALUE;
                       subscriber_master_rec.PM_HOME_AREA := 'HOM';
                       subscriber_master_rec.PM_USG_CODE := 'USG';
                       subscriber_master_rec.PM_NO_TYPE := 'S';
                       subscriber_master_rec.PM_TCG_CODE := 'DEF';
                       subscriber_master_rec.PM_APLN_DATE := SYSDATE;
                       subscriber_master_Rec.PM_NAME := prepaidAccountDetails.Mac_Id;
                       subscriber_master_Rec.PM_STAFF_id := '16';
                       subscriber_master_rec.PM_USER2 := LOB_VALUE;
                       subscriber_master_rec.PM_USER3 := channel_lineup;
                       subscriber_master_rec.pm_cust_no := cust_no;
                       subscriber_master_rec.PM_USER8 := 'Y';
                       INSERT INTO subscriber_master
                       VALUES subscriber_master_rec;
                       REPLICO_DEV_INFO( prepaidAccountDetails.Account_id, prepaidAccountDetails.Mac_Id,channel_lineup,
                                         prepaidAccountDetails.LOB_value, prepaidAccountDetails.outlet, prepaidAccountDetails.kit_code,
                                         prepaidAccountDetails.serial_Number, prepaidAccountDetails.shipper,prepaidAccountDetails.estimated_recived_date);
             END IF;
             END LOOP;
             CLOSE subs_rec;
                  SELECT TH_PLAN_CODE,TH_PAYMENT_MODE
                   INTO m_plan_code1,m_payment_mode1
                   FROM PAYMENT_TRANSACTION_HISTORY
                   WHERE TH_CUSTOMER_NO = cust_no
                   AND TH_LOB = LOB_VALUE
                   AND TH_SUBSCRIBER_NO IS NULL;
                   IF(LOB_VALUE = 'HSD') THEN
                    IF(m_plan_code1 = 'SIKI') THEN
                          plan_code := 'SIKI';
                                             ELSE
                      plan_code := 'KIT';
                    END IF;
                   ELSE
                    IF(m_plan_code1 = 'SIKT') THEN
                             plan_code := 'SIKT';
                    ELSE
                          plan_code := 'TV';
                    END IF;
                   END IF;               
                          UPDATE PAYMENT_TRANSACTION_HISTORY SET TH_SUBSCRIBER_NO = subs_aact_no, th_writeback_status = 'Y' WHERE TH_CUSTOMER_NO = cust_no AND TH_PLAN_CODE = plan_code;
                          COMMIT;
                END IF;
             END LOOP;
          END;
       END SUBSCRIBER_INS_SS;
    END SUBS_INS_API_SS;
    --- type object
    create or replace
    TYPE   prepaid_act_dvc_details_obj--prepaidAccountDeviceDetailsObj
    AS     OBJECT ( Account_id VARCHAR2 ( 25 )
           , Mac_Id VARCHAR2 ( 25 )
           , Channel_Line_Up VARCHAR2 ( 25 )
           , LOB_value VARCHAR2 ( 25 )
           , Status_of_device VARCHAR2 ( 25 )
            , outlet VARCHAR2(25)
            , kit_code VARCHAR2(25)
            , serial_Number VARCHAR2(25)
            , shipper VARCHAR2(25)
            , estimated_recived_date date )
    type---
    create or replace
    TYPE prepaidActDeviceDetails_tabobj as table of prepaid_act_dvc_details_obj
    ---- i need to run this package via separate procedure. but i don't know how to pass the variable. because the passing argument contain object tab variable. please help me.. give me suggestion or procedure to run this pkg.

  • Getting Error while running this query

    Hi,
    SELECT SUM(BATCHWISE_COUNT) TOTALBATCHCOUNT,
         TO_CHAR(SUM(BATCHWISEAMOUNT),'9,99,99,99,99,99,99,99,990.99') TOTALAMOUNT ,
         SUM(SLIP_RECORDS) TOTALSLIPCOUNT,
         SUM(CHEQUEONLY_RECORD) TOTALCHEQUECOUNT
    from (SELECT COUNT(TI.FLDITEMINITIALID) BATCHWISE_COUNT from TBLITEMINITIAL TI),
    (select SUM(IT.FLDAMOUNT)/100 BATCHWISEAMOUNT from TBLITEMINFOTRANS IT ),
    (SELECT COUNT(FLDITEMINITIALID) FROM TBLITEMINITIAL TI WHERE FLDBATCHNUMBER NOT IN (select FLDBATCHNUMBER from TBLITEMINITIAL_DEL where TI.FLDCAPTURINGDATE=FLDCAPTURINGDATE) AND TI.FLDITEMTYPE = 'P' AND TI.FLDCAPTURINGMODE = 'CP') SLIP_RECORDS,
    (SELECT COUNT(FLDITEMINITIALID) FROM TBLITEMINITIAL TI WHERE FLDBATCHNUMBER NOT IN (select FLDBATCHNUMBER from TBLITEMINITIAL_DEL where TI.FLDCAPTURINGDATE=FLDCAPTURINGDATE) AND FLDITEMTYPE = 'C' AND FLDCAPTURINGMODE = 'CO') CHEQUEONLY_RECORD
    from TBLITEMINITIAL TI,
                   TBLITEMINFO II,
                   TBLITEMINFOTRANS IT
              WHERE     II.FLDITEMINITIALID                    = TI.FLDITEMINITIALID
              AND     II.FLDITEMID                         = IT.FLDITEMID
              GROUP BY TRUNC(TI.FLDCAPTURINGDATE),TI.FLDBATCHNUMBER,TI.FLDCAPTURINGBRANCH,TI.FLDSCANNERID)
    Im geeting error
    ORA-00933: SQL command not properly ended
    when running this query
    I don't know what mistake i have done in this query , Kindly help for solving this issue
    Thanks
    Bala,
    Edited by: 965937 on Feb 11, 2013 9:25 PM

    Dear Friend
    Try with the query below,
    <<
    SELECT SUM(BATCHWISE_COUNT) TOTALBATCHCOUNT,
    TO_CHAR(SUM(BATCHWISEAMOUNT),'9,99,99,99,99,99,99,99,990.99') TOTALAMOUNT ,
    SUM(SLIP_RECORDS) TOTALSLIPCOUNT,
    SUM(CHEQUEONLY_RECORD) TOTALCHEQUECOUNT
    from (SELECT COUNT(TI.FLDITEMINITIALID) BATCHWISE_COUNT from TBLITEMINITIAL TI),
    (select SUM(IT.FLDAMOUNT)/100 BATCHWISEAMOUNT from TBLITEMINFOTRANS IT ),
    (SELECT COUNT(FLDITEMINITIALID) FROM TBLITEMINITIAL TI WHERE FLDBATCHNUMBER NOT IN (select FLDBATCHNUMBER from TBLITEMINITIAL_DEL where TI.FLDCAPTURINGDATE=FLDCAPTURINGDATE) AND TI.FLDITEMTYPE = 'P' AND TI.FLDCAPTURINGMODE = 'CP') SLIP_RECORDS,
    (SELECT COUNT(FLDITEMINITIALID) FROM TBLITEMINITIAL TI WHERE FLDBATCHNUMBER NOT IN (select FLDBATCHNUMBER from TBLITEMINITIAL_DEL where TI.FLDCAPTURINGDATE=FLDCAPTURINGDATE) AND FLDITEMTYPE = 'C' AND FLDCAPTURINGMODE = 'CO') CHEQUEONLY_RECORD
    from TBLITEMINITIAL TI,
    TBLITEMINFO II,
    TBLITEMINFOTRANS IT
    WHERE II.FLDITEMINITIALID = TI.FLDITEMINITIALID
    AND II.FLDITEMID = IT.FLDITEMID
    GROUP BY TRUNC(TI.FLDCAPTURINGDATE),TI.FLDBATCHNUMBER,TI.FLDCAPTURINGBRANCH,TI.FLDSCANNERID;
    Regards
    Ahamed Rafeeque Cherkala
    Edited by: Ahamed Rafeeque on Feb 12, 2013 3:20 AM

  • Error while running this small Application. Please Guide

    Hello Folks
    I am getting this error when I run this small application.
    Can some one please tell me what is the problem?
    Attached is the ERROR and the CLASS.
    The ERROR is:
    java.lang.NullPointerException
         at javax.swing.plaf.basic.BasicTabbedPaneUI$TabbedPaneLayout.calculateSize(BasicTabbedPaneUI.java:1293)
         at javax.swing.plaf.basic.BasicTabbedPaneUI$TabbedPaneLayout.preferredLayoutSize(BasicTabbedPaneUI.java:1272)
         at java.awt.Container.preferredSize(Container.java:836)
         at java.awt.Container.getPreferredSize(Container.java:820)
         at javax.swing.JComponent.getPreferredSize(JComponent.java:1044)
    CLASS:
    public class BlankPaneDemo {
    private JTabbedPane tabbedPane;
    private JFrame dlframe;
    // Constructor.
    public BlankPaneDemo() {
    dlframe = new JFrame("The Plumes Proxy ");
    tabbedPane = new JTabbedPane(SwingConstants.LEFT);
    tabbedPane.setBackground(Color.blue);
    tabbedPane.setForeground(Color.white);
    // Calls a method that adds individual tabs to the
    // tabbedpane object.
    populateTabbedPane();
    dlframe.getContentPane().add(tabbedPane);
    dlframe.pack();
    dlframe.setSize(765, 690);
    dlframe.setBackground(Color.white);
    dlframe.setVisible(true);
    } // End Constructor.
    private void populateTabbedPane()
    tabbedPane.addTab("Welcome",
    null,
    null,
    "Welcome Options");
    public static void main(String[] args)
    BlankPaneDemo bpd = new BlankPaneDemo();
    } // End Class.

    Which version of jdk are you using ?
    in jdk1.4 it is working fine on my system,
    May be there is problem with passing null component in statement :
    tabbedPane.addTab("Welcome", null, null, "Welcome Options");

  • Macbook air: you do not have sufficient access privileges. you need to run this game from an administrator account??? I'm already on the administrator account?

    I bought a mac game from www.gamehouse.com. Downloaded it and now trying to install to play. But everytime I go to install, a message keeps popping up telling me "Your account doesn't have sufficient access privileges. You will need to run this game once from an administrator account. Afterwards you will be able to run it from this account." I am already on the administrator account. Can someone please help?!

    Only the developer can fix his apparently defective product.

  • Who runs this community?

    I post a questions, the first reply start off with "You are wasting your time" and clearly does NOT answer my questions. I reply to that saying I have higher expectations for Apple than other cheaper products.
    My post gets deleted for not meeting community guidelines, and the above post which INSULTED my initial question, is marked as 'Answered my question'
    So my question for this post is - who runs this? Apple or some volunteers? Marking a post as 'Solved Problem' on my behalf that tells me "You are wasting your time" is not usefull!
    At this point I'd like to delete the original posit since clearly "I'm wasting my time" on here.
    Sheesh!
    Mac owner from MacPlus to MBP Retina since 1988

    "You are wasting your time" and clearly does NOT answer my questions.
    Actually, it does answer your question. Maybe not all that politely, but it is correct. Like virtually any other such device (iPad, Blackberry, Samsung), Apple does not make their own batteries. They get them from the same very few suppliers as everyone else. And like all such "performance" claims by manufacturers, they are based on absolute best circumstances and use. Typical use will not yield those results.
    who runs this? Apple or some volunteers?
    Apple owns and operates these boards. Other users handle almost 100% of the questions. Rarely will you see an Apple employee posting an answer. Of those, it is almost always one of the hosts explaining something related to the use of these boards, not an answer to a technical question.
    Marking a post as 'Solved Problem' on my behalf that tells me "You are wasting your time" is not useful!
    Well, only you can do that. No one else, not even the hosts can in any way mark a post Solved or Helpful. Only the person who started a topic can. So in the case of the only other topic under your name, you awarded the Solved and Helpful points. Therefore, your claim of someone else doing so "on your behalf" isn't possible.

  • Hi when i run this in toad for explain plan  its showing an error ORA_22905

    hi when i run this query in toad for explain plan its showing an error ORA_22905 cannot accesss rows from an non nested table item can anyone help me out
    SELECT
    DISTINCT SERVICE_TBL.SERVICE_ID , SERVICE_TBL.CON_TYPE, SERVICE_TBL.S_DESC || '(' || SERVICE_TBL.CON_TYPE || ')' AS SERVICE_DESC ,SERVICE_TBL.CON_STAT
    FROM
    TABLE(:B1 )SERVICE_TBL
    WHERE
    CON_NUM = :B2
    thanks

    Note the name of this forum is SQL Developer *(Not for general SQL/PLSQL questions)* (so for issues with the SQL Developer tool). Please post these questions under the dedicated SQL And PL/SQL forum.
    Regards,
    K.

  • Warning when trying to launch application over mapped drive "We can't verify who created this file. Are you sure you want to run this file?"

    We have 2 load balanced application servers that map drives with programs on them for users from a central server that are giving the warning "We can't verify who created this file. Are you sure you want to run this file?". Basically how it works
    is a user logs in to one or the other application servers (for example, 10.0.0.1 or 10.0.0.2) and runs a log on script that maps an L:\ drive to the users folder on the central storage server (10.0.0.100). When the user goes to launch the .exe from the L:\
    drive it presents that warning.
    I've looked around and have seen recommendations that you need to add the site to the local intranet zone for IE, but when I try to add L:\ it tells me that I have entered an invalid sequence. It appears that you can only put network shares in that location,
    which is not how we're mapping the drive.
    Has anyone run in to this before and knows how to resolve it?
    Thanks!

    Hi,
    A mapped drive letter is not supported so please try to input \\server or \\server\folder to see if it will help. 
    If you have any feedback on our support, please send to [email protected]

Maybe you are looking for

  • Error in report out put

    Hi, I included a PO Number in Query designer and executed the report it gives an error as " PO_Number" has hexadecimal and invalid characters. when i execute the query after removing the 'PO_Number" from the query designer and execute its working fin

  • Active Directory cn field not updated from sap HR using ldap.

    Hi, Apologies if this is in the wrong forum area. I am using the LDAP facility to create and modify Active Directory records from sap HR. Initially, the name field cn that was coming across into AD was in the format of the logical system and employee

  • Speed issues deleting files on a converted partitons (ext3-- ext4)

    @ loudtiger - I started this topic in reply to your questions posted here since they are off topic and I wanted to help keep the signal-to-noise up for the original thread. loudtiger wrote:slightly unrelated, does anyone find that deleting a particul

  • App availability for 2nd gen touch

    Can't find any apps in the app store that will work!!!!!

  • Auto Delivery creation for sales order

    Hi All, We have requirement to create an outbound delivery for a sales order.. Can you provide me the steps to follow to achieve this.. Thanks & Regards Santhosh