GC Optimization Problems

We optimized our GC Parameters for JDK 1.4.2_06 to reduce GC time:
"-server -ms1024m -mx1024m -verbose:gc -Xloggc:/var/applications/BOL81/logs/inhouse1/gc.log -Xnoclassgc -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:MaxPermSize=512M -XX:NewSize=384M -XX:MaxNewSize=384M -XX:SurvivorRatio=6 -XX:+UseLWPSynchronization"
After several hours under heavy load the GC occurs very often. Up to 4 times
per minute and last about 8 seconds.
Here is an extract of the GC log:
22800.298: [GC 22800.299: [ParNew: 392576K->392576K(392896K), 0.0000529 secs]22800.299: [CMS: 272361K->272804K(655360K), 7.3306386 secs] 664937K->272804K(1048256K), 7.3311409 secs]
22818.446: [GC 22818.446: [ParNew: 392576K->392576K(392896K), 0.0000532 secs]22818.446: [CMS: 272804K->278247K(655360K), 7.8801372 secs] 665380K->278247K(1048256K), 7.8806054 secs]
22842.256: [GC 22842.256: [ParNew: 392576K->392576K(392896K), 0.0000515 secs]22842.257: [CMS: 278247K->273676K(655360K), 7.8000559 secs] 670823K->273676K(1048256K), 7.8005780 secs]
Is this behaviour correlated with -XX:+UseConcMarkSweepGC or is
the NewSize just to big.
Sincerely
jpurgahn

It depends on what your program is doing. But it looks like your young generation is too
large.
The ParNew GC takes almost no time 0.000053 seconds but does not manage to clear
any memory. CMS (concurrentMarkAndSweep) seems to be freeing very little memory
and takes 7.8 seconds to do it (it frees about 0.5M in 7.8 seconds).
You might also want to try the -Xincgc to enable incremental collection of the old
generation. Note that this will not reduce the amount of time spent performing gc on
the old generation it just allows part of the old generation to be cleaned up on each
minor GC (can reduce the pause) (it tends to be slower overall)
The following link is useful
http://java.sun.com/docs/hotspot/gc1.4.2/example.html
You might also wish to add the -XX:+PrintTenuringDistribution option to see the
distribution of objects
or use the
-XX:+UseParallelGC -XX:+UseAdaptiveSizePolicy instead of -XX:+UseParNewGC
using +XX:UseConcMarkSweepGC can cause fragmentation in the tenured
generation causing larger numbers of major collections to occur then with the
XX:UseParallelGC.
lots of options.
matfud

Similar Messages

  • Query Optimization Problem

    Hi
    I have a optimization problem and wondering if you can help me, The problem is I am getting two diffrent costs for two diffrent users, when I login and run as the object owner the cost is normal but when I login and run the query as a diffrent user I have a dramatic increase in the costs.
    For example to retrieve the rows from Work_Order_Coding_Tab as the object owner the cost is 1 while logged in as the other user the cost is 26070 :(.
    views such as xxx_work_order_coding, active_work_order has got more than 2 million records.
    The query is
    SELECT a.wo_no "AOnr", a.customer_no "Kundnr", c.name "Kundnamn",
    a.contact "Kontakt", a.reference_no "Referens",
    a.err_descr "Kort_beskrivning", replace(a.err_descr_lo, chr(13) ||
    chr(10), ' ') "Lång_beskrivning", a.mch_code "Objektnr",
    b.mch_name "Objektnamn", replace(a.performed_action_lo, chr(13) ||
    chr(10), ' ') "Utfört arbete", sum(b.amount) "Kostnad", sum(
    b.sales_price_amount) "Kundpris", a.reg_date "Regdatum",
    a.real_f_date "Utf_datum", a.work_master_sign "Arbetsbefäl",
    a.work_type_id "Arbetstyp", a.state "Status"
    FROM objown.active_work_order a, objown.xxx_work_order_coding b,
    objown.cust_ord_customer c
    WHERE b.work_order_account_type = 'Kostnad'
    AND a.wo_no = b.wo_no
    AND a.mch_code = b.mch_code
    AND a.customer_no = b.customer_no
    AND a.customer_no = c.customer_no
    AND b.customer_no = c.customer_no
    AND a.mch_code = b.mch_code
    AND b.order_no IS NULL
    AND a.agreement_id IS NULL
    AND (a.work_type_id = 'L'
    OR a.work_type_id = 'U'
    OR a.work_type_id = 'S'
    OR a.work_type_id = 'T'
    OR a.work_type_id = 'UF')
    AND a.customer_no < '5%'
    AND a.customer_no LIKE '10027'
    AND a.org_code LIKE '510'
    AND a.state LIKE 'Av%'
    GROUP BY a.wo_no, a.customer_no, c.name, a.contact, a.err_descr,
    a.err_descr_lo, a.mch_code, b.mch_name, a.performed_action_lo,
    a.work_master_sign, a.work_type_id, a.reference_no, a.state,
    a.reg_date, a.real_f_date
    When Running as the object owner I get the following costs, is
    Step # Description Est. Cost Est. Rows Returned Est. KBytes Returned
    1 This plan step retrieves a single ROWID from the B*-tree index CUST_ORD_CUSTOMER_PK. 1 1 0,007
    2 This plan step retrieves one or more ROWIDs in ascending order by scanning the B*-tree index ACTIVE_WORK_ORDER_IX4. 1 1 --
    3 This plan step retrieves rows from table ACTIVE_WORK_ORDER_TAB through ROWID(s) returned by an index. 1 1 0,198
    4 This plan step loops through the query's IN list predicate, executing its child step for each value found.
    5 This plan step joins two sets of rows by iterating over the driving, or outer, row set (the first child of the join) and, for each row, carrying out the steps of the inner row set (the second child). Corresponding pairs of rows are tested against the join condition specified in the query's WHERE clause. 2 1 0,205
    6 This plan step retrieves one or more ROWIDs in ascending order by scanning the B*-tree index WORK_ORDER_CODING_PK. 1 1 --
    7 This plan step retrieves rows from table WORK_ORDER_CODING_TAB through ROWID(s) returned by an index. 1 1 0,053
    8 This plan step joins two sets of rows by iterating over the driving, or outer, row set (the first child of the join) and, for each row, carrying out the steps of the inner row set (the second child). Corresponding pairs of rows are tested against the join condition specified in the query's WHERE clause. 3 1 0,258
    9 This plan step retrieves a single ROWID from the B*-tree index ACTIVE_WORK_ORDER_PK. 1 1 --
    10 This plan step retrieves rows from table ACTIVE_WORK_ORDER_TAB through ROWID(s) returned by an index. 1 1 0,014
    11 This plan step joins two sets of rows by iterating over the driving, or outer, row set (the first child of the join) and, for each row, carrying out the steps of the inner row set (the second child). Corresponding pairs of rows are tested against the join condition specified in the query's WHERE clause. 4 1 0,271
    12 This plan step has no supplementary description information.
    13 This plan step designates this statement as a SELECT statement. 5 1 0,271
    AND Running as end user brings the following costs!
    1 This plan step retrieves a single ROWID from the B*-tree index CUST_ORD_CUSTOMER_PK. 1 1 0,007
    2 This plan step retrieves one or more ROWIDs in ascending order by scanning the B*-tree index ACTIVE_WORK_ORDER_IX4. 1 360 --
    3 This plan step retrieves rows from table ACTIVE_WORK_ORDER_TAB through ROWID(s) returned by an index. 29 10 1,982
    4 This plan step loops through the query's IN list predicate, executing its child step for each value found.
    5 This plan step represents the execution plan for the subquery defined by the view ACTIVE_WORK_ORDER. 29 1 4,095
    6 This plan step joins two sets of rows by iterating over the driving, or outer, row set (the first child of the join) and, for each row, carrying out the steps of the inner row set (the second child). Corresponding pairs of rows are tested against the join condition specified in the query's WHERE clause. 30 1 4,102
    7 This plan step retrieves all rows from table WORK_ORDER_CODING_TAB. 26 070 10 0,527
    8 This plan step retrieves a single ROWID from the B*-tree index ACTIVE_WORK_ORDER_PK. 1 1 --
    9 This plan step retrieves rows from table ACTIVE_WORK_ORDER_TAB through ROWID(s) returned by an index. 1 1 0,014
    10 This plan step joins two sets of rows by iterating over the driving, or outer, row set (the first child of the join) and, for each row, carrying out the steps of the inner row set (the second child). Corresponding pairs of rows are tested against the join condition specified in the query's WHERE clause. 26 071 3 0,199
    11 This plan step represents the execution plan for the subquery defined by the view XXX_WORK_ORDER_CODING. 26 071 3 17,748
    12 This plan step accepts two sets of rows, each from a different table. A hash table is built using the rows returned by the first child. Each row returned by the second child is then used to probe the hash table to find row pairs which satisfy a condition specified in the query's WHERE clause. Note: The Oracle cost-based optimizer will build the hash table using what it thinks is the smaller of the two tables. It uses the statistics to determine which is smaller, so out of date statistics could cause the optimizer to make the wrong choice. 26 102 1 10,018
    13 This plan step has no supplementary description information.
    14 This plan step designates this statement as a SELECT statement. 26 103 -- --

    AND a.customer_no < '5%'
    AND a.customer_no LIKE '10027'
    AND a.org_code LIKE '510'
    Does the query bring back the expected results? There appears to be an issue with your customer_no logic. The only customer_no that will meet your criteria is '10027', the < '5%' appears redundant.
    with a as (
       select '10027' customer_no from dual union all
       select '10027x' customer_no from dual)
    select *
    from a
    where a.customer_no < '5%'
    and a.customer_no like '10027';Also, your LIKE operators can be rewritten as '=' if you do not use wildcards, ie '%' or '_'.
    If the active_work_order table is larger than the others, you may want to use the smallest table when comparing the customer_no column as it may assist in the execution path.

  • What kind of mathematical optimization problems exits in SAP? (NP problems)

    What kind of mathematical optimization problems exits in SAP?
    I don't use SAP and don't have any experience with SAP but I would be interested what complex optimization problems, preferably "NP problems", exits or where a fast solution (semi-solution) to such problems would be beneficial.

    I think that no exists standard routines about NP problems in SAP.
    OK. But this is not what I asked for.
    What kind of mathematical optimization problems exits in SAP? (NP problems) 
    Hence, if you have such an algorithm, where can it be applied in SAP? Where is it useful? 
    I would especially be interested in problems where the space is so big that can not be completely tested.

  • Optimization problems in downloading data of greater size from any URL.

    Hi everyone !
    I'm trying to download some resource from the internet by providing valid URL. My code takes almost 50-55 minutes to download. The same resource is downloaded within 3-5 minutes by using Internet Explorer and 3-4 minutes using Fire Fox at the same network and Kbps. The sample code is as under:
    //I'm using apache's HTTP APIs
    public static String url = "http://www.sk.ee/crls/esteid/esteid.crl"; //file size is approx: 10 MB
    //httpMethod is instance of HttpMethodBase and I have initialized it with GET method
    obj_httpMethod = new GetMethod( obj_httpUrl.getEscapedURI()
    InputStream obj_is = obj_httpMethod.getResponseBodyAsStream();
    ByteArrayOutputStream obj_data = new ByteArrayOutputStream();
    //above code is working fine and giving proper input stream got from response.
    //problem start from here....although this code is working ok but it is not optimized
    //Is there any way to optimize the code
    MyHttpTransporter.copyStream(obj_is, obj_data, 524288); //Buffer Size: 512K [512*1024]
    //This method is working fine with files of small sizes but it is not doing well with greater file sizes e.g. 10MB
    public static void copyStream(InputStream a_objIs, OutputStream a_objOs,
                                    int a_iblockSize) throws Exception{
        System.out.println( "Buffer Size..: " +  a_iblockSize);
        byte [] byte_Buffer = new byte[a_iblockSize];
        int i_byteRead = -1;
        while ( (i_byteRead = a_objIs.read(byte_Buffer, 0, a_iblockSize)) > -1) {
          System.out.println( "reading stream...." );
          a_objOs.write(byte_Buffer, 0, i_byteRead);
          System.out.println( "writing stream...." );
          System.out.println( i_byteRead );
    System.out.println( i_byteRead );
    The one thing found in the above code is that, it is ignoring my provided buffer size and always fetching max 2047 bytes from the resource.
    Please help me in this regard as I'm unable to progress further in it.
    br,
    KS

    ASC_KS wrote:
    Thanx for the help.
    It makes some difference.
    the sample code is:
    //iblockSize = 524288 [512K]
    //1
    BufferedInputStream bis = new BufferedInputStream(a_objIs, a_iblockSize);
    BufferedOutputStream bos = new BufferedOutputStream(a_objOs, a_iblockSize);
    //2
    BufferedInputStream bis = (BufferedInputStream)a_objIs;
    BufferedOutputStream bos = (BufferedOutputStream)a_objOs;
    //what do you suggest 1 or 2 ? BTW I'm using 1
    If (2) works then behind the scenes the Apache code is already using Buffered streams (otherwise you would get a class cast exception) so there is going to be little advantage to using further buffering. Also, casting to buffered streams does not offer any performance advantage since any reading/writing you do will already be using the methods on the Buffered streams.
    Do I need to concentrate on the block size [reduce or increase what is good practice]. Because again it is fetching maximum 5387B and on average it is fetching the 2047B. But it is improved a little bit.Though the buffer size of the Buffered streams can be set when constructed they cannot be changed later so if the Apache code is not setting the buffer size when it constructs the buffer then you are stuffed. Check the Apache documentation to see if you can change the buffering.
    P.S. Of course, since it is open source, you can always modify the Apache code to increase the buffer size.
    P.P.S. I always use HttpURLConnection for this and it seems pretty quick though I have never downloaded anything beyond a few hundred KBytes.
    Edited by: sabre150 on Nov 21, 2007 11:18 AM

  • Oracle 11.2.0.2 and nchar optimizer problem

    Hello,
    sorry in advance for not being able to give all details to narrow better this possible problem.
    I admit it could be elsewhere.....
    I have a complex query where in particular an nchar(2) field (say col1) of table tab is involved
    I'm experimenting a sort of problem in optimizer estimating the number of rows it will get from this condition and so the corresponding overall cost of the query
    the table contains about 300k records and this field has at this moment 2 different values
    blankblank --> almost all records
    AA --> about 30 records
    there is at the moment a single index IND1 defined on this column (not a bitmap index)
    Both table and index are analyzed
    if my query contains the condition
    AND TAB.COL1 = ' ' ---> single blank
    Then the optimizer erroneously thinks with explain plan to get about 30 rows
    |* 5 | INDEX RANGE SCAN     | IND1 |     29 |     |     3 (0)
    | 00:00:01 |
    and the overall about 98, but the query actually doesn't come to an end ... (waited 10 minutes)
    if my query contains the condition
    AND TAB.COL1 = ' ' --->double space
    it doesn't use that wrong path and completes in about 1 second.
    If I replicate the query with single space on a test db with 11.2.0.1 it behaves correctly.
    If I force it to behave as the default wrong query in 11.2.0.2 (I have to use 3 hints to duplicate it)
    I get
    |* 5 | INDEX RANGE SCAN     | IND1 | 135K|     | 306 (1)
    | 00:00:04 |
    and overall cost is 304K so it is not used as a possible path...
    ANyone knows if anything changed between 11.2.0.1 and 11.2.0.2 for nchar and these possible different behaviours?
    (BTW: also in another 11.1.0.6 db I don't have this problem)
    The query is created by application and I cannot put the amount of necessary spaces.....
    And I'm afraid this problem could exist also for other tables where I have nchar(N) fields with N >2 too....
    Thanks in advance,
    Gianluca

    1) do you have a frequency histogram on this column?
    and
    2) is the client application using bind variables or string literals when querying?

  • WAAS Optimization problem

    Hello experts,
    I have a problem about the WAAS optimization.
    The topology is...
    Center: 7200 Router working with WCCP (512 WAE)
    Edge: 2800 Router working with WCCP (612 WAE)
    When i tried to reach the Database (behind the 7200 Router) from the Edge site. its working! but during this time, when i look the Current Connection status, there is no optimization traffic(you can see the attach file).
    I have done this setup, demo etc. too many times, but the first time i encountered such a problem.
    you can see the configuration at the below.
    By the way, when i look the "show ip wccp" command output. there is no traffic on Service identifier 62. Do we  need to see increased this traffic?
    Thanks in advance for  your help.
    BM-7206-METRO#show ip wccp
    Global WCCP information:
        Router information:
            Router Identifier:                   10.200.200.193
            Protocol Version:                    2.0
        Service Identifier: 61
            Number of Service Group Clients:     1
            Number of Service Group Routers:     1
            Total Packets s/w Redirected:        37207
              Process:                           0
              Fast:                              0
              CEF:                               37207
            Service mode:                        Open
            Service access-list:                 -none-
            Total Packets Dropped Closed:        0
            Redirect access-list:                199
            Total Packets Denied Redirect:       1074214
            Total Packets Unassigned:            0
            Group access-list:                   -none-
            Total Messages Denied to Group:      0
            Total Authentication failures:       0
            Total Bypassed Packets Received:     0
        Service Identifier: 62
            Number of Service Group Clients:     1
            Number of Service Group Routers:     1
            Total Packets s/w Redirected:        0
              Process:                           0
              Fast:                              0
              CEF:                               0
            Service mode:                        Open
            Service access-list:                 -none-
            Total Packets Dropped Closed:        0
            Redirect access-list:                -none-
            Total Packets Denied Redirect:       0
            Total Packets Unassigned:            0
            Group access-list:                   -none-
            Total Messages Denied to Group:      0
            Total Authentication failures:       0
            Total Bypassed Packets Received:     0
    CORE_WAE
    configure terminal
    primary-interface gigabitEthernet 1/0
    device mode application-accelerator
    central-manager address 10.10.10.10
    cms enable
    wccp version 2
    wccp router-list 1 2.2.2.1 (ROUTER IP add)
    wccp tcp-promiscuous router-list-num 1
    EDGE_WAE
    configure terminal
    primary-interface gigabitEthernet 1/0
    device mode application-accelerator
    central-manager address 10.10.10.10
    cms enable
    wccp version 2
    wccp router-list 1 1.1.1.1
    wccp tcp-promiscuous router-list-num 1
    CORE_ROUTER
    ip wccp version 2
    ip wccp 61
    ip wccp 62
    interface gi 2/0 (LAN)
    ip wccp 61 redirect in
    interface gi 3/0.26 (WAN) (Note: also this interface have a Tunnel int. connect to edge router tunnel int.)
    ip wccp 62 redirect in
    interface gi 1/0 (WAE LAN)
    ip wccp redirect exclude in
    ip cef
    EDGE_ROUTER
    ip wccp version 2
    ip wccp 61
    ip wccp 62
    interface gi 1/0 (LAN)
    ip wccp 61 redirect in
    interface ATM 2/0.1 (WAN) (Note: also this interface have a Tunnel int. connect to central router tunnel  int.)
    ip wccp 62 redirect in
    interface gi 2/0 (WAE LAN)
    ip wccp redirect exclude in
    ip cef

    Hi Zach
    Center router IOS version is c7200-advipservicesk9_li-mz.124-11.T.bin
    Edge router IOS version is c2800nm-adventerprisek9-mz.124-9.T2.bin
    Also you can see the configurations at the attach
    Thanks,
    My best.
    CORE WAE CONFIG:
    Based on the input, the following configurations will be done:
           central-manager address 10.166.0.10
           interface GigabitEthernet 1/0
             ip address 10.166.0.20 255.255.0.0
             autosense
           exit
           ip default-gateway 10.166.0.1
           ip name-server 10.201.0.201
           ip domain-name  tcmb.gov.tr
           primary-interface GigabitEthernet 1/0
           hostname CORE
           clock timezone UTC 0 0
           wccp version 2
           wccp router-list 8 10.166.0.1
           wccp tcp-promiscuous router-list 8
           cms enable
    EDGE WAE CONFIG:
    Based on the input, the following configurations will be done:
            central-manager address 10.166.0.10
            interface GigabitEthernet 1/0
              ip address 10.126.2.20 255.255.255.0
              autosense
            exit
            ip default-gateway 10.126.2.1
            ip name-server 10.201.0.201
            ip domain-name  tcmb.gov.tr
            primary-interface GigabitEthernet 1/0
            hostname EDGE
            clock timezone UTC 0 0
            wccp version 2
            wccp router-list 8 10.126.2.1
            wccp tcp-promiscuous router-list 8
            cms enable

  • Hasmap.put,get infinite loop, 27.6 optimizer problem

    Helo,
    We have a very busy (3000 users) Weblogic Portal and Weblogic Integration instance.
    We found that some times (once a week) weblogic server threads go to infinite loop doing hasmap.get, hashmap put or hashmap remove operations.
    Our developers found that there are synchronization problems with hashmap operations in the portal and wli code, (in 5 classes until today) they patched (synchronized) it and now the instances are stable.
    We contacted oracle support, but they only recommended us some wlw.. setting, none of them worked.
    The strange thing that the code that we patched is existed in weblogic server for years, so I tried to exclude the hasmap class from the optimizer in jrockit.opt file. Now the instances are also stable without the inhouse patches.
    So I suspect theh the jrockit optimizer optimize the hasmap class after some time in a wrong way; how can I find some evidence about it?
    The thead dumps showing only the hasmap operations and very high cpu usage.
    We are on Jrockit 27.6, JVM 1.5, Portal and WLI 9.2MP3
    Regards,
    LJ

    Not sure if it is relevant to the issues you describe in this thread, but a common problem with HashMaps is incorrect (missing) synchronization on concurrent operations. If you do have several threads concurrently accessing a HashMap without synchronization, it might mess up the internal data structures in the HashMap object. This can lead to infiinite loops when trying to iterate through the HashMap at some later time. This problem is not JVM-specific but changes in timing due to different JVM versions, JIT compilation/optimization or different HW etc can cause a previous "stable" program to become "unstable".
    I've seen a number of JRockit support issues related to this problem over the years, and in almost all cases it's been a problem in the Java code (which could be WLS, or the user application).
    Unfortunately it's far from trivial to troubleshoot concurrency issues. One (slow) way of checking your own code is to wrap all HashMaps in a SynchronizedMap. This will slow down your application but if the problem goes away then it's a good indication of the root cause. Not very useful if the problem is in 3rd party code that you don't have the source for, of course. In that case you have to open a ticket with the vendor (Oracle or other 3rd party).
    Cheers,
    Henrik

  • Acrobat XI - PDF Optimizer problems

    In Acrobat XI, I know that the PDF Optimizer moved to the Save or Save As function. The problem that I am facing is that on one (out of 30) of the Macs that I support, when I choose PDF Optimizer, the Optimizer window does not appear. I uninstalled and re-installed Acrobat, but it still does not work. HELP!

    Rave,
    Thanks for the suggestion, but I was able to answer my own question this morning. I found that 2 of the PDF Optimizer settings, which are located in the PDF Optimizer folder in the Application Support folder for Acrobat were corrupt. Once I eliminated the settings from the PDF Optimizer folder the Optimizer window worked properly again.
    Thank you,
    Jeff

  • Full Optimize Problem

    Hi Guys,
    I am getting the following error when doing a full optimize with database compression:"Error message:Arithmetic overflow error converting numeric to data type numeric.
    The statement has been terminated."
    I am guessing this has a lot to do with the performance issues i am having with system at the moment. Everything is slow at the moment and I am getting SendGovener issues as well.
    Any help will be appreciated.
    Regards,
    AvdB

    Hi all,
    We are having that same problem and really need to solve it.
    So, reading the thread and the note, it seems that we can have that error due to 2 different problems:
    1) numbers too big in the fact tables.
    2) a wrong entry in the tbl.Defaults table (using a comma notation in a "version" entry instead of a dot notation).
    So, we would need help with the following:
    1) about tbl.Defaults, in our case we only have values with commas in an entry like this:
    UserId        Type        App         KeyID                Value
    _GLOBAL     SYSTEM      PARAMETROS    SIGNED_DATA_FORMAT      20,15
    All the ones about version look like this:
    UserId        Type        App         KeyID          Value
    _GLOBAL    VERSION      PARAMETROS                    1.022
    So, is the entry about the Key "Signed_Data_Format" supposed to be causing the problem? Should we either change it or erase that entry?
    2) we don't have numbers too big in the database (in this case), but how are we suppose to prevent that from happening?
    Thank you,
    Rafael

  • SLM maintenance optimizer problems

    Hi guys,
    Into the maintenance optimizer, i can't update my systems.
    Error : "System has not been registred in the SLM"
    Procedure
    1. Run transaction code /TMWFLOW/MOPZCFG;
    2. Start the Multiple Software Lifecycle Manager Configuration Assistant;
    3. Select an SLM or create a new SLM;
    4. Choose "SLM Configuration" and register these systems in the SLM.
    When i do this procedure,when i saved i had this message :
    ICF Error when receiving the response : ICM_HTTP_CONNECTION_FAILED
    When i do an SLM check :
    The SLM Web services are unavailable.
    In the sm59 my RFC HTTP created automaticlly doesn't work...
    Could someone help me to correct my problem step by step ?
    What shall i have to do first?
    thanks

    No problem for the help.
    I'm glad to have help someone who can give me my first 6 or 10 points !
    We had many problems in EHP1 SP18 and we found many notes that explain us that our problems will be solved in SP19 only, but i don't remember wich one...
    I try to apply the documentation but i cannot configure the https accept because of the librairy libsapcrypto. The documentation tell us to go to download it on the website but we don't have the rights and you have to request this librairy to waldorf only !
    With the sp19, the solman_setup appears and correct many problems, but not the SLM problems : services are unavailable !
    Do you test your services in VA like i said ? Mine doesn't works...

  • IMovie optimization problems

    To select the Fast Forward effect on iMovie, the Help manual said I had to optimize my video. After optimizing the video, without adding a Fast Forward effect, the video has become extremely fuzzy. How can I undo optimization and get it's back to it's normal clarity? When I go to select Optimization again to return it to another option, the tabs are blanked out. Please help!

    Anyone else experience this problem?
    yepp, many, try the Forum's Search feature..
    look inside ~/Library/Quicktime.. search for any files 'DivX 5'... drag into trash, relaunch Mac ...

  • Optimizer problems

    I have Photoshop elements 9.
         1.  The Optimizer is very, very slow.
         2.  The Find, Edit, View, etc. are not showing on the Menu bar.
         3.  In the window the thumbnails are not showing overlapping folders
              like Photoshop Elements 8.
             Your help will be appreciated.
                                                                   Thank you,
                                                                   Albert F Schwartz, Jr.
                                                                   Email - [email protected]

    Thanks for the help.
    You solved the problem for the #2 question I asked, however the
    #1 and #3 have yet to be solved.
                                                Thanks again,
                                                    AFS

  • Maintanance Optimizer Problem

    Hi All,
    I have installed solman 7.0 and configure maintanance optimizer.When I go to use mantanance optimizer and create a new transaction and enter basic data e.g ECC 6.0 and go to next step , Select Files.In this step he gives me an error "No customer numbers in transaction AISUSER".
    When I go for error log :
    Diagnosis
    There are no entries with a customer number in the 'Customer Number' field in the table AISUSER.
    System Response
    You cannot get customer number-specific RFC destinations.
    Procedure
    Maintain these entries manually or start the report
    SMBI_AISUSER_VAR_MIG to copy any existing customer number from the table AISDK_CF_OSS_USR.
    I have run this report but the same problem exists.
    In T-code section  when I have run AISUSER ,it show me 3 fields :
    user :soltest
    sap customer no:  ???   ( How I removed this field ?)
    Contact person : S0044xxxxx
    Thanx,
    Amit
    Kindly help me for this problem sortout.
    Regards,
    Amit

    Ok,
    you need your service marketplace number to load down the support packages and sps.
    Log in your normal development client in for your productive client in your productive system.
    0.
    1. call SPRO
    2. call transaction scpr20
    activate :
    SOLMAN40_MOPZ_TTYP_SLMO_000
    SOLMAN40_CHARM_PROXYFACT_001
    3. Call SPRO  Action:
    SOLMAN_MAINT_OPTIMIZ (Check the help there is a link to combining USer with marketplace user.
    or call transaction AISUSER in your dev client.
    Define your  Solution and combine your SAP User with your  SAP Marketplace User
    Check also note 1024932.
    Then it should be work.
    For installing SPS you must get a maintenance certificate.
    /greetings nico
    Edited by: Nico Effenberger on Jan 20, 2009 7:57 AM

  • Aerize Optimizer Problem

    I recently purchased AerizeOptimizer thru AppWorld but had to redownload it when my Blackberry died. Nowmy serial number is invalid. I have already un-installed and re-installed theprogram and my serial number is still invalid. Can anyone tell me what to do toget the correct serial number for the product I purchased? Thank you.

    Just found out a way to fix this problem.  It worked for me.  Check out my thread and thanks to sdgardne.
    http://supportforums.blackberry.com/t5/BlackBerry-App-World-General/PIN-Number-amp-Aerize-Optimizer/...

  • Optimization problem in Acrobat Pro 9 on an iMac.

    If I use the Highlight Text Tool on selected text within a PDF, then choose Advanced/PDF Optimizer, the resulting PDF has solid color covering up any text I highlighted in yellow with the Highlight Text Tool. I can no longer see the text beneath the yellow highlights in the optimized PDF.
    Anyone know why this happens and how to stop it.

    Logic Express 8 & 9: Troubleshooting Basics
    I realize this is an old question, but for future reference check out the section about resetting your user preferences.

  • Maintenance Optimizer problem

    Hello,
    When i try to  download support  Package Stacks i am geting this problem
    System Messages Type Message Text
    Information Procedure 8000001413 Saved
    Warning Status was reset by system
    Warning There is already a transaction for the systems of this product version
    Please help me
    Regards,
    Swaroop

    Hi,
    You (or someone with authorization) have already started the procedure in some other solution, and the SAP is not allowing 2 simultaneous procedures.
    Enter Tx 
    /n/tmwflow/maintenance
    and select (double click) the already stated transaction. Continue or cancel it.
    Long-term solution:
    In tx SPRO use CTRL+F to search IMG Activity "Assign Conditions to Status Values"
    Execute.
    Find the entry "SLMO SLMO0001 E0002 40 SYSTEM_ASSIGNMENT", change its message type (column "MT") from "Cancel" to "Warning"; then save it.
    For more info see Note 1296589
    Regards,
    Nenad

Maybe you are looking for

  • OIM 9.1.0.2 provisioning privileges for user?

    Hi there, I can provision users to my DB. Great. However, if the user then logs on to the DB, they are rejected because they do not have connect privileges. How can I set up my provisioning so that the user is not only created in the DB, but also gra

  • Why does quit safari stay grey

    why can't i quit safari

  • Sign in Error

    When I try signing in Adobe Forms Central software I get an error that reads: A connection with the FormsCentral server could not be established. Please make sure you are connected to the internet and try again. Note:  You might otherwise be connecte

  • Iphone 4 lost all contacts. where are they?

    went to answer a phone call and noticed no names with numbers.  contacts tab totally blank. Anybody got any ideas?

  • Help with bootup problem

    When I turned on my ThinkPad x200s this morning it booted to the ThinkVantage recovery. However, it does nothing. For the last 12 hours I have tried restarting and letting it sit for hours - but nothing. Before it reaches ThinkVantage, it goes to Win