Time Dispatching!

Hello
on sept 30th, i've ordered an i7 mbp with 8gb of ram and 7200rpm hard drive at my local apple premium reseller, and he told me that my notebook would have arrived on october 2nd. But it did not come
And then the seller told me to wait still longer, and that i7 computer takes a long to get here.
Then i called in some other store, even in different cities. and they told me the same!
How can it be?? I do really need the notebook as soon as possible!
Can it be due to new imminent model release ??
Thanks in advice

It could be for any number of reasons. No one here knows where your machine is or why it has been delayed. In all likelihood, the store you bought it from doesn't know either. You will just need to be patient.

Similar Messages

  • SQL Query to calculate on-time dispatch with a calendar table

    Hi Guys,
    I have a query (view) to calculate orders' fulfillment leadtimes.
    The current criteria exclude week-ends but not bank holidays therefore I have created a calendar table with a column name
    isBusinessDay but I don't know how to best use this table to calculate the On-Time metric. I have been looking everywhere but so far I have been unable to solve my problem.
    Please find below the current calculation for the On-Time Column:
    SELECT
    Week#
    , ClntGroup
    , CORD_DocumentCode
    , DESP_DocumentCode
    , Cord_Lines --#lines ordered
    , CORD_Qty --total units orderd
    , DESP_Lines --#lines dispatched
    , DESP_Qty --total units dispatched
    , Status
    , d_status
    , OpenDate --order open date
    , DateDue
    , DESP_PostedDate --order dispatched date
    , DocType
    , [Lead times1]
    , [Lead times2]
    , InFxO
    , OnTime
    , InFxO + OnTime AS InFullAndOneTime
    , SLADue
    FROM (
    SELECT
    DATEPART(WEEK, d.DateOpn) AS Week#
    , Clients.CustCateg
    , Clients.ClntGroup
    , d.DocumentCode AS CORD_DocumentCode
    , CDSPDocs.DocumentCode AS DESP_DocumentCode
    , COUNT(CORDLines.Qnty) AS Cord_Lines
    , SUM(CORDLines.Qnty) AS CORD_Qty
    , COUNT(CDSPLines.Qnty) AS DESP_Lines
    , SUM(CDSPLines.Qnty) AS DESP_Qty
    , CDSPLines.Status
    , d.Status AS d_status
    , d.OpenDate
    , d.DateDue
    , CDSPDocs.PostDate AS DESP_PostedDate
    , d.DocType
    , DATEDIFF(DAY, d.OpenDate, d.DateDue) AS [Lead times1]
    , DATEDIFF(DAY, d.OpenDate, CDSPDocs.PostDate) AS [Lead times2]
    , CASE WHEN SUM(CORDLines.Qnty) = SUM(CDSPLines.Qnty) THEN 1 ELSE 0 END AS InFxO --in-full
    --On-Time by order according to Despatch SLAs
    , CASE
    WHEN Clients.ClntGroup IN ('Local Market', 'Web Sales', 'Mail Order')
    AND (DATEDIFF(DAY, d.OpenDate, CDSPDocs.PostDate) - (DATEDIFF(WEEK, d.OpenDate, CDSPDocs.PostDate) * 2 ) <= 2)
    THEN 1
    WHEN Clients.ClntGroup IN ('Export Market', 'Export Market - USA')
    AND (DATEDIFF(DAY, d.OpenDate, CDSPDocs.PostDate) - (DATEDIFF(WEEK, d.OpenDate, CDSPDocs.PostDate) * 2) <= 14)
    THEN 1
    WHEN Clients.ClntGroup = 'Export Market' OR Clients.CustCateg = 'UK Transfer'
    AND d.DateDue >= CDSPDocs.PostDate
    THEN 1
    ELSE 0
    END AS OnTime
    --SLA Due (as a control)
    , CASE
    WHEN Clients.ClntGroup IN ('Local Market', 'Web Sales','Mail Order') AND CDSPDocs.PostDate is Null
    THEN DATEADD(DAY, 2 , d.OpenDate)
    WHEN Clients.ClntGroup IN ('Export Market', 'Export Market - UK', 'Export Market - USA') OR (Clients.CustCateg = 'UK Transfer')
    AND CDSPDocs.PostDate IS NULL
    THEN DATEADD (DAY, 14 , d.OpenDate)
    ELSE CDSPDocs.PostDate
    END AS SLADue
    FROM dbo.Documents AS d
    INNER JOIN dbo.Clients
    ON d.ObjectID = dbo.Clients.ClntID
    AND Clients.ClientName NOT in ('Samples - Free / Give-aways')
    LEFT OUTER JOIN dbo.DocumentsLines AS CORDLines
    ON d.DocID = CORDLines.DocID
    AND CORDLines.TrnType = 'L'
    LEFT OUTER JOIN dbo.DocumentsLines AS CDSPLines
    ON CORDLines.TranID = CDSPLines.SourceID
    AND CDSPLines.TrnType = 'L'
    AND (CDSPLines.Status = 'Posted' OR CDSPLines.Status = 'Closed')
    LEFT OUTER JOIN dbo.Documents AS CDSPDocs
    ON CDSPLines.DocID = CDSPDocs.DocID
    LEFT OUTER JOIN DimDate
    ON dimdate.[Date] = d.OpenDate
    WHERE
    d.DocType IN ('CASW', 'CORD', 'MORD')
    AND CORDLines.LneType NOT IN ('Fght', 'MANF', 'Stor','PACK', 'EXPS')
    AND CORDLines.LneType IS NOT NULL
    AND d.DateDue <= CONVERT(date, GETDATE(), 101)
    GROUP BY
    d.DateOpn
    ,d.DocumentCode
    ,Clients.CustCateg
    ,CDSPDocs.DocumentCode
    ,d.Status
    ,d.DocType
    ,d.OpenDate
    ,d.DateReq
    ,CDSPDocs.PostDate
    ,CDSPLines.Status
    ,Clients.ClntGroup
    ,d.DocumentName
    ,d.DateDue
    ,d.DateOpn
    ) AS derived_table
    Please find below the DimDate table
    FullDateNZ HolidayNZ IsHolidayNZ IsBusinessDay
    24/12/2014 NULL 0 1
    25/12/2014 Christmas Day 1 0
    26/12/2014 Boxing Day 1 0
    27/12/2014 NULL 0 0
    28/12/2014 NULL 0 0
    29/12/2014 NULL 0 1
    30/12/2014 NULL 0 1
    31/12/2014 NULL 0 1
    1/01/2015 New Year's Day 1 0
    2/01/2015 Day after New Year's 1 0
    3/01/2015 NULL 0 0
    4/01/2015 NULL 0 0
    5/01/2015 NULL 0 1
    6/01/2015 NULL 0 1
    This is what I get from the query:
    Week# ClntGroup CORD_DocumentCode OpenDate DESP_PostedDate OnTime
    52 Web Sales 123456 24/12/2014 29/12/2014 0
    52 Web Sales 123457 24/12/2014 30/12/2014 0
    52 Web Sales 123458 24/12/2014 29/12/2014 0
    52 Local Market 123459 24/12/2014 29/12/2014 0
    1 Web Sale 123460 31/12/2014 5/01/2015 0
    1 Local Market 123461 31/12/2014 6/01/2015 0
    As the difference between the dispatched and open date is 2 business days or less, the result I expect is this:
    Week# ClntGroup CORD_DocumentCode OpenDate DESP_PostedDate OnTime
    52 Web Sales 123456 24/12/2014 29/12/2014 1
    52 Web Sales 123457 24/12/2014 30/12/2014 1
    52 Web Sales 123458 24/12/2014 29/12/2014 1
    52 Local Market 123459 24/12/2014 29/12/2014 1
    1 Web Sale 123460 31/12/2014 5/01/2015 1
    1 Local Market 123461 31/12/2014 6/01/2015 1
    I am using SQL Server 2012
    Thanks
    Eric

    >> The current criteria exclude week-ends but not bank holidays therefore I have created a calendar table with a column name “isBusinessDay” but I don't know how to best use this table to calculate the On-Time metric. <<
    The Julian business day is a good trick. Number the days from whenever your calendar starts and repeat a number for a weekend or company holiday.
    CREATE TABLE Calendar
    (cal__date date NOT NULL PRIMARY KEY, 
     julian_business_nbr INTEGER NOT NULL, 
    INSERT INTO Calendar 
    VALUES ('2007-04-05', 42), 
     ('2007-04-06', 43), -- good Friday 
     ('2007-04-07', 43), 
     ('2007-04-08', 43), -- Easter Sunday 
     ('2007-04-09', 44), 
     ('2007-04-10', 45); --Tuesday
    To compute the business days from Thursday of this week to next
     Tuesdays:
    SELECT (C2.julian_business_nbr - C1.julian_business_nbr)
     FROM Calendar AS C1, Calendar AS C2
     WHERE C1.cal__date = '2007-04-05',
     AND C2.cal__date = '2007-04-10'; 
    We do not use flags in SQL; that was assembly language. I see from your code that you are still in a 1960's mindset. You used camelCase for a column name! It makes the eyes jump and screws up maintaining code; read the literature. 
    The “#” is illegal in ANSI/ISO Standard SQL and most other ISO Standards. You are writing 1970's Sybase dialect SQL! The rest of the code is a mess. 
    The one column per line, flush left and leading comma layout tells me you used punch cards when you were learning programming; me too! We did wrote that crap because a card had only 80 columns and uppercase only IBM 027 character sets. STOP IT, it make you
    look stupid in 2015. 
    You should follow ISO-11179 rules for naming data elements. You failed. You believe that “status” is a precise, context independent data element name! NO! 
    You should follow ISO-8601 rules for displaying temporal data. But you used a horrible local dialect. WHY?? The “yyyy-mm-dd” is the only format in ANSI/ISO Standard SQL. And it is one of the most common standards embedded in ISO standards. Then you used crap
    like “6/01/2015” which is varying length and ambiguous that might be “2015-06-01” or “2015-01-06” as well as not using dashes. 
    We need to know the data types, keys and constraints on the table. Avoid dialect in favor of ANSI/ISO Standard SQL. 
    And you need to read and download the PDF for: 
    https://www.simple-talk.com/books/sql-books/119-sql-code-smells/
    >> Please find below the current calculation for the On-Time Column: <<
    “No matter how far you have gone down the wrong road, turn around”
     -- Turkish proverb
    Can you throw out this mess and start over? If you do not, then be ready to have performance got to hell? You will have no maintainable code that has to be kludged like you are doing now? In a good schema an OUTER JOIN is rare, but you have more of them in
    ONE statement than I have seen in entire major corporation databases.
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Dispatcher yellow,J2EE status info unavailable,Could not get file from DB

    Hello Experts,
    I have successfully installed a ECC 6.0 server-ABAP +JAVA  system (DB2 v9.5 FP4 windows server 2008-x64 bit).
    Kernel: 700 , Patch: 185 ; SP level : rel 700 , level 17
    I upgraded JSPM sucessfully from 14 to 17.Then i was trying to apply JAVA sp's one by one using single sp option JSPM tool.
    I DEPLOYED the first sp component sucesfully but after that the next component gave warning in JSPM check that SDM is not started.
    I checked MMC.Dispatcher was YELLOW and J2EE status info unavailable. Cannot use JCMON to start SDM..option 20 gives error--cannot access shared memory
    I already tried Notes   784568 and 997510
    Relevant logs:-
    jvm_bootstrap.out
    =================================================================================================
    Error synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    com.sap.engine.frame.core.configuration.InvalidPersistentDataStreamException: Could not get file from DB.
    Attempt to fully materialize lob data that is too large for the JVM.
    Disable data source property "fullyMaterializeLobData" for locator-based lob implementation. ERRORCODE=-4499, SQLSTATE=null ERRORCODE=-4499, SQLSTATE=null
    Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Unable to synchronize native files for instance [ID140026]!
    ==============================================================================================
    dev_jcontrol
    =============================================================================================
    Thr 4360] *** ERROR => JsfOpenShm: FtInit(SESSION, 2, 176) failed (got (rc = 0 operation successful), expected (rc = 8 already initialized)) [jsfxxshm.c   913]
    [Thr 4360] *** ERROR => Can't create shared memory segment 69 (rc = 1) [jcntrxx.c    1749]
    [Thr 4360] *** ERROR => Can't initialize JControl Administration [jcntrxx.c    273]
    [Thr 4360] JControlCloseProgram: started (exitcode = -1)
    [Thr 4360] *** ERROR => JsfCloseShm: FiDetachIndex(SESSION) failed (rc = 6 invalid argument) [jsfxxshm.c   1243]
    [Thr 4360] *** ERROR => JsfCloseShm: FiDetachIndex(ALIAS) failed (rc = 6 invalid argument) [jsfxxshm.c   1250]
    [Thr 4360] *** ERROR => JsfCloseShm: FiDetachIndex(SERVICE) failed (rc = 6 invalid argument) [jsfxxshm.c   1257]
    =================================================================================================
    log_bootstrap_ID0140026.0
    ==========================================================================================
    Error synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    com.sap.engine.frame.core.configuration.InvalidPersistentDataStreamException: Could not get file from DB.
    ============================================================================================
    Eagerly looking forward to a solution from you experts..
    Thanks,
    Rakesh

    Hi,
    I am facing the same related problem with ECC 6.0.
    My dispatcher started it is showing yellow-  dialog queue standstill, J2EE status info unavailable
    after some time dispatcher has stopped.
    Please check my below trace file for dispatcher:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      03
    sid        DEV
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    114
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        13108
    Fri Nov 27 02:31:55 2009
    kernel runs with dp version 229000(ext=109000) (@(#) DPLIB-INT-VERSION-229000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (03 13108) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 114 successfully loaded
         shared lib "dw_xtc.dll" version 114 successfully loaded
         shared lib "dw_stl.dll" version 114 successfully loaded
         shared lib "dw_gui.dll" version 114 successfully loaded
         shared lib "dw_mdm.dll" version 114 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3903
    Fri Nov 27 02:31:59 2009
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5361]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >sapdev_DEV_03                           <
    DpShMCreate: sizeof(wp_adm)          15800     (1436)
    DpShMCreate: sizeof(tm_adm)          4232256     (21056)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1536)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 08290040, size: 4889440)
    DpShMCreate: allocated sys_adm at 08290040
    DpShMCreate: allocated wp_adm at 08292090
    DpShMCreate: allocated tm_adm_list at 08295E48
    DpShMCreate: allocated tm_adm at 08295E78
    DpShMCreate: allocated wp_ca_adm at 0869F2B8
    DpShMCreate: allocated appc_ca_adm at 086A5078
    DpShMCreate: allocated comm_adm at 086A6FB8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 08727E78
    DpShMCreate: allocated gw_adm at 08727EB8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 08727EE8
    DpShMCreate: allocated wall_adm at 08727EF0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Fri Nov 27 02:32:00 2009
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1023 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 13356
      argv[0] = D:\usr\sap\DEV\DVEBMGS03\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\DEV\DVEBMGS03\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\DEV\SYS\profile\DEV_DVEBMGS03_sapdev
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2919
      argv[5] = -DSAPSYSTEM=03
      argv[6] = -DSAPSYSTEMNAME=DEV
      argv[7] = -DSAPMYNAME=sapdev_DEV_03
      argv[8] = -DSAPPROFILE=D:\usr\sap\DEV\SYS\profile\DEV_DVEBMGS03_sapdev
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1629]
    ***LOG Q0K=> DpMsAttach, mscon ( sapdev.visu.com) [dpxxdisp.c   11753]
    DpStartStopMsg: send start message (myname is >sapdev_DEV_03                           <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    Fri Nov 27 02:32:01 2009
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 114
    Release check o.K.
    Fri Nov 27 02:32:05 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1468
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2927) [nixxi.cpp    4248]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=13356)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Fri Nov 27 02:32:40 2009
    ERROR => W0 (pid 13364) died [dpxxdisp.c   14441]
    ERROR => W1 (pid 13372) died [dpxxdisp.c   14441]
    ERROR => W2 (pid 13380) died [dpxxdisp.c   14441]
    ERROR => W3 (pid 13388) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W4 (pid 13396) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W5 (pid 13404) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W6 (pid 13412) died [dpxxdisp.c   14441]
    ERROR => W7 (pid 13420) died [dpxxdisp.c   14441]
    ERROR => W8 (pid 13428) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W9 (pid 13436) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W10 (pid 13444) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:50 2009
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Thu Nov 26 21:02:50 2009
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA    13364 Ended         no      1   0        0                                                                         
    1 DIA    13372 Ended         no      1   0        0                                                                         
    2 DIA    13380 Ended         no      1   0        0                                                                         
    3 DIA    13388 Ended         no      1   0        0                                                                         
    4 UPD    13396 Ended         no      1   0        0                                                                         
    5 ENQ    13404 Ended         no      1   0        0                                                                         
    6 BTC    13412 Ended         no      1   0        0                                                                         
    7 BTC    13420 Ended         no      1   0        0                                                                         
    8 BTC    13428 Ended         no      1   0        0                                                                         
    9 SPO    13436 Ended         no      1   0        0                                                                         
    10 UP2    13444 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Thu Nov 26 21:02:50 2009
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          12
    wake_evt_udp_now     0
    wake events           total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    since last update     total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    Dump of tm_adm structure:               Thu Nov 26 21:02:50 2009
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Thu Nov 26 21:02:50 2009
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:55 2009
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >sapdev_DEV_03                           < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (13340) (SOFT_KILL)
    Stop icman
    killing process (13348) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:13340  HANDLE:1564)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:56 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:13340  HANDLE:1564)
    wait for end of icman
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:57 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:58 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Nov 27 02:32:59 2009
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:13348  HANDLE:1568)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Please help me to start my SAP MMC.
    Thanks

  • Instance not coming up during starting perticularly dispatcher too...???

    Hi Gurus,
                   My sap instance going down & it is showing yellow color at SAP management console and some time times dispatcher not starting and its status color is brown color. I heard that at WORK directory we can find the solution... If so, how to find solution and how to bring the system up........?
    Thanks in Advance...!!!!!!!!
    Regads,
    BBR.

    Yes you need to check the logs in the work directory.(/usr/sap/SID/DV*/work)
    Please check the logs with starting DEV_.........
    If you have java system then you can check the logs std_server.out,std_dispatcher.out. in the same work directory.
    Did you do kernel upgrade or updated the profile parameters thet can be also the reason of system not comming up .Please ckeck the logs and you shall come to know.
    thanks
    Rishi Abrol

  • Strange Timer class behavior

    I got following problem: when i create new Timer object with default "repeatCount" = 0 argument and fire my timer it doesn't work ! if i test it with any other value it works. Added some traces to see what's going on but everything seems to work ok so i'm confused. Here is my simple class
    public final TestService
         public function TestService():void
              _timer = new Timer(5000);
              _timer.addEventListener(TimerEvent.TIMER_COMPLETE,refreshTest,false,0,true);
              trace(_timer.currentCount); // says 0
              trace(_timer.hasEventListener(TimerEvent.TIMER_COMPLETE)); // says true
              _timer.start();
              trace(_timer.running); // says true
         private var _timer:Timer;
         private function refreshTest(event:TimerEvent):void
              trace("timer works");
    As i said when with default repeatCount=0 refreshTest function is never reached, when i change it to 1 or sth it suddenly works ! Am i missing something ?
    I know i can get around it easily but it drives me NUTS that it doesn't work like it should ! Any ideas ? i'm on flex SDK 4.1 btw but i should point when i change it to other it doesn't work either

    According to the documentation, Timer dispatches the following events -
    Event
    Summary
    timer
    Dispatched whenever a Timer object reaches an interval specified according to the Timer.delay property.
    timerComplete
    Dispatched whenever it has completed the number of requests set by Timer.repeatCount.
    It seems like you need the timer event rathar then the timerComplete event...

  • Different shipping times?

    Hi there.
    Might not be the right place to put it, but a simple question.
    I am going to order a big shipment with different stuff including a Mac and an iPad.
    The shipping time (dispatching) for all my stuff is 24 hours, except for the Mac which is 1-3 days and the iPad is 1-2 weeks.
    This is all fine, but what I am wondering is if I will get 2-3 different packages from Apple, or will everything come in one big shipment (after 1-2 weeks, when the iPad is ready). I would like to get everything at once, since I am ordering to a friends adress.
    Apperciate it.

    This is a user to user forum not Apple or an Apple store. Contact the folks at the place where you ordered.

  • Dispatcher related terms..

    Hi,
    Please let me know the definition of following terms:
    Dispatcher System Threads Waiting Task Count
    Dispatcher Cluster Currnet Session Queue Size
    Dispatcher HTTP Avg Request Response Time
    Dispatcher HTTP Total Current Open Connections
    Dispatcher Memory Used
    Dispatcher Services
    Dispatcher Memory Used Rate
    Also advice what significance they have to administrators.
    Best Regards,
    Tarun

    Hi Eric,
    there are several ways to configure related terms on TREX level. One suggestion that requires only little effort is the following: in
    TREXminingengine.ini
    [INDEXING]
    longer phrases will be discarded
    maxPhraseLength=1
    shorter words will be discarded
    minTermLength=3
    This should meet you requirements - terms that are shorter than 3 characters will not be considered. The entry is also regarded for the document features and it is used in the processing of classification (if it is used in your case).
    The entry is also valid for all languages and only for newly created indexes.
    cheers
    Bettina

  • Accessing a class private variable in the main timeline

    Greetings,
    noob question.
    Here's my main class:
    package
         import flash.external.ExternalInterface;
         public class main
             public function main()
             public function check_DVBViewer()
                 ExternalInterface.call("check_DVBViewer","test");
                 ExternalInterface.addCallback("AutoIT",AutoIT);
             private function AutoIT(my_msg:String)
                     // here we get the callback string
    in the timeline I have a dynamic text box named my_textbox:
    var my_test:main = new main();
    my_test.check_DVBViewer();
    my_textbox.text = ???????
    Basically the class waits for the callback variable (my_msg).
    The problem is: I need to set the dynamic textbox text to my_msg variable.
    How can I access it?
    I know I can access a public var in the timeline with functioname.variable but I can't define a public var inside a function, right?
    Thank you very much for your time.

    dispatch an event when the string is ready:
    package
         import flash.external.ExternalInterface;
         public class main
    private var msg:String;
             public function main()
             public function check_DVBViewer()
                 ExternalInterface.call("check_DVBViewer","test");
                 ExternalInterface.addCallback("AutoIT",AutoIT);
             private function AutoIT(my_msg:String)
                     // here we get the callback string
    msg=my_msg;
    dispatchEvent(new Event("stringready"));
    public function get msgF():String{
    return msg;
    in the timeline I have a dynamic text box named my_textbox:
    var my_test:main = new main();
    my_test.addEventListener("stringready",f);
    my_test.check_DVBViewer();
    function f(e:Event):void{
    my_textbox.text = my_test.msgF;

  • J2ee server doesn't started in debug mode

    Hi.
    I set J2EE server debug mode using configtool and I try to start J2EE.
    At that time, dispatcher, SDM process started successfully but server process doesn't start.
    SAP MMC has "waiiting for start" status for server process.
    Any ideas ?
    Regards, Arnold.

    Right aside the Enable Debugging checkbox in the configtool, there's a 'Restricted Load Balancing' checkbox. As I remember, in some version of the J2EE engine, you need to invert its state in order to get debugging to run.
    Regards,
    Armin

  • MMC starting problem

    Dear All
    Recently i installed IDES ECC6.0 on windows 2003 server. It was working but once by mistake i started MMC without starting database. Now it is not able to start anyway.
    Pl help what can i do ????
    Thanks

    Hi,
    You need to check few things..
    1. check \windows\system32\drivers\etc\hosts file for proper host entries.
    (some time dispatcher turn gray after startup due to missing host entries)
    2. Make all database services in automatic startup mode.
    3. Make all SAP services in automatic startup mode.
    (So you won't need to start the service manually and it can be started automatically..)
    If it doesn't solve your problem, then you should start analysing the startup log..
    You can paste the startup logs for understanding the problem...
    Regards.
    Rajesh Narkhede

  • Apply FORMULA in PLD.

    Hi,
    In PLD how can I calculate below values:-
    1.Sum((Column "X" - Column "Y") <= 0)
    2.Sum((Columnm "X"- Column "Y") > 0)
    Desc:Column X minus Column Y and value of the expression should be greater,less than and equal to zero.
    Sum of (Column X minus Column Y and value of the expression should be greater,less than and equal to zero.)
    Please reply ASAP
    Regard's
    Amit Tyagi

    Hello,
    Thanks for your response
    I create a report via query generator and in that report there is two column "Delivery Date" & "First Dispatch Date".
    What customer want   field(Complete on time dispatch value) in the repetive footer area which will show  sum of delivery dates minus  first dispatch dates less than equal to Zero.
    I worked and I generate out one formula
    ColSum(Datediff(dd,"Field_207","Field_208")<=0) but it is not working
    Please reply me ASAP.
    Thanks & Regard's
    Amit Tyagi

  • Helpdesk and OTRS

    Hello,
    has anybody yet combined the helpdesk-solution otrs (www.otrs.org) with the service-desk-component in Solution-Manager?
    Regards,
    Thomas

    Just to update: We start using OTRS next monday effectively after having used Helpdesk in SolMan for over 6 years.
    We switched the "feedback" function so that is uses an HTTP POST and creates the message in the OTRS system instead of the SolMan support desk.
    We will use OTRS now for the full IT - not only for the SAP related problem. It turned out to too much work (in sense of u20AC for external consultants) to configure SolMan and educate > 1000 people with a separate logon for the workcenter and tell them how and where to click and enter text. Now they just write an email to "support" - everyone can write an email
    We will migrate all the old messages (> 12.000) using a self written program that read texts and components and send them vial email to the OTRS system which uses the Active Directory structure and some (more or less) predefined pattern to assign a processor.
    For all that setup we needed less than 8 days of internal mandays, including an SSO login for the OTRS itself. Mails sent as questions from message processors can so either be answered via mail (and getting parsed back to OTRS) or just clicked on the link in the sent email and answered there. This is much more convenient than having the need to fire up a browser and login to some system to write an answer to the question.
    We added some fields in the OTRS to enter the time needed to resolve the problem, at the end of the month there will be a .cvs file that can be used as batch input source for the ERP backend to do the inter-company invoicing.
    I´m totally sure - all that can also be accomplished using Solution Manager helpdesk and/or Incident Management but for the time and efforts needed (effectively printed in u20AC) to configure that and keep it running, we could easily engage a full time dispatcher person for at least a year - according to offers from SAP consulting and our internal calculations.
    It´s just such a pity the SolMan is so tremendeously complex and cumbersome to customize and modify (well, it´s CRM....)
    Markus

  • ORACLE NET8의 새로운 기능 및 개념

    제품 : SQL*NET
    작성날짜 : 1997-11-20
    ORACLE NET8의 새로운 기능 및 개념
    ================================
    Oracle 8에서는 다중 송신의 연결성에 대한 기능이 강화 되었는데 이러한 연결을
    더욱 효과적으로 사용할 수 있도록 NET8에서는 concentration 과 multiple
    protocol에 접근을 제어하기 위한 지원할 수 있는 새로운 기능으로 Connection
    Manager가 추가 되었다.
    Multiplexing feature of Connection Manager
    1) concentrator는 클라이언트에서 요구하는 여러 session들을 받아 하나의
    single transport를 통하여 동일한 Destination 에 하나의 통로를 통하여
    받는다.
    2) MTS에 연결할 수 있는 물리적인 네트워크
    첫번재는 여러 사용자들이 서버에 연결되고 그들의 session이 하나의 통신
    연결위에서 다중 송신될 수 있게 해주는 connection manager 라는
    component를 갖는다.
    두번째는 connection spooling인데, 이는 하나의 multi-threaded server에
    보다 많은 클라이언트에 접속할 수 있는 방법으로 연결 종단에 시분할 방식의
    기술을 이용한다.
    이렇게 함으로써 Net8연결에 있어 상대적으로 상당량의 idle time을 가져올
    수 있고 connection polling은 이러한 idle time의 사용을 만들어 여러
    사용자들이 오랫동안 연결은 공유할 수 있게 해준다. dispatcher의
    connection pool은 connections의 집합으로 dispatcher는 클라이언트
    프로세스들 사이에서 공유된다. 모든 connection들이 dispatcher를 사용하고
    있을 때 하나의 새로운 connection도착하면 dispatcher는 current
    connection들 중에서 지정된 시간 이상 idle하고 있는 connection을 찾아
    임시적으로 drop하고 비어있는 connection slot을 사용하게 된다.
    Connection이 drop된 client에서 다른 작업을 할 경우에 client는
    dispatcher에 대한connection을 복구한다. Connection pooling은 client와
    multi-threaded server사이에 투명하다.
    구현 사례 :
    MTS_DISPATCHERS="(PROTOCOL=TCP)(DISPATCHERS=50)(POOL=NO)(MULT=ON)"
    따라서 전자우편 사용자가 앉아서 입력을 하고 있다면 그 동안에는 통신을 하고
    있는 것이 아니라 서버를 사용하고 있을 뿐이다. 또한 사용자가 data warehouse
    사용자이고 오랫동안 수행하는 query를 한다고 해도 회선상에서는 아무런
    traffic도 없이 사용할 수 있다.
    혹은 사용자가 OLTP환경에 있는 사용자라면 사용자의 사용 빈도는 그다지 높지
    않을 것이다. 사용자는 자동차를 rent하기 위해 호텔에 설치된 터미널에서
    connection manager를 사용할 수도 있다.
    따라서 이처럼 사용되지 않는 동안, 이를 다른 사용자를 위해서 다시 사용할 수
    있다. 이처럼 사용자들은 connection을 재사용하거나 공동으로 사용할 수 있다.
    세번째는 사용자가 서버에 연결된 클라이언트를 가지고 있으며, 그 서버는 또
    다른 서버에 연결되었다고 가정하자. 사용자는 일종의 workgroup및 중앙 기기
    site를 가지고 있으며, 클라이언트는 분산된 질의를 그 중앙 서버에서 벗어난
    데이타에 access하기를 원한다고 하자. 기존의 Oracle7에서는 각각의 클라이언
    트들은 항상 연결을 유지하고 있었다. 따라서 중앙기기는 모든 부서별 그룹
    서버에 연결된 클라이언트 수만큼 연결을 가지고 있었다. 그러나 Oracle8에서는
    한 서버가 다른 서버와 통신을 하고 모든 클라이언트를 위해 분산된 access를
    공유하도록 허용하는 공유된 database link를 가질 수 있는 데 이것이 다중
    송신의 한 방법이다.
    << Client Tool >>
    NET8은 Oracle8의 networking component로서 모든 대다수의 protocol과
    platform들을 통하여 client-server, server-server의 연결에 대한 투명성을
    제공하며 또한 다른 network services와 Oracle Gateway, Rdb와의 연결도
    제공한다.
    NET8은 SQL*NET V2의 성공작으로 현재 지원하고 있는 SQL*NET V2(2.1,2.2,
    2.3)과 완전히 backward compatible하다. NET8 client들은 SQL*NET V2이든가
    NET8과 상호작용 할 수 있고 NET V2 client들은 Net8을 이용하여 서로 작용할
    수 있다.
    1. Oracle NET8 Assistant
    NET8 Assistant는 JAVA Runtime 환경을 요구한다.
    기존 SQL*NET V2.x의 network 구성요소(domain, database, node,
    listener,....)를 정의하거나 관리할 수 있도록 만들어진 Oracle Network
    Manager 제품을 대치하는 NET8의 새로운 제품이다.
    2. Oracle NET8 EASY CONFIGURATION
    기존의 Oracle Client Software V7.x에서 제공되었던 SQL*NET Easy
    confiuration보다 더 사용자가 사용하는 데 있어 사용하기 쉬울 뿐만
    아니라 tns_alias 설정 후 utility 내에서 사용자가 등록한 정보에 대해서
    데이타베이스 서버에 접속할 수 있는 지 여부를 test까지 할 수 있도록 이전
    버젼에서 제공 하였던 utility인 tnsping.exe과 nettest.exe의 기능이 내제
    되었습니다.

    sunnypark 님, 답을 적어주셔서 감사합니다. 그런데 아깝게도 정답은 아니었습니다.
    Automatic Tuning Advisor가 tuning후 주는 4가지 guide중 하나이며,
    이 guide를 implementation하겠다고 click하면 sql문장이 실행을 위한 보조정보를 포함하는 형태로 dictionary에 저장된답니다.
    다시한번 도전해 보세요 ~~

  • Long time to start on  Java process dispatcher

    Hi ,
    I am trying to Install Solution Manager. When I attempt to start my sap system, the Java process dispatcher of instance/stage SM1 (solution manager) takes too much time and finally doesn't start showing this intallation error.
    ERROR 2008-09-24 11:01:11.314
    CJS-30151  Java process dispatcher of instance SM1/DVEBMGS00 [ABAP: ACTIVE, Java: (dispatcher: UNKNOWN, server0: RUNNING)] did not start after 2:00 minutes. Giving up.
    ERROR 2008-09-24 11:01:11.502
    FCO-00011  The step startJava with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_StartJava|ind|ind|ind|ind|5|0|startJava was executed with status ERROR .
    Can anyone please let me know what is missing in this procedure? Any idea?
    tkanks in advance.

    Hi Matias,
    What are the parameters you set for your dispatcher?
    Regards
    Val

  • Purchase Order going to Dump if Output Message has Dispatch Time 4

    Hi All,
    We are getting a Runtime Error while saving or changing any Purhase Order, if the Output Message has Dispatch Time maintained as 4 i.e. Send Immediately.
    For all other dispatch time there is no issue. We have maintained condition record for the Message Type with Print Medium as 1 and Dispatch Time as 4. Also, the printer is maintained in the communication tab.
    No printer is maintained as default in the User Profile. No Printer is assigned to purchasing group. Our requirement is to print on the printer specified in the Condition Records itself.
    We are using Smartform, not standard SAP script for printing.
    Please suggest how we can rectify this issue.
    Regards,
    Ankit

    Hi Jurgen,
    Sorry for missing out the Dump details earlier.Please find below an extract from the dump:
    Category               ABAP Programming Error
    Runtime Errors         POSTING_ILLEGAL_STATEMENT
    ABAP Program           FRMSCM0012
    Application Component  Not assigned
    Date and Time          10.06.2014 08:30:46
    Error analysis
         There is probably an error in the program
         "FRMSCM0012".
         This program is triggered in the update process. The following ABAP
         statements are illegal here:
         - CALL SCREEN
         - CALL DIALOG
         - CALL TRANSACTION
         - SET SCREEN
         - LEAVE TO LIST-PROCESSING
         - SUBMIT
         - LEAVE SCREEN
         - LEAVE LIST-PROCESSING
         - LEAVE PROGRAM
         - LEAVE TO TRANSACTION
         - MESSAGE I/W/E (if not handeld using EXCEPTIONS ERROR_MESSAGE)
         - MESSAGE A
    How to correct the error
         Probably the only way to eliminate the error is to correct the program.
    If the error occurs in a non-modfied SAP program, you might be able to
    find a solution in the SAP Notes system. If you have access to the SAP
    Notes system, check there first using the following keywords:
    "POSTING_ILLEGAL_STATEMENT"
    "FRMSCM0012" bzw. FRMSCM0012_SF
    "SFORM_PRINT_OUTPUT"
    Information on where terminated
        The termination occurred in ABAP program "FRMSCM0012", in
         "SFORM_PRINT_OUTPUT". The main program
        was "RSM13000 ".

Maybe you are looking for

  • I can no longer sync my IPad to my PC.  There is no access to sync on the ITunes home page????

    I can no longer sync my IPad to my PC.  There is no access to sync on the ITunes web site?

  • R12 or Latest Technical  Reference Manual

    Hi Does anybody have Technical Reference Manual for Release 12 or the latest version of R12.I'm not able to find that in the metalink.I'm looking for Products ASCP GOP & CP Thanks & Regards Bhubalan Mani Edited by: Bhubalan Mani on Jul 22, 2010 8:05

  • Adding pages to workset??

    Hi all,       Can somebody help me to add objects to a workset programmatically? Thanks in advance. Regards, M.Subathra

  • PCUI BP Creation

    Hi all, We have found a new problem with Portal (PCUI), while creating BP(Business Partner) in portal there were some mandatory feilds in CRM GUI which were blockin the BP to be replicated in to crm , in order to over come the problem we have changed

  • My HD on a shared network is not showing up

    I am having a sharing problem on my mac pro 2010 8 core edition machine. I currently have 4 drives in each bay. Currently I can see all of the drives in the finder on the local machine. My problem is occuring on my shared computers that I have connec