How to differentiate

Hi There,
What are the different ways to find the following?
1)how many dialog instances are present and what are they?
2)how do you identify which is a central instance?
3) how do you start and stop all of them?

I am pretty new to basis too. So here are some ways to check for Central Instance or Dialog Instance that I know of. There might be more.
1.<b>how many dialog instances are present and what are they?</b>
Tcode SM51should list all the instances i.e. Central and the Dialog Instances connected to the Central Instance
2.<b> how do you identify which is a central instance?</b>
The instance on which the <b>Message Server</b> is running is the Central Instance. This can also be checked from the OS side by going to /usr/sap/<SID>/<Instance>
For the Central Instance, this would have DVEBMGS which are the services running on it. M here stands the Message Server, which means that it is the CI.
The DI would not have M on it.
I guess the same applies for the D ie Dispatcher as well which runs on the server that runs the Message Server. Im not sure about this point though.
3.<b>how do you start and stop all of them?</b>
Start by starting the CI first and then all the Dialog Instances one by one.
Stop by stopping all the DIs and then finally the CI.
Incase you are not sure of the commands,
startsap all
stopsap all
Let me know if you need more info on the commands

Similar Messages

  • How to differentiate b/w Plan and actual data

    Hi,
    How to differentiate b/w plan nad actual data.
    Is that value type or Version InfoObject??
    What should be the value for that and how it gets populated ??
    Regards,

    Hello Tapan,
    The plan and actual data is differentiated on the basis of value of infoobject 0VTYPE. Value 10 is for actual. Different plan versions can be differentiated by different values of infoobject 0VERSION.
    These values are populated when actual data is loaded or plan data is entered.
    Hope it helps.
    Regards,
    Praveen

  • How to differentiate a Goods receipt ?

    hello gurus
    how to differentiate the Goods receipts which are done only against an Inbound Deliveries  from that of direct POs.
    Is there any table to check the same ?
    Thanks in advance

    Hi,
    There is no link anywhere for this,
    You will have to refer to EKES,MSEG,EKPO or EKBE
    Diwakar

  • How to differentiate the Purch Orders created with reference to in table

    Hi all
      how to differentiate the Purch Orders which are created with reference to Purch requsitions, contract, manual by copying inforecord in the table EKKO/EKPO? Is there any Field Indicators?
    Rgds
    Ramesh

    Hi Ramesh,
    Go through  EKPO there is a Table BANFN it will update when you create a PO with reference to PR
    Do se11 > Table EKPO> CtrlShiftF10 > Assign any of PO no. in the EBELN > Execute > you will find BANFN table
    it indicates Purchase Requisition Number. it will update when you create PO with reference to PR.
    Regards,
    Vraj

  • How to differentiate defects in QA32 using Traffic light

    Hi QM Experts,
    My scenario is,
    How to set Monitor control in QA32 screen.
    In the QA32 screen list of inspection lot will be displayed, for that inspection lot if any characteristics value is within / outside the limit, ie. for example specification is A2,R3 and i found 1 defect also defect is 4.
    how to differentiate this with the help of Traffic light.
    Regards,
    Krish

    Hi Krish,
    As per best of my information, the traffic lights in QA32, depends on the Start Sate and End Date of the inspection lot.
    If the End Date is not passed away (the current date is between the Start Date and End Date) it will be yellow.
    If the End Date is Passed away and UD is not not for the Lot then the traffic light will be RED and as soon as UD done at any date/stage the light will become Green.
    Conclusively, the light can't be linked with Defect Codes.
    Regards,
    Shyamal

  • How to differentiate between Parent and Child in IBASE?

    Hi. I am working on enhancing a BAPI :BAPI_GOODSMVT_CREATE by calling the following function module IBPP_CREATE_IBASE at its exit.
    The BAPI is being called from an SAP ME system and will be passing MATNR and Serial Number of Parent and Child materials to create the IBASE in ECC system. I am confused as to how to differentiate between whether a object is Parent or a Child when the BAPI: BAPI_GOODSMVT_CREATE is called.

    if you have NULL valued fields. If
    you do a compare and one or both are NULL, then the result is always NULL,
    never true or false. Even comparing two fields which are both NULL will
    give NULL as result, not true! Or if you have something like "select
    sum(field) from ..." and one or more are NULL, then the result will be
    NULL. Use always "if field is NULL ..." for NULL checking and for safety
    maybe something like "select sum( IsNull(field,0) ) from ...". Check the
    function ISNULL() in the manual.

  • How to differentiate capital budget and expense budget in BCS

    Hello all
    i had a doubt , your inputs are required.
    How to differentiate capital budget and expense budget in BCS
    Thanks
    Alok

    Hi ,
    As per the understanding that i can have from the inputs provided by you , you are moving ahead with a combination of Fund center and commitment item .
    Is it the case that for capital items your GL account would be diffrent as compared to the expense item .
    If that is the case then you can create different commitment item based on the GL and accodingly maintain the derivation strategy .
    Hope this suffices .
    Regards ,
    Dewang.

  • How to differentiate between 2 exceptions which are same(Ex: IOException)

    how to differentiate between 2 exceptions which are same(Ex: IOException)
    but occurring in 2 different functions(Ex: one in systemSoftwareProvisioning()
    and other one in provision() ). How to differentiate between them and in the
    framework how to catch both of them separately

    also use throwable.printStackTrace() method, this will point the line no. of the java file where the exception occured

  • How to differentiate whether user entered '0' or no value in the parameter?

    I need some clarification.On my selection screen I have 4 parameters( P_QTYLL,P_QTYUL,P_AMTLL,P_AMTUL). I have to check the values entered by the user in those fields and I have to display the user entered values in the next screen.My problem is if the user enters '0'(in any of the above fields) means '0' has to displayed in the next screen.But if he enters nothing means then nothing has to be displayed in the next screen.My problem is I am checking for '0', against the values(initial,'',space,0) for user entered value.But I am unable to differentiate the '0' and nothing(no value) even though I checked against the values(initial,'',space,'0').All the 4 conditions are treating both the '0' and 'novalue' the same.How to differentiate whether user entered '0' or entered nothing(no value).
    for example below is my code
    IF P_QTYLL EQ 0.
    P_QTY_LL = P_QTYLL.
    ENDIF.
    IF P_QTYUL EQ 0.
    P_QTY_UL = P_QTYUL.
    ENDIF.
    IF P_AMTLL EQ 0.
    P_AMTLL_S = 0.
    ENDIF.
    IF P_AMTUL EQ 0.
    P_AMTUL_S = 0.
    ENDIF.
    IF P_QTYLL EQ ''.
    P_QTY_LL = ' '.
    ENDIF.
    IF P_QTYUL EQ ' '.
    P_QTY_UL = ' '.
    ENDIF.
    IF P_AMTLL EQ ' '.
    P_AMTLL_S = ' '.
    ENDIF.
    IF P_AMTUL EQ ' '.
    P_AMTUL_S = ' '.
    ENDIF.
    LIKE THE ABOVE I checked against the values space,initial.But using those I am not getting any difference for no value and '0' .All the four values(space,initial,'0','') are treating both the '0' and no value in the same way.
    Thanks,
    Balaji

    hi,
    you said your teamlead doesn't want the type to be changed to 'C'.so try adding one dummy variable  of type c and pass your parameters value to this dummy variable and check  dummy variable for value '0'.
    eg:
    Data DUMMY(11) type c.
    DUMMY = P_QTYLL.
    IF DUMMY EQ 0.
    P_QTY_LL = P_QTYLL.
    ENDIF.
    DUMMY = P_QTYUL
    IF DUMMY EQ 0.
    P_QTY_UL = P_QTYUL.
    ENDIF.
    i think this will help you 2 some extend.

  • Does any one knows how to differentiate between outgoing mail and incoming

    Hi,
    I'm using the IV webclient inbox.
    Does any one knows how to differentiate between outgoing mail and incoming mail in the result list ?

    Hi,
    I'm using the IV webclient inbox.
    Does any one knows how to differentiate between outgoing mail and incoming mail in the result list ?

  • Looking for eMac: How To Differentiate Between Models Document

    Hello,
    I have been trying to find an Apple help document about how to differentiate between eMac models.
    I have found an article about iMacs, but can not seem to find one for eMacs. Here is a link to the iMac article, just so you can better understand exactly what I've been looking for:
    http://docs.info.apple.com/article.html?artnum=58669
    Does anybody know of a direct link to a similar article for all eMac machines? That would be amazing; thank you in advance for any help. =) *april

    Hello Dave =)
    Thank you for your help and for responding to my post.. The article you posted would have completely solved my problem, however, I, unfortunately, do not have access to serial numbers, and the serial number is mandatory for identifying eMac models in the article you posted. I appologize for not being more specific about exactly what I need.
    You see, I am looking on eBay for a good, used, possibly older eMac for my mom. Unfortunately, nobody puts serial numbers in their eMac listings, so I can not properly identify and price compare different eMacs. eBay sellers only list such things as Model Name, Processor Speed MHz, SDRAM and Hard Drive GB, so I need a list to 'check against' like the iMac document. I am mostly trying to find out which eMac models came with DVD players, and also which ones are AirPort ready and AirPort Extreme enabled etc.
    Would you happen to know if there's any such eMac model document?
    Thank you again for posting to my question; I do appreciate it. *april
    iMac 15" Flat Pannel 700 MHz PowerPC G4 1GB SDRAM   Mac OS X (10.3.9)   i love my little bubble computer

  • How to differentiate bw play, pause n seek buttons in TypicalPlayer Applet?

    hi all,
    I managed to get th frame extracted from avi video by listenin to ControlListener Event... Now my prob is tat whwnever i click any button either play, pause,seek the same event is invoked... How to differentiate between these events????? Can anyone help....

    I managed to get th frame extracted from avi
    video by listenin to ControlListener EventDo you mean[b] ControllerListener and ControllerEvent,
    or are you refering to some other API that is not JMF?
    How to differentiate between these events????? Did you spill jam on that '?' key?
    ..In any case, to distinguish between the events,
    you might try something like this./**
    * Controller Listener.
    public void controllerUpdate(ControllerEvent evt) {
      if (evt instanceof ConfigureCompleteEvent ||
        evt instanceof RealizeCompleteEvent ||
        evt instanceof PrefetchCompleteEvent) {
          synchronized (waitSync) {
            stateTransitionOK = true;
            waitSync.notifyAll();
      } else if (evt instanceof ResourceUnavailableEvent) {
        synchronized (waitSync) {
          stateTransitionOK = false;
          waitSync.notifyAll();
      } else if (evt instanceof EndOfMediaEvent) {
        evt.getSourceController().stop();
        evt.getSourceController().close();
    } From JpegImagesToMovie.java

  • How to Differentiate Normal CrossCompany and Return CrossCompany in VL10B

    Hello,
    I have a Normal CrossCompany PO and a Return CrossCompany PO.
    If I go to VL10B to create deliveries for both PO's how can I differentiante it if they have the same shipping point (the return po is similar to the normal one, only with return field active)?
    The dispatch person is different from the normal to the return purchase order, but data in "Shipping" detail menu in both PO is the same...
    Do you know how to differentiate this in VL10B? So people from the plant who is returning can dispatch their return PO's and people from the initial supplying plant doesn't see it.
    VL10B and others VL10.. don't have any field that could differentitate this type of POs.
    Thanks

    Solved with creation of a new shipping point

  • How to differentiate the insp lots with same lot origin

    Hi,
    My client is
    1. Procuring a  Finished good directly ( same way as Raw material is being procured ) & then sale it.
    2. In another scinarion the same material may be produced at Vendor's end ( Sub contracting )
    3. In another scinario this is in house produced material.
    Now the requirement is seperate tracking / list for each case.
    Inspection type 04 can be activated to address the 3'rd case.
    But how to segregate 1'st & 2'nd case from each other ???
    I have created one new inspection type Z01 for lot origin 01. Similarly insp type 01 is also activated.
    If Z01 insp type is marked as preferred insp type, then system always consider this insp type.
    How to differentiate inspection type Z01 & 01  at incoming inspection stage ????
    regards,

    Dear Gajesh / Roderick
    Thanks for reply & Sorry for the delayed reply from my side.
    Gajesh as per your suggestion i used the break point in user exit QAAT0001 & after that i have executed PO & MIGO transaction, But after executiing it did not stop at a particular break point.
    AM i doing some thing wrong???? or any alternate solution is there??
    Roderick,  i have explored the status profile but found to be use fulll for changing stage one time only.  i.e. between 0101 to 01. But here i want to choose the inspection type base on PO type.
    Kindly suggest further action.
    Once abain thanks.
    regards,
    Singh
    Edited by: Singh15667 on Jul 24, 2009 10:54 AM

  • How to differentiate issues

    How to differentiate issues between Oracle SOA Suite and an application installed on the top?
    Is it possible to recognize when a eventual error is in Oracle SOA?
    How ?

    qpulos has provided a very good explanation.
    - The fundamental difference between a router and a Layer 3 switch is that Layer 3 switches have optimized hardware to pass data as fast as Layer 2 switches, yet they make decisions on how to transmit traffic at Layer 3, just like a router. Within the LAN environment, a Layer 3 switch is usually faster than a router because it is built on switching hardware. In fact, many of Cisco's Layer 3 switches are actually routers that operate faster because they are built on "switching" hardware with customized chips inside the box.
    - Layer 3 Switching / Routing
    Layer 3 switches are essentially Layer 2 switches with a routing engine
    Designed to specifically route traffic between VLANs in a LAN environment
    Routing over WAN networks can still be supported, simply by plugging a traditional router that connects to the WAN networks into the LAN
    - Using Layer 3 switches for inter-VLAN routing as opposed to traditional routers is popular for the following reasons
    Performance versus Cost-Layer 3 switches are much more cost effective than routers for delivering high-speed inter-VLAN routing. Routers have many more features and can support a wide variety of WAN media options; however, many of these extra features are not required for inter-VLAN routing.
    Port density-Layer 3 switches have the same high port densities that Layer 2 switches have.
    Flexibility-Layer 3 switches allow you to mix and match Layer 2 and Layer 3 switching
    Check the below link for diffrence between l2 and l3 swith.
    http://www.cisco.com/web/about/ac123/ac147/archived_issues/ipj_1-2/switch_evolution.html
    Regrads,
    Pravin

  • How to differentiate the EMPTY Records and Null Values in DSO

    Hello....how is everyone here?? Ehehehe!
    I try to load some data from the flat file which contains some EMPTY data and Null Values for the records. The data type for the InfoObjects of the fields "Quantity" is "number". The sample data from the flat file (CSV) are as below:
    Food              Quantity
    Hamburger  -       12
    Cheese        -       0
    Vegetable      -               (Empty)
    When I try to load the above sample data to the DSO, I get the results of the data as follow:
    Food              Quantity
    Hamburger     - 12.000
    Cheese           -  0.000
    Vegetable         - 0.000
    In this case, how can the user differentiate whether the records is contain empty value of null values in DSO? This is kinda of hard to differentiate the both scenarios above. Is there any way to differentiate the scenarios described here?
    Thanks alot =)

    Hi Fluffy,
    It depends on the initial values of the data type
    The inital values For quantity/Currency/ Numbers it takes spaces as 0
    for char it is SPACE
    We cannot differeniate between space and null values.
    IF you have to force this then define quantity as char and load the data. we will not have units and aggregation in this case.
    Hope this helps.
    PV

Maybe you are looking for

  • With iCloud, how can I keep my devices separate from my wifes on updates and sharing?

    I know that its a bit early to be asking but with iCloud coming out how am i suppose to keep my music and apps apart from what my wife has on her phone and computer? Is there a way to set up seperate iCloud accounts or do I just have to turn off her

  • Can't Set Default Value for LOV Presentation DB Column

    I have a simple form. One of the fields is populated using a named, dynamic LOV with the following source query: SELECT USER_NAME DISPLAY_VALUE, USER_ID RETURN_VALUE FROM USER_ACCT ORDER BY 1 I want the default user to be public, which is one of the

  • My BC hosted form doesn't work?

    The submission sections don't show up and the Submit button doesn't work.

  • JSF 1.2 and Hibernate

    Hi, I want ask, what I doing wrong... I have web aplication on JSF 1.2 with Hibernate. When I change data in database, application shows always old data. Change is made when I rebuild application. How can I fix this. Please help. public class Hiberna

  • Help - How do I Add a Trendline to a Stacked Column Chart??

    I have a stacked column chart (NOT a 100% stacked column chart) and need to add a line to show the year goal.  I can do this in Excel, but for some reason can't figure out how to do this in SSRS.  I read various tutorials, blogs and MSDN pages but no