Performance problems between dev and prod

I run the same query with identical data and indexes, but one system takes a 0.01 seconds to run while the production system takes 1.0 seconds to run. TKprof for dev is:
Rows Row Source Operation
1 TABLE ACCESS BY INDEX ROWID VAP_BANDVALUE
3 NESTED LOOPS
1 NESTED LOOPS
41 NESTED LOOPS
41 NESTED LOOPS
1 TABLE ACCESS BY INDEX ROWID VAP_PACKAGE
1 INDEX UNIQUE SCAN SYS_C0032600 (object id 51356)
41 TABLE ACCESS BY INDEX ROWID VAP_BANDELEMENT
41 AND-EQUAL
82 INDEX RANGE SCAN IDX_BE2 (object id 53559)
41 INDEX RANGE SCAN IDX_BE1 (object id 53558)
41 TABLE ACCESS BY INDEX ROWID VAP_BAND
41 INDEX UNIQUE SCAN SYS_C0034599 (object id 53556)
1 INDEX UNIQUE SCAN SYS_C0032549 (object id 51335)
1 INDEX RANGE SCAN IDX_BV1 (object id 53557)Tkprof for Prod is :
Rows Execution Plan
0 SELECT STATEMENT MODE: ALL_ROWS
1 TABLE ACCESS MODE: ANALYZED (BY INDEX ROWID) OF 'VAP_BANDVALUE' (TABLE)
52001 NESTED LOOPS
26000 NESTED LOOPS
26000 NESTED LOOPS
26000 NESTED LOOPS
1 TABLE ACCESS MODE: ANALYZED (BY INDEX ROWID) OF 'VAP_PACKAGE' (TABLE)
1 INDEX MODE: ANALYZED (UNIQUE SCAN) OF 'SYS_C0018725' (INDEX (UNIQUE))
26000 TABLE ACCESS MODE: ANALYZED (BY INDEX ROWID) OF 'VAP_BANDELEMENT' (TABLE)
26000 INDEX MODE: ANALYZED (RANGE SCAN) OF 'IDX_BE2' (INDEX)
26000 TABLE ACCESS MODE: ANALYZED (BY INDEX ROWID) OF 'VAP_BAND' (TABLE)
26000 INDEX MODE: ANALYZED (UNIQUE SCAN) OF 'SYS_C0030648' (INDEX (UNIQUE))
26000 INDEX MODE: ANALYZED (UNIQUE SCAN) OF 'SYS_C0018674' (INDEX (UNIQUE))
26000 INDEX MODE: ANALYZED (RANGE SCAN) OF 'IDX_BV1' (INDEX).The row count varies greatly. But it shouldn't as the data is the same.
Any ideas?

From DEV you show the Row Source Operations for the query. The column named "Rows" signifies the actual number of rows processed with each step.
From PROD you show the Execution Plan for the query; that is, tkprof was executed with the EXPLAIN option which generates the execution plan as of the time when tkprof was run. The "Rows" column in the Explain Plan output comes from the PLAN_TABLE.CARDINALITY, which represents an estimate by the CBO for the number of rows [expected to be] processed with each step.
So, if by <quote>The row count varies greatly</quote> you meant these "Rows" columns outputs then you're are comparing actuals from a database with estimates from another. Get the Row Source Operations from both.
"Identical data and indexes":
1. data may be the same, but it is not necessarily stored physically the same way.
2. Indexes being the same means their definitions are the same; again, physically they are not necessarily identical
In other words, data in PROD (the way it is stored on disk) may have evolved as a result of discrete deletes/updates/inserts ... in DEV it could be, for example, stored more compact if you took a copy of PROD and moved into DEV. So, the number of blocks for your segments will likely be different between PROD and DEV, the clustering factor for your indexes are likely different, etc ... things which could [and do] influence the CBO. The statistics may be different.
I guess what I'm saying is ... it is quite hard, if not outright impossible, to get two identical databases/instances/load ... hence, don't expect the executions to be 100% identical, even if you have "identical data and indexes". By all means compare between DEV and PROD (make sure you compare the same thing though) and use the observed differences as an indicator for further investigation ... don't chase the goal of 100% identical behavior.
Now, by all means look at that query taking 1 second in PROD ... I have only addressed <quote>The row count varies greatly. But it shouldn't as the data is the same.</quote>

Similar Messages

  • Consistency between dev and prod systems!!!!

    Hi All,
    I wuld like to check the consistency between Dev and Prod systems for all the Data model and other objects existing. I would like to do this sanity check to see whether the two systems are in sync. Are there any tools or transaction codes within SAP framework which can guide me in this direction.
    Kind Regards,
    Surya Tamada.

    Hi Surya ,
    First build whole data flow :
    1 .Create Infoarea ,Infoobjects & Masterdata ,Infoproviders ,Infoobject Catelog under Infoarea,MetaData - Characteristics MeteData - Key Figures 
    2 DSOs  ,Infocubes ,Infosets, Multiproviders ,Views in the development system ,Datasources for BW system,Flat File Datasources,Transformations
    then get data from the se11 tables as per your requirement :
    like RSDVCHA ,RSDBCHATR,RSDCUBEIOBJ,RSDICMULTIIOBJ etc and built view on it  as per your requirement .
    then built flat file data sources and transformation .
    get all data downloaded to flat file in ur PC .In the same way from other system.
    make flow from PC File Datasource -> DSO -> Infocube and build queries for different objects .load the downloaded files to them and then run query .
    ex : query to compare cube will take cube name and systems name as input and compare objects .
    Regards,
    Jaya

  • Field Status review between Dev and Prod.

    Hello All,
    During solving one of the ticket, I found that there are some difference in selection of some of fields as suppress,optional and compulsory for account groups with screen layout (customers) - (T. Code - OBD2) between Development and Production server. Now I would like to test for all account groups between Prod and Development.It is taking lot of time to see screen by screen.
    Can any body throw some light on this regarding any alternative way or can we download table information ?
    Thanks in advnace for your cooperation.
    Regards,
    santosh

    Try this:
    transaction: SE16
    Table: T077D
    Execute
    Do same in both systems and compare.
    Once you identified differences go back into the transaction as mentioned - OBD2- for detail analysis.
    GL
    Hein
    Please assign points if helpful.

  • System Properties user.timzone different between dev. and prod. system

    Hi all,
    I am facing the following issue:
    In our development system I get in http://<server:port>/sap/monitoring/SystemProperties -> dispatcher -> system properties a Europe/Berlin for user.timezone.
    In our productive system I get in http://<server:port>/sap/monitoring/SystemProperties -> dispatcher -> system properties a GMT for user.timezone.
    Can anybody explain which system property is requested by the J2EE-engine when calling this property?
    I ask, because I wrote a small programm requesting the user.property via java (expecting j2ee-engine would do that too) an got back an empty string (on both systems).
    So, how/where can I change the parameter, so that the development system uses GMT, too?
    I already checked the spro settings in sap, they are identical. System -> status showes the same for both systems, too.
    I hope for your help.
    Thanks and regards
    Christian

    Hello Chris,
    I checked the system variables with TA SM51 ->goto -> server -> information -> environment.
    There is nothing like the TZ variable on both systems (we use Linux).
    Do you have an other idea?
    How can I change the user.timezone shown in Java system properties?
    Regards
    Christian

  • Problem between DEV and QAS in SPDD and SPAU

    Hello,
    We adjusted the SPDD in the ACT_UPG and he SPAU in the post processing and everything was right.
    When I try to install the QAS I gave the installer both transport but tells me this:
    1 ETQ004 USER DECISIONS ABOUT PROCESS OF ADJUSTEMENTS
    4 ETQ430 START reading "umodstat.lst" in directory "/usr/sap/trans/EHPI/abap/bin"
    3 ETQ433 END   reading "umodstat.lst" in directory "/usr/sap/trans/EHPI/abap/bin"
    4 ETQ427 START deciding about "SPDD" in release "701"
    4 ETQ500 INFO  number of objects in repairs   : "92"
    4 ETQ501 INFO  number of objects in transports: "82"
    4 ETQ430 START reading "umodauto.lst" in directory "/usr/sap/trans/EHPI/abap/bin"
    4 ETQ431       "2" entries read
    4 ETQ432       read: rc="2"
    3 ETQ433 END   reading "umodauto.lst" in directory "/usr/sap/trans/EHPI/abap/bin"
    3WETQ498       transport "XXXXXXX" found. It seems NOT(!) to be OK
    that in SPDD
    3 ETQ438 END   writing entry to "umodauto.imp" in directory "/usr/sap/trans/EHPI/abap/bin"
    4 ETQ454       user wants to check the transport result in "SPDD"
    2 ETQ504 INFO  upgrade will halt for "SPDD" in release "701"
    3 ETQ429 END   deciding about "SPDD" in release "701"
    4 ETQ427 START deciding about "SPAU" in release "701"
    4 ETQ500 INFO  number of objects in repairs   : "593"
    4 ETQ501 INFO  number of objects in transports: "495"
    4 ETQ430 START reading "umodauto.lst" in directory "/usr/sap/trans/EHPI/abap/bin"
    4 ETQ431       "2" entries read
    4 ETQ432       read: rc="2"
    3 ETQ433 END   reading "umodauto.lst" in directory "/usr/sap/trans/EHPI/abap/bin"
    3WETQ498       transport "XXXXXXXXXX" found. It seems NOT(!) to be OK
    that is on SPAU
    The system before the migration, were both recreated from a PRD backup so it should be the same.
    Please help me with this

    Hello Carlos,
    this error is mostly related to the second run of an Upgrade (either to QA or PRD systems), when SPAU/SPDD already have a request assigned for them. Please check notes #68678 and #610311.
    If this does not help, please list the content of phase PREP_INTEGRATION/ADJUSTPRP (as seen in the sapehpiconsole.log)
    Best regards,
    Tomas Black

  • SYSTEM LANDSCAPE -   DEV and PROD - refresh

    Hi All,
    We have a situation like this.
    1. Our BW Q&A is a copy of PROD
    2. Our BW DEV is not either a copy of Q&A or PROD.
    3. We have issue with a particular process chain in PROD and we need to correct (and follow the lanscape..that is want to do the correction in DEV and the transport to QA and then to PROD)
    4. Since this particular process chain is not existing in the DEV environment, our Basis team is advising us to check the difference in DEV and PROD for as this process chain concern and then want to refresh it to DEV system so that we can carry out the change/modification.
    We don't know really what exactly we need to find the differences between DEV and PROD for this PC and then to inform to Basis team...
    Is it correct that since the particular process chain associated with various queries,data targets,update/transfer structures...etc will be over writen  /  copied / refreshed in DEV system from PROD?
    Please advise..Please help..

    Hi George, SAT, BWer,
    Thanks for your messages.
    George : Answers to your question:
    1. Our Basis team want to copy all the configuration (related to the particular process chain only)and not Data's.
    2. How to pack the process chain in a portable file and extract this file. then import it into DEV..and what is the way not to get error when doing so (knowing that fact that obejects will be different..) I don't know..whether to copy the objects are or not..
    3.I agree with you.. Even  we are ready to work with DEV to PROD..
    SAT: Answers to your questions:
    1. I do see some Process chains in the DEV and not related to this particular PC. Many development PC are there..and I don't know where the originally developed PC's ???!!
    2. I am new to this Client..sorry..how this has been deleted...
    BWer :Answers to your questions:
    1. Yes..PC is Latest in the PROD.
    2. We don't want to create the process chain all the way from scratch in the DEV. Yes..This is one of the process chain used in the metachain...Totally there are five chains in the PROD related to this..We need to modify only the second process chain..which we are trying to copy in the DEV and then do the changes...
    Hope , you are clear about our requirement.
    Please advise me what exactly we need to look into the DEV and PROD system so that required PC is copied alomg with (????) to DEV system..Please help.
    Thank you very much in Advance..

  • RFC Sender problem  between 46D and RFC adapter

    Hi,
    I have this simple integration scenario where I want to send data to a archiving system;
    SAP -> (tRFC) -> XI -> (MQ) -> BizTalk -> (MQ) Arch.syst.
    SAP side ***
    A Z-program using a Z func. like;
        CALL FUNCTION 'ZSD_DCF_SEND_TAG'
          IN BACKGROUND TASK
          DESTINATION 'XISYSTEM_TRFC_DCF'
          EXPORTING
            pt_filing_info = gt_filing.
        COMMIT WORK AND WAIT.
    XI side ***
    Both IR and ID is configured correctly, in the development environment everything works just great. I have created a test program where I can define how many calls I will do, looping over the func. call with a commit inside the loop - 500 or more msgs are ok.
    The integration scenario is transported to quality enviroment using CMS, and the RFC sender comm.ch. is configured accordingly.
    The problem in quality ***
    When sending just 1 msg, everything is just fine, message received and delivered to MQ.
    When sending >= 2 msgs, the 1 msg is always ok, BUT all others fails due to the following from Adapter monitor;
    RFC_HISTORY
    - Error: 2006-01-19 10:55:18 CET: com.sap.aii.af.rfc.afcommunication.RfcAFWException: lookup of alternativeServiceIdentifier via CPA-cache failed for channel 'RFCSender_XI0002' (02d4d30de3593874942ed0659add0827, party '', schema 'TechnicalSystem', identifier 'Q93#120')
    - OK: 2006-01-19 10:55:17 CET: Message processed for interface ZSD_DCF_SEND_TAG
    My sending system is Q93 CLI 505 so I can understand the error, BUT I cannot understand why the RFC adapter is saying the TechnicalSystem is Q93#120 - it should be Q93#505. My Q XI has client 120...
    It seems to me that the RFC adapter is kind of confused about the sender..
    I have created a OSS message and SAP has looged on and looked into it with both a XI expert and RFC expert without being able to answer - all is configured correctly.
    - The SLD config. for bus.system Q93 is ok -
    - The bus.system in ID is showing correct vaues for
    Adapter Specific Identifiers (SID Q93, client 505)
    - Both Dev. and Qual. environment are running on XI 3.0 SP 14 latest patch, RFC component version on the SAP side is identical between dev. and qual. SAP systems
    - It doesn't matter which gw I use (Q93 gw or XI gw), the error is persistent
    - It doesn't matter if I increase initial conn, max conn.
    I have also tried to use qRFC instead, but with the same result.
    Anyone using tRFC for asynch. communication from SAP to XI seeing something similar?
    Meanwhile, I will do RFC trace on GW and RFC Adapter on AE....
    Please, do not say SP15, oss msg for FAQ RFC adapter or links to RFCAdapter config....
    best regards
    Torstein

    Hi,
    SAP Note 730870 FAQ: XI 3.0 RfcAdapter Q.no 15
    <i>Q 15: Whats wrong when the error message "lookup of alternativeServiceIdentifier via CPA-cache failed" shows up while sending a RFC call to the RfcAdapter?
    A: A RFC sender channel is located beneath a service within the Integration Directory. Within this service choose "Service" -> "Adapter-Specific Identifiers". The values in the fields "R/3 System ID" and "Client" has to be maintained with the correct values of the system, that sends the RFC call to the RfcAdapter. It normaly only makes sense to have these values filled for services of type "Business System". If maintained in SLD, this fields will be filled automaticaly for services of type "Business System" and can be updated with the button "Compare with System Landscape Directory".</i>
    - Give correct appserver and gateway service details in XI.
    - Open the service holding the RFC adapter you are trying to use. On the top menu, goto Service -> Adapter Specific Identifiers..
    Regards,
    Prateek

  • What is CTS ? what is the role of CTS in between DEV and QAS?

    Dear
    What is CTS ? what is the role of CTS in between DEV and QAS?
    Thanx & Regards
    Mohamamd Nabi
    [email protected]

    hello, friend.
    actually, you can search for subjects like this in the threads archive.  you will be pleasantly surprised to find that there are already many threads with similar issues and that you can find answers to even more otherwise unrealized questions.  and you don't have to wait for anyone to reply.
    it looks like the issue is urgent for you, and this is why i am attaching this feed from Sadhu Kishore, which was posted some time ago... (if he replies to your thread, you may choose to award him points).
    "Hi,
    The transport workflow provides a framework for transporting enhancements or new developments of existing business functions in a system landscape. It provides a direct connection between development and transport administration. The transport workflow manages the transport process, determines the user for each individual step automatically, and then displays an interface which they can use to perform the task directly.
    It is an efficient method of transporting a selected number of requests into a group of transport targets, and uses clearly defined approval steps to ensure the quality of your target systems. The requests can be transportable change requests, Customizing requests, relocation transports or transports of copies. The transport targets do not need to be located on defined transport routes. However, the transport workflow can involve some risks, caused by the dependencies between transport requests:
    Import sequence
    It is important that you import requests in the correct order, so that development work is up-to-date in the target system.
    Incompleteness
    It is important that the functions transported in the transport proposal are complete; otherwise errors may occur in the import system.
    A request is not imported, but it contains an important data element. You use another request to transport a table that references this data element. Since the referenced data element does not exist in the target system, activation errors will occur when you import the second request.
    The transport workflow is a generic workflow. Its ability to process the transport route configuration in TMS enables it to adapt itself to any system landscape. This means you can transport multiple requests into multiple targets, even if these targets are not located on the transport routes.
    This reduces the amount of work for the transport administrator significantly. The automated nature of the workflow also reduces the likelihood of errors during transports.
    You can use the transport workflow in two different ways.
    Transport workflow as a transport strategy
    If you have production systems in your landscape that can only accept approved transports, we recommend that you use the transport workflow to organize and coordinate the transport process.
    To do this, set Workflow-controlled transports as your transport strategy and configure the transport workflow.
    When you release a transport request, the transport workflow starts automatically and the screen Create Transport Proposal appears. The requests are then released implicitly when the transport proposal is sent to the transport administrator.
    Special transport workflow (mass transports)
    You can use the special transport workflow to make transports that do not follow the defined transport routes or that take place outside the normal transport schedule (part of the mass transport strategy). These transports may be corrections made in the development system that have to be transported into the production system without delay.
    To use the special transport workflow, set Mass transports as your transport strategy and configure the transport workflow."
    thanks.  you have been most generous.
    regards.

  • FB60 screen change layout different between DEV and PRD

    Hi,
    I'm having problem with transaction FB60. When i try to change the layout in PRD, in screen Edit System Setting, some of the field showing 0 length. For example in WBS element field, in DEV show length 24 but PRD show length 0. I try to compare the version but it is same (program & table structure - ACGL_ITEM). When I debug the program, found out that it will get the structure from sap internal c program call 'AB_GET_CX_DATA'. So, maybe this program version are different between DEV and PRD.
    Anybody knows what is the cause of this problem? Or maybe somebody can tell me how to check sap internal c program.
    Thank you very much.

    Yes. FB60 is Enter Vendor Invoice. In this screen you can see a table with column such as GL Acct, Debit/Credit, Amount in DC, Cost Center and others. You can add or remove some of the field using Table Setting and create Screen Variant. My problem is, the length of WBS Element and Profit Center field is 0. How to change the length.
    I already searched in forum but I only found how to create screen variant.
    Thanks.

  • Compare SPRO between DEV and QAs

    Hi there,
    I'm in GoLive eve and all consultants are desperate with the future problems.
    Is there a way that I can compare the customizing (SPRO) between DEV and QAS or another system?
    Thanks,
    Dany Anderson
    Edited by: Dany Anderson Alves on Mar 4, 2008 9:03 PM

    Hi,
    Use comparison tool in SCU0.
    Select SAP Reference IMG and ssay compare.
    This will show the differences if any.
    You can also compare at component level.
    cross system visibility should be maintained in SCC4 settings for the client
    Regards,
    Revathi

  • Query Execution time is different in DEV and PROD

    Hi,
    Query is as follows:
    SELECT DISTINCT tds.*
    FROM testdev.contract_trans npq, testdev.contract_trans_group tds
    WHERE npq.contract_trans_group_id = tds.id
    AND tds.contract_id <> :contractid
    AND tds.tradingday_date BETWEEN :fromtradingday AND :totradingday
    AND tds.category_id = :categoryid
    AND tds.state_id = :entitystateid
    AND EXISTS
    (SELECT *
    FROM testdev.contract_trans npq1,
    testdev.contract_trans_group tds1
    WHERE npq1.contract_trans_group_id = tds1.id
    AND tds1.contract_id = :contractid
    AND (npq.network_point_id = npq1.network_point_id
    OR (npq.network_point_id IS NULL
    AND npq1.network_point_id IS NULL))
    AND tds.tradingday_date = tds1.tradingday_date
    AND tds.category_id = tds1.category_id
    AND tds.state_id = tds1.state_id)
    This query is taking 500ms of time to execute in DEV and when it is executing in Prod it is execuiting in 1.10min. I also analyze the table as well as use hint on this. But the time is not getting reduce in Prod. I compare the tables of dev and prod but data is on shink.
    row execution plan for DEV :
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.01 0 0 0 0
    Execute 1 1.62 1.57 0 0 0 0
    Fetch 2 0.81 0.78 0 1208 0 364
    total 4 2.43 2.37 0 1208 0 364
    Misses in library cache during parse: 1
    Optimizer mode: CHOOSE
    Parsing user id: 5 (SYSTEM)
    Rows Row Source Operation
    364 HASH UNIQUE (cr=1208 pr=0 pw=0 time=783194 us)
    545 FILTER (cr=1208 pr=0 pw=0 time=775342 us)
    545 HASH JOIN (cr=1208 pr=0 pw=0 time=774670 us)
    99432 TABLE ACCESS FULL CONTRACT_TRANS (cr=382 pr=0 pw=0 time=465 us)
    18225 HASH JOIN (cr=826 pr=0 pw=0 time=359469 us)
    1000 HASH JOIN (cr=445 pr=0 pw=0 time=108528 us)
    46 TABLE ACCESS FULL CONTRACT_TRANS_GROUP (cr=223 pr=0 pw=0 time=48274 us)
    675 TABLE ACCESS FULL CONTRACT_TRANS_GROUP (cr=222 pr=0 pw=0 time=51497 us)
    99432 TABLE ACCESS FULL CONTRACT_TRANS (cr=381 pr=0 pw=0 time=182 us)
    And row execution plan for PROD:
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 2 80.03 78.40 219 319722 0 364
    total 4 80.03 78.41 219 319722 0 364
    Misses in library cache during parse: 0
    Optimizer mode: CHOOSE
    Parsing user id: 5 (SYSTEM)
    Rows Row Source Operation
    364 HASH UNIQUE (cr=319722 pr=219 pw=0 time=78406184 us)
    545 FILTER (cr=319722 pr=219 pw=0 time=78385884 us)
    545 HASH JOIN (cr=319722 pr=219 pw=0 time=78384017 us)
    675 TABLE ACCESS FULL CONTRACT_TRANS_GROUP (cr=222 pr=219 pw=0 time=328724 us)
    2380118 NESTED LOOPS (cr=319500 pr=0 pw=0 time=71521450 us)
    837 HASH JOIN (cr=603 pr=0 pw=0 time=315980 us)
    46 TABLE ACCESS FULL CONTRACT_TRANS_GROUP (cr=222 pr=0 pw=0 time=48647 us)
    99432 TABLE ACCESS FULL CONTRACT_TRANS (cr=381 pr=0 pw=0 time=100990 us)
    2380118 TABLE ACCESS FULL CONTRACT_TRANS (cr=318897 pr=0 pw=0 time=70077111 us)
    Can any body help me out why this is happening?
    Regards,
    Saptadip

    Welcome to the forum.
    Please edit your post and use the {noformat}{noformat} tag, so your examples will stay formatted and indented.
    Put the tag before and after all text you want to stay formatted.
    {noformat}..{noformat} - Displays everything between the tags as programming code.
    The query on PROD is doing lots more of reads/processing much more rows then on DEV.
    For example, take table CONTACT_TRANS:
    - less than 100,000 rows on DEV
    vs
    more than 2,300,000 on PROD.
    but data is on shink.What does that mean?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Do any of you experience Im having with my ipad? I can't make a comment in Facebook for older posts and I can't open numerous comments from old posts of my friends. but everything works perfectly when I use laptop. is there problem between apple and FB?

    do any of you experience Im having with my ipad? I can't make a comment in Facebook for older posts and I can't open numerous comments from old posts of my friends. but everything works perfectly when I use my laptop(non-apple). is there problem between apple and FB?

    Facebook apparently has their site coded poorly for tablets with touch screens. Try using the Facebook app. It is not perfect either but it is better than view in a browser lately.

  • 免 Chaines Char not accepted in QA system, working fine in Dev and PROD

    Hi Experts,
    I am stuck withchines char e.g. 免
    BW QA is not accepting it, I can see the PSA data 免 converted to #, where as same records show proper 免 in BW DEV and PROD.
    I checked the data in source system (RSA3) properly showing 免.
    I rechecked the SM59 RFC setting in QA and compare with DEV.
    All system are unicode supported.
    Please help to resolve.
    Thank-You.
    Regards,
    VB

    I crated a new flat file text datasource and tried to load data (chines char) and that to work in QA.
    Don't understand what's issue with 0CUST_SALES_ATTR extractor. ?
    Any help/experience is welcome.
    Thank-You.
    Regards,
    VB

  • Problems between PE4 and 10

    I have a drawing that was resized to a certain length using PE4. I have now upgraded to PE10 and when I print the drawing , it prints 3-4 times  larger than what it should be. When I view the drawing, the ruler at the top of the screen shows it being the correct length and when I checked the deminsion in the resize box, it also has the correct length. Have I done something wrong or should I delete the drawing and start over from scratch?

    Could you be a little more specific please? Sorry, I am not a tech guy just a poor laymen.
    Date: Thu, 2 Aug 2012 20:30:55 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problems between PE4 and 10
        Re: Problems between PE4 and 10
        created by photodrawken in Photoshop Elements - View the full discussion
    Check your PSE print settings, especially the DPI value in the "Print Quality". Ken
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4595437#4595437
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4595437#4595437. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Graph axes assignment: performance difference between ATTR_ACTIVE_XAXIS and ATTR_PLOT_XAXIS

    Hi,
    I am using a xy graph with both x axes and both y axes. There are two possibilities when adding a new plot:
    1) PlotXY and SetPlotAttribute ( , , , ATTR_PLOT_XAXIS, );
    2) SetCtrlAttribute ( , , ATTR_ACTIVE_XAXIS, ) and PlotXY
    I tend to prefer the second method because I would assume it to be slightly faster, but what do the experts say?
    Thanks!  
    Solved!
    Go to Solution.

    Hi Wolfgang,
    thank you for your interesting question.
    First of all I want to say, that generally spoken, using the command "SetCtrlAttribute"is the best way to handle with your elements. I would suggest using this command when ever it is possible.
    Now, to your question regarding the performance difference between "SetCtrlAttribute" and "SetPlotAttribute".
    I think the performance difference occures, because in the background of the "SetPlotAttribute" command, another function called "ProcessDrawEvents" is executed. This event refreshes your plot again and again in the function whereas in the "SetCtrlAttribute" the refreshing is done once after the function has been finished. This might be a possible reason.
    For example you have a progress bar which shows you the progress of installing a driver:
    "SetPlotAttribute" would show you the progress bar moving step by step until installing the driver is done.
    "SetCtrlAttribute" would just show you an empty bar at the start and a full progress bar when the installing process is done.
    I think it is like that but I can't tell you 100%, therefore I would need to ask our developers.
    If you want, i can forward the question to them, this might need some times. Also, then I would need to know which version of CVI you are using.
    Please let me now if you want me to forward your question.
    Have a nice day,
    Abduelkerim
    Sales
    NI Germany

Maybe you are looking for

  • Error While Opening PDF File in SAP Inbox

    Hello Experts, I am facing a weird error in SAP Inbox while opening a PDF files (both created by custom ABAP programs as well as the one attached to a new SAP Inbox message from my desktop & sent to my Inbox as a test). The error states that "This fi

  • Can Employee submit Complaints electronically in ESS portal(Urgent)

    Hello, Could any one please answer this question, The client wants the Employees to submit their Grievance(complaints) electronically through ESS? Is any functionality available in ESS so that EE can enter complaints and send or do we need to customi

  • Communication Failing with Corrupted Chars . Sql Server 2000 and AS400

    Hi Experts, I am facing this below error after 9 yrs. sql server 2000 and As400 on prod server. while on dev and stage it's running properly. Here username is ABCD, while it's showing BCD The OLE DB provider "MSDASQL" for linked server "" reported an

  • How to find who has created the condition records

    hi all, in POF1 condition records were created.for material and plant.how to find who has created condition records for the material and plant. is there any way to find who has created please help me out. thanks sunny

  • Calling webdynpro application

    Hi, Is it possible to call webdynpro component by using <Frame> tag? If so is it possible to get the values from webdynpro browser to sapcrm browser? I have a button in WEBUI, when I click on the button it has to call webdynpro application? Is it pos