ADSL2+ not activated on my line.

Hi, could someone please activate ADSL2+ on my line. I should be able to get 13-14Mbps on this line, but am capped at 8Mbps with 512k upload.
I have a HH 3 (black)
Hindhead telephone exchange
Thanks.
Pauline.
Line state:
Connected
Connection time:
0 day, 01:25:28
Downstream:
8,064 Kbps
Upstream:
448 Kbps
  ADSL settings
VPI/VCI:
0/38
Type:
PPPoA
Modulation:
G.992.1 Annex A
Latency type:
Interleaved
Noise margin (Down/Up):
8.9 dB / 28.0 dB
Line attenuation (Down/Up):
23.5 dB / 13.0 dB
Output power (Down/Up):
19.8 dBm / 11.8 dBm
FEC Events (Down/Up):
4358 / 0
CRC Events (Down/Up):
33 / 0

Please post back your hubstats in a few days remember you will be in a 10 day training period from when the upgrade takes place so no manual hub restarts
If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Similar Messages

  • F-53 Error- u201C Item was not activated due to on line payment block.u201D

    When we are doing payment document against T Code F-53 for FI document  systems is giving message
    That u201C Item was not activated due to on line payment block.u201D
    This error is due to what ?
    Regards,
    Shekhar Gaikwad

    Hi,
    Kindly release your invoice document in MRBR..
    Then proceed further.
    revert if any issues.
    Utsav

  • ORA-21779: duration not active error line 25 of MDSYS.AGGRUNION

    I execute the following pl/sql (line 56/57 in
    a procedure called RebuildSMZLabels)....
    v_query := 'SELECT /*+ INDEX ( A BASE_SMZ_A_SHAPE ) NO_INDEX ( A BASE_SMZ_A_RETIREDATE ) */ MDSYS.SDO_AGGR_UNION(MDSYS.SDOAGGRTYPE(a.s
    hape,:1)) FROM &owner.base_smz_a A WHERE MDSYS.SDO_RELATE(a.shape,:2,''mask=ANYINTERACT querytype=window'') = ''TRUE'' and retiredate is
    null';
    EXECUTE IMMEDIATE v_query INTO v_union_shape USING v_diminfo(1).sdo_tolerance, v_trans_shape ;
    And I get...
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    DECLARE
    ERROR at line 1:
    ORA-21779: duration not active
    ORA-06512: at "MDSYS.AGGRUNION", line 25
    ORA-06512: at "MDSYS.AGGRUNION", line 25
    ORA-06512: at line 1
    ORA-06512: at "MDCADM.REBUILDSMZLABELS", line 57
    ORA-06512: at line 5
    Got me beat... anyone got any ideas?
    Simon Greener
    GIS Manager
    Forestry Tasmania

    Dan
    I reverted to the old 8i code (with individual
    UNIONS) and it still fails:
    DECLARE
    ERROR at line 1:
    ORA-21779: duration not active
    ORA-06512: at "MDSYS.SDO_3GL", line 439
    ORA-06512: at "MDSYS.SDO_GEOM", line 3096
    ORA-06512: at "MDCADM.REBUILDSMZLABELS", line 74
    ORA-06512: at line 5
    Line 74 is:
    v_union_shape := MDSYS.SDO_GEOM.SDO_UNION(v_union_shape,v_diminfo,v_shape,v_diminfo);
    Any ideas as I need this to work in 9i ASAP (as it
    doesn't work in 8i)?
    PS Dan, it is the same database/code problem I sent
    to you earlier this year. It is getting to the point
    that I am going to have to rebuild all this database
    centric code (which is where it needs to be in the
    business process) within our GIS (ArcInfo) which is going
    to be far more complex and not sustainable in the medium
    term.
    regards
    Simon

  • Error while executing the sp ORA-21779: duration not active

    Hi there,
    am using Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 and facing typical type of error
    please find the steps below to reproduce it
    in this basically i will pass a comma seperated values and function will return the
    piped table witheach seperated values as new record
    ex :1,2,3,4
    1
    2
    3
    4
    Types created:
    1) Create Type TPOBJ_Return as Object (tnames varchar2 (2000));
    2) Create Type TPObjT_ReturnColl as Table Of TPOBJ_ReturnTable;
    Function created:
    CREATE OR REPLACE FUNCTION WB_FN_ReturnTable
    tNameString IN VARCHAR2
    RETURN TPObjT_ReturnColl
    PIPELINED
    AS
    iOptionSel INT;
    tOptionSel VARCHAR2 (9);
    iLen INT;
    tName VARCHAR2 (50);
    tTempChar CHAR (1);
    ptNameString VARCHAR2(2000);
    BEGIN
    ptNameString:=tNameString;
    iLen := LENGTH(TRIM(ptNameString));
    iOptionSel := 1;
    tName := '';
    WHILE iOptionSel <= iLen
    LOOP
    tTempChar := SUBSTR(ptNameString, iOptionSel, 1);
    IF tTempChar = ',' THEN
    IF LENGTH(TRIM(tName)) > 0 THEN
    PIPE ROW(TPOBJ_Return(tName));
    END IF;
    tName := '';
    ELSE
    tName := tName || tTempChar;
    END IF;
    iOptionSel := iOptionSel + 1;
    END LOOP;
    IF LENGTH(TRIM(tName)) > 0 THEN
    PIPE ROW(TPOBJ_Return(tName));
    END IF;
    return;
    END;
    Table created:
    Create Table test (id number(16))
    Insert into test values (1)
    Please insert from 1 to 10.
    Stored procedure created:
    Create or replace procedure Sptest
    As
    Titems Varchar2(255);
    pvalue Number(16);
    Begin
    Titems :='5,4,3';
    Select MIN(id) into pvalue from test where id not in
    (select tnames from table(WB_FN_ReturnTable(Titems )));
    End;
    Note:
    while executing the sp for the first time am not getting any error
    only ,if making a repeated call for execution then am gettings the errors specified below
    ORA-21779: duration not active
    ORA-03113: end-of-file on communication channel
    ORA-03114: not connected to ORACLE
    can anyone help me on these issue

    Why a pipeline table function? I would not say that a tokeniser function is something that typically should require working in the SQL engine, piping rows. It can be a very straight forward PL/SQL function that returns a collection of strings.
    E.g.
    SQL> CREATE OR REPLACE function tokenise( line varchar2, separator varchar2 DEFAULT ',' ) return TStrings AUTHID CURRENT_USER is
    2 strList TStrings;
    3 str varchar2(4000);
    4 i integer;
    5 l integer;
    6
    7 procedure AddString( s varchar2 ) is
    8 begin
    9 strList.Extend(1);
    10 strList( strList.Count ) := s;
    11 end;
    12
    13 begin
    14 strList := new TStrings();
    15
    16 str := line;
    17 loop
    18 l := LENGTH( str );
    19 i := INSTR( str, separator );
    20
    21 if i = 0 then
    22 AddString( str );
    23 else
    24 AddString( SUBSTR( str, 1, i-1 ) );
    25 str := SUBSTR( str, i+1 );
    26 end if;
    27
    28 -- if the separator was on the last char of the line, there is
    29 -- a trailing null column which we need to add manually
    30 if i = l then
    31 AddString( null );
    32 end if;
    33
    34 exit when str is NULL;
    35 exit when i = 0;
    36 end loop;
    37
    38 return( strList );
    39 end;
    40 /
    Function created.
    SQL>
    SQL> select * from TABLE(Tokenise('col1,col2,col3,,col5,and so on'));
    COLUMN_VALUE
    col1
    col2
    col3
    col5
    and so on
    6 rows selected.
    SQL>
    PS. The TStrings SQL user type is declared as a table of varchar2(4000).

  • I get "an error has occured" when trying to download from the AppStore.  I can not re-download as the button is not active.

    I encountered the response "an error has occured" when I downloaded Maverick X from the App Store.  I can not try to re-download as the download button is not active.  I have tried rebooting and to get the download from apple.com but it keeps redirecting to the App Store.
    Suggestions?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Business area not populating in Vendor line at the time of MIRA

    Hi,
    At the time of MIRA the Business Area is not appearing in Vendor line items.
    Though the corresponding line items do have the Business area.
    even in case we have one business are for the entire document the Business Area is not coming.
    We are in ECC 6.0 but with classic ledger ( New GL not activated).
    But instead of background invoice verification if we do MIRO the same document is populating the
    corresponding Business Area in the vendor line item.
    Please help me to resolve the issue.
    Regards
    Somendra N Dey
    08007151893

    Hi
    In the MIRA header in details tab the Field Business Area is available.
    Regards
    Somendra N Dey

  • JDBC Adapter not active

    Dear All,
    In Adapter Monitoring, i am not able to see the JDBC adapter in the Onlly Installed and Started Adapters, but i am able to see the JDBC Adapter in the All Adapters.
    When i tried to restart the JDBC adapter service in the Visual Administration, there it not giving option for either stopping or starting the JDBC adapter.
    DefaultTrace log is as shown below.
    #1.5 #0018FE28105C00710000101400002D7A0004554CA8859398#1219687640044#com.sap.aii.af.service.administration.impl.AlertingStatusListener##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##n/a##4065565072d011dd95800018fe28105c#XI AF AAM AlertingStatusListener$AsyncAlerter@483756c4_185020##0#0#Error##Java###Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: JCoClient connection missingHost:srpidev_SPD_00|AdapterType:File|Sender::BS_File_Sender|Receiver::|Interface:mi_vendor:http://file2idoc|MsgID:null#3#http://sap.com/xi/XI/System#File#39b1b7a3830a32978c0ebde7d7b6a672#
    #1.5 #0018FE28105C005900000F8200002D7A0004554CA8D15AE3#1219687645010#com.sap.aii.adapter.file.File2XI##com.sap.aii.adapter.file.File2XI.invoke()#J2EE_GUEST#0##n/a##32b5c44072d011ddcbc00018fe28105c#XI File2XI[CC_File_Sender_to_ABAP/BS_File_Sender/]_185029##0#0#Error#1#/Applications/ExchangeInfrastructure/AdapterFramework/Services/ADAPTER/ADMIN/File#Plain###Channel CC_File_Sender_to_ABAP: No suitable sender agreement found#
    #1.5 #0018FE28105C005800000F4900002D7A0004554CA8D16217#1219687645012#com.sap.aii.af.service.alerting.Connection##com.sap.aii.af.service.alerting.Connection.newJcoClientForCentralMonitoringServer()#J2EE_GUEST#0##n/a##8cafa8c072cc11ddbc6f0018fe28105c#XI AF AAM AlertingStatusListener$AsyncAlerter@3f72187f_185030##0#0#Error##Plain###Connect to SAP gateway failed
    Connect_PM  TYPE=A ASHOST=srpidev.srhouse.com SYSNR=00 GWHOST=srpidev.srhouse.com GWSERV=sapgw00 PCS=1
    LOCATION    CPIC (TCP/IP) on local host with Unicode
    ERROR       hostname 'srpidev.srhouse.com' unknown
    TIME        Mon Aug 25 23:37:25 2008
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -2
    MODULE      nixxhsl.cpp
    LINE        223
    DETAIL      NiHsLGetNodeAddr: hostname cached as unknown
    COUNTER     959
    #1.5 #0018FE28105C005800000F4A00002D7A0004554CA8D16B2D#1219687645014#com.sap.aii.af.service.administration.impl.AlertingStatusListener##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##n/a##8cafa8c072cc11ddbc6f0018fe28105c#XI AF AAM AlertingStatusListener$AsyncAlerter@3f72187f_185030##0#0#Error##Java###Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: JCoClient connection missingHost:srpidev_SPD_00|AdapterType:File|Sender::BS_File_Sender|Receiver:null:null|Interface:null:null|MsgID:null#3#http://sap.com/xi/XI/System#File#e07325c431493887a7288ca7bb4c0318#
    #1.5 #0018FE28105C005400000F1500002D7A0004554CA8E111AE#1219687646040#com.sap.aii.adapter.file.File2XI##com.sap.aii.adapter.file.File2XI.invoke()#J2EE_GUEST#0##n/a##39dafd8072d011dda2450018fe28105c#XI File2XI[comc_sender/BS_File_Sender/]_185023##0#0#Error#1#/Applications/ExchangeInfrastructure/AdapterFramework/Services/ADAPTER/ADMIN/File#Plain###Channel comc_sender: Error connecting to ftp server '150.0.150.76': com.sap.aii.adapter.file.ftp.FTPEx: 530 Login incorrect.#
    #1.5 #0018FE28105C005000000FC800002D7A0004554CA8E11AB4#1219687646042#com.sap.aii.af.service.alerting.Connection##com.sap.aii.af.service.alerting.Connection.newJcoClientForCentralMonitoringServer()#J2EE_GUEST#0##n/a##347b1af072d011dd88d10018fe28105c#XI AF AAM AlertingStatusListener$AsyncAlerter@6784897_185031##0#0#Error##Plain###Connect to SAP gateway failed
    Connect_PM  TYPE=A ASHOST=srpidev.srhouse.com SYSNR=00 GWHOST=srpidev.srhouse.com GWSERV=sapgw00 PCS=1
    LOCATION    CPIC (TCP/IP) on local host with Unicode
    ERROR       hostname 'srpidev.srhouse.com' unknown
    TIME        Mon Aug 25 23:37:26 2008
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -2
    MODULE      nixxhsl.cpp
    LINE        223
    DETAIL      NiHsLGetNodeAddr: hostname cached as unknown
    COUNTER     991
    #1.5 #0018FE28105C005000000FC900002D7A0004554CA8E1239A#1219687646044#com.sap.aii.af.service.administration.impl.AlertingStatusListener##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##n/a##347b1af072d011dd88d10018fe28105c#XI AF AAM AlertingStatusListener$AsyncAlerter@6784897_185031##0#0#Error##Java###Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: JCoClient connection missingHost:srpidev_SPD_00|AdapterType:File|Sender::BS_File_Sender|Receiver::|Interface:mi_vendor:http://file2idoc|MsgID:null#3#http://sap.com/xi/XI/System#File#39b1b7a3830a32978c0ebde7d7b6a672#
    Please help me to resolve this issue.
    Regards,
    Ranjith

    Hi
    According to your Error Message,
    Saying that JDBC Configuration is not Active.
    Once again cross check all the config is Activated & also Test your Config Using Config Test Tool in ID
    And also check in RWB-Adapter Engine-Adapter monitoring ---select the option instaled & Started. whether the JDBC Adapter is working fine or not

  • Dispatcher not active

    Hi Experts,
    Please check this Developer Trace of Dispatcher, this is stopped, when I am restarting my server, it is giving errors  :
    running but not connected to message server,
    and
    running but dialog queue standstill, J2EE service unavilable.
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        XID
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    52
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        1412
    Fri Sep 21 10:19:59 2007
    kernel runs with dp version 210000(ext=109000) (@(#) DPLIB-INT-VERSION-210000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 1412) [dpxxdisp.c   1231]
         shared lib "dw_xml.dll" version 52 successfully loaded
         shared lib "dw_xtc.dll" version 52 successfully loaded
         shared lib "dw_stl.dll" version 52 successfully loaded
         shared lib "dw_gui.dll" version 52 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    Fri Sep 21 10:20:04 2007
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5233]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >inggnh002sap_XID_01                     <
    DpShMCreate: sizeof(wp_adm)          12672     (1408)
    DpShMCreate: sizeof(tm_adm)          3954072     (19672)
    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)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1452)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06510040, size: 4607512)
    DpShMCreate: allocated sys_adm at 06510040
    DpShMCreate: allocated wp_adm at 06511E28
    DpShMCreate: allocated tm_adm_list at 06514FA8
    DpShMCreate: allocated tm_adm at 06514FD8
    DpShMCreate: allocated wp_ca_adm at 068DA570
    DpShMCreate: allocated appc_ca_adm at 068E0330
    DpShMCreate: allocated comm_adm at 068E2270
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 06963130
    DpShMCreate: allocated gw_adm at 06963170
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 069631A0
    DpShMCreate: allocated wall_adm at 069631A8
    MBUF state OFF
    EmInit: MmSetImplementation( 2 ).
    MM diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1324
      argv[0] = D:\usr\sap\XID\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\XID\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\XID\SYS\profile\XID_DVEBMGS01_inggnh002sap
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2009
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=XID
      argv[7] = -DSAPMYNAME=inggnh002sap_XID_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\XID\SYS\profile\XID_DVEBMGS01_inggnh002sap
      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   1617]
    Fri Sep 21 10:20:05 2007
    ***LOG Q0K=> DpMsAttach, mscon ( inggnh002sap) [dpxxdisp.c   11414]
    DpStartStopMsg: send start message (myname is >inggnh002sap_XID_01                     <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Fri Sep 21 10:20:06 2007
    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 52
    Release check o.K.
    Fri Sep 21 10:20:41 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1492
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2014) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=1324)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Fri Sep 21 10:20:45 2007
    ERROR => W0 (pid 2804) died [dpxxdisp.c   14021]
    ERROR => W1 (pid 1484) died [dpxxdisp.c   14021]
    ERROR => W2 (pid 2708) died [dpxxdisp.c   14021]
    ERROR => W3 (pid 1464) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W4 (pid 860) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W5 (pid 2964) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W6 (pid 2508) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W7 (pid 3840) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W8 (pid 1072) died [dpxxdisp.c   14021]
    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=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:20:55 2007
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Fri Sep 21 04:50:55 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     2804 Ended         no      1   0             0                                                             
    1 DIA     1484 Ended         no      1   0             0                                                             
    2 DIA     2708 Ended         no      1   0             0                                                             
    3 DIA     1464 Ended         no      1   0             0                                                             
    4 UPD      860 Ended         no      1   0             0                                                             
    5 ENQ     2964 Ended         no      1   0             0                                                             
    6 BTC     2508 Ended         no      1   0             0                                                             
    7 SPO     3840 Ended         no      1   0             0                                                             
    8 UP2     1072 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Fri Sep 21 04:50:55 2007
    ===========================
    --------++++--
    +
    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:               Fri Sep 21 04:50:55 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Fri Sep 21 04:50:55 2007
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:00 2007
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >inggnh002sap_XID_01                     < (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 (776) (SOFT_KILL)
    Stop icman
    killing process (2780) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:776  HANDLE:1572)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:01 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:776  HANDLE:1572)
    wait for end of icman
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:02 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:03 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:04 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:05 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:06 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:07 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:08 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:09 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:10 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:11 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2780  HANDLE:1576)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1601
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 21 10:21:12 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2780  HANDLE:1576)
    [DpProcDied] Process died  (PID:1324  HANDLE:1556)
    DpStartStopMsg: send stop message (myname is >inggnh002sap_XID_01                     <)
    NiIMyHostName: hostname = 'inggnh002sap'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 3 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 3 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    Fri Sep 21 10:21:13 2007
    NiIPeek: peek for hdl 3 timed out (r; 1000ms)
    NiIRead: read for hdl 3 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   11698]
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 1516 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 1516 (pos=3)
    SiSelNRemove: removed sock 1516
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/9
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 1516
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 1412) [dpxxdisp.c   10087]
    Good Bye .....
    Please Help, it is urgent,
    Regards,
    Study SAP

    Hi Kaushal,
    Thanks for your reply, there are many files with dev*.
    Please check the log from file dev_w0 :
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Fri Sep 21 10:37:39 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\XID\DVEBMGS01\exe\dboraslib.dll' ...
    B  Library 'D:\usr\sap\XID\DVEBMGS01\exe\dboraslib.dll' loaded
    B  Version of 'D:\usr\sap\XID\DVEBMGS01\exe\dboraslib.dll' is "700.08", patchlevel (0.46)
    B  New connection 0 created
    M sysno      01
    M sid        XID
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    52
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        3588
    M
    M  kernel runs with dp version 210000(ext=109000) (@(#) DPLIB-INT-VERSION-210000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3588) [dpxxdisp.c   1293]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Fri Sep 21 10:37:40 2007
    M  DpShMCreate: sizeof(wp_adm)          12672     (1408)
    M  DpShMCreate: sizeof(tm_adm)          3954072     (19672)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1452)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06510040, size: 4607512)
    M  DpShMCreate: allocated sys_adm at 06510040
    M  DpShMCreate: allocated wp_adm at 06511E28
    M  DpShMCreate: allocated tm_adm_list at 06514FA8
    M  DpShMCreate: allocated tm_adm at 06514FD8
    M  DpShMCreate: allocated wp_ca_adm at 068DA570
    M  DpShMCreate: allocated appc_ca_adm at 068E0330
    M  DpShMCreate: allocated comm_adm at 068E2270
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06963130
    M  DpShMCreate: allocated gw_adm at 06963170
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 069631A0
    M  DpShMCreate: allocated wall_adm at 069631A8
    X  EmInit: MmSetImplementation( 2 ).
    X  MM diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host inggnh002sap

    M Fri Sep 21 10:37:41 2007
    M  calling db_connect ...
    C  Prepending D:\usr\sap\XID\DVEBMGS01\exe to Path.

    C Fri Sep 21 10:37:47 2007
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@XDI on connection 0 (nls_hdl 0) ... (dbsl 700 240106)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06AAFCF8   06AB5294   06AB4B1C
    C  Attaching to DB Server XDI (con_hdl=0,svchp=06AB4A68,svrhp=06AC6334)

    C Fri Sep 21 10:37:48 2007
    C  Starting user session (con_hdl=0,svchp=06AB4A68,srvhp=06AC6334,usrhp=06ADB0D8)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1033
    [dboci.c      4345]
    C  Detaching from DB Server (con_hdl=0,svchp=06AB4A68,srvhp=06AC6334)
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dbsloci.c    10704]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@XDI on connection 0 (nls_hdl 0) ... (dbsl 700 240106)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06AAFCF8   06AB5294   06AB4B1C
    C  Attaching to DB Server XDI (con_hdl=0,svchp=06AB4A68,svrhp=06AC6334)

    C Fri Sep 21 10:37:49 2007
    C  Starting user session (con_hdl=0,svchp=06AB4A68,srvhp=06AC6334,usrhp=06ADB0D8)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1033
    [dboci.c      4345]
    C  Detaching from DB Server (con_hdl=0,svchp=06AB4A68,srvhp=06AC6334)
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dbsloci.c    10704]
    B  ***LOG BV3=> severe db error 1033      ; work process is stopped [dbsh#2 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> ORA-01033: ORACLE initialization or shutdown in progress [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1403]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10019]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = V-1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server inggnh002sap_XID_01 on host inggnh002sap (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Fri Sep 21 10:37:49 2007
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10204
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3588) [dpnttool.c   327]
    Regards,
    Study SAP

  • Some pages of my website are not active from the home page

    Built my website with iweb.  When I go to the site the tabs to all the pages show, but several of them are not active from the home page.  If I go to one of the active pages I can then click on the other pages.  Is there a way to fix this?  I've tried reloading the entire site, but several of the tabs remain inactive from the home page.  Any help would be greatly appreciate - Thanks,  Jodi

    Thanks Roddy - I tried moving it down and it didn't work - That line is in the Template I used to build the site and is on every page.  I did finally get the command A to work, but there's nothing covering those bottom three tabs.
    However, when I put my mouse in the area of the box where it has my name (the image you sent me above) it shows a link desktop/site/booker_files and I noticed I have one of the rss feed blue arrows, but I can't seem to delete it.  I wonder if that has something to do with it.  It does the same thing on the website if you hover with your mouse. 
    Truly appreciate your help.
    Jodi

  • Error: Item(s) was/were not activated due to online payment block

    Hi,
    I have an issue with F-58 transaction.
    When i try processing an open line item of the vendor (in F-58) i get an error "1 item(s) was/were not activated due to online payment block".
    Please advise as to how i can locate the issue.
    Thanks,
    Safi

    Before  that try transaction code MRBR. This should help you in releasing the documents.
    Else
    There must have been a workflow that has been developed for the removal of the payment blocks. Please check up if there is a workflow, it woould have triggered a mail in the SAP inbox to a user. This user will have to release the payment block and you should be able to make the payment. Else you would have to change the configuration and make the field editable and then you will be able to remove the payment block. Until you remove the payment block you would not be able to complete the transaction in F-58.
    Karthik
    Edited by: Karthik Coneru on Sep 17, 2008 12:12 PM

  • Managed Standby Recovery not active

    Dear All,
    My database version is:
    SQL> select banner from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    OS:RedHat 5.5
    My current configuration is:
    We have two node RAC primary database and a local standby database.
    And TWO NODE RAC DR (REMOTE)STANDBY DATABASE
    while checking (REMOTE WHICH IS TWO NODE RAC)dr synchronization we found archive since yesterday has not been applied.
    But local dr is fully sinc with the primary database.
    When i have executed 'ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL' it says
    SQL> alter database recover managed standby database cancel;
    alter database recover managed standby database cancel
    ERROR at line 1:
    ORA-16136: Managed Standby Recovery not active
    I manually copied the archive log which where missing in the remote standby database and then register those archive log.
    after that when i manually tried to recover the standby database it has given me following error.
    sql>recover automatic standby database;
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110:data file 1: '/database/ctmis/system01.dbf'
    please please help me to resolve the issue.
    Thanks and Regards
    Monoj Das

    according to my understand
    Node1,Node2 is having node1-standby node2-standby in RAC environment right?
    on which node logs ur trying to apply on which node standby? (node1 ==>node1-standby or node2 ==>node2-standby)
    check it...hope it will work or not sure :)
    standby side...
    rman target /
    RMAN>crosscheck archivelog all
    then try to recover..will see ..
    if not
    check with support.oracle.com through SR.

  • ORA-16136: Managed Standby Recovery not active

    Hi
    I am trying implement the dataguard in the windows platform. And this is my first time. Right now iam trying on physical standby. i have done everything as per the document. But iam getting some error. After giving the
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION;
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    SQL> recover managed standby database cancel;
    // I am getting error
    ORA-16136: Managed Standby Recovery not active
    When just like that i tried to open the standby database in read only mode, i am getting error
    SQL> alter database open read only;
    alter database open read only
    ERROR at line 1:
    ORA-16004: backup database requires recovery
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\DB1\SYSTEM01.DBF'
    When i checked the alert log file of Primary Database, it shows:
    PING[ARCo]: Heartbeat failed to connect to standby 'db2sby'. Error is 1031.
    Wed Sep 01 14:10:27 2010
    Thread 1 advanced to log sequence 337 (LGWR switch)
    Current log# 2 seq# 337 mem# 0: C:\ORACLE\PRODUCT\10.2.0\ORADATA\DB1\REDO02.LOG
    Wed Sep 01 14:10:28 2010
    Deleted Oracle managed file C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\DB1\ARCHIVELOG\2010_02_25\O1_MF_1_224_5RD10Z5V_.ARC
    Wed Sep 01 14:14:53 2010
    Error 1031 received logging on to the standby
    Wed Sep 01 14:14:53 2010
    Errors in file c:\oracle\product\10.2.0\admin\db1\bdump\db1_arco_2156.trc:
    ORA-01031: insufficient privileges
    PING[ARCo]: Heartbeat failed to connect to standby 'db2sby'. Error is 1031.
    Wed Sep 01 14:19:53 2010
    Error 1031 received logging on to the standby
    Wed Sep 01 14:19:53 2010
    Errors in file c:\oracle\product\10.2.0\admin\db1\bdump\db1_arco_2156.trc:
    ORA-01031: insufficient privileges
    And when i checked alert log file of stand by database:
    Wed Sep 01 14:13:19 2010
    Errors in file c:\oracle\product\10.2.0\standbyy\admin\db2\bdump\db2sby_dbw0_3060.trc:
    ORA-01157: cannot identify/lock data file 9 - see DBWR trace file
    ORA-01110: data file 9: 'C:\TSUNDO12.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00001: additional error information
    O/S-Error: (OS 101) The exclusive semaphore is owned by another process
    --> The above error of Standby was coming for each datafile such as system, users etc.
    Kindly Help me.
    Shiyas M

    here is the pfile of Primary Database:
    db1.__db_cache_size=188743680
    db1.__java_pool_size=4194304
    db1.__large_pool_size=4194304
    db1.__shared_pool_size=83886080
    db1.__streams_pool_size=0
    *.audit_file_dest='C:\oracle\product\10.2.0/admin/db1/adump'
    *.background_dump_dest='C:\oracle\product\10.2.0/admin/db1/bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='C:\oracle\product\10.2.0\oradata\db1\control01.ctl','C:\oracle\product\10.2.0\oradata\db1\control02.ctl','C:\oracle\product\10.2.0\oradata\db1\control03.ctl'
    *.core_dump_dest='C:\oracle\product\10.2.0/admin/db1/cdump'
    *.db_16k_cache_size=4194304
    *.db_block_size=8192
    *.db_domain=''
    *.db_file_multiblock_read_count=16
    *.db_name='db1'
    *.DB_UNIQUE_NAME='db1prim'
    *.LOG_ARCHIVE_CONFIG='DG_CONFIG=(db1,db2sby)'
    *.LOG_ARCHIVE_DEST_1='LOCATION=C:\oracle\product\10.2.0\ARCHIVELOG VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=db1prim'
    *.LOG_ARCHIVE_DEST_2='SERVICE=db2sby LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=db2sby'
    *.LOG_ARCHIVE_DEST_STATE_1=ENABLE
    *.LOG_ARCHIVE_DEST_STATE_2=ENABLE
    *.LOG_ARCHIVE_FORMAT=%t_%s_%r.arc
    *.LOG_ARCHIVE_MAX_PROCESSES=30
    *.FAL_SERVER=db2sby
    *.FAL_CLIENT=db1
    *.DB_FILE_NAME_CONVERT='C:\oracle\product\10.2.0\Standbyy\oradata\DB2','C:\oracle\product\10.2.0\oradata\db1'
    *.LOG_FILE_NAME_CONVERT='C:\oracle\product\10.2.0\Standbyy\oradata\DB2','C:\oracle\product\10.2.0\oradata\db1'
    *.STANDBY_FILE_MANAGEMENT=AUTO
    *.db_recovery_file_dest='C:\oracle\product\10.2.0/flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=db1XDB)'
    *.job_queue_processes=10
    *.open_cursors=300
    *.pga_aggregate_target=95420416
    *.processes=150
    *.recyclebin='OFF'
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=287309824
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='C:\oracle\product\10.2.0/admin/db1/udump'
    *.utl_file_dir='OCM_CONFIG_HOME/state'
    Here is the Pfile of standby database:
    db1.__db_cache_size=188743680
    db1.__java_pool_size=4194304
    db1.__large_pool_size=4194304
    db1.__shared_pool_size=83886080
    db1.__streams_pool_size=0
    *.audit_file_dest='C:\oracle\product\10.2.0\Standbyy\admin\db2\adump'
    *.background_dump_dest='C:\oracle\product\10.2.0\Standbyy\admin\db2\bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='C:\oracle\product\10.2.0\Standbyy\oradata\db2\control001.ctl','C:\oracle\product\10.2.0\Standbyy\oradata\db2\control002.ctl','C:\oracle\product\10.2.0\Standbyy\oradata\db2\control003.ctl'
    *.core_dump_dest='C:\oracle\product\10.2.0\Standbyy\admin\db2'
    *.db_16k_cache_size=4194304
    *.db_block_size=8192
    *.db_domain=''
    *.db_file_multiblock_read_count=16
    *.db_name='db1'
    *.DB_UNIQUE_NAME='db2sby'
    *.LOG_ARCHIVE_CONFIG='DG_CONFIG=(db1,db2sby)'
    *.LOG_ARCHIVE_DEST_1='LOCATION=C:\oracle\product\10.2.0\ARCHIVELOG VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=db2sby'
    *.LOG_ARCHIVE_DEST_2='SERVICE=db1 LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=db1'
    *.LOG_ARCHIVE_DEST_STATE_1=ENABLE
    *.LOG_ARCHIVE_DEST_STATE_2=ENABLE
    *.LOG_ARCHIVE_FORMAT=%t_%s_%r.arc
    *.LOG_ARCHIVE_MAX_PROCESSES=30
    *.FAL_SERVER=db1
    *.FAL_CLIENT=db2sby
    *.DB_FILE_NAME_CONVERT='C:\oracle\product\10.2.0\Standbyy\oradata\DB2','C:\oracle\product\10.2.0\oradata\db1'
    *.LOG_FILE_NAME_CONVERT='C:\oracle\product\10.2.0\Standbyy\oradata\DB2','C:\oracle\product\10.2.0\oradata\db1'
    *.STANDBY_FILE_MANAGEMENT=AUTO
    *.db_recovery_file_dest='C:\oracle\product\10.2.0\flash_recovery_area\DB2SBY'
    *.db_recovery_file_dest_size=2147483648
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=db1XDB)'
    *.job_queue_processes=10
    *.open_cursors=300
    *.pga_aggregate_target=95420416
    *.processes=150
    *.recyclebin='OFF'
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=287309824
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='C:\oracle\product\10.2.0\Standbyy\admin\db2\udump'
    *.utl_file_dir='OCM_CONFIG_HOME/state'

  • Segment E1EDP36 not active in the DELFOR02 IDOC type.

    Hi All,
    I have been working with creating extensions for Idoc type DELFOR02  inn ECC 6.0. But for the basic idoc type DELFOR02 , the segment E1EDP36 is not active here.i.e., the idoc generated does not carry data for this particular segement.
    This segment depends on entries in a structure xisautoeklwes ( include LEINMF3S, line 130). The underlying table for this structure would be ISAUTOEKLWES(Last Deliveries for FLAB).
      Could anyone throw light on how this structure will be filled or how it has to be filled if I can make changes to the customer exit available there.
    Thanks,
    Savitha Patil

    Hi Gearge,
    To add custom segments, you should create an extension.
    the TCODE is we30.
    Refer this link:
    http://help.sap.com/saphelp_erp2005/helpdata/en/dc/6b7d6243d711d1893e0000e8323c4f/frameset.htm
    Regards,
    Ravi

  • Phone number links not active in emails

    The highlighted blue phone #'s in an email are not active as a hyperlink ; most annoying, is feature not available in the OS 10 ?  My 9900 had it
    Thanks,
    Solved!
    Go to Solution.

    All is well now, contacted the support line at BB and after a back up & install new software, restore etc
    the hyperlinks now respond & work in all applications
    Thanks again, Doug

  • Acrobat 'not activated'

    Hello,
    Not sure if this should go in the printing section, but it seems like an installation issue, so here goes....
    We installed CS6 Design & Web Premium about six months ago, under Windows 8, on a charity/education licence from a registered re-licencer. After about a month, Acrobat stopped working - I think access was denied because it 'wasn't registered', even through it was. Most issues were eventually resolved by - I think - running 'Acrofix', but even so I don't I never been able to print a PDF from within a PDF using Acrobat (and on the rare occasion I've wanted to do so I've used Bullzip instead).
    After a long delay I'm about to make the jump from Quark to InDesign, but have just found that elements of the old problem have re-emerged, or were never solved in the first place. Although I can print to PDF from within Quark/Word etc. using Acrobat, when trying to do so from InDesign the process hangs while displaying a 'Downloading procset' message - this occurs whatever test file is used, even a new file with a just single text frame. There doesn't seem to be any problem in Exporting to PDF.  And I've also just noticed that I cannot print to PDF from Photoshop or Illustrator either. In both cases, the process terminates (not hangs) with a different message: 'Acrobat PDF creation cannot continue because Acrobat is not activated'. Acrobat has been activated, along with the rest of the CS6 suite (I've been using it ever since the 'blip' in the first month or so), so I don't know what the issue is. I think I may have gone through a reinstall/reactivation process for Acrobat before - but annoyingly I can't remember (and didn't make notes) about whether this or the Acrofix route got things running again (and I don't think I would have tested whether printing from Photoshop or Illustrator worked afterwards).
    Does this sort of issue ring any bells with anyone, or does anyone have any idea of how to sort things out?
    Thanks.
    Nick

    Hi Ajlan,
    Thank you for your response to this, and for the link. That's very much appreciated.
    In fact it occurred to me this morning to try one more avenue (which I probably should have thought of before) before trying your suggestion. From the Help menu within Acrobat I ran Repair Acrobat Installation, which ran for about a minute or so. Although this didn't seem to have any immediate effect (the print issues remained), a few hours later there was a pop-up notice of an available update to Acrobat X Pro (something I'd never had before in all the four or five months in which CS6 has been installed), which I duly allowed to run - and this seems to have cured all the print issues (printing a PDF as another PDF using Acrobat, and printing to PDF from InDesign, Photoshop and Illustrator).
    So I guess the installation was corrupt somewhere along the line, and the repair function and subsequent update sorted that out (I imagine the corruption which left Acrobat being seen as 'not installed' when printing was also inhibiting online updates).
    I'm slightly worried that this might all re-emerge in 30 days' time, as I had thought this had been sorted out before (I think, although I can't remember for sure, using something like the method posted in your link). But for now I'm relieved and a happy bunny - but can I keep your email on file to contact you in case this does re-emerge?
    I'll post this (apart for the last paragraph) online in case it's of use to anyone else. Thanks again for your help.
    Best wishes,
    Nick

Maybe you are looking for

  • How do i get help in downloading and installing PE 12 and Premier 12 on Win 8.1?

    how do i get help in downloading and installing PE 12 and Premier 12 on Win 8.1?

  • Is the Remote Object always a singleton?

    Hi, Using .Net Remoting we can export a Remote Objects in three different ways: 1. Singleton: Same instance of a Server-side object is used by all the clients for all the requests. 2. SingleCall: Whenever a new call is received, a new instance of the

  • Update Quantities button in Stock Posting window?

    Anybody know what this does? A colleague and I are trying to analyse a support issue where the user's screen shot shows this button active, but in our database copy it's grey-out. We can't identify whther this is significant or not without knowing wh

  • Resolution changed on PDF

    I am using Adobe reader 9 on an XP machine.  Today the resolution changed on my PDF's.  I am not really sure why and what setting could have been adjusted.  Someone other than myself has used this machine in the last 48 hours and I'm thinking they ad

  • Openwindows dt libs problems in Solaris 2.8

    Hello My Motif Apps work fine with solaris 2.6 Now, we are moving to solaris 2.8. I compiled the SAME source code in solaris 2.8 - this App have a different look and feel - like fonts being different, bgcolor, etc. however, if i compile with solaris