Miro Tcode Executing Normal In QUAL But Processing Slow In PRD Server

Hi,
I am facing a strange issue when i execute the tcode MIRO it is working fine in quality server but when it comes to PRD it is taking time in retrieving data from the PO Reference tab. I had checked in SM50 tcode and observed that Report SAPLJ1I4 is accessing data from MSEG table.
I had verified the indexes of MSEG in QUAL and PRD both are same . We had done client copy in the beginning of this month.
Please provide some guidelines for it.
Thanks & Regards,
Rickky

You might have a discussion with your basis team about reorg on MSEG, or update runstats, etc.  This is really a question for that team.

Similar Messages

  • Process runs faster when executed independently, but runs slower when a parallel big process is running

    Hi,
    The issue is,  a process, say "A" is running fine on certain days. On some days there are additional processes running on the server. When these additional processes are running, "Process A" suffers performance issue.
    Interesting point is that, these additional processes were running since long time. But, earlier "Process A" was running fine even when these additional process were running. Suddenly from past 2 or 3 weeks there is performance issue in "Process
    A", when these additional process run.
    Note: Nothing has been modified for the process A.
    Process A is an SQL job which has SSIS Package and stored proc in different steps
    When multiple parallel processes are running, SSIS Package step suffers around 40% increase in execution time, where as stored procs have only 15-20% increase in execution time
    When Process A is executed while no other big processes are running, it's execution time is fine. From past few days, issue is only when, some other big parallel processes are running.
    Currently below is my analysis:
    Since Process A is running fine when it is executed independently, I assume there is no issue in this process.
    Since issue occurs when some other big process is running, when Process A is running, I believe it is DiskIO issue. Will the issue be resolved if RAM size is increased?
    Is there any way to check if RAM is being fully utilized by the server
    Is there any other possibility why there is a sudden dip in performance when parallel processes are running.
    Is there any possibility of having issues in additional processes. Incase if it has some issues, does it impact "Process A"
    Please let me know if you need any further information. Infact I am not able to diagnose what is the actual root cause for the performance issue in "Process A" as nothing has been modified.
    Also it would be very much helpful, if I get any idea on different ways in reaching the actual root cause of this performance issue.
    NOTE: This is a data warehouse
    Thanks,
    Raksha

    When a query has a parallel plan, it will in general try to grab all cores up to the maxdop setting, but then it often uses them inefficiently. 
    But in that case, there are better odds for the queries not battling on resources with each other!
    What Josh alludes is to the fact that SQL Server needs to partition the data, so that different partitions are processed on different cores. This partitioning is based on statistics, and the statistics may be out of date or not accurate enough. This may
    result in that the data is not partitioned proportionally, and some threads gets very little data to work with. Thus, these CPUs are still idle, so there may still be room for the two processes to run at full speed. (That is, full speed with the given plan,
    which is not the full speed, had the partitioning been accurate.)
    I mention this because you asked about parallelism, and many systems leave maxdop at its default setting of 0 (which means "go ahead and grab everything!") even though Microsoft recommends you set it to a different number depending on this and
    that.
    Since this is a data warehouse, Raksha should not tamper with "max degrees of parallelism", I think.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Difference between TCodes ( Transactional Tcodes & Executable Tcodes)

    Hi All,
           Please help me as i have a requirement to differentiate between the various Tcodes for example( MIRO and MB51 ). MIRO is Executable Tcode and MB51 is Transactional Tcode. Is there is any list or a way in SAP to differnetiate between the Transactional Tcode and Executable Tcode, giving access right for Executable Tcode to user will not harm the SYSTEM rather than giving rights for Transactinal Tcode.
    Your help will be greatly appreciable.
    Please Note : I am not asking about tcode which are created by SE93.
    Thanks,
    Chandresh Bajpai

    Each ABAP program has a program type which must be determined in the program attributes when the program is created.
    There are seven program types from which you can choose: executable program, module pool, function group, class pool, interface pool, subroutine pool, and include program.
    All the SAP ABAP Program used name Standard, like Program name SAPM***  Dialog programming and R*****  Report programming.
    Execute via Transaction code
    MK03 : Display vendor Purchasing (SAPMF02K) Dialog programming
    ML41 : Display Vendor Conditions (SAPMV13A) Dialog programming
    ML35 : Display Vendor Conditions (SAPMV13A) Dialog programming
    MM03 : Display Material & (SAPMMG01) Dialog programming
    MIGO : Goods Movement (SAPLMIGO) FunctionPool
    MIRO : Enter Incoming Invoice (SAPLMR1M) FunctionPool
    Executable Program
    ML81 : Maintain Service Entry Sheet (RM11RL00) Report programming
    MM60 : Materials List (RMMVRZ00) Report programming
    MKVZ : List of Vendors: Purchasing (RMKKVZ00) Report programming
    MB51 : Material Doc. List (RM07DOCS) Report programming
    The transaction code is a twenty-character name which is assigned to a screen or a method of an ABAP program and is used for program execution. To execute a program, you either enter the transaction code in the input field of the standard toolbar or use the statements CALL TRANSACTION or LEAVE TO TRANSACTION. Transaction codes linked to screens are valid for executable programs, module pools and function groups. Transaction codes linked to methods are allowed for all program types except include programs
    Executable Programs
    You create executable programs directly using the tool called ABAP Editor. Executable programs can contain all processing blocks supported in ABAP, with the exception of function modules, and as many local classes as required. Executable programs are only started with the SUBMIT statement. Although NetWeaver AS ABAP offers several ways to call executable programs by entering their name on the screen, the system still executes the SUBMIT statement in the background.

  • How to execute a process in a certain server

    Hi all, We have a scheduled job to be executed in a certain server. This job trigger some process and the system do the load balancing, but we want that this processes runs in the same server than the job
    Is possible to do this?, How to force the system to execute this processes in the same server than the job?
    thanks.

    Juan,
    If you are speaking of a scheduled job - like one you can find in SM37, then you can set a specific server as the target server - like the CI.
    First, check the following:
    SM61 - make sure you have operation modes setup for the servers. The filed EXEC TARGET in the SM36/SM37 job definition reads for values based upon what you have setup here. The servers in the landscape will show up by default, but you can build a group to include/exclude certain servers as you see fit.
    Next, in either SM36 when building a job, or in SM37 to change an existing job, open the job in change mode. On the first screen, you'll see a field labeled "Exec. Target" - use the match code values (F4 help) to select the target server you want. Save the job, and you are all set.
    Hope this helps.
    -Tim

  • This code executes normally in VS2014, despite the fact that an inline member function is not defined in every TU in which it is odr-used.

    Consider this code:
    header.h:
    #include <iostream>
    class A{
    int i;
    public:
    A() : i(101) {}
    void print();
    void g(A&);
    cpp1:
    #include "header.h"
    inline void A::print() { std::cout << i << '\n'; }
    int main()
    A a;
    a.print();
    g(a);
    cpp2:
    #include "header.h"
    void g(A& a) { a.print(); }
    Note that the member function A::print is defined outside its class with the specifier inline. The code executes normally in VS2014, despite the fact that the member function is odr-used in cpp2, but it is not defined in this file.
    I found the following quotes from the C++11 Standard:
    9.3/3:
    An inline member function (whether static or non-static) may also be defined outside of its class definition provided either its declaration in the class definition or its definition outside of the class definition declares the function as inline.
    3.2/3:
    An inline function shall be defined in every translation unit in which it is odr-used.
    7.1.2/4:
    An inline function shall be defined in every translation unit in which it is odr-used and shall have exactly the same definition in every case.
    The two last quotes above don't speak exactly about a member function but I believe they should be applied in this case too, as the inline specifier is a hint for the compiler to expand the function inline at the point of call. If we assume the compiler
    does this inline expansion, how does it know the definition of the member function, while compiling the cpp2 file?  

    On 12/31/2014 12:13 PM, Belloc wrote:
    C++ is supported on many different systems, with tools provided by many different vendors. Microsoft's linker happens to be pretty smart about merging identical blocks of code. Other toolchains may use linkers that weren't designed with this in mind,
    and that would choke on multiple definitions of the same symbol. The C++ standard is written so that it's actually implementable, on as many platforms as possible.
    Frankly I don't understand your statement above. What would be the difficulty for any compiler*that is already compliant with 3.2/3 and 7.1.2/4*, to adapt its code, so that each call to an inline function in a TU, which doesn't carry the function
    definition, is simply not inlined?
    That's the easy part. The "there's identical function definition in every .obj file, and the linker is expected to merge them all together" is the hard part. Normally, if you define a regular (non-inline) function in more than one source
    file, you get a linker error. Microsoft's linker has a special way to mark "defined more than once, just pick any copy" block of code (see __declspec(selectany) ). Other linkers may not.
    Igor Tandetnik

  • Regarding  miro tcode copy to zmiro.

    Hi Experts,
    i got requirement like copy miro tcode to zmiro, i copied all includes  and all objects, finaly  transaction code is also created.
    while executing the program i got the dump,
    how to solve this dump , please give me an idea to solve this issue.
    Error analysis
        On account of a branch in the program
        (CALL FUNCTION/DIALOG, external PERFORM, SUBMIT)
        or a transaction call, another ABAP/4 program
        is to be loaded, namely " ".
       __' *However, program " " does not exist in the library._ "_* 
        Possible reasons:
        a) Wrong program name specified in an external PERFORM or
           SUBMIT or, when defining a new transaction, a new
           dialog module or a new function module.
        b) Transport error
    Trigger Location of Runtime Error
        Program                                 SAPLMR1M
        Include                                 LMR1MO1W
        Row                                     21
        Module type                             (MODULE PBO)
        Module Name                             MOVE_DATA_TO_TAX
    Regards
    vijay.

    Hi Vijay,
    There are lot of complications in copying MIRO. So better try to find some alternative way for meeting your reuirements like BADI or enhacements etc.
    For this error message, MODULE move_data_to_tax is declared in screen no 6005 of Function Group : MR1M. The codeing for MODULE MOVE_DATA_TO_tax OUTPUT is done in include LMR1MO1W. Include LMR1MO1W is included in include LMR1MO0M.
    Going further LMR1MO0M is included in LMR1MO10. So there are lot of level available in this scenarios. So try to navigate to all these includes and check whether all these includes are there in your copied version.
    Thanks & Regards,
    Harish

  • Java code runs normally through Eclipse but gives Encoding error thru cmd

    I am executing the following query given below through Eclipse and cmd in Windows NT enviroment.
    Statement stBMS = ConBMS.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
             String myQuery = "SELECT AL1.APPL_NM, AL1.DATA_CAT_CD, AL1.GEO_NM, AL1.CTRY_CD, AL1.CMPNY_CD, AL1.JOB_NM, AL1.JOB_RUN_TMS, AL1.JOB_CMPLTN_IND FROM BMS.IW_CONTRO AL1 WHERE (AL1.APPL_NM='BCSDM       ' AND AL1.DATA_CAT_CD='CURRLBR     ' AND DATE(AL1.JOB_RUN_TMS) >= CURRENT DATE AND AL1.JOB_CMPLTN_IND='Y')";
    ResultSet rsBMS = stBMS.executeQuery(myQuery);It runs normally through Eclipse but when i run it thru cmd i get the following error:-
    Exception:Encoding not supported!! DB2ConnectionCorrelator: G9339865.ND54.
    01F9C9142526encoding not supported!! DB2ConnectionCorrelator: G9339865.ND54.01F
    9C9142526
    com.ibm.db2.jcc.b.DisconnectException: encoding not supported!! DB2ConnectionCo
    rrelator: G9339865.ND54.01F9C9142526

    Like most IDEs JBuilder too can be configured to not only use several compilers (in fact it can use a lot more than can Eclipse, basically any compiler you want it too rather than just a few built-in ones) and can also be set to accept different language compliance settings for each of them.
    So even if your teacher has a 1.5 compiler installed it doesn't mean JBuilder will use it (it has to be told to use it) nor that his project settings will use 1.5 language compliance.
    If he has a version older than JB 2005 he won't get syntax highlighting and things like that for 1.5 whatever he does, and won't get 1.5 level language features either (as those versions predate 1.5). He can plug in the 1.5 compiler but the IDE will reject the new language features because it simply doesn't recognise them.
    Pre 3.1 Eclipse versions do the same.

  • Normal and Extended Rebates Processing

    Hi All,
    Can somebody please explain in detail, the difference between Normal and Extended Rebates Processing? Please provide some docs or links.
    Regards,
    Raghav

    Hi Raghav,
    Following explains how to crete a rebate agreement, test it using a sales order and billing it. Then settling it partially or fully using a rebate credit memo. Please use the basic procedure and tweak your IMG settings according to your unique requirements.
    Rebate processing:
    1. First requirement is that the rebate processing must be active for
    a. the customer ( check in customer master) ,
    b. for the billing type ( check in IMG > Billing > rebate processing > active rebate processing > select billing documents for rebate processing. )
    c. For the sales organizatin:
    ( check in IMG > Billing> rebate processing > active rebate processing > Active rebate processing for sales org. )
    2. Next create a rebate agreement For this ust T-code VB01. For the rebate agreement type you can choose either 0001
    ( group rebate ) or 0002 material rebate or 0003 ( customer rebate ) etc
    b. Enter your rebate conditions. Dont forget to enter the accrual rate here.
    3. Now test your rebate functionality : create a sales order for the particular customer, sales org ( ensure that the billing type used in your sales order is relevant for rebate) . Create outbound delivery, transfer order to do picking and post goods issue.
    4. Now go to Tcode VB03 and check your rebate by choosing conditions , selecting the condition line and choosing payment data. You will see that the accruals and business volume are updated when accounting doc is created for billing.
    5. Settling your rebates:
    Once your rebates have been accrued you need to settle the rebate.
    For this first release the rebate for settlement by using Tcode VB02. As a trial basis choose B ( you can choose other settings based on your requirement) and choose Create manual accrual. Now enter the amount to be paid and save the rebate agreement.
    6. Next display your rebate agreement using Tcode VB03.
    Enter your rebate agreement number . Next choose rebate payments > Rebate documents and select partial settlement. Click on the choose button to note down your credit request number.
    7. Use Tcode VA02 and release the billing block for your credit request. ( use item overview tab)
    8. Now use VF01 to create a rebate credit memo by entering the credit memo request number and save it
    9. Now release the credit memo to accounting using vf02.
    Following is complete config guide of extended rebates:
    http://help.sap.com/bp_bblibrary/600/Documentation/G63_BB_ConfigGuide_EN_US.doc.
    Thanks!
    Preethi.
    Edited by: preethi R on Nov 26, 2008 7:39 AM

  • HELP NEEDED!! Recently upgraded my ipad air to the new update, charged it over night, now it will not come on? i plug in the charger but comes up the normal charging sign but still no life in it?

    HELP NEEDED!! Recently upgraded my ipad air to the new update, charged it over night, now it will not come on? i plug in the charger but comes up the normal charging sign but still no life in it? Seems as though theres either a problem it charging or starting up. Had the ipad for about a year and a month or 2.. what can i do to source the problem?

    Its just started up with the apple sign, then it goes to an off black coloured screen so its on but nothing showing just a dark screen but not jet black.. ahhh help!! thank you in advance

  • Error in execute planning sequence variant in process chain

    Hi ,
    While creating an Execute planning sequence variant in process chain in Quality system , i am getting an error" variable variant not selected ' though i created a variable variant and selected it in execute planning seq variant.
    Transporting it from development system didnt work therefore i am trying to create it directly in Quality .
    Any idea what could be the issue.

    Hi,
    Variable variant can be saved for planning sequence in modeler and then cab be used in process chains.
    In process chain you can choose "Execute planning sequence"( separate process type) and add planning sequence with variant.
    [http://help.sap.com/saphelp_nw2004s/helpdata/en/43/1d000c41130bd5e10000000a422035/frameset.htm]
    Thanks
    Pratyush

  • HT1926 Itunes will not install on my pc because it says I am in Safe Mode.  I restarted my computer and selected normal start up but it still isn't working.  Help!

    I am trying to install itunes on my pc so I can upgrade my Iphone.  I currently have windows vista.  When I try to install itunes it says I am operating in safe mode and won't install.  I have tried to reboot my computer and selected "normal start up" but it still won't work.  Any suggestions would be great!  Thanks!

    Is that on a 64-bit system?
    If so, try the following user tip:
    "The Windows Installer Service could not be accessed" error messages when installing iTunes for Windows on 64-bit systems

  • I am trying to look at my I cloud account on a pc in the library it normally works fine but now says problem connecting with the server. what can i do or is there an issue today

    I am trying to look at my I cloud account on a pc in the library it normally works fine but now says problem connecting with the server. what can i do or is there an issue today

    Hi...
    Try restarting the AMDS >  How to restart the Apple Mobile Device Service (AMDS) on Windows
    iCloud system status reports everything green >  Apple - System Status

  • Yellow Boxes around type in normal view mode but not in preview?

    There are these yellow boxes that appear around type when in normal view mode, but when in preview mode it disappears.....any idea of what I can do to alleviate this issue? Here is an image of the problem....  

    This link should explain it:
    Field Guide to Composition Highlighting | InDesignSecrets

  • Exchange rate as optional mode in MIRO Tcode

    Dear All Expert,
    How can we kept exchange rate as optional mode in MIRO Tcode?
    Thanks & Regards
    Santosh Kadam

    Hello,
    In customizing, there is an IMG activity 'Define Currencies of Leading Ledger' under Financial Accounting (New) -> Financial Accounting Global Settings (New) -> Ledgers -> Ledger (transaction code OB22).
    Here, you can define per company code, which type of date FI posting will use for currency conversion. The values for field 'TrsDte typ' are 1 - document date, 2 - Posting date and 3 - Translation date.
    Regards,

  • MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

    The MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..
    We are passing the required values to the ATP API.
    1) The x_return_status is showing as 'S' i.e. success but x_atp_rec.Requested_Date_Quantity is not returning any value.
    2) If there is a grant issue how to identify it.
    Regards,
        Vinod Annukaran

    Pl do not post duplicates -0 MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

Maybe you are looking for

  • PC Micorsoft Office compatilbility w/ Microsoft Office for Mac 2004

    My wife is considering purchasing a PC which will be compatible with the local community college prgrams, but our kids will use it and their school is Mac-based. The school uses Microsoft Office for Mac 2004. My question is: Will the Microsoft Office

  • PC Card & 12" Powerbook G4???

    Does anyone know how to connect a PC Card from your wireless telephone company to the 12" Powerbook G4 being that there is NO card slot on the G4?

  • Need Help Getting JavaBeans to work in Forms 6i

    I have followed the docs of Dev6iR2 to use a JavaBean on a form and cannot see it, no matter what I try or where I put it. I believe I have the correct location of all jars - other class files in the same jar (as well as the bean) are seen by the Imp

  • IPad 2 battery life after overcharging

    Hello everybody. I recently accidentally left my iPad 2 on charge for about 2 hours after it had reached 100%. My iPad has never been through a complete battery cycle. Now that I have taken it off charge it seems as though it is losing battery faster

  • ITUNES CARD CODE IS NOT ACTIVATED??? help

    Bought itunes card and will i try to redeem it it says card is not activated help???