PI 7.0 tuning guide

Hello everybody.
I would like to tune a PI 7.0 application.
both ABAP (things such as number of dialog and background processes) and the JAVA (no zero administration in PI 7.0)
Can anyone please point me to a good guide?
Tried to look in service.sap.com and here, and I can't seem to find a guide that refers to those issues directly.
Thank you.

Hi,
Ref: http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2016a0b1-1780-2b10-97bd-be3ac62214c7
Thanks

Similar Messages

  • Oracle Database 10g: Performance Tuning guide

    Oracle Database 10g: Performance Tuning guide
    can any one help me where i can get above mentioned guide
    thanx in Advance
    regards,

    There's this wonderful website called Google: http://www.google.com. If you type in the exact same thing as this thread title, the first results listed will no doubt shock, surprise and amaze you ...
    Enjoy !!
    Cheers
    Richard Foote
    http://richardfoote.wordpress.com/

  • Performance Tuning Guide Needed.

    I've seen numerous references to a "Performance Tuning Guide" Is there
    any way this document could be posted on the weblogic customer
    downloads.
    We desperately need this information. Even with working with Support so
    far the process has been trial and error. Try this, then try that. I've
    burnt many days just playing around with the properties and so far no
    luck.
    I've read just about every post in the performance newsgroup. Some seem
    to be the same types of problems we are currently facing. Great
    response when there are about 50 users. Horrible around 65. Slowness
    doesn't seem to be gradual. All of a sudden it starts to crawl. So far
    I haven't seen any posts regarding solutions (weblogic.properties
    settings) which I could try and use.
    We are currently using weblogic 4.0.3 on AIX 4.3 with Oracle 8.i. No
    native performance pack for that release. Will upgrading to 4.5.1
    increase performance dramatically? Our application is very database
    dependent. We use a the weblogic connection pool using Oracle's jdbc
    thin driver. Note Oracle's OCI driver has numerous bugs related to CLOB
    and BLOB retrieval which are used heavily in our database.
    Thanks,
    Don DeLuca

    Hi Don,
    I can't comment on the public posting of the Capacity Planning document.
    However, I can say that there is no magic formula for optimizing your
    WebLogic application. The biggest things to look at are the application
    design and code (e.g., unnecessary synchronization code), DBMS configuration
    and database design, JVM heap size (bigger is not always better), number of
    execute threads (more is not always better), number of database connections
    in the pool, whether or not you are using the performance pack, how much
    other activity is happening on the server machine, etc. I can tell you that
    trying to simulate a large number of clients from a single JVM client (using
    lots of threads) will lead you to believe that the server is having problems
    when it is really the client software/hardware that is often the limiting
    factor. In many of our large benchmarks, we end up using significantly more
    hardware for driving the clients than for running the server(s).
    Sorry I don't have any better answers for you,
    Robert
    Don DeLuca wrote:
    I've seen numerous references to a "Performance Tuning Guide" Is there
    any way this document could be posted on the weblogic customer
    downloads.
    We desperately need this information. Even with working with Support so
    far the process has been trial and error. Try this, then try that. I've
    burnt many days just playing around with the properties and so far no
    luck.
    I've read just about every post in the performance newsgroup. Some seem
    to be the same types of problems we are currently facing. Great
    response when there are about 50 users. Horrible around 65. Slowness
    doesn't seem to be gradual. All of a sudden it starts to crawl. So far
    I haven't seen any posts regarding solutions (weblogic.properties
    settings) which I could try and use.
    We are currently using weblogic 4.0.3 on AIX 4.3 with Oracle 8.i. No
    native performance pack for that release. Will upgrading to 4.5.1
    increase performance dramatically? Our application is very database
    dependent. We use a the weblogic connection pool using Oracle's jdbc
    thin driver. Note Oracle's OCI driver has numerous bugs related to CLOB
    and BLOB retrieval which are used heavily in our database.
    Thanks,
    Don DeLuca

  • Invalid statement in Performance Tuning Guide

    Oracle® Database Performance Tuning Guide
    10g Release 2 (10.2)
    Part Number B14211-01
    13 The Query Optimizer
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/optimops.htm#sthref1324
    excerpt:
    "You can specify fast full index scans with the initialization parameter OPTIMIZER_FEATURES_ENABLE or the INDEX_FFS hint. Fast full index scans cannot be performed against bitmap indexes."
    Emphasis mine - Gints
    Here is counterexample:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> create table blah (sex varchar2(1) not null, data varchar2(4000));
    Table created.
    SQL> insert into blah select 'F', lpad('a', 4000, 'a') from user_objects where rownum<=10;
    10 rows created.
    SQL> insert into blah select 'M', lpad('a', 4000, 'a') from user_objects where rownum<=10;
    10 rows created.
    SQL> commit;
    Commit complete.
    SQL> create bitmap index sexidx on blah(sex);
    Index created.
    SQL> exec dbms_stats.gather_table_stats(user, 'blah', cascade=>true)
    PL/SQL procedure successfully completed.
    SQL>
    SQL> set autot traceonly expl
    SQL> set lines 100
    SQL> select count(*) from blah where sex = 'F';
    SQL> /
    Execution Plan
    Plan hash value: 1028317341
    | Id  | Operation                     | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |        |     1 |     2 |     1   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE               |        |     1 |     2 |            |          |
    |   2 |   BITMAP CONVERSION COUNT     |        |    10 |    20 |     1   (0)| 00:00:01 |
    |*  3 |    BITMAP INDEX FAST FULL SCAN| SEXIDX |       |       |            |          |
    Predicate Information (identified by operation id):
       3 - filter("SEX"='F')
    SQL> set autot off
    SQL> alter session set events '10046 trace name context forever, level 12';
    Session altered.
    SQL> select count(*) from blah where sex = 'F';
      COUNT(*)
            10
    SQL> disconn
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining optionsand here is relevant section from tkprofed trace file assuring that bitmap index fast full scan really was performed.
    select count(*)
    from
    blah where sex = 'F'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.02          0          0          0           0
    Execute      1      0.00       0.03          0          0          0           0
    Fetch        2      0.00       0.00          0          3          0           1
    total        4      0.00       0.05          0          3          0           1
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 60 
    Rows     Row Source Operation
          1  SORT AGGREGATE (cr=3 pr=0 pw=0 time=74 us)
          1   BITMAP CONVERSION COUNT (cr=3 pr=0 pw=0 time=55 us)
          1    BITMAP INDEX FAST FULL SCAN SEXIDX (cr=3 pr=0 pw=0 time=43 us)(object id 98446)Gints Plivna
    http://www.gplivna.eu

    Hello Gints. I've reported this to the writer responsible for the Performance Tuning Guide. One of us will get back to you with the resolution.
    Regards,
    Diana

  • SAP Business Objects Performance Tuning Guides

    Hello everyone,
    I'm currently looking for Performance Tuning guides for the hardware/software. In particular, parameters for the hardware. I'm having a hard time finding any kind of guides on the server side of Business Objects. So I'm wondering if anybody knows of some that are available on the internet or SAP site?
    I've found very few in the software department. However, I'm looking more for the hardware portion of Business Objects. Basically the goal is to get the server as optimal as possible (As far as memory, parameters, CPU, etc) is concerned so we know it can't be a hardware issue. It's kind of narrowing down the potential problems we can have later on down the road so that's why this is very important right now.
    Any help with this will be greatly appreciated. Thanks in advance. -Victor
    Edited by: Victor Munker on Jul 14, 2010 3:52 PM

    Here´s an updated version of that document:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50770d8f-5606-3010-28a6-9e3bb14ec6a7?QuickLink=index&…
    Cheers,
    Esteban

  • SQL tuning guide

    Hello Gurus,
    We have 10.2.04 RAC database running in production.The application does lot of DML.I need to tune query regularly.
    Could anybody sugggest a good book for Oracle SQl tuning.
    Thanks and Regards,
    jitender
    Edited by: user10552550 on Feb 22, 2010 5:53 AM

    The Oracle Database Performance Tuning Guide in the Oracle Database documentation library has a lot of information. Several chapters have "SQL" in their titles, including "SQL Tuning Overview".
    However, if you're looking for third-party books, I don't know know enough about them to recommend one versus another.

  • After applying SAP XI tuning guide

    Hi experts,
    we applied the sap xi tuning guide, and would you have any recommandations on what indicators to check to make sure we have improvement on performances ?
    Thanks a lot,
    any help would be greatly appreciated
    Regards,
    Jamal

    Hi,
    >>>we applied the sap xi tuning guide, and would you have any recommandations on what indicators to check to make sure we have improvement on performances ?
    run some flows and compare in RWB in performance monitoring link
    (a flow's runtime before you used the tuning guide and the same flow after)
    Regards,
    Michal Krawczyk

  • SAP Exchange Infrastructure Tuning Guide

    My problem is to apply of tuning guide.
    There is a table at page:8
    <b>3.1.1 SAP Profile Parameters</b>
    <b>Question 1:</b>I know I must use RZ10 to input these parameter.But which profile must I use?
    there are  3 profiles
    1- DEFAULT
    2- BXD_DVEBMGS00_BRCKXITS
    3- START_DVEBMGS00_BRCKXITS
    <b>Question2:</b> If I don't want to use RZ10, can I apply that parameter manually inside the pnecessary profile?
    Thanks

    Hi Cemil,
    <i>Question 1:I know I must use RZ10 to input these parameter.But which profile must I use?</i>
    U should use <SID>_<instance name>_<hostname>.
    So in my opinion BXD_DVEBMGS00_BRCKXITS according to this
    http://help.sap.com/saphelp_nw04/helpdata/en/ad/4b09411d57ef23e10000000a155106/content.htm
    <i>Question2: If I don't want to use RZ10, can I apply that parameter manually inside the pnecessary profile? </i>
    You can edit this file by using a text editor (when you have a Java-only installation) or by using transaction RZ10 (when you have a double-stack system). When editing this file, make sure that there is an empty line at the end of the file.
    For RZ10 limitation -  SAP Note 579190 
    For double-stack systems, see also SAP Note 741289
    Regards,
    Prateek
    Message was edited by:
            Prateek Srivastava

  • IMS Tuning Guide

    Dears,
    I found many references to iMS Tuning Guide in many forum posts.
    Unfortunately, I can not get it.
    I found the following link but it seems like it is down since long time: ims.balius.com/resources/downloads/files/iMS-Tuning-Guide.21.pdf
    I'd appreciate if somebody could send me a copy.
    Thanks and best regards,

    msr-egypt wrote:
    I found many references to iMS Tuning Guide in many forum posts.This guide is primarily useful for iMS5.2 (and early MS6 releases) installations which nobody should still be running.
    Why exactly do you believe you need to "tune" your environment? What problem do you have?
    I'd appreciate if somebody could send me a copy.How exactly?
    Regards,
    Shane.

  • Integrating Crystal Reports with ECC 6.0 - Tuning Guide

    Hello,
    Do you know if there is a document out there that describes what we can do to pinpoint performance issues with CR integrated with SAP ECC?   
    There is a WebI Performance Tuning document from WebI to SAP BW.  It explains how to capture very detailed end-to-end analysis times of a single query.  We are looking for something similar for CR to ECC.
    Any help would be greatly appreciated.
    Thank you very much,
    Scott

    I am not aare of such a document. But I ould recommend the usage of InfoSets.
    Regards,
    Stratos

  • DATABASE TUNING GUIDE.

    Hi,
    I have 9i database, can anybody give me
    1. Unix Important Command(like sar , top, vmstat, iostat, netstat), Please don't tell me how to use this command. Instead please tell me when is the bottleneck(generally how much oracle process should used and at what % we should consider cpu or memory or io usage is high).
    2. Tunning database document quick quide.

    Hi,
    I have 9i database, can anybody give me
    1. Unix Important Command(like sar , top, vmstat,
    iostat, netstat), Please don't tell me how to use
    this command. Instead please tell me when is the
    bottleneck(generally how much oracle process should
    used and at what % we should consider cpu or memory
    or io usage is high).
    2. Tunning database document quick quide.hi,
    Generally I look at the 'wait' class in top/vmstat to see if the system is waiting on disks.
    database tuning is an iterative process. You would need to post back some parameters e.g.
    show parameter sga
    show parameter pga
    etc etc.
    By asking your question, do we assume that your database needs tuning?
    Also as you are on UNIX, have you enable async servers?
    rgds
    alan

  • Where is a Directory Server tuning Guide's document

    I would like to know that tuning point(attirbute : nsslapd-dbcache and else. .etc..) 's exact mean and recommend's value.

    One "interesting" and sometimes counterintuitive aspect of the cache size configuration attributes are that they set limits not on the space used, but on the space Directory Server has to play with.
    As mentioned in the Caching chapter ( http://docs.sun.com/source/816-6697-10/caching.html ), for DB cache, you have somewhere around 25% of the space requested that goes to managing the cache.
    For entry cache, you set the size Directory Server asks of the memory allocation library. If you're using a memory allocation library that hangs on to extra space, and if you have lots of small attributes on your entries, the amount of memory that gets devoted to managing the actual memory you want to use can be a relatively large percentage of the whole.
    A big reason we recommend setting total cache size to 2 GB on 32-bit systems for the Directory Server process -- note that 5.2 has 64-bit wide cache support on Solaris and HP-UX so if you need it, you can go way, way over 2 GB -- is because some, potentially widely variable amount of memory is needed to manage all the memory available to use. You can work closer to the limit if you take time to benchmark, and if you are well aware of how high your peaks are going to be. But on the other hand, we don't want anybody out there getting themselves in trouble because they worked it all out on paper to fit in 3.7 GB, did little or no benchmarking, and expected no problems when they put their Directory Server into production.
    Hope all that is of some use.
    What do you find more appropriate in the recommendations in the 4.x docs? (Maybe we'll be able to fix it in a future version of the docs.)
    Thanks for your help,
    Mark

  • Oracle  11g Performance tuning approach ?

    Hello Experts,
    Is it the right forum to follow oracle performance tuning discussions ? If not, let me know what will be the forum to pick up some thread on this subject.
    I am looking for performance tuning approach for oracle 11g. I learned there are some new items in 11g in this regard. For persons, who did tuning in earlier versions of Oracle,
    what will be the best way adopt to 11 g?
    I reviewed the 11g performance tuning guide, but I am looking for some white papers/blogs with case studies and practical approaches. I hope that you have used them.
    What are the other sources to pick up some discussions?
    Do you mind, share your thoughts?
    Thanks in advance.
    RI

    The best sources of information on performance tuning are:
    1. Jonathan Lewis: http://jonathanlewis.wordpress.com/all-postings/
    2. Christian Antognini: http://www.antognini.ch/
    3. Tanel Poder: http://blog.tanelpoder.com/
    4. Richard Foote: http://richardfoote.wordpress.com/
    5. Cary Millsap: http://carymillsap.blogspot.com/
    and a few dozen others whose blogs you will find cross-referenced in those above.

  • Query Tuning

    Hi All,
    My Oracle database is running on 10.2.0.2.0 on RHEL 5.4 64 bit.
    I need some tuning guide line for below SQL:
    select  rnii.order_id,
              rnii.asin,
              rnii.gl_product_group,
              rnii.warehouse_id,
              rtrim(rnii.vendor_ordering_id) distributor_id,
              rnii.cost,
              sum(rnii.rnii_quantity_available + rnii.rnii_quantity_in_progress) quantity
            from
              O_RECEIVED_NOT_INVOICED_ITEMS rnii
            where
              rnii.legal_entity_id = 101 and
              rnii.received_date < to_date('2010-02-28','YYYY-MM-DD') + 1 and
              rnii.snapshot_day = to_date('2010-02-28','YYYY-MM-DD') + 1 and
              rnii.rnii_quantity_available + rnii.rnii_quantity_in_progress != 0
            group by
              rnii.order_id,
              rnii.asin,
              rnii.gl_product_group,
              rnii.warehouse_id,
              rtrim(rnii.vendor_ordering_id),
              rnii.cost
            having
              sum(rnii.rnii_quantity_available + rnii.rnii_quantity_in_progress) != 0
    /Here is execution plan :
    PLAN_TABLE_OUTPUT
    Plan hash value: 2086243943
    | Id  | Operation                | Name                          | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | SELECT STATEMENT         |                               |   366K|    23M|       |   103K  (3)| 00:20:37 |       |       |        |      |            |
    |   1 |  PX COORDINATOR          |                               |       |       |       |            |          |       |       |        |      |            |
    |   2 |   PX SEND QC (RANDOM)    | :TQ10001                      |   366K|    23M|       |   103K  (3)| 00:20:37 |       |       |  Q1,01 | P->S | QC (RAND)  |
    |*  3 |    FILTER                |                               |       |       |       |            |          |       |       |  Q1,01 | PCWC |            |
    |   4 |     HASH GROUP BY        |                               |   366K|    23M|   707M|   103K  (3)| 00:20:37 |       |       |  Q1,01 | PCWP |            |
    |   5 |      PX RECEIVE          |                               |  7326K|   475M|       |   102K  (3)| 00:20:35 |       |       |  Q1,01 | PCWP |            |
    |   6 |       PX SEND HASH       | :TQ10000                      |  7326K|   475M|       |   102K  (3)| 00:20:35 |       |       |  Q1,00 | P->P | HASH       |
    |   7 |        PX BLOCK ITERATOR |                               |  7326K|   475M|       |   102K  (3)| 00:20:35 |     1 |     4 |  Q1,00 | PCWC |            |
    |*  8 |         TABLE ACCESS FULL| O_RECEIVED_NOT_INVOICED_ITEMS |  7326K|   475M|       |   102K  (3)| 00:20:35 |   197 |   200 |  Q1,00 | PCWP |            |
    Predicate Information (identified by operation id):
       3 - filter(SUM("RNII"."RNII_QUANTITY_AVAILABLE"+"RNII"."RNII_QUANTITY_IN_PROGRESS")<>0)
       8 - filter("RNII"."RNII_QUANTITY_AVAILABLE"+"RNII"."RNII_QUANTITY_IN_PROGRESS"<>0 AND "RNII"."LEGAL_ENTITY_ID"=101 AND
                  "RNII"."SNAPSHOT_DAY"=TO_DATE('2010-03-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss') AND "RNII"."RECEIVED_DATE"<TO_DATE('2010-03-01 00:00:00', 'yyyy-mm-dd
                  hh24:mi:ss'))I tried to auto trace it and got below results:
    3522852 rows selected.
    Elapsed: 00:03:29.65
    Statistics
            101  recursive calls
              3  db block gets
        4033298  consistent gets
        4019237  physical reads
            972  redo size
      169791511  bytes sent via SQL*Net to client
        2583851  bytes received via SQL*Net from client
         234858  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
        3522852  rows processed
    select partition_name,num_rows,sample_size,last_analyzed from dba_tab_partitions where table_name='O_RECEIVED_NOT_INVOICED_ITEMS' AND
    PARTITION_NAME LIKE '%ORNII101_2010%' ORDER BY 1;
    PARTITION_NAME                   NUM_ROWS SAMPLE_SIZE LAST_ANALYZED
    ORNII101_201001                 135228000     2704560 2010/03/02 06:30:39
    ORNII101_201002                 143515850     2870317 2010/03/02 06:30:48
    ORNII101_201003                 146559550     2931191 2010/03/02 06:30:57
    ORNII101_201004                         0             2010/03/02 06:30:57Table 'O_RECEIVED_NOT_INVOICED_ITEMS' is COMPOSITE PARTITIONED by 'LEGAL_ENTITY_ID' & 'SNAPSHOT_DAY' and subpartitioned by 'RNII_ID'.
    There are 227 partitions (Monthly) with 4 sub partitions in each of them.
    Table is sized at 520 GB and there is no index on the table. Table is having DEGREE=8.
    Query runs on first date of every month.
    Looking forward to have tuning recommendations to reduce query elapsed time. Is there any advantage by creating any index (local ?) on this table?

    The parallel processing of the query is not helping (at least when executed from SQL*Plus) much.can you bit elaborate this please ?
    Here is TKPROF report :
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.01       0.21          0         32          0           0
    Fetch   234858      8.47     123.70          0          0          0     3522852
    total   234860      8.48     123.93          0         32          0     3522852
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 153
    Rows     Row Source Operation
    3522852  PX COORDINATOR  (cr=32 pr=0 pw=0 time=119427010 us)
          0   PX SEND QC (RANDOM) :TQ10001 (cr=0 pr=0 pw=0 time=0 us)
          0    FILTER  (cr=0 pr=0 pw=0 time=0 us)
          0     HASH GROUP BY (cr=0 pr=0 pw=0 time=0 us)
          0      PX RECEIVE  (cr=0 pr=0 pw=0 time=0 us)
          0       PX SEND HASH :TQ10000 (cr=0 pr=0 pw=0 time=0 us)
          0        PX BLOCK ITERATOR PARTITION: 1 4 (cr=0 pr=0 pw=0 time=0 us)
          0         TABLE ACCESS FULL O_RECEIVED_NOT_INVOICED_ITEMS PARTITION: 197 200 (cr=0 pr=0 pw=0 time=0 us)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      reliable message                                1        0.00          0.00
      enq: KO - fast object checkpoint                1        0.00          0.00
      PX Deq: Join ACK                               10        0.00          0.00
      os thread startup                               8        0.02          0.18
      PX Deq: Parse Reply                             9        0.00          0.00
      SQL*Net message to client                  234858        0.00          0.10
      PX Deq: Execute Reply                         405        1.95        115.65
      PX qref latch                                   3        0.00          0.00
      SQL*Net message from client                234858        0.27         75.93
      PX Deq: Signal ACK                             11        0.00          0.00
      latch: session allocation                       2        0.00          0.00
      enq: PS - contention                            2        0.00          0.00
    ********************************************************************************

  • Performance tuning in PL/SQL code

    Hi,
    I am working on already existing PL/SQL code which is written by someone else on validation and conversion of data from a temporary table to base table. It usually has 3.5 million rows. and the procedure takes arount 2.5 - 3 hrs to complete.
    Can I enhance the PL/SQL code for better performance ? or, is this OK to take so long to process these many rows?
    Thanks!
    Yogini

    Can I enhance the PL/SQL code for better performance ? Probably you can enhance it.
    or, is this OK to take so long to process these many rows? It should take a few minutes, not several hours.
    But please provide some more details like your database version etc.
    I suggest to TRACE the session that executes the PL/SQL code, with WAIT events, so you'll see where and on what time is spent, you'll identify your 'problem statements very quickly' (after you or your DBA have TKPROF'ed the trace file).
    SQL> alter session set events '10046 trace name context forever, level 12';
    SQL> execute your PL/SQL code here
    SQL> exitWill give you a .trc file in your udump directory on the server.
    http://www.oracle-base.com/articles/10g/SQLTrace10046TrcsessAndTkprof10g.php
    Also this informative thread can give you more ideas:
    HOW TO: Post a SQL statement tuning request - template posting
    as well as doing a search on 10046 at AskTom, http://asktom.oracle.com will give you more examples.
    and reading Oracle's Performance Tuning Guide: http://www.oracle.com/pls/db102/to_toc?pathname=server.102%2Fb14211%2Ftoc.htm&remark=portal+%28Getting+Started%29

Maybe you are looking for

  • ESS IView access to ERP - login page displayed and not access possible

    Hello Colleagues, we have to setup Employee Self-Service (ESS) Portal as well  ERP. All required steps seems to be performed but we still facing one access issue. If I try to enter the Link My Employees under SAP Portal > Employess Self-Service > Tra

  • How do you delete duplicate tracks off your playlist?!

    How do you delete duplicate tracks off your playlist - everytime I connect my hard-drive it adds another of every single track - argh!!!! I remember there being a 'delete duplicate tracks' option on a much older version of itunes - is this still avai

  • SCCM 2012 SP1 - Offline Servicing failure - Failed to find or access the update binaries to be applied on the image

    Hi there Trying to patch a new Windows 7 SP1 image within SCCM 2012 SP1, but it's failing. I've searched for information on the failure messages I am seeing, but although there is a LOT of information online concerning Offline Servicing failures, I c

  • Counting TTL pulses at high speed

    Hi all, I am using PCI-6221 board with DAQmx to count the number of TTL pulses (which varies in its frequency between 0Hz to 10MHz) at a high speed (200,000 samples/sec.) and I am having a problem when the TTL pulse frequency drops below a certain le

  • Can't edit dng in Elements

    I just downloaded the trial version of Elements and am trying to open some DNGs from Lightroom 3.2 - Edit In... PS Elements. However unlike PS CS5, they won't open directly, but I get the dialogue box asking me to edit a copy (the only option availab