Problem with start-of-selection

Hello Experts!
I am facing a weird situation and I am not able to do anything about it. Here is the problem-
I have a report. When I execute the report directly and provide values for selection-screen parameters, the control enters the start-of selection. But, I have created a tcode for this report and when i execute this transaction code and give the same values, the control does not enter the start-of-selection and I am kicked out of this z transaction. I have no idea why this is happening.
This is my code-
PROGRAM zmmnae_req_extract LINE-SIZE 120.
INCLUDE:
  zmmnae_req_extract_decl,
  zmmnae_req_extract_macros,
  zmmnae_req_extract_selscr,
  zmmnae_req_extract_forms.
INITIALIZATION Event
INITIALIZATION.
Read config values from SSM_VAR
  PERFORM do_initialization.
AT SELECTION-SCREEN Events
AT SELECTION-SCREEN.
Validate the selection screen fields
  PERFORM do_input_validation.
START-OF-SELECTION Event
START-OF-SELECTION.
Before doing anything, check the error status flag
  CASE err_status.
    WHEN fatal.
      MESSAGE i999(zv) WITH text-002.
      EXIT.
    WHEN nonfatal.
      MESSAGE i999(zv) WITH text-015.
    WHEN OTHERS.
  ENDCASE.
Prepare for processing:
  PERFORM setup.
Get data to be processed:
  PERFORM get_data.
Process the data:
  PERFORM process_data.
Could anybody please help me out?
Thanks and Regards,
Smitha

Hi Smita,
When you create the Transaction code either thru Se80 or thru Se93... please see that you are giving the screen number asked there as 1000, which is the default screen number for the selection screen.
Also, please see if the checkboxes for the GUI Support are ticked. I think it iwll solve you problem.
Regards,
Jayant

Similar Messages

  • HT1338 Problem with MAIL, when select names that start with "E" the mail freeze. Can't fix it.

    Problem with MAIL, when select names that start with "E" the mail freeze. Can't fix it.

    Now I checked the materials that I got from AT&T Yahoo and
    port 25 is used as the outgoing mail port, 110 for incoming.
    This is for the POP type account provided by AT&T, not necessarily for an email account and SMTP server not provided by AT&T.
    Sounds like AT&T blocks using an SMTP server that is outside of their network or not provided by AT&T on Port 25.
    Try the following first.
    Go to Mail > Preferences > Accounts and under the Account Information tab for your .Mac account preferences at the SMTP server selection, select the Server Settings button below for the .Mac SMTP server.
    Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.
    If this doesn't work, we will go to plan B.

  • Problem with starting OEM-agent on NT (clustered)

    We have problem with starting the OEM-agent (9i) on Windows 2000. The Nt-server is clustered.
    I have started the OracleAgent by the service screen. Everyting looks ok.
    But, from the server where the OEM-console is installed I can't contact the
    agent.
    I stopped then the agent and started it by typing;
    d:\oracle\ora92\bin\agntsrvc.exe
    Than i get the error:
    StartServiceCtrlDispatcher Failed with err 1063
    Anyone an idea?
    Thanks.
    Klaas

    Increate the virtual memory and try to start the service here:
    SELECT START > CONTROL PANEL > ADMINISTRATIVE TOOLS > SERVICES
    Joel Pérez

  • I have problem with starting up my Mac Pro ?

    Dear ,
    I'have a problem with starting up my Mac Pro , please advice me how to start it

    This may help.
    http://support.apple.com/kb/TS1365
    Note: Steps 5 and 6
    Step 5
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • F-32 : Problem with Open Item selection

    Hi,
    We have a strange problem with open Item selection for customer clearing in t-code F-32
    In My QA system
    if I input spl GL indicator ="*" and uncheck Normal OI tick,
    the system selects all open items,
    (those with spl GL indicator and those without spl GL indicator)
    In My Dev system
    If I input spl GL indicator ="*" and uncheck Normal OI tick
    the system does not select any open items,
    Please let me know which setting controls this behaviour ?
    Regards
    Sachin

    Hello,
    Check your data in FBL5N for the option "Special GL Transactions". There could be that there is no data in the system with SPECIAL GL TRANSACTIONS.
    In F-32, there is no value like *
    You need to input right Special GL Indicator. "*" will not work here.
    I am sure in both the systems if you put "*" and UNTICK your normal transaction, you will NOT get any items to clear.
    Please DOUBLE CHECK whether you have unticked normal transaction.
    Regards,
    Ravi

  • Problem with starting Windows when W510 in docking station

    When I put in my W510 to the docking station, I have usually every second day problems with starting up Windows operation system.
    I make 2 videos, where on the first 100_1060.MOV you can see starting Windows when it is frozen (first 1 minute record, I start record after about 3 minutes frozen), then I have to reboot W510 by on/off button and start ThinkVantage.
    On the second video 100_1061.MOV is starting operating system after ThinkVantage process, this start is OK.
    http://www.licko.cz/w510/100_1060.MOV
    http://www.licko.cz/w510/100_1061.MOV
    Why I have this problems? I have latest Windows and W510 updates.
    Regards,
      Lubomir Licko
    Solved!
    Go to Solution.

    There was some upgrades of Microsoft and Lenovo and I don't have this problem long time.

  • Problem with starting more than one SwingWorker

    Hello
    I wonder if anyone could tell me if there are known problems with starting more than one SwingWorker thread at once?
    In response to an action the user performs, I need to obtain several lists of things from the server. This includes a couple of server-calls, and I want to do the server calls in a thread outside the awt-event thread. So I start a couple of SwingWorker-threads. This works fine sometimes, but not always. Sometimes code in some of the SwingWorkers finished method does not update the ui. I can see that the correct calls are made, but the ui is still not updated correctly. The problem seems to be related to the sequence of when the different thread are finished. For instance, if the sequence is like this:
    SwingWorker1.construct
    SwingWorker2.construct
    SwingWorker1.finished
    SwingWorker2.finished
    Things go fine, but if the sequence is:
    SwingWorker1.construct
    SwingWorker1.finished
    SwingWorker2.construct
    SwingWorker2.finished
    the ui-updates in SwingWorker1.finished is not done correctly.
    Can anyone help me with this?

    This is the point:
    In one SwingWorker thread you have 1 construct method, and 1 finish method - which are both invoked once.
    Therefore you only have one opportunity to update the gui in that thread. This forces you to use many threads if you want regular updates, which I try to avoid.
    Therefore, the solution!
    Have a loop in the construct method that executes the algorithm accordingly, updating the gui accordingly at regular times, maintaining just the 1 thread - becomes easier and nicer for the programmer and the JVM.
    The finish method in this case is to update the gui when all iterations are finished.
    There is nothing wrong with this. Just because you have a finish method that is called in the event-dispatching thread doesn't mean that all your update code must be in there.
    What you MUST ensure is that ALL your update code is executed in the event-dispatching thread, that is the most important thing. After all, SwingWorker is just a helper class, not the gospel template of how to update a gui.

  • Problem with starting JSPM

    Hi all,
    I have a problem with starting JSPM. We have just upgraded to SAP NWS 2004s SP11 SR2. We are in AIX server. So to execute JSPM, I log on to AIX server using PUTTy with <SID>adm. I go to /usr/sap/<SID>/DVEBMGS00/j2ee/JSPM and i execute the "go" program. But I have the following thing :
    Current log directory is /usr/sap/OWA/DVEBMGS00/j2ee/JSPM/log/log_2007_04_25_14_54_53.
    Waiting for SDTServer to connect on hostname froafbwod1/10.8.134.129 socket 6240 ...
    So what happend, I don't understand anything...Pls, someone can help me?
    Thanks for your reply...

    Hi,
    Hope this helps you - http://help.sap.com/saphelp_nw04s/helpdata/en/42/e7e7cb64ac3ee4e10000000a1553f7/content.htm
    JSPM: Better Know It Now Than Later
    JSPM does not start
    JSPM DIR_EPS_ROOT error during the execution of the JSPM_PROCESS phase
    Bye...

  • Problem with starting/stopping OPMN

    Hi there,
    i have an problem with starting and stopping the opmn. When i try to start/stop/reload the opm i get this error:
    opmnctl: opmn is not running
    root@klart1:/opt/oracle/product/aserver/opmn/bin>./opmnctl shutdown
    Kommunikationsfehler beim lokalen Port f� den OPMN-Server.
    Weitere Informationen hierzu finden Sie in den OPMN-Log-Dateien
    Kommunikationsfehler beim lokalen Port f� den OPMN-Server.
    Weitere Informationen hierzu finden Sie in den OPMN-Log-Dateien
    Kommunikationsfehler beim lokalen Port f� den OPMN-Server.
    Weitere Informationen hierzu finden Sie in den OPMN-Log-Dateien
    Kommunikationsfehler beim lokalen Port f� den OPMN-Server.
    Weitere Informationen hierzu finden Sie in den OPMN-Log-Dateien
    Kommunikationsfehler beim lokalen Port f� den OPMN-Server.
    Weitere Informationen hierzu finden Sie in den OPMN-Log-Dateien
    Kommunikationsfehler beim lokalen Port f� den OPMN-Server.
    Weitere Informationen hierzu finden Sie in den OPMN-Log-Dateien
    opmnctl: opmn is not running
    in english this means:
    Communication error at the local port for OPMN-Server.
    More Information about this error, see OPMN-Log-Files.
    opmnctl: opmn is not running
    here is a summary from the opmn.xml file:
    </module-data>
    <start timeout="600" retry="2"/>
    <stop timeout="120"/>
    <restart timeout="720" retry="2"/>
    <port id="ajp" range="12501-12600"/>
    <port id="rmi" range="12401-12500"/>
    <port id="jms" range="12601-12700"/>
    <process-set id="default_island" numprocs="1"/>
    </process-type>
    <process-type id="OC4J_BI_Forms" module-id="OC4J">
    <environment>
    <variable id="DISPLAY" value="localhost:0"/>
    <variable id="LD_LIBRARY_PATH" value="/opt/oracle/product/aserver/lib:/opt/oracle/product/aserver/network/lib:/opt/oracle/product/aserver/lib:/tmp/OraInstall2006-09-29_10-07-21AM/jre/1.4.2/lib/i386/client:/tmp/OraInstall2006-09-29_10-07-21AM/jre/1.4.2/lib/i386:/tmp/OraInstall2006-09-29_10-07-21AM/jre/1.4.2/../lib/i386:/usr/lib::/opt/oracle/product/aserver/jdk/jre/lib/i386"/>
    </environment>
    <module-data>
    <category id="start-parameters">
    <data id="java-options" value="-server -Djava.security.policy=/opt/oracle/product/aserver/j2ee/OC4J_BI_Forms/config/java2.policy -Djava.awt.headless=true -Xmx512M -Xms128M "/>
    <data id="oc4j-options" value="-properties -userThreads "/>
    </category>
    <category id="stop-parameters">
    <data id="java-options" value="-Djava.security.policy=/opt/oracle/product/aserver/j2ee/OC4J_BI_Forms/config/java2.policy -Djava.awt.headless=true"/>
    </category>
    <category id="urlping-parameters">
    <data id="/reports/rwservlet/pingserver?start=auto" value="200"/>
    </category>
    </module-data>
    <start timeout="900" retry="2"/>
    <stop timeout="120"/>
    <restart timeout="720" retry="2"/>
    <port id="ajp" range="12501-12600"/>
    <port id="rmi" range="12401-12500"/>
    <port id="jms" range="12601-12700"/>
    <process-set id="default_island" numprocs="1"/>
    can anybody help me? it is urgent.
    best regards
    Daniel

    Hi, thanks for reply to my problem.
    Now i have an new problem , it's not possible to start opmn. (./opmnctl start) .
    I get this error:
    RCV: Transport endpoint is not connected
    Communication Error for local port at OPMN-Server.
    see log files for more information
    opmnctl: opmn start failed
    I have this logfiles:
    HTTP_Server~1
    ipm.log
    OC4J~home~default_island~1
    OC4J~OC4J_BI_Forms~default_island~1
    ons.log
    opmn.log
    states (FOLDER !)
    WebCache~WebCache~1
    WebCache~WebCacheAdmin~1
    i which can i see a detailled information about this error?

  • SOLMAN 7.0 EHP1 problem with starting SMD instance

    Hello everyone,<br><br>
    i have problem with starting instance SMD in my Solution Manager. After START this instance is status for one-two secend green and then status go to yellow color in SAP Management Console. I dont now where is problem, i try everything, can you help me?<br><br>
    Here is LOG from <b>dev_SMDAgent</b><br><br>
    trc file: "G:\usr\sap\SMD\J98\work\dev_SMDAgent", trc level: 1, release: "701"
    node name   : smdagent
    pid         : 1136
    system name : SMD
    system nr.  : 98
    started at  : Thu Jul 08 14:49:55 2010
    arguments       :
           arg[00] : G:\usr\sap\SMD\J98\..\exe\jlaunch.exe
           arg[01] : pf=G:\usr\sap\SMD\J98\..\SYS\profile\SMD_J98_SAPVSM01
           arg[02] : -DSAPINFO=SMD_98_server
           arg[03] : pf=G:\usr\sap\SMD\J98\..\SYS\profile\SMD_J98_SAPVSM01
    JStartupReadInstanceProperties: read instance properties [G:\usr\sap\SMD\J98\profile\smd.properties]
    -> ms host    :
    -> ms port    : 36
    -> OS libs    : G:\usr\sap\SMD\J98\..\exe
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : G:\usr\sap\SMD\J98\profile\smd.properties
    Instance properties
    -> ms host    :
    -> ms port    : 36
    -> os libs    : G:\usr\sap\SMD\J98\..\exe
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    Worker nodes
    -> [00] smdagent             : G:\usr\sap\SMD\J98\profile\smd.properties
    [Thr 5392] Thu Jul 08 14:49:55 2010
    [Thr 5392] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5392] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2068] JLaunchRequestFunc: Thread 2068 started as listener thread for np messages.
    [Thr 220] WaitSyncSemThread: Thread 220 started as semaphore monitor thread.
    [Thr 5392] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 5392] CPIC (version=701.2009.01.26)
    [Thr 5392] [Node: SMDAgent] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_26-x64\
    [Thr 5392] JStartupICheckFrameworkPackage: can't find framework package G:\usr\sap\SMD\J98\..\exe\jvmx.jar
    JStartupIReadSection: read node properties [smdagent]
    -> node name          : SMDAgent
    -> node type          : server
    -> node id            : 1
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_26-x64\
    -> java parameters    : -DP4ClassLoad=P4Connection
    -> java vm version    : 1.4.2_26-b03
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> init heap size     : 256M
    -> root path          : ..\SMDAgent
    -> class path         : lib\launcher\smdagentlauncher.jar;..\..\exe\jstartupapi.jar;..\..\exe\jstartupimpl.jar
    -> OS libs path       : G:\usr\sap\SMD\J98\..\exe
    -> main class         : com.sap.smd.agent.launcher.SMDAgentLauncher
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : G:\usr\sap\SMD\J98\..\exe\jstartup.jar;G:\usr\sap\SMD\J98\..\exe\jvmx.jar
    -> shutdown class     : com.sap.smd.agent.launcher.SMDAgentLauncher
    -> parameters         : run jcontrol
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 58981
    -> shutdown timeout   : 20000
    [Thr 5392] JLaunchISetDebugMode: set debug mode [no]
    [Thr 2448] JLaunchIStartFunc: Thread 2448 started as Java VM thread.
    [Thr 2448] Thu Jul 08 14:49:56 2010
    [Thr 2448] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [SMDAgent]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -DP4ClassLoad=P4Connection
    -> arg[  4]: -Dsys.global.dir=G:\usr\sap\SMD\SYS\global
    -> arg[  5]: -Dapplication.home=G:\usr\sap\SMD\J98\..\exe
    -> arg[  6]: -Djava.class.path=G:\usr\sap\SMD\J98\..\exe\jstartup.jar;G:\usr\sap\SMD\J98\..\exe\jvmx.jar;lib\launcher\smdagentlauncher.jar;..\..\exe\jstartupapi.jar;..\..\exe\jstartupimpl.jar
    -> arg[  7]: -Djava.library.path=C:\j2sdk1.4.2_26-x64
    jre\bin\server;C:\j2sdk1.4.2_26-x64
    jre\bin;C:\j2sdk1.4.2_26-x64
    bin;G:\usr\sap\SMD\J98\..\exe;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;G:\usr\sap\SMD\exe
    -> arg[  8]: -Dmemory.manager=256M
    -> arg[  9]: -Xmx256M
    -> arg[ 10]: -Xms256M
    -> arg[ 11]: -DLoadBalanceRestricted=no
    -> arg[ 12]: -Djstartup.mode=JCONTROL
    -> arg[ 13]: -Djstartup.ownProcessId=1136
    -> arg[ 14]: -Djstartup.ownHardwareId=H1630488451
    -> arg[ 15]: -Djstartup.whoami=server
    -> arg[ 16]: -Djstartup.debuggable=yes
    -> arg[ 17]: -Xss2m
    -> arg[ 18]: -DSAPINFO=SMD_98_server
    -> arg[ 19]: -DSAPSTARTUP=1
    -> arg[ 20]: -DSAPSYSTEM=98
    -> arg[ 21]: -DSAPSYSTEMNAME=SMD
    -> arg[ 22]: -DSAPMYNAME=SAPVSM01_SMD_98
    -> arg[ 23]: -DSAPDBHOST=
    -> arg[ 24]: -Dj2ee.dbhost=
    [Thr 2448] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [SMDAgent]
    -> arg[  0]: run
    -> arg[  1]: jcontrol
    [Thr 2448] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 2448] Thu Jul 08 14:49:57 2010
    [Thr 2448] JLaunchISetState: change state from [Initial (0)] to [Initial (0)]
    [Thr 2448] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2448] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3140] JLaunchIExitJava: exit hook is called (rc = -11112)
    [Thr 3140] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 3140] JLaunchCloseProgram: good bye (exitcode = -11112)<br><br>
    LOG  dev_jcontrol<br><br>
    trc file: "G:\usr\sap\SMD\J98\work\dev_jcontrol", trc level: 1, release: "701"
    node name   : jcontrol
    pid         : 840
    system name : SMD
    system nr.  : 98
    started at  : Thu Jul 08 14:49:53 2010
    arguments       :
           arg[00] : G:\usr\sap\SMD\J98\..\exe\jcontrol.exe
           arg[01] : pf=G:\usr\sap\SMD\J98\..\SYS\profile\SMD_J98_SAPVSM01
    JStartupReadInstanceProperties: read instance properties [G:\usr\sap\SMD\J98\profile\smd.properties]
    -> ms host    :
    -> ms port    : 36
    -> OS libs    : G:\usr\sap\SMD\exe
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : G:\usr\sap\SMD\J98\profile\smd.properties
    Instance properties
    -> ms host    :
    -> ms port    : 36
    -> os libs    : G:\usr\sap\SMD\exe
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    Worker nodes
    -> [00] smdagent             : G:\usr\sap\SMD\J98\profile\smd.properties
    [Thr 5968] Thu Jul 08 14:49:53 2010
    [Thr 5968] *** WARNING => Key profile parameters not set G:\usr\sap\SMD\J98\..\SYS\profile\DEFAULT.PFL:
    j2ee/scs/host=
    j2ee/scs/system= [jcntrxx.c    1459]
    [Thr 5968] *** WARNING => Can't open default profile [G:\usr\sap\SMD\J98\..\SYS\profile\DEFAULT.PFL] for migration [jcntrxx.c    1460]
    [Thr 5968] JControlExecuteBootstrap: jcontrol runs in 6.20 compatible mode
    [Thr 5968] JControlExecuteBootstrap: jcontrol runs in 6.20 compatible mode
    [Thr 5968] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 5968] [Node: SMDAgent] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_26-x64\
    [Thr 384] JControlRequestFunc: Thread 384 started as listener thread for np messages.
    [Thr 5968] Thu Jul 08 14:49:54 2010
    [Thr 5968] JStartupICheckFrameworkPackage: can't find framework package G:\usr\sap\SMD\exe\jvmx.jar
    JStartupIReadSection: read node properties [smdagent]
    -> node name          : SMDAgent
    -> node type          : server
    -> node id            : 1
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_26-x64\
    -> java parameters    : -DP4ClassLoad=P4Connection
    -> java vm version    : 1.4.2_26-b03
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> init heap size     : 256M
    -> root path          : ..\SMDAgent
    -> class path         : lib\launcher\smdagentlauncher.jar;..\..\exe\jstartupapi.jar;..\..\exe\jstartupimpl.jar
    -> OS libs path       : G:\usr\sap\SMD\exe
    -> main class         : com.sap.smd.agent.launcher.SMDAgentLauncher
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : G:\usr\sap\SMD\exe\jstartup.jar;G:\usr\sap\SMD\exe\jvmx.jar
    -> shutdown class     : com.sap.smd.agent.launcher.SMDAgentLauncher
    -> parameters         : run jcontrol
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 58981
    -> shutdown timeout   : 20000
    [Thr 5968] JControlConnectToMS: jcontrol runs in 6.20 compatible mode without message server
    JControlStartJLaunch: program = G:\usr\sap\SMD\J98\..\exe\jlaunch.exe
    -> arg[00] = G:\usr\sap\SMD\J98\..\exe\jlaunch.exe
    -> arg[01] = pf=G:\usr\sap\SMD\J98\..\SYS\profile\SMD_J98_SAPVSM01
    -> arg[02] = -DSAPINFO=SMD_98_server
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=G:\usr\sap\SMD\J98\profile\smd.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_840
    -> arg[06] = -nodeName=smdagent
    -> arg[07] = -jvmOutFile=G:\usr\sap\SMD\J98\work\jvm_SMDAgent.out
    -> arg[08] = -stdOutFile=G:\usr\sap\SMD\J98\work\std_SMDAgent.out
    -> arg[09] = -locOutFile=G:\usr\sap\SMD\J98\work\dev_SMDAgent
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=G:\usr\sap\SMD\J98\..\SYS\profile\SMD_J98_SAPVSM01
    -> lib path = PATH=C:\j2sdk1.4.2_26-x64
    jre\bin\server;C:\j2sdk1.4.2_26-x64
    jre\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;G:\usr\sap\SMD\exe
    -> exe path = PATH=C:\j2sdk1.4.2_26-x64
    bin;G:\usr\sap\SMD\exe;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;G:\usr\sap\SMD\exe
    [Thr 5968] JControlICheckProcessList: process SMDAgent started (PID:1136)
    [Thr 5968] Thu Jul 08 14:49:59 2010
    [Thr 5968] JControlICheckProcessList: process SMDAgent (pid:1136) died (RUN-FLAG)
    [Thr 5968] JControlIResetProcess: reset process SMDAgent
    [Thr 5968] JControlIResetProcess: [SMDAgent] not running -> increase error count (1)
    [Thr 5968] JControlICheckProcessList: shutdown node from console -> restart off
    THANKS FOR RESPONSE

    Hi Martin,
    Check note 940893 (If this is not done already )
    Regards
    Tobias

  • Hi, I have problem with starting up my macbook pro, the gray screen coming and the circle still turning

    hi
    Could u please help me with the problem that I have with starting up my macbook pro?

    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install the Combo Updater for the version you prefer from support.apple.com/downloads/.

  • Problem with the default selection screen condition

    hi guys,
    I have got some problem with the default screen given by the PNP logical database, P0000 infotype automatically populated according to the condition given in default screen.
    Reg,
    Hariharan

    Don know what u r trying to acheive.
    1) when u have specified PNP in the logical databse field of attributes of program, the SAP wil proivde u default PNP screen and here u can also add ur paramters if u want.
    2) in the program u have to declare like
    INFOTYPES: 0000,0001. "Etc
    for all the infotypes u want to use in the program.
    3) it is the GET PERNR event which wil fil all the p0000 and p0001 (internal tables for al the infotypes declared via INFOTYPES syntax as shown above)
    4) after tht get pernr, u now have data in P tables and u can use it for further reporting.
    5) refer below dummy code -
    REPORT  ZPPL_PREVEMPLOYERS   message-id rp
                                 line-size 250
                                 line-count 65.
    *Program logic :- This Report is used to Download all the Previous
    * Employer (IT0023) records of the employees
    *eject
    *& Tables and Infotypes                                                *
    tables: pernr.
    infotypes: 0000,
               0001,
               0002,
               0023.
    *eject
    *& Constants                                                           *
    constants: c_1(1)       type c               value '1'   ,
               c_3(1)       type c               value '3'   ,
               c_i(1)       type c               value 'I'   ,
               c_x(1)       type c               value 'X'   ,
               c_eq(2)      type c               value 'EQ'  ,
               c_pl03       like p0001-werks     value 'PL03'.
    *eject
    *& Selection-Screen                                                    *
    parameters: p_file  like rlgrap-filename default 'C:TempABC.xls',
                p_test  as checkbox default c_x               .
    *eject
    *& Internal tables                                                     *
    * Internal Table for Output
    data: begin of t_output occurs 0    ,
           pernr like pernr-pernr       ,
           nachn like p0002-nachn       ,
           vorna like p0002-vorna       ,
           orgeh_stext like p1000-stext ,
           plans_stext like p1000-stext ,
           begda like p0023-begda       ,
           endda like p0023-endda       ,
           land1 like p0023-land1       ,
           arbgb like p0023-arbgb       ,
           ort01 like p0023-ort01   .
    data: end of t_output           .
    *eject
    *& Variables                                                           *
    data: o_stext like p1000-stext,
          p_stext like p1000-stext.
    *eject
    *& Initialization                                                      *
    Initialization.
    * Initialize Selection-Screen values
      perform init_selction_screen.
    *eject
    *& AT Selection-screen                                                 *
    at selection-screen .
    * Check if Test run selected, download file name should be entered
      if p_test is initial.  "
        if p_file is initial.
          message e016 with 'Please enter file name'
                            'specifying complete path'.
        endif.
      endif.
    *eject
    *& Start-of Selection                                                  *
    Start-of-selection.
    get pernr.
      clear t_output.
    * Read Infotype 0
      rp-provide-from-last p0000 space pn-begda pn-endda.
      check pnp-sw-found eq c_1.
    * Check if employee is active
      check p0000-stat2 in pnpstat2.      "pernr Active
    * Read Infotype 1
      rp-provide-from-last p0001 space pn-begda pn-endda.
      check pnp-sw-found eq c_1.
    * check if employee belongs to PL03
      check p0001-werks in pnpwerks.  "belongs to PL03
    * Check if emp belongs to Active Group
      check p0001-persg in pnppersg.
    * Read Infotype 2
      rp-provide-from-last p0002 space pn-begda pn-endda.
      check pnp-sw-found eq c_1.
    * Read Org Unit Text.
    CALL FUNCTION 'HR_READ_FOREIGN_OBJECT_TEXT'
         EXPORTING
              OTYPE                   = 'O'
              objid                   = p0001-orgeh
              begda                   = p0001-begda
              endda                   = p0001-endda
              reference_date          = p0001-begda
         IMPORTING
              object_text             = o_stext
          EXCEPTIONS
              nothing_found           = 1
              wrong_objecttype        = 2
              missing_costcenter_data = 3
              missing_object_id       = 4
              OTHERS                  = 5.
    *Read Position Text.
    CALL FUNCTION 'HR_READ_FOREIGN_OBJECT_TEXT'
         EXPORTING
              OTYPE                   = 'S'
              objid                   = p0001-plans
              begda                   = p0001-begda
              endda                   = p0001-endda
              reference_date          = p0001-begda
         IMPORTING
              object_text             = p_stext
         EXCEPTIONS
              nothing_found           = 1
              wrong_objecttype        = 2
              missing_costcenter_data = 3
              missing_object_id       = 4
              OTHERS                  = 5.
    * Gather all the required information related to the emp
      move: pernr-pernr to t_output-pernr,
            o_stext to t_output-orgeh_stext,
            p_stext to t_output-plans_stext,
            p0002-nachn to t_output-nachn,
            p0002-vorna to t_output-vorna.
    * Gather previous Employee details
      loop at p0023.
        move-corresponding p0023 to t_output.
        append t_output.
      endloop.
    *eject
    *& End-of Selection                                                    *
    end-of-selection.
      perform print_report.
    * Downlaod the file
      if not t_output[] is initial.
        if p_test eq space.
          perform download_file.
        endif.
      else.
        write: 'No records selected' color col_negative.
      endif.
    *eject
    *& Top-of-page                                                         *
    Top-of-page.
    * Print Header
      perform print_header.
    *eject
    *&      Form  download_file
    * Description :
    FORM download_file .
      DATA: full_file_name    TYPE string,
            z_akt_filesize    TYPE i     .
      full_file_name = p_file.
    *  download table into file on presentation server
      CALL METHOD cl_gui_frontend_services=>gui_download
        EXPORTING
          filename                = full_file_name
          filetype                = 'DAT'
          NO_AUTH_CHECK           = c_x
          codepage                = '1160'
        IMPORTING
          FILELENGTH              = z_akt_filesize
        CHANGING
          data_tab                = t_output[]
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          not_supported_by_gui    = 22
          error_no_gui            = 23
          OTHERS                  = 24.
      IF  sy-subrc               NE        0.
        MESSAGE e016 WITH 'Download-Error; RC:' sy-subrc.
      ENDIF.
    ENDFORM.                    " download_file
    *eject
    *&      Form  print_report
    *Description:
    FORM print_report .
      data: i       type i,
            w_count type i.
      sort t_output.
    * Print the report
      loop at t_output.
        i = sy-tabix mod 2.
        if i eq 0.
          format color col_normal intensified on.
        else.
          format color col_normal intensified off.
        endif.
        write:/1     t_output-pernr          ,
               10     t_output-vorna(25)     ,
               35    t_output-nachn(25)      ,
               61   t_output-orgeh_stext     ,
               102  t_output-plans_stext     ,
               143  t_output-begda           ,
               154   t_output-endda          ,
               168   t_output-land1          ,
               178   t_output-arbgb(40)      ,
               219   t_output-ort01          ,
               249   space              .
      endloop.
      uline.
      Describe table t_output lines w_count.
      Skip 2.
      Write:/ 'Total No of Records Downloaded: ' color col_total,
              w_count.
    ENDFORM.                    " print_report
    *eject
    *&      Form  print_header
    *Description:
    FORM print_header .
      skip 1.
      Uline.
      format Intensified on color col_heading.
      write:/1   'Pers. #'        ,
             10   'Last Name'     ,
             35   'First Name'    ,
             61   'Org Unit'      ,
             102  'Position'      ,
             143  'Beg Date'      ,
            154   'End Date'      ,
            168   'Cntry Key'     ,
            178   'Prev Employer' ,
            219  'City'           ,
            249   space          .
      format intensified off color off.
      uline.
    ENDFORM.                    " print_header
    *eject
    *&      Form  init_selction_screen
    *Description:
    FORM init_selction_screen .
      refresh: pnpwerks,
               pnppersg,
               pnpstat2.
      clear:   pnpwerks,
               pnppersg,
               pnpstat2.
      pnpwerks-sign   = c_i.
      pnpwerks-option = c_EQ.
      pnpwerks-low    = c_pl03.
      append pnpwerks.
      pnppersg-sign   = c_i.
      pnppersg-option = c_EQ.
      pnppersg-low    = c_1.
      append pnppersg.
      pnpstat2-sign   = c_i.
      pnpstat2-option = c_EQ.
      pnpstat2-low    = c_3.
      append pnpstat2.
    ENDFORM.                    " init_selction_screen

  • Help Needed : iPOD Photo 30 Gig Problem with Starting

    I have a 3 months old iPod Photo 30 GB.
    Since past 3 days it is not starting up or showing any activity.Click wheel doesnt works,Screen is blank with no sign of any life
    Have tried charging it thru charger but doesnt works.
    Also it is not recognized when I connect it to my Comp/Laptop.
    I have a docking station from Bose on which it works.
    I can use the click wheel as well as can operate it thru remote of Docking station.On the dock it shows full battery.
    Can somebody help?

    Something wrong with your AC Charger (or the cable connected with your iPod) it is not a problem with your iPod otherwise it would not work on Bose docking station. I suggest that you leave it with your Bose for 3 hours then do the following ..
    1. Do a reset, press "select"+"menu" keys
    2. Connect to your laptop
    Hope it got recongized

  • Problem with focus and selecting text in jtextfield

    I have problem with jtexfield. I know that solution will be very simple but I can't figure it out.
    This is simplified version of situation:
    I have a jframe, jtextfield and jbutton. User can put numbers (0-10000) separated with commas to textfield and save those numbers by pressing jbutton.
    When jbutton is pressed I have a validator which checks that jtextfield contains only numbers and commas. If validator sees that there are invalid characters, a messagebox is launched which tells to user whats wrong.
    Now comes the tricky part.
    When user presses ok from messagebox, jtextfield should select the character which validator said was invalid so that user can replace it by pressing a number or comma.
    I have the invalid character, but how can you get the focus to jtextfield and select only the character which was invalid?
    I tried requestFocus(), but it selected whole text in jtextfield and after that command I couldn't set selected text. I tried with commands setSelectionStart(int), setSelectionEnd(int) and select(int,int).
    Then I tried to use Caret and select text with that. It selected the character I wanted, but the focus wasn't really there because it didn't have keyFocus (or something like that).
    Is there a simple way of doing this?

    textField.requestFocusInWindow();
    textField.select(...);The above should work, although read the API on the select(...) method for the newer recommended approach on how to do selection.
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    Don't forget to use the "Code Formatting Tags",
    see http://forum.java.sun.com/help.jspa?sec=formatting,
    so the posted code retains its original formatting.

  • Problem with align and Selection Tool.

    This is a weird problem which I cannot explain at all.
    I am using AI CS3 with Windows XP.
    I am having this completely random problem with the selection tool and align pallette I cannot explain.
    I have a group of objects and groups of objects I am trying to use the align pallette on.
    Sometimes when I select all of the items I want to align, either by shift-clicking each one, or by drag-selecting them I am getting a random behavior where sometimes the align button will move all of the objects COMPLETELY off of the artboard, all the way to the edge of the working area and beyond into the grey area you cannot see.
    Normally, this would be caused by a stray point somewhere way off-screen or some other cleanup oriented thing on my part. However in this case, the behavior is random and does not happen every time I hit the align button.
    Sometimes it takes items within my grouped objects (lines of text) and moves THEM completely off the work area, leaving the other items in the groups in place. Sometimes the bounding box when I drag-select the items will stretch extremely far off of the work area.
    I have even dragged the extra large bounding box, bringing the edge that was once way off screen onto the work area, in outline view, in hopes of finding the stray point or object that could be causing this. However NOTHING appears that can be causing the align to throw all of my objects off-screen.
    The random nature of this behavior and the way it sometimes affects my text objects inside of groups leads me to believe it is a program bug and nothing I am doing.
    The behavior takes place regardless if I select by dragging or by shift-clicking, and is happening in more than one file, also randomly.
    Also, choosing "align to art board" vs. "align to crop area" does nothing to change this behavior.
    It is quite irritating. I've been using illustrator since v.88 so I have enough experience to know this is not normal.
    Any help with this one would be greatly appreciated.

    When this behaviour occurs, are perhaps guides included in your selection?

Maybe you are looking for

  • Cannot see the Workflow process in Application.

    Hi , We have a strange issue with workflow. We wanted to customize the INVFLXWF workflow . We downloaded it from the apps into WorkFlow Builder.Added a process and a function.Saved it back into the database. Now , when you go into the application -->

  • Item category field in sale order screen to be greyed out

    Dear Friends                     While creating sale order I have a requirement to make item category field to be uneditable i.e greyed out . How can I do that ? Regards Mahesh.

  • Oracle Policy Automation

    The requirement is to integrate OPA with ADF. So, the questions that come to my mind are: -What would be the best way to integrate the two apps- java API or web services? -On the OPA front, we plan to validate hierarchical structures that get created

  • Some keys won't work properly on MacBook Air

    I've had the MAB for about 3-4months now and i never had this problem. All of a sudden, possibly after updating MAC OS, the keys such as 'r' and '4' and 'v' will not work properly. It is not like they are not working at all, they just show weird keys

  • Reports startup exception

    I have been trying to run "reports JSP" through JDeveloper using the embedded OC4J test server and i always get the following exception: javax.servlet.jsp.JspException: REP-52266: The in-process Reports Server rep_brown-8ir2ayw5s failed to start.exce