Include and exclude status

i need to take all the status of "objnr" but  there are status that i dont want to see exclude
this is the select that take all the status
select-option: z_stat_i FOR jest-stat,
                z_stat_e FOR jest-stat.
SELECT   stat
    FROM   jest
    INTO mdstat-zs_stat
    WHERE objnr = mdeqp-objnr
    AND   stat  IN z_stat_i
    AND   inact = ' '.
      APPEND  mdstat.
any ideas?
thanks

Hi yehiel,
1. It is clear that the normal sql statement
   won't work in the way we won't.
2. Thats why, some extra logic needs to be applied.
   As already mentioned,
   The RANGE for EXCLUDE
   must be filled with some DUMMY Data.
  Just write this CODE
  JUST BEFORE CALLING THE SQL.
IF z_stat_eIS INITIAL.
  z_stat_e-sign = 'I'.
  z_stat_e-option = 'EQ'.
  z_stat_e-low  = 'XXX'.
  z_stat_e-high = 'XXX'.
  APPEND z_stat_e.
ENDIF.
HOPE THIS WORKS.
Regards,
Amit M.

Similar Messages

  • During MRP run unwanted plant and storage location include and exclude

    Hi There,
    During MRP run how to include and exclude the unwanted plant and storage location pls let me know the required configuration settings.
    Thanks in advance.

    HI,
    To control whether a particular storage location will be included or excluded from the MRP run.  (MD02/MD41).
    To exclude it from MRP run :-
    OMIR - Define storage location MRP per plant
    Put the MRP ind. as.         1 - storage location stock excluded for MRP
    To include it from MRP run:-
    OMIR - Define storage location MRP per plant
    Put the MRP ind. as.      space - storage location stock also planned at plant level and save it
    Next go to transaction MM01 - tick only view MRP 2
    Key in Plant and Storage Location
    Look at the Storage Location MRP section
    change the SLoc MRP indicator to space  and save it
    MMD1 - Create MRP Profile - MRP profile is a useful entry aid and makes it easier to manage MRP data.
    You define which fields are filled with values when MRP data is entered in the material master record, which of these values can be overwritten and which not.   You use the information stored in a profile is standard information that is needed again and again in similar constellations when material master records are maintained.
    Regards
    KK

  • Cannot Include and exclude selectiion on hierarchy node in the Filter area

    Hi,
    When i open the query and execute it. and select the filter area for hierarchy nodes. The include and exclude selection is disabled in 3.5x analyzer. We are using BI 7.0 with SP 12. we just upgraded.
    Can you please help. is this functionality not available?
    Regards,
    Gaurav

    Hi Rob, you can do that for the query (the exclude selection) on the Query Designer. But its not recomended on performance point of view.
    hope this helps
    Natalia.

  • How to include and exclude external infoobject values in a hierarchy

    Hello experts,
    I'm working with hierarchies and the problem I have is that I don´t know how to include nor exclude a value in the definition of the hierarchy.
    For example, I want to show in a query some cost elements related to some functional areas, so I've created a hierarchy for md funcional area. But I don't want to show every cost element related to one functional area but only some of them. I've defined 0costelmnt as a external characteristic for 0func_area infoobject so that I can specify in the hierarchy the cost elements I want to show. But it doesn´t work, in the report all cost elements are showed. How can I specify the ones I want to show?
    thank you very much.

    Any ideas please?

  • Regular Expressions, include and exclude xml-files

    Hi!
    I have a javaprogram that should read xml-files from a directory. The program could contain several types of files but it should only read files with a certain pattern.
    The file names will look like this:
    "resultset_27_23.xml"
    where the numbers will change, but the rest of the file name is the same (resultset_XX_XX.xml).
    But in the same directory it will also be files with the following pattern:
    "resultset_27_23_attachment1.xml"
    Here, the numbers could change in the in the same way as the files above, and the number after the text (attachment) could also differ from file to file.Those files should not be read by the program.
    I have tried to write a regular expression pattern that only reads the first file types, and exlcudes the other ones, but it won�t work.
    Does anyone have a solution to my problem? It is possible to use either just one pattern, or two patterns; one for the files that should be included, and one for the files that should be excluded.

    So you only want files that match resultset_XX_XX.xml? Will the numbers always be two digits each? Assuming so:
    "^resultset_\\d\\d_\\d\\d.xml$"Depending which methods you use, the ^ and $ may or may not be necessary.
    If that's not what you meant, please clarify.

  • Inconsistency between get-childitem -include and -exclude parameters

    Hi,
    Powershell 2.0
    Does anyone else consider this a minor design bug in the Get-ChildItem command?  
    # create dummy files
    "a","b","c" | % {$null | out-file "c:\temp\$_.txt"}
    # this "fails", returns nothing
    get-childitem c:\temp -include a*,b*
    # this "works", returns desired files
    get-childitem c:\temp\* -include a*,b*
    # this "works", excludes undesired files
    get-childitem c:\temp -exclude a*,b*
    # this "fails", excludes undesired files BUT RECURSES sub-directories
    get-childitem c:\temp\* -exclude a*,b*
    I'm writing a wrapper script around the GCI cmdlet, but the inconsistency between the two parameters is problematic.  My end user will surely just type a path for the path parameter, then wonder why -include returned nothing.  I can't unconditionally
    add an asterisk to the path parameter, since that messes up the exclude output.
    I'm just wondering why Microsoft didn't make the parameter interaction consistent???  
    # includes desired files in the specified path
    get-childitem -path c:\temp -include a*,b*
    # excludes undesired files in the specified path
    get-childitem -path c:\temp -exclude a*,b*
    # combine both options
    get-childitem -path c:\temp -include a*,b* -exclude *.log,*.tmp
    # same as above, the asterisk doesn't matter
    get-childitem -path c:\temp\* -include a*,b*
    get-childitem -path c:\temp\* -exclude a*,b*
    get-childitem -path c:\temp\* -include a*,b* -exclude *.log,*.tmp
    # same as above, but explicitly recurse if that's what you want
    get-childitem -path c:\temp\* -include a*,b* -recurse
    get-childitem -path c:\temp\* -exclude a*,b* -recurse
    get-childitem -path c:\temp\* -include a*,b* -exclude *.log,*tmp -recurse
    If I execute the "naked" get-childitem command, the asterisk doesn't matter...
    # same results
    get-childitem c:\temp
    get-chileitem c:\temp\*
    If this isn't considered a bug, can you explain why the inconsistency between the two parameters when combined with the -path parameter?
    Thanks,
    Scott

    The Get-ChildItem cmdlet syntax is horrific for advanced use. It's not a bug in the classic sense, so you shouldn't call it that. However, feel free to call it awful, ugly, disastrous, or any other deprecatory adjective you like - it really is
    nasty.
    Get-ChildItem's unusual behavior is rooted in one of the more 'intense' dialogues between developers and users in the beta period. Here's how I recall it working out; some details are a bit fuzzy for me at this point.
    Get-ChildItem's original design was as a tool for enumerating items in a namespace -
    similar to but not equivalent to dir and
    ls. The syntax and usage was going to conform to standard PowerShell (Monad at the time) guidelines.
    In a nutshell, what this means is that the Path parameter would have truly just meant Path - it would not have been usable as a combination path specification and result filter, which it is now. In other words
    (1) dir c:\temp
    means you wanted to return children of the container c:\temp
    (2) dir c:\temp\*
    means you wanted to return children of all containers inside
    c:\temp. With (2), you would never get c:\tmp\a.txt returned, since a.txt is not a container.
    There are reasons that this was a good idea. The parameter names and filtering behavior was consistent with the evolving PowerShell design standards, and best of all the tool would be straightforward to stub in for use by namespace
    providers consistently.
    However, this produced a lot of heated discussion. A rational, orthogonal tool would not allow the convenience we get with the dir command for doing things like this:
    (3) dir c:\tmp\a*.txt
    Possibly more important was the "crash" factor.  It's so instinctive for admins to do things like (3) that our fingers do the typing when we list directories, and the instant failure or worse, weird, dissonant output we would get with a more pure Path
    parameter is exactly like slamming into a brick wall.
    At this point, I get a little fuzzy about the details, but I believe the Get-ChildItem syntax was settled on as a compromise that wouldn't derail people expecting files when they do (3), but would still allow more complex use.  I think that this
    is done essentially by treating all files as though they are containers for themselves. This saves a lot of pain in basic use, but introduces other pain for advanced use.
    This may shed some light on why the tool is a bit twisted, but it doesn't do a lot to help with your particular wrapping problem. You'll almost certainly need to do some more complicated things in attempting to wrap up Get-ChildItem. Can you describe some
    details of what your intent is with the wrapper? What kind of searches by what kind of users, maybe? With those details, it's likely people can point out some specific approaches that can give more consistent results.

  • Duplicity: include and exclude files

    I think I'm missing something about duplicity's include/exclude mechanism.
    1) This might be obvious but still... Where is the difference whether I use --exclude-filelist or --include-filelist? A dry-run showed the exact same size for my backup.
    2) Using --exclude-globbing-filelist and these lines will not backup any txt files:
    + /home/m/exclude/*.txt
    - /home/m/exclude/
    Yet, these lines will backup arch.txt:
    + /home/m/exclude/arch.txt
    - /home/m/exclude/
    Shouldn't "*.txt" expand to "arch.txt"?

    Hi yehiel,
    1. It is clear that the normal sql statement
       won't work in the way we won't.
    2. Thats why, some extra logic needs to be applied.
       As already mentioned,
       The RANGE for EXCLUDE
       must be filled with some DUMMY Data.
      Just write this CODE
      JUST BEFORE CALLING THE SQL.
    IF z_stat_eIS INITIAL.
      z_stat_e-sign = 'I'.
      z_stat_e-option = 'EQ'.
      z_stat_e-low  = 'XXX'.
      z_stat_e-high = 'XXX'.
      APPEND z_stat_e.
    ENDIF.
    HOPE THIS WORKS.
    Regards,
    Amit M.

  • Package comments and excluded files

    I have an ant target to generate javadoc for a whole package structure minus one sub-package and one class, plus a few classes from another package:
      <target name="doc">
        <mkdir dir="${build}/docs/api"/>
        <javadoc destdir="${build}/docs/api/"
          use="true"
          windowtitle="Public API">
          <classpath>
            <path refid="3rdparty.jar.path"/>
          </classpath>
          <fileset dir="${build}">
            <include name="com/company/pkg1/**"/>
            <exclude name="com/company/pkg1/util/**"/>
            <exclude name="com/company/pkg1/server/ServiceMBean.java"/>
            <include name="com/company/pkg2/CustomerReport.java"/>
            <include name="com/company/pkg2/DeprecatedReport.java"/>
            <include name="com/company/pkg2/Report.java"/>
            <include name="com/company/pkg2/TagReport.java"/>
          </fileset>
        </javadoc>
      </target>This worked fine until I started including package.html files for package documentation. Running this with package.html in com/company/pkg1 gives the following error:
    javadoc: Illegal package name: "C:\abc\def\com\company\pkg1\package.html"
    After playing around, I found that if I shift the 3 <include> and <exclude> lines referring to pkg1 out of the <fileset> tag and into a <packageset> tag, then the package comments work. However, then the exclude for the individual java class (ServiceMBean.java) does not work. Likewise, shifting the file exclude back to the fileset tag still does not exclude it.
    It seems that I must decide whether to have package comments or the ability to exclude individual files, but not both. Is there any way around this?

    Well, it is a known issue. And actually, issue is with DBMS_METADATA, not with DATAPUMP, which simply uses DBMS_METADATA:
    SQL> create or replace package
      2  --comment
      3  MyPkg
      4  is
      5  a number;
      6  end;
      7  /
    Package created.
    SQL> select text from user_source where name = 'MYPKG' order by line;
    TEXT
    package
    --comment
    MyPkg
    is
    a number;
    end;
    6 rows selected.
    SQL> select dbms_metadata.get_ddl('PACKAGE','MYPKG') from dual;
    DBMS_METADATA.GET_DDL('PACKAGE','MYPKG')
      CREATE OR REPLACE PACKAGE "SCOTT"."MYPKG"
    is
    a number;
    end;
    SQL> You should put comments after package name:
    SQL> create or replace package
      2  MyPkg
      3  --comment
      4  is
      5  a number;
      6  end;
      7  /
    Package created.
    SQL> select dbms_metadata.get_ddl('PACKAGE','MYPKG') from dual;
    DBMS_METADATA.GET_DDL('PACKAGE','MYPKG')
      CREATE OR REPLACE PACKAGE "SCOTT"."MYPKG"
    --comment
    is
    a number;
    end;
    SQL> SY.

  • How to add a privacy page and exclude it from the main menu, but include in links at the base

    adding a privacy statement page and excluding it from the main menu, but including in links at the base of site

    Right click on the page in Plan view and choose to exclude from menus. This will take it off your main nav.
    For your bottom nav, change the menu to manual and add the privacy page manually.

  • Include jars for compiling and exclude jars for war

    Hello,
    In the context of using ant to create a war, I have some doubts:
    Actually to compile my web application codes, I put in classpath the following two jars as:
           <pathelement location="${lib.dir}/${servlet-api.jar}"/>
           <pathelement location="${lib.dir}/${jsp-api.jar}"/>   without these two jars I would get compiling errors.
    To create a war, I have to exclude these two jars:
       <lib dir="${webapp.dir}/WEB-INF/lib">
                 <exclude name="servlet-api.jar"/>   
                 <exclude name="jsp-api.jar"/> 
               </lib>If I kept these two jars in the war, JBOSS application server would complain of duplicate classes.
    My approach works. But my question is:
    Is it the best practice to include jars for compiling codes and exclude jars if the application servers already have them?
    Best regards,
    Pengyou

    Yes. That is the best practice.
    In fact its the only practice to do it properly.
    You are compiling against Interface only. Your code will work as long as that interface is implemented by the server, even if it does different things under the hood. This is what lets your web application work on whatever server you deploy it on - Jboss, Tomcat, Weblogic - it shouldn't matter as they all implement the same basic interfaces.
    You could also expand that list to include common APIs which you know are available on your server if you don't want to bundle them with every web application.
    JSTL jars are one potential example.

  • Including or excluding a characteristic in duplicate invoice check

    When entering vendor invoice in FB60, system checks entry of company code, vendor, document date and reference number for duplicate invoice.  If duplicate invoice is detected, message F5117 will be issued.
    We would like to change the duplicate invoice check by excluding document date for vendor invoice entered in FB60.  Such change does not affect customer invoice entered in FB70.  That is, document date will continue to be part of duplication check for customer invoice. 
    OBA5 and OBMSG allow change of message status for W, E, etc.  We can create customized message (e.g. Z117) in SE91 and assign it to application area.  But what about changing the message parameters to include or exclude certain characteristic?  Does such change have to be done in program SAPMF05A (FB60) and that requires ABAP expertise?  If we change the message parameters directly in the program, then we can assign separate messages for vendor and customer documents? 
    We set u201Cduplicate invoiceu201D indicator in vendor master.  I have reviewed Note 305201.
    Appreciate any insight or feedback. Thanks in advance.

    Problem solved.
    Use Business Transaction Event 1110
    Activate SAMPLE_PROCESS-_00001110

  • System status and user status in Line Item Reports

    Dear PS-friends,
    I have to extend the CI CI_PROJ with some new fields. These fields should be shown in diverse Line Item Reports (CJI3 u2026).
    I know how to get these customer fields into the field catalog for the reports (maintain include table CI_RKPOS, EXIT_SAPLKAEP_001 and ViewCluster V_TKALV).
    Now our customer wishes that 2 of the new fields are: system status and user status. The status should be shown in CJI3 as a concatenated field as you see it in CJ20N.
    In CN42 there is the column system status as a standard column. But I cannot find the structure CNJ_STAT included in V_TKALV for Line Item Report Object=PD.
    Has anybody an idea how it works to show the system status and user status in Line Item Reports.
    Thanks in advance!

    Problem is solved.
    I wrote a function module using FM 'STATUS_TEXT_EDIT' and concatenated line and user_line.

  • Server0 process in yellow and in status "starting apps" from many times

    Hi to all,
    platform windows/SQL
    I have a problem , I just made a system copy of my BI-Java (NW 7.0 SR3 ) using database independent system copy method.
    I make the export : all OK.
    I make the import ( system copy tool sapinst ) : All ok without errors.
    Now I'm tryng to start the Java ap server ( ABAP IS UP AND WORKS ) but it doesn't start : in MMC I see the java server0 process in yellow and in status "starting apps" from many times.
    Please help , what can I do ?

    I Eric ,
    I waited , but still yellow :
    here is the dev_server0 , it is very very  long file so i post most important parts of the log
    trc file: "F:\usr\sap\JBX\JC00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID5856350
    pid         : 2460
    system name : JBX
    system nr.  : 00
    started at  : Mon Nov 15 18:32:02 2010
    arguments       :
           arg[00] : F:\usr\sap\JBX\JC00\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\JBX\SYS\profile\JBX_JC00_sappino
           arg[02] : -DSAPINFO=JBX_00_server
           arg[03] : pf=F:\usr\sap\JBX\SYS\profile\JBX_JC00_sappino
    [Thr 1676] Mon Nov 15 18:32:02 2010
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.box.number=JBXJC00sappino] [jstartxx.c   841]
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.en.host=sappino] [jstartxx.c   841]
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 1676] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties]
    -> ms host    : sappino
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\JBX\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sappino
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\JBX\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5856300  : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID5856350  : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5856300            : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    -> [01] ID5856350            : F:\usr\sap\JBX\JC00\j2ee\cluster\instance.properties
    [Thr 1676] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 1676] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2796] JLaunchRequestFunc: Thread 2796 started as listener thread for np messages.
    [Thr 1116] WaitSyncSemThread: Thread 1116 started as semaphore monitor thread.
    [Thr 1676] Mon Nov 15 18:32:03 2010
    [Thr 1676] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 1676] CPIC (version=700.2006.09.13)
    [Thr 1676] [Node: server0] java home is set by profile parameter
         Java Home: C:\JAVA_SDK_64BIT
    [Thr 1676] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\JBX\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID5856350]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\JAVA_SDK_64BIT
    -> java parameters    : -Djco.jarm=1 -verbose:gc -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -XX:NewSize=341m -XX:MaxNewSize=341m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:PrintGCDetails -XX:+PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> 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          : 2048M
    -> init heap size     : 2048M
    -> stack size         : 2M
    -> root path          : F:\usr\sap\JBX\JC00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\JBX\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\JBX\JC00\exe\jstartup.jar;F:\usr\sap\JBX\JC00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 1676] JLaunchISetDebugMode: set debug mode [no]
    [Thr 2372] JLaunchIStartFunc: Thread 2372 started as Java VM thread.
    [Thr 2372] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -verbose:gc
    -> arg[  5]: -Djava.awt.headless=true
    -> arg[  6]: -Dsun.io.useCanonCaches=false
    -> arg[  7]: -Djava.security.policy=./java.policy
    -> arg[  8]: -Djava.security.egd=file:/dev/urandom
    -> arg[  9]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 10]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 11]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 12]: -XX:NewSize=341m
    -> arg[ 13]: -XX:MaxNewSize=341m
    -> arg[ 14]: -XX:MaxPermSize=192m
    -> arg[ 15]: -XX:PermSize=192m
    -> arg[ 16]: -XX:+DisableExplicitGC
    -> arg[ 17]: -XX:+PrintGCDetails
    -> arg[ 18]: -XX:+PrintGCTimeStamps
    -> arg[ 19]: -XX:SurvivorRatio=2
    -> arg[ 20]: -XX:TargetSurvivorRatio=90
    -> arg[ 21]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 22]: -verbose:gc
    -> arg[ 23]: -Dsys.global.dir=F:\usr\sap\JBX\SYS\global
    -> arg[ 24]: -Dapplication.home=F:\usr\sap\JBX\JC00\exe
    -> arg[ 25]: -Djava.class.path=F:\usr\sap\JBX\JC00\exe\jstartup.jar;F:\usr\sap\JBX\JC00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 26]: -Djava.library.path=C:\JAVA_SDK_64BIT\jre\bin\server;C:\JAVA_SDK_64BIT\jre\bin;C:\JAVA_SDK_64BIT\bin;F:\usr\sap\JBX\JC00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;c:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;F:\usr\sap\JBX\SYS\exe\uc\NTAMD64
    -> arg[ 27]: -Dmemory.manager=2048M
    -> arg[ 28]: -Xmx2048M
    -> arg[ 29]: -Xms2048M
    -> arg[ 30]: -Xss2M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=2460
    -> arg[ 34]: -Djstartup.ownHardwareId=M1883233260
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -Xss2m
    -> arg[ 38]: -DSAPINFO=JBX_00_server
    -> arg[ 39]: -DSAPSTARTUP=1
    -> arg[ 40]: -DSAPSYSTEM=00
    -> arg[ 41]: -DSAPSYSTEMNAME=JBX
    -> arg[ 42]: -DSAPMYNAME=sappino_JBX_00
    -> arg[ 43]: -DSAPDBHOST=SAPPINO
    -> arg[ 44]: -Dj2ee.dbhost=SAPPINO
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 2372] Mon Nov 15 18:32:04 2010
    [Thr 2372] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3844] Mon Nov 15 18:32:07 2010
    [Thr 3844] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3844] Mon Nov 15 18:32:08 2010
    [Thr 3844] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3844] Mon Nov 15 18:32:09 2010
    [Thr 3844] JLaunchISetClusterId: set cluster id 5856350
    [Thr 3844] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3844] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Mon Nov 15 18:33:09 2010
    66.769: [GC 66.779: [DefNew
    Mon Nov 15 18:33:12 2010
    : 174592K->12719K(261888K), 2.4968787 secs] 174592K->12719K(2009856K), 2.5007114 secs]
    Mon Nov 15 18:33:28 2010
    85.012: [GC 85.019: [DefNew
    Mon Nov 15 18:33:31 2010
    : 187311K->15802K(261888K), 2.9950002 secs] 187311K->15802K(2009856K), 2.9962968 secs]
    Mon Nov 15 18:33:42 2010
    99.362: [GC 99.363: [DefNew
    Mon Nov 15 18:33:43 2010
    : 190394K->18114K(261888K), 1.3817075 secs] 190394K->18114K(2009856K), 1.3817727 secs]
    Mon Nov 15 18:34:04 2010
    121.270: [GC 121.270: [DefNew: 192706K->22709K(261888K), 0.4353252 secs] 192706K->22709K(2009856K), 0.4354424 secs]
    Mon Nov 15 18:34:14 2010
    131.077: [GC 131.079: [DefNew
    Mon Nov 15 18:34:15 2010
    : 197301K->29493K(261888K), 0.9813876 secs] 197301K->29493K(2009856K), 0.9823920 secs]
    [Thr 3344] Mon Nov 15 18:34:36 2010
    [Thr 3344] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    Mon Nov 15 18:34:44 2010
    160.965: [GC 160.966: [DefNew
    Mon Nov 15 18:34:47 2010
    : 204085K->40068K(261888K), 3.8189779 secs] 204085K->40068K(2009856K), 3.8194810 secs]
    [Thr 3532] Mon Nov 15 18:34:54 2010
    [Thr 3532] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 4932] Mon Nov 15 18:34:57 2010
    [Thr 4932] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    Mon Nov 15 18:35:09 2010
    186.312: [GC 186.315: [DefNew: 214660K->44513K(261888K), 0.4742509 secs] 214660K->44513K(2009856K), 0.4773469 secs]
    [Thr 3844] Mon Nov 15 18:38:32 2010
    [Thr 3844] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    Mon Nov 15 18:39:18 2010
    435.575: [GC 435.576: [DefNew: 219105K->48184K(261888K), 0.2394759 secs] 219105K->48184K(2009856K), 0.2397480 secs]
    Mon Nov 15 18:39:20 2010
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Mon Nov 15 18:39:23 2010
    440.506: [GC 440.506: [DefNew: 222776K->50686K(261888K), 0.1335379 secs] 222776K->50686K(2009856K), 0.1335965 secs]
    Mon Nov 15 19:42:07 2010
    [Unloading class sun.reflect.GeneratedMethodAccessor14]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor127]
    [Unloading class sun.reflect.GeneratedMethodAccessor13]
    [Unloading class sun.reflect.GeneratedMethodAccessor105]
    [Unloading class sun.reflect.GeneratedMethodAccessor99]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor135]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor4]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor96]
    [Unloading class sun.reflect.GeneratedMethodAccessor128]
    Mon Nov 15 19:42:08 2010
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor17]
    [Unloading class sun.reflect.GeneratedMethodAccessor119]
    [Unloading class sun.reflect.GeneratedMethodAccessor64]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor29]
    [Unloading class sun.reflect.GeneratedMethodAccessor47]
    [Unloading class sun.reflect.GeneratedMethodAccessor86]
    [Unloading class sun.reflect.GeneratedConstructorAccessor72]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor14]
    [Unloading class sun.reflect.GeneratedMethodAccessor109]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor82]
    [Unloading class sun.reflect.GeneratedMethodAccessor156]
    [Unloading class sun.reflect.GeneratedMethodAccessor147]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor94]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor65]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor93]
    Mon Nov 15 19:42:09 2010
    [Unloading class sun.reflect.GeneratedMethodAccessor107]
    [Unloading class sun.reflect.GeneratedMethodAccessor142]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor2]
    Mon Nov 15 20:19:06 2010
    : 1488916K->1046521K(1747968K), 3204.1629115 secs] 1749638K->1046521K(2009856K), 3204.1631834 secs]

  • Server Overloaded and Warning Status

    I have a WebLogic cluster, includes 3 Managed Server running on 2 separate machines (Each has 16Gb Ram and 8 CPU - Sun Sparc). Each start with parameters
    Starting WLS with line:
    /usr/jdk/instances/jdk1.6.0/bin/java -server -Xms1024m -Xmx2048m -XX:MaxPermSize=128m
    Some time ManagedServers have status "OverLoaded" and "Warning". When that happened , I stop and start server and server status return to OK.
    Checking the status with "prstat" command, I saw that java process used just from 1Gb Ram to 2Gb Ram and CPU is under 3%, very little CPU used
    What I have to do to make server return to OK status without restart?
    And how to make server running with OK status everytime?
    And How many Managed Server can I create on each machine with that hardware?
    Thank you!

    What I have to do to make server return to OK status without restart?Maybe stop some or all applications can be usefull.
    And how to make server running with OK status everytime?You must tuning the enviroment, maybe should adjust JVM parameters passed to weblogic server, check thread pools, etc. For Sun HotSpot JVM, you can use -XX:+AggressiveHeap option for throughput applications, give it a try.
    See [WebLogic Server Performance And Tuning|http://download.oracle.com/docs/cd/E13222_01/wls/docs92/perform/index.html]
    And How many Managed Server can I create on each machine with that hardware?This decision depends on applications you want run, weblogic resources required, how many clients will be attended, and so on. If your weblogic server using 8GB achieves the goal, then you can setup another instance using the remaining available, and so on.
    I hope this helps.

  • CVI2013 f1 and excluded lines

    I've already reported a bug using excluded lines with CVI2013 (see here)
    Now with f1 patch the bug has been partially fixed, but the problem is still there if you exclude lines (CTRL+E) in a heare file included from another header file (and not directly from a source file).
    See attached example and exclude (CTRL+E) line 4 in dummy.h to see the problem.
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
    Solved!
    Go to Solution.
    Attachments:
    userint.zip ‏9 KB

    Hi Daniel,
    let me explain what you should do (and should see, I hope).
    if you comment line 4 in dummy.h (with //) the project can't be rebuilt for an error. This is what I expect.
    if you exclude line 4 in dummy.h (CTRL+E) I expect the same, but the project is rebuilt without errors
    So, the problem is: CTRL+E in a header file included from another header file has no effect (the line is not excluded).
    Could you confirm this, please?
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

Maybe you are looking for

  • Please help someone confused

    Hi everyone. I'm not sure if I'm posting in the right forum but I need some help and the people I know are as clueless as me. I've been having problems with my Internet Explorer everytime I click on a link that tries to open a new window. What happen

  • Distribution of Business Partner Data

    I'm trying to determine the best method of distributing business partner data from R/3 to CRM via XI. Under CRM 5.0 help for Distribution of Business Partner Data, there are two ways given for distributing business partner data. 1.  Replication by me

  • Deleted iPhoto 5, do not have backup iphoto disk, where to go from here?

    I deleted iphoto 5 on my ibook G4 because it kept crashing and wasn't responding properly. I cannot find the iphoto disk to re-install it, and have tried installing 6, yet since it reads that I do not have any sort of iphoto app on my computer I cann

  • How to troubleshoot system?

    I am trying to diagnose a weird error I am getting in Excel. (This is that any cell accepts input for less than a second before it acts as if the enter key were pressed, so that it is impossible to enter more than a couple of digits or letters.) I ha

  • Where is the english version of Photoshop cc trial.

    I have downloaded the trial for photoshop cc twice and have only been able to get spanish. Any tips on getting the english version?