Problem in BADI crm_isa_basket_head to pass ct_extension data to ct_text

Hi Experts/Gurus,
I had a problem when i am passing the ct_extension data to ct_text. I need to pass the data of two new fields created in order jsp as extension data. For this i used the BADI method "changehead_before_order" and i had passed this extensoin data from ct_extension to ct_text which can be passed to crm_order_maintain before order. And when i try to get the data using the method gethead_get_data, in this iam calling CRM_ORDER_READ to get the values of IT_TEXT, the b2b webshop is giving an error and asking to logon again.
The below is the code which i have written in both the methods:
METHOD if_ex_crm_isa_basket_head~changehead_before_order.
  DATA : ls_orderadm_h  TYPE LINE OF      crmt_orderadm_h_comt,
         wa_orderadm_h  TYPE LINE OF      crmt_orderadm_h_comt,
         ls_extension   TYPE              crmt_isales_extension,
         wa_extension   TYPE              crmt_isales_extension,
         ls_text        TYPE              crmt_text_comt,
         ls_lines       TYPE              comt_text_lines_t,
         wa_lines       LIKE LINE OF      ls_lines,
         wa_text        LIKE LINE OF      ls_text,
  READ TABLE it_extension INTO wa_extension WITH KEY name = 'ZEXTNSM'.
  wa_text-ref_guid = wa_extension-ref_guid.
*  wa_text-tdobject = 'CRM_ORDERH'.
*  wa_text-tdname = wa_extension-ref_guid.
  wa_text-tdid     = '0001'.
  wa_lines-tdline = wa_extension-value.
  APPEND wa_lines TO ls_lines.
  wa_text-lines = ls_lines.
  INSERT wa_text INTO TABLE ct_text.
  CLEAR wa_text.
  CLEAR wa_lines.
  CLEAR ls_lines.
  READ TABLE it_extension INTO wa_extension WITH KEY name = 'ZEXTNSI'.
  wa_text-ref_guid = wa_extension-ref_guid.
  wa_text-tdid     = '0002'.
  wa_lines-tdline = wa_extension-value.
  APPEND wa_lines TO ls_lines.
  wa_text-lines = ls_lines.
  INSERT wa_text INTO TABLE ct_text.
* ct_text = ls_text.
* append ls_text to CT_TEXT.
ENDMETHOD.
to get the data :
METHOD if_ex_crm_isa_basket_head~gethead_get_data.
  DATA : ls_extension TYPE crmt_isales_extension,
         ls_text        TYPE              crmt_text_comt,
         wa_text        type      CRMT_TEXT_COM,
         ls_lines       TYPE  comt_text_lines_t ,
         wa_lines       type      TLINE,
         ls_basket_head TYPE crmt_isales_baskethead_ui,
         lv_objectid    type CRMT_OBJECT_ID.
  lv_objectid = cs_basket_head-OBJECT_ID.
  if lv_objectid is not initial.
  CALL FUNCTION 'CRM_ORDER_READ'
    EXPORTING
      it_header_guid = cs_basket_head-guid
    IMPORTING
      et_text        = ls_text.
  READ TABLE ls_text INTO wa_text WITH KEY tdid  = 'ZSM'.
*Appending the discount value from the database.
  ls_extension-ref_guid = cs_basket_head-guid.
  ls_extension-name = 'ZEXTNSM'.
    ls_lines[] = wa_text-lines[].
  READ TABLE ls_lines INTO wa_lines INDEX 0.
  ls_extension-value = wa_lines-TDLINE.
  APPEND ls_extension TO ct_extension.
  CLEAR ls_extension.
endif.
ENDMETHOD.
When i put the external break point and checked, in the webshop when i click the update button, in the method changehead_before_order, in the ct_extension table i am getting the values and keys which i have set in the java action. But when i click "order" button, i am not getting anything in ct_extension table which i cannot in turn pass this values to ct_text.
Can you please help me in this regard??
Thanks a lot in Advance!
Regards,
Lakshman.

The header guid i am trying to pass to the crm_order_read is a mismatch.

Similar Messages

  • SQL: Having problems passing a date value to dynamic SQL

    SQL Version 2008 (not R2)
    Problem:  1)  I'm getting the following error message when trying to run the sql code below.
    SQL "Messages" Returned when running code:
    Msg 206, Level 16,
    State 2, Procedure uspxc_WAWP_10_Get_VPData, Line 0
    Operand type clash: int is incompatible with date
    Loaded VP DATA for Month: 20121201
    Problem Code Line: 
    SET @dynamicSQL = 'EXEC ' + @StoredProcedureName + ' ' + @DEVModeYN + ', ' + CAST(@WIPMonth as varchar);
    Any help would be greatly appreciated.  I've spent several hours trying to get around this error.
    Full Code:
    ALTER PROCEDURE [dbo].[uspxi_XIUD_98_DataConversionGET_VP_WIPJobHistory] (@DEVModeYN nchar(1) = 'D', @WIPMonth Date)
    AS
    BEGIN 
     SET NOCOUNT ON;
     DECLARE @returnCode AS INT ,
       @dynamicSQL AS VARCHAR(8000),
       @msg as varchar(60),
       @DEVModeYN nchar(1) = 'D',
       @WIPMonth date = '20121201',
       @StoredProcedureName AS VARCHAR(60)
     SET @returnCode = 0
     SET @StoredProcedureName = 'uspxc_WAWP_10_Get_VPData'
    -- Check to see if @StoredProcedureName exists in the database.
    IF EXISTS(SELECT name FROM sys.procedures WHERE name = @StoredProcedureName)
     BEGIN 
      -- RUN SP to Import VP Data for each WIPMonth parameter value
      SET @dynamicSQL = 'EXEC ' + @StoredProcedureName + ' ' + @DEVModeYN + ', ' + CAST(@WIPMonth as varchar);
      SELECT @dynamicSQL;
      -- RUN stored procedure for WIP Month
      EXEC (@dynamicSQL);
      SET @returnCode = 0;
      SELECT @returnCode;
      SET @msg = 'Loaded VP DATA for Month: ' + @WIPMonth;
      PRINT @msg;
      GoTo SPEND
     END 
     ELSE
      SET @returnCode = 1;
      SET @msg = 'NO DATA IMPORTED for Month: ' + CAST(@WIPMonth as varchar(10))
      PRINT @msg
    SPEND:
    END
    Bob Sutor

    When you work with dynamic SQL, you should never build a full SQL string by concatenating values, because this is more difficult to get right and also has problems with SQL injection and efficient use of the SQL Server cache.
    So the correct way to do this in dynamic SQL would be:
    SET @dynamicSQL = 'EXEC ' + quotename(@StoredProcedureName)  '@DEVModeYN, @WIPMonth';
    EXEC sp_executesql @SQL, N'DEVModeYN nchar(1), @WIPMonth date',
                       @DEVModeYN, @WIPMonth
    A lot easier and cleaner! (Note that the variable @SQL must be declared as nvarchar.)
    ...however, in this particular case, this is still an overkill, and there is no need for dynamic SQL at all. EXEC accepts a variable for the procedure name, so:
    EXEC @StoredProcedureName @DEVModeYN, @WIPMonth
    ...but it does not stop there. You can make all these changes, but you will get the same error. To wit, you get the error on Line 0, which means that it is the call to the procedure that fails. Apparently, you are passing an integer value, when you were
    supposed to pass a date. Maybe you forgot to put the dates in quotes?
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Problem in passing Modified date through Go url

    Hi All
    I am trying to pass parameters through url to report.
    Its working fine and passing row id of the record but when i try to pass modified date also, it takes me to no result view where i can see that value has been passed to report but the results are not filtered, instead no result view.
    While passing date in url as parameter do we have extra consideration?
    Anybody has faced smilar kind of scenario.

    I am getting the following error when trying to pass modified date for oppty.
    Error getting drill information: SELECT Opportunity.Name saw_0, Opportunity."Opportunity ID" saw_1, Opportunity."Sales Type" saw_2, Opportunity.Priority saw_3, Opportunity."Last Modified" saw_4 FROM "Opportunity Lists" WHERE (Opportunity."Opportunity ID" = 'AAPA-6EEC9X') AND (Opportunity."Last Modified" = timestamp '0000-00-00 00:00:00')
    Error Details
    Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46048] Datetime Month value 0 from 0000-00-01 is out of range. (HY000)
    SQL Issued: {call NQSGetLevelDrillability('SELECT Opportunity.Name saw_0, Opportunity."Opportunity ID" saw_1, Opportunity."Sales Type" saw_2, Opportunity.Priority saw_3, Opportunity."Last Modified" saw_4 FROM "Opportunity Lists" WHERE (Opportunity."Opportunity ID" = ''AAPA-6EEC9X'') AND (Opportunity."Last Modified" = timestamp ''0000-00-00 00:00:00'')')                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Problem in passing a date field to initilaize a VO query

    Hi,
    I am stuck with date issue
    I am passing end date to a VO query as parameter.
    this date is oracle.jbo.domain.date
    public void initQuery(Number swapHeaderId, Date start_date, Date end_date)
    setWhereClauseParam(0, end_date);
    When i print this end_date I get 2011-08-15
    In VO query I have mentioned
    Select Srsf.Swap_Header_Id From Sfifin.Sfi_Rm_Swap_Fills Srsf ,Sfifin.Sfi_Rm_Swap_Header Srsh, Sfifin.Sfi_Rm_Offer_Lines Srol Where Srsf.Swap_Header_Id = Srsh.Swap_Header_Id
    And Srol.Offer_Line_Id = Srsf.Offer_Line_Id And Srol.Offer_Header_Id = Srsf.Offer_Header_Id And Srsf.Swap_Header_Id = 124
    And to_char(Srol.End_Date,'YYYY-MM-DD') > to_char(to_date(:1,'YYYY-MM-DD'),'YYYY-MM-DD')
    Now when this Vo executes I get this error.
    java.sql.SQLException: ORA-01858: a non-numeric character was found where a numeric was expected
    I have tried all means but am unable to solve this issue.I have even tried to use
    Srol.End_Date>to_date(:1,'YYYY-MM-DD') in where clause but still the same error when I am hardcoding this parameter its working fine .
    Please help.

    setWhereClauseParam(0, end_date);Change this to
    setWhereClauseParam(0, end_date.toString());In VO query change
    Srol.End_Date > TO_DATE((to_char(trunc(to_date(:1)),'DD-MON-YYYY') ),'DD-MON-YYYY')Hope it helps!!
    Thanks
    AJ

  • Abend Bad Resource Tag passed to LSLReturnRcvECB

    Server with 6.5 SP7 GRW 7.04 +FTF , BM 3.8 sp5 , GWIA WEBACC , ARCSERVE R11 SP3
    today had 2 Abends at 13:37 and 16:12 for the same reason , never had this reason before .
    Does this happen elsewhere?
    Any idea as to reason or cause ?
    Possible fixes such as apply TCP681K revision or NW65SP8 ?
    Regards
    Dieter
    Novell Open Enterprise Server, NetWare 6.5
    PVER: 6.50.07
    Server FS123 halted Wednesday, 24 October 2012 16:12:35.663
    Abend 1 on P00: Server-5.70.07-0: Bad Resource Tag passed to LSLReturnRcvECB
    Registers:
    CS = 0008 DS = 0023 ES = 0023 FS = 0023 GS = 0023 SS = 0010
    EAX = 8960160D EBX = 00000000 ECX = 00000011 EDX = 0000020E
    ESI = 89B24A24 EDI = 00040000 EBP = 89B24A24 ESP = 8976F9F8
    EIP = 8977B3DB FLAGS = 00000046
    8977B3DB 83C404 ADD ESP, 00000004
    EIP in LSL.NLM at code start +000063DBh
    The violation occurred while processing the following instruction:
    8977B3DB 83C404 ADD ESP, 00000004
    8977B3DE B882FFFFFF MOV EAX, FFFFFF82
    8977B3E3 0BC0 OR EAX, EAX
    8977B3E5 C3 RET
    8977B3E6 0000 ADD [EAX], AL
    8977B3E8 0000 ADD [EAX], AL
    8977B3EA 0000 ADD [EAX], AL
    8977B3EC 0000 ADD [EAX], AL
    8977B3EE 0000 ADD [EAX], AL
    LSL.NLM|LSLReturnRcvECBNoSave:
    8977B3F0 8B46FC MOV EAX, [ESI-04]
    Running process: Server 00:8 Process
    Thread Owned by NLM: SERVER.NLM
    Stack pointer: 8976FF80
    OS Stack limit: 89768040
    Scheduling priority: 67371008
    Wait state: 50500F0 Waiting for work
    Stack: --8960160D ?
    92406D2D (TCP.NLM|UDPSendToAllIf+70C9)
    --89B24A24 ?
    --00000086 (LOADER.NLM|KernelAddressSpace+86)
    --AB4AB6F4 ?
    923EB398 (TCP.NLM|TCPAnyAddrCheck+2B18)
    --8976FA8C ?
    --2D6C300E ?
    --2D6C140E ?
    --AB4AB6F4 ?
    --8976FA8C ?
    923EA40B (TCP.NLM|TCPAnyAddrCheck+1B8B)
    --AB4AB6F4 ?
    --8976FA8C ?
    --2D6C300E ?
    --00000028 (LOADER.NLM|KernelAddressSpace+28)
    --3FFFFFFF ?
    --AB4AB6F4 ?
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --8976FA8C ?
    923EA030 (TCP.NLM|TCPAnyAddrCheck+17B0)
    --AB4AB6F4 ?
    --8976FA8C ?
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --AB4AB6F4 ?
    --8976FA8C ?
    923E9A38 (TCP.NLM|TCPAnyAddrCheck+11B8)
    --AB4AB6F4 ?
    --8976FA8C ?
    923F2D54 (TCP.NLM|TCPMPUnsafeConnectionLookup+5A8)
    --89B24A82 ?
    --AB4AB6F4 ?
    --AB4AB6F4 ?
    --8976FA8C ?
    923E8CC1 (TCP.NLM|TCPAnyAddrCheck+441)
    --AB4AB6F4 ?
    --8976FA8C ?
    --89B24A24 ?
    --8976FAB8 ?
    --8976FAC8 ?
    --E8613D33 ?
    --2D6C140E ?
    --E8613DDF ?
    --000000AC (LOADER.NLM|KernelAddressSpace+AC)
    --00000014 (LOADER.NLM|KernelAddressSpace+14)
    --000E0019 ?
    --0000FFFF (LOADER.NLM|KernelAddressSpace+FFFF)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --24420210 ?
    --0901A8C0 ?
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --50000210 ?
    --8E1424AE ?
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --89844424 ?
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    --624E9162 ?
    --624E918A ?
    --00000003 (LOADER.NLM|KernelAddressSpace+3)
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --00000040 (LOADER.NLM|KernelAddressSpace+40)
    --00000018 (LOADER.NLM|KernelAddressSpace+18)
    --0002A8C0 (LOADER.NLM|BIOSDriveCount+ECE0)
    --0002A8C0 (LOADER.NLM|BIOSDriveCount+ECE0)
    --0902A8C0 ?
    --3D02A8C0 ?
    --00000002 (LOADER.NLM|KernelAddressSpace+2)
    --00000002 (LOADER.NLM|KernelAddressSpace+2)
    --00002F7D (LOADER.NLM|KernelAddressSpace+2F7D)
    --92E44020 ?
    9237D325 (TCPIP.NLM|vpnt_lookup+11)
    --8984452C ?
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --89844424 ?
    --92E44020 ?
    923781BF (TCPIP.NLM|dumpIPSecS2SPolicy+1C43)
    --8984452C ?
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --89844424 ?
    8977E217 (LSL.NLM|LSLSendPacket+1D7)
    --00000297 (LOADER.NLM|KernelAddressSpace+297)
    923A1D5C (TCPIP.NLM|IPInboundIF+679)
    --00000297 (LOADER.NLM|KernelAddressSpace+297)
    923A10CC (TCPIP.NLM|?IPSend_pushed+BE)
    --0002998B (LOADER.NLM|BIOSDriveCount+DDAB)
    --89844424 ?
    00363962 (SERVER.NLM|FunnelingWrapperReturnsHere+25)
    -89783A58 (LSL.NLM|MLIDLoadedHandleTable+140C)
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --00000246 (LOADER.NLM|KernelAddressSpace+246)
    --00000000 (LOADER.NLM|KernelAddressSpace+0)
    923EDD56 (TCP.NLM|TCPAnyAddrCheck+54D6)
    --00FF7000 (IDECD.CDM|IDECD_GlobalLock+1F80)
    002286ED (SERVER.NLM|kScheduleWorkToDoDirected+CD)
    --00000001 (LOADER.NLM|KernelAddressSpace+1)
    --92641120 (VERIFY.NLM|_argc+C570)
    --92641120 (VERIFY.NLM|_argc+C570)
    -925CD220 (TCPIP.NLM|cbAlloc+854)
    Additional Information:
    The NetWare OS detected a problem with the system while executing a process owned by LSL.NLM. It may be the source of the problem or there may have been a memory corruption.
    Loaded Modules:
    TAPEALRT.NLM Tape Alert r11.1 SP3 SNMP Agent For NetWare (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD51A000h Length: 00007424h
    Data Address: AD522000h Length: 00004244h
    STANDARD.NLM BrightStor ARCserve r11.1 SP3 Standard Tape Support (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD4FB000h Length: 0000B48Dh
    Data Address: AD722000h Length: 0009811Ch
    UNIDMSVR.NLM CA Universal RPC Device Manager r11.1 SP3 (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD4C7000h Length: 0001B8FDh
    Data Address: AD439000h Length: 00005E70h
    VALIDATE.NLM BrightStor ARCserve r11.1 SP3 ARCserve Validation Module (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD651000h Length: 0000051Dh
    Data Address: AD652000h Length: 000006F0h
    TAPESVR.NLM BrightStor ARCserve r11.1 SP3 SCSI Tape Driver (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD57B000h Length: 000625BDh
    Data Address: AD5DF000h Length: 0004EB0Ch
    TSANDS.NLM TSA for Novell eDirectory 7.x, 8.x
    Version 10551.71 19 July 2005
    Code Address: AD442000h Length: 000125DCh
    Data Address: AD455000h Length: 00001410h
    DISCOVER.NLM CA Discovery Module r11.1 SP3 (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD3B4000h Length: 000109FDh
    Data Address: AD3C5000h Length: 00045720h
    UNIDB.NLM CA Universal Database Manager r11.1 SP3 (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD354000h Length: 000122ADh
    Data Address: AD367000h Length: 00006770h
    POOLUTIL.NLM CA File System Pool Utility Module r11.1 SP3 (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD32F000h Length: 00000CCDh
    Data Address: AD330000h Length: 00000618h
    UNIQSVR.NLM CA Universal RPC Queue Manager r11.1 SP3 (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD240000h Length: 0001E65Dh
    Data Address: AD25F000h Length: 000177D8h
    ARCSERVE.NLM BrightStor ARCserve r11.1 SP3 Scheduler (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD277000h Length: 0004A5EDh
    Data Address: AD2C2000h Length: 0004A910h
    ASDB.NLM BrightStor ARCserve r11.1 SP3 Database (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD161000h Length: 0002DAEDh
    Data Address: AD190000h Length: 00019330h
    CATIRPC.NLM CA RPC Interface r11.1 SP3 (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD0D4000h Length: 00012B8Dh
    Data Address: AD0E8000h Length: 0001BB64h
    CANWPABD.NLM BrightStor ARCserve r11.1 SP3 SCSI CDM Device Driver (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: AD03B000h Length: 000069DDh
    Data Address: AD042000h Length: 00004D60h
    CANWPA.CDM BrightStor ARCserve r11.1 SP3 SCSI CDM Device Driver (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: ACFF4000h Length: 0000153Dh
    Data Address: 05177000h Length: 00006D5Ch
    BOARDSVR.NLM BrightStor ARCserve r11.1 SP3 SCSI Board Server (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: ACFEB000h Length: 0000164Dh
    Data Address: ACFED000h Length: 00001338h
    CSDBAPIB.NLM ARCserve r11.1 SP3 Database API (Build 991.011 03/01/07)
    Version 11.10 1 March 2007
    Code Address: 931C6000h Length: 0000203Dh
    Data Address: AC8C3000h Length: 00005D80h
    GWDVA.NLM GroupWise Document Viewer Agent (release version)
    Version 7.00.04 14 July 2010
    Code Address: AB0A9000h Length: 00065F9Ah
    Data Address: AB1FC000h Length: 0004B463h
    GWINTER.NLM GroupWise Web Access Server (release version)
    Version 7.00.04 14 July 2010
    Code Address: AB11F000h Length: 000DC69Eh
    Data Address: AA7D7000h Length: 0003F249h
    GWIA.NLM GroupWise Internet Agent (release version)
    Version 7.00.04 14 July 2010
    Code Address: AA338000h Length: 0021943Ah
    Data Address: AA552000h Length: 00066EB6h
    SCCDA.NLM HTML Export Data Access Module
    Version 8.30 18 June 2009
    Code Address: AA327000h Length: 000102E0h
    Data Address: A711D000h Length: 00003A30h
    SCCFA.NLM HTML Export Filter Access Module
    Version 8.30 18 June 2009
    Code Address: A713A000h Length: 000043D0h
    Data Address: A6F5A000h Length: 00000670h
    SCCCH.NLM HTML Export Chunker Module
    Version 8.30 18 June 2009
    Code Address: AA31B000h Length: 0000B420h
    Data Address: A6E49000h Length: 00000700h
    SCCFI.NLM HTML Export File Identification Module
    Version 8.30 18 June 2009
    Code Address: AA307000h Length: 00013DF0h
    Data Address: A6E37000h Length: 00004230h
    SCCFUT.NLM HTML Export FUT Module
    Version 8.30 18 June 2009
    Code Address: AA2A7000h Length: 000451D0h
    Data Address: AA2ED000h Length: 000191F0h
    SCCUT.NLM HTML Export Utility Module
    Version 8.30 18 June 2009
    Code Address: AA1AF000h Length: 00053190h
    Data Address: AA203000h Length: 000257C0h
    WVCORE.NLM wvcore module
    Version 8.30 18 June 2009
    Code Address: AA160000h Length: 0000C4E0h
    Data Address: AA16D000h Length: 00041250h
    WPSD.NLM ServiceDescriptor Natives NLM
    Version 2.00 8 August 2005
    Code Address: A88E3000h Length: 00000350h
    Data Address: A88E4000h Length: 000000A4h
    N_PRDDAT.NLM N_PRDDAT
    Version 1.00 3 February 2003
    Code Address: A88E0000h Length: 00001E84h
    Data Address: A88E2000h Length: 000001D0h
    DBNET6.NLM Debug Network IO Support
    Version 1.45.02 16 March 2006
    Code Address: A84F7000h Length: 0001B831h
    Data Address: A8513000h Length: 000127B8h
    IPMCFG.NLM Web Interface for IP Address Management
    Version 1.01.16 22 October 2005
    Code Address: A846F000h Length: 0000A479h
    Data Address: A847A000h Length: 0000B610h
    NIRMAN.NLM TCPIP - NetWare Internetworking Remote Manager
    Version 1.06.04 18 September 2007
    Code Address: A7FC7000h Length: 00060760h
    Data Address: A83D7000h Length: 00018FCAh
    TCPSTATS.NLM Web Interface for Protocol Monitoring
    Version 6.50.10 20 June 2003
    Code Address: A81C7000h Length: 0000E5ECh
    Data Address: A7BBD000h Length: 00005460h
    NLSADPT2.NLM NLS and Metering adapter for iManager 2.0 plugin
    Version 2.00 9 September 2003
    Code Address: A7AC9000h Length: 0000665Dh
    Data Address: A63F7000h Length: 00000E7Dh
    NLSLRUP.NLM NLS - Usage Metering
    Version 4.01.07 10 May 2005
    Code Address: A8156000h Length: 0003BA0Ah
    Data Address: A8192000h Length: 00010AE0h
    HWDETECT.NLM Novell Hardware Insertion/Removal Detection
    Version 1.19.05 20 February 2003
    Code Address: A51F4000h Length: 00002B33h
    Data Address: A5160000h Length: 00000D3Ch
    NMAA.NLM Novell Messenger Archive Agent
    Version 2.00.04 30 September 2008
    Code Address: A8053000h Length: 000B9C91h
    Data Address: A7C04000h Length: 00042A1Ch
    QFIND217.NLM QuickFinder Engine (Debug)
    Version 2.01.07 10 November 2003
    Code Address: A7CA3000h Length: 00088ABFh
    Data Address: A8045000h Length: 0000D060h
    NMMA.NLM Novell Messenger Messaging Agent
    Version 2.00.04 30 September 2008
    Code Address: A7D75000h Length: 000CFCF1h
    Data Address: A518F000h Length: 00044C58h
    ICEWM.NLM IceWM Dynamic Library for NetWare
    Version 3.01.02 30 July 2007
    Code Address: A7B20000h Length: 0006D449h
    Data Address: A7B8E000h Length: 00019358h
    AFREECON.NLM AdRem Free Remote Console (NCPE)
    Version 6.00 28 February 2006
    Code Address: A731D000h Length: 00005A8Dh
    Data Address: A22D8000h Length: 00002490h
    XSELPROXY.NL Java - X Selection proxy utility Build 070730
    Version 1.00 30 July 2007
    Code Address: A7A48000h Length: 00001390h
    Data Address: A7A4A000h Length: 000003E4h
    BRDMON.NLM Border Service SNMP/NCP Monitor NLM PXY038_2
    Version 3.80.18 4 September 2003
    Code Address: A7A38000h Length: 00001C1Eh
    Data Address: A7A3A000h Length: 00007168h
    GWPOA.NLM GroupWise Post Office Agent (Release version)
    Version 7.00.04 14 July 2010
    Code Address: A7822000h Length: 001B0296h
    Data Address: A7514000h Length: 00065659h
    XGCAL5.NLM XIS GroupWise Calendar (release version)
    Version 7.00.04 14 July 2010
    Code Address: A77F7000h Length: 00011ADBh
    Data Address: A7809000h Length: 0000E934h
    XGMSG5.NLM XIS GroupWise Messaging (release version)
    Version 7.00.04 14 July 2010
    Code Address: A7680000h Length: 000EAF50h
    Data Address: A776B000h Length: 00028CA9h
    XGDM5.NLM XIS GroupWise Document Management (release version)
    Version 7.00.04 14 July 2010
    Code Address: A74BF000h Length: 000372FBh
    Data Address: A74F7000h Length: 00012A85h
    XGAB5.NLM XIS GroupWise Addressing (release version)
    Version 7.00.04 14 July 2010
    Code Address: A7454000h Length: 00038A1Bh
    Data Address: A748D000h Length: 0001036Dh
    XGBAS5.NLM XIS GroupWise Base (release version)
    Version 7.00.04 14 July 2010
    Code Address: A423F000h Length: 0005E20Bh
    Data Address: A73FF000h Length: 00014940h
    PROXY.NLM Novell Internet Proxy Server NLM PXY071
    Version 5.10.04 20 November 2007
    Code Address: A3AF1000h Length: 000CD554h
    Data Address: A3C8B000h Length: 0006DDD0h
    AUTHCHK.NLM Novell Background Authentication NLM PXY071
    Version 3.71.06 20 November 2007
    Code Address: A6D28000h Length: 0000398Dh
    Data Address: A6D2C000h Length: 0002321Ch
    PROXYCFG.NLM Novell Proxy Configuration NLM PXY060
    Version 4.00.08 20 November 2007
    Code Address: A6CA8000h Length: 00013EC2h
    Data Address: A6CBC000h Length: 000045D4h
    ACLCHECK.NLM Novell ACL Check NLM PXY071
    Version 4.80.07 20 November 2007
    Code Address: A6C5E000h Length: 0001E672h
    Data Address: A3BD4000h Length: 000B62E0h
    GWMTA.NLM GroupWise MTA (release version)
    Version 7.00.04 14 July 2010
    Code Address: A4DD4000h Length: 00197E8Bh
    Data Address: A4F6C000h Length: 00057871h
    GWENN5.NLM GroupWise Engine (release version)
    Version 7.00.04 14 July 2010
    Code Address: A65E5000h Length: 004C3FE0h
    Data Address: A6AA9000h Length: 000D7817h
    GWXIS12.NLM XML Integration Service
    Version 1.02 9 June 2009
    Code Address: A3972000h Length: 000F569Eh
    Data Address: A3A68000h Length: 000638A7h
    XVESA.NLM Java - XFree86 4.2.0 Kdrive VESA XServer Build 070730
    Version 5.00.01 30 July 2007
    Code Address: A4C82000h Length: 00120160h
    Data Address: A4DA3000h Length: 000303E4h
    UIMON.NLM UIMON, User interface monitor Build 070730
    Version 1.02.01 30 July 2007
    Code Address: A4182000h Length: 00007690h
    Data Address: A471B000h Length: 00010E38h
    MATHLIB.NLM NetWare Math Library Auto-Load Stub
    Version 4.21 14 October 1999
    Code Address: A2819000h Length: 0000000Ah
    Data Address: 00000000h Length: 00000000h
    Global Code Address: A281A000h Length: 00001000h
    IPXF.NLM IPX Fragmentation Layer
    Version 3.10.01 19 May 1998
    Code Address: A3837000h Length: 000017D9h
    Data Address: A3839000h Length: 00004180h
    NBMALERT.NLM Novell Border Manager Alert Utility BM35_G.01
    Version 1.05.01 19 May 1999
    Code Address: A3AEA000h Length: 00003AB5h
    Data Address: A2795000h Length: 000012C0h
    JNET.NLM Java jnet (based on 1.4.2_13)
    Version 1.42.09 30 July 2007
    Code Address: A24F3000h Length: 0000653Eh
    Data Address: A22FC000h Length: 00001100h
    XIDEV.NLM Java - X Window Input Driver Build 070730
    Version 1.00 30 July 2007
    Code Address: A24EE000h Length: 00004440h
    Data Address: A20EC000h Length: 00001B38h
    BRDSRV.NLM Novell Border Server Service NLM PXY060
    Version 3.60.04 19 September 2003
    Code Address: A3944000h Length: 00002A6Fh
    Data Address: A3947000h Length: 00001460h
    CSATPXY.NLM CS Audit Trail Proxy Agent
    Version 2.10.03 10 January 2005
    Code Address: A393A000h Length: 000023CCh
    Data Address: A393D000h Length: 00000B10h
    CSAUDIT.NLM CSLIB: Audit Trail Facility
    Version 6.00.02 4 September 2003
    Code Address: A38F2000h Length: 000098F5h
    Data Address: A38FC000h Length: 0000169Ch
    LIC_API.NLM License APIs IP020A.G03
    Version 2.01 30 June 1997
    Code Address: A38EF000h Length: 000019D8h
    Data Address: A38F1000h Length: 000007E8h
    CSSYSMSG.NLM CSLIB: System Messages Facility
    Version 1.01.08 18 March 1999
    Code Address: A27B3000h Length: 00010A57h
    Data Address: A24FA000h Length: 00004298h
    TSAFS.NLM SMS - File System Agent for NetWare 6.X
    Version 6.52.08 14 August 2007
    Code Address: A26E4000h Length: 0005F072h
    Data Address: A2744000h Length: 0000D3A0h
    SPXS.MPM spxs Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A2246000h Length: 0000002Ah
    Data Address: A2247000h Length: 00000018h
    SPXS.NLM NetWare SPX/SPXII Protocol (PTF)
    Version 5.14 18 January 2000
    Code Address: A2645000h Length: 0000A021h
    Data Address: A1F44000h Length: 00000FD8h
    Global Code Address: A1F45000h Length: 00001000h
    SMSUT.NLM SMS - Utility Library for NetWare 6.X
    Version 1.01.03 14 August 2007
    Code Address: A2618000h Length: 00010201h
    Data Address: 97410000h Length: 00001DF0h
    SMDR.NLM SMS - Storage Data Requestor
    Version 6.57.04 14 August 2007
    Code Address: A25CF000h Length: 00047F28h
    Data Address: A250A000h Length: 0000D8E0h
    ROTLOGS.NLM Apache 2.0.59 Log Rotation Utility for NetWare
    Version 2.00.59 13 March 2007
    Code Address: A20EE000h Length: 000009F9h
    Data Address: A20EF000h Length: 00000438h
    ROTLOGS.NLM Apache 2.0.59 Log Rotation Utility for NetWare
    Version 2.00.59 13 March 2007
    Code Address: A20CC000h Length: 000009F9h
    Data Address: A20CD000h Length: 00000438h
    IFOLDERU.NLM ifolderu
    Version 2.04 19 February 2007
    Code Address: A23F3000h Length: 000191F6h
    Data Address: A247F000h Length: 000081FAh
    IFOLDER.NLM ifolder
    Version 2.04 19 February 2007
    Code Address: A251D000h Length: 00040FC6h
    Data Address: A2580000h Length: 0004EF80h
    MOD_JK.NLM Apache 2.0 plugin for Tomcat
    Version 1.02.21 13 March 2007
    Code Address: A228C000h Length: 000257DFh
    Data Address: A2334000h Length: 0000CAB8h
    AUTHLDAP.NLM Apache 2.0.59 LDAP Authentication Module
    Version 2.00.59 13 March 2007
    Code Address: 970AC000h Length: 00001BB9h
    Data Address: 970E5000h Length: 000019D0h
    UTILLDAP.NLM Apache 2.0.59 LDAP Authentication Module
    Version 2.00.59 13 March 2007
    Code Address: A1DA4000h Length: 000034A9h
    Data Address: A1DA8000h Length: 00002588h
    LSL.MPM lsl Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A23C0000h Length: 000001C2h
    Data Address: A23C1000h Length: 00000138h
    SLP.MPM slp Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A2370000h Length: 000002E9h
    Data Address: A2371000h Length: 00000090h
    STREAMS.MPM streams Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A2329000h Length: 000006E9h
    Data Address: A232A000h Length: 00000188h
    IPXSPX.MPM ipxspx Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A2327000h Length: 00000C33h
    Data Address: A2328000h Length: 000004B8h
    TLI.MPM tli Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A2324000h Length: 00001276h
    Data Address: A2326000h Length: 00000344h
    SNMP.MPM snmp Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A231B000h Length: 000009F7h
    Data Address: A231C000h Length: 000000FCh
    IPXS.MPM ipxs Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A2319000h Length: 0000002Ah
    Data Address: A231A000h Length: 00000018h
    TCPIP.MPM tcpip Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A22F8000h Length: 00001F5Bh
    Data Address: A22FA000h Length: 00000918h
    NETDB.MPM netdb Memory Protection Module
    Version 5.70 15 February 2006
    Code Address: A22F2000h Length: 00000AEFh
    Data Address: A22F3000h Length: 000001C4h
    SYSCALLS.NLM NetWare Operating System Call and Marshalling Library
    Version 5.61 2 August 2007
    Code Address: A22BA000h Length: 0000F50Eh
    Data Address: A22CA000h Length: 0000B4ECh
    PMPORTAL.NLM NetWare License Information Portal
    Version 2.16 21 November 2003
    Code Address: A2166000h Length: 000071C9h
    Data Address: A216E000h Length: 00004360h
    NETDB.NLM Network Database Access Module
    Version 4.11.05 6 January 2005
    Code Address: A2192000h Length: 0001394Dh
    Data Address: A1F2F000h Length: 000025FCh
    LLDAPX.NLM NetWare Extension APIs for LDAP SDK (LibC version)
    Version 3.01 16 January 2004
    Code Address: A1F07000h Length: 000057C5h
    Data Address: A1E14000h Length: 00000DC0h
    LLDAPSSL.NLM NetWare SSL Library for LDAP SDK (LibC version)
    Version 3.01 16 January 2004
    Code Address: A1E9F000h Length: 0005F156h
    Data Address: A206F000h Length: 0001882Dh
    APACHE2.NLM Apache Web Server 2.0.59
    Version 2.00.59 13 March 2007
    Code Address: A2012000h Length: 00039AD9h
    Data Address: A204C000h Length: 0001194Ch
    APRLIB.NLM Apache Portability Runtime Library 0.9.12
    Version 0.09.12 13 March 2007
    Code Address: A1FBE000h Length: 0002E498h
    Data Address: A1FED000h Length: 00008090h
    SCRCB.NLM Scripting - LibC-CLib Context Broker
    Version 1.00 3 October 2005
    Code Address: A1B06000h Length: 0000046Dh
    Data Address: A1B07000h Length: 00000554h
    NDSIMON.NLM NDS iMonitor 2.3.1
    Version 20210.97 12 September 2006
    Code Address: A1921000h Length: 0010C0D9h
    Data Address: A1A2E000h Length: 0008A750h
    LANGMANI.NLM Novell Cross-Platform Language Manager
    Version 10310.47 9 August 2004
    Code Address: 980BD000h Length: 000040F2h
    Data Address: 980C2000h Length: 00001084h
    XI18N.NLM Novell Cross-Platform Internationalization Package
    Version 10310.49 3 February 2005
    Code Address: A1F61000h Length: 0001CA12h
    Data Address: 97F0F000h Length: 00007EC8h
    PORTAL.NLM Novell Remote Manager NLM
    Version 4.03 12 September 2007
    Code Address: 97F99000h Length: 000FF1DCh
    Data Address: 97E32000h Length: 00069504h
    PS2.NLM Java - PS/2 Mouse Port Driver Build 070730
    Version 1.00 30 July 2007
    Code Address: 97DAE000h Length: 000029B0h
    Data Address: 97DB1000h Length: 00001314h
    MONITOR.NLM NetWare Console Monitor
    Version 12.02.02 4 April 2006
    Code Address: A18DC000h Length: 00022BEFh
    Data Address: 97D4D000h Length: 00005F15h
    NWSNUT.NLM NetWare NLM Utility User Interface
    Version 7.00.01 4 May 2007
    Code Address: A18C7000h Length: 00013432h
    Data Address: 97CF2000h Length: 000006F8h
    XINIT.NLM Java - X Window System initializer Build 070730
    Version 6.00 30 July 2007
    Code Address: A1884000h Length: 0000E250h
    Data Address: 97CCA000h Length: 00007EC8h
    XLIB.NLM Java - XFree86 4.X X11R6 Library (LIBC) Build 070730
    Version 11.06.01 30 July 2007
    Code Address: 97F19000h Length: 0007F9B0h
    Data Address: 97C10000h Length: 00047DC4h
    SASL.NLM Simple Authentication and Security Layer 3.2.0.0 20070914
    Version 32000709.14 14 September 2007
    Code Address: 97949000h Length: 00000BCCh
    Data Address: 9797D000h Length: 00000130h
    NMASLDAP.NLM NMAS LDAP Extensions 3.2.0.0 20070914
    Version 32000709.14 14 September 2007
    Code Address: 977EB000h Length: 00004E1Ch
    Data Address: 977F0000h Length: 000007D0h
    LDAPXS.NLM (Clib version)
    Version 3.01 16 January 2004
    Code Address: 977DC000h Length: 00003B05h
    Data Address: 977A8000h Length: 00000770h
    LBURP.NLM LDAP Bulkload Update/Replication Protocol service extension for Novell eDirectory 8.7.
    Version 10552.76 7 August 2006
    Code Address: 977A5000h Length: 000010ECh
    Data Address: 977A7000h Length: 00000444h
    NLDAP.NLM LDAP Agent for Novell eDirectory 8.7.3.9
    Version 10555.40 23 August 2006
    Code Address: 975F0000h Length: 00075B08h
    Data Address: 976B4000h Length: 000456C4h
    BTCPCOM.NLM BTCPCOM.NLM v7.90.000, Build 253
    Version 7.90 9 July 2003
    Code Address: 990F6000h Length: 00004450h
    Data Address: 990FB000h Length: 00000CECh
    SAS.NLM Secure Authentication Services
    Version 1.75 13 March 2004
    Code Address: 97CF6000h Length: 00056640h
    Data Address: 9909A000h Length: 0001E890h
    WSPSSL.NLM NetWare Winsock Service 1.0 NLM for SSL
    Version 6.25.08 18 September 2007
    Code Address: 98E1B000h Length: 00008910h
    Data Address: 98E24000h Length: 0001092Fh
    HTTPSTK.NLM Novell Small Http Interface
    Version 4.03 17 July 2007
    Code Address: 98C2D000h Length: 000317A6h
    Data Address: 98C5F000h Length: 00019C10h
    BSPXCOM.NLM BSPXCOM.NLM v7.90.000, Build 253
    Version 7.90 15 April 2003
    Code Address: 986C4000h Length: 0000530Ah
    Data Address: 986CA000h Length: 00000BB0h
    NILE.NLM Novell N/Ties NLM ("") Release Build with symbols
    Version 7.00.01 20 August 2007
    Code Address: 988F7000h Length: 00090A31h
    Data Address: 98988000h Length: 00030C70h
    PKI.NLM Novell Certificate Server
    Version 3.30 15 August 2007
    Code Address: 98ADE000h Length: 0014ED75h
    Data Address: 9853B000h Length: 00076B20h
    PKIAPI.NLM Public Key Infrastructure Services
    Version 2.23.10 20 November 2004
    Code Address: 988BF000h Length: 00037721h
    Data Address: 982E6000h Length: 00006A14h
    NWUTIL.NLM Novell Utility Library NLM (_NW65[SP7]{""})
    Version 3.00.02 20 August 2007
    Code Address: 986D9000h Length: 0000EE40h
    Data Address: 9889B000h Length: 00023BD4h
    NWBSRVCM.NLM Pervasive Btrieve Communication Server - Version 8.50.189.000
    Version 8.50 29 October 2003
    Code Address: 982A0000h Length: 0000404Bh
    Data Address: 982A5000h Length: 000043CEh
    NWMKDE.NLM MicroKernel Database Engine - Version 8.50.189.000
    Version 8.50 29 October 2003
    Code Address: 985D9000h Length: 00086B48h
    Data Address: 98660000h Length: 0003114Ah
    ENGINELM.NLM Pervasive.SQL Engine License Manager
    Version 8.50 29 October 2003
    Code Address: 984DC000h Length: 0000A232h
    Data Address: 984E7000h Length: 0000F5A2h
    NWENC103.NLM Text Encoding Conversion Library - Version 8.50
    Version 8.50 29 October 2003
    Code Address: 9824C000h Length: 000484B5h
    Data Address: 986E8000h Length: 001B2E48h
    NWDCM100.NLM Database CSI Manager
    Version 8.50 29 October 2003
    Code Address: 98480000h Length: 0001829Bh
    Data Address: 98499000h Length: 0002F41Dh
    NWCSI100.NLM Pervasive.SQL Common Security Provider
    Version 8.50 29 October 2003
    Code Address: 983FA000h Length: 0003417Bh
    Data Address: 9842F000h Length: 000509B1h
    NWXLT101.NLM DBU XLT Interface - Version 8.50
    Version 8.50 29 October 2003
    Code Address: 98387000h Length: 00060AA0h
    Data Address: 983E8000h Length: 00011EECh
    DBCSIPXY.NLM Database CSI Manager Proxy
    Version 8.50 29 October 2003
    Code Address: 98206000h Length: 0001EA1Fh
    Data Address: 98225000h Length: 00026141h
    NWCSP.NLM Pervasive Software Cryptographic Service Provider
    Version 8.50 29 October 2003
    Code Address: 96E7A000h Length: 0000737Fh
    Data Address: 98190000h Length: 0000ABF1h
    NWCSM.NLM Pervasive Software Cryptographic Service Manager
    Version 8.50 29 October 2003
    Code Address: 98151000h Length: 00008C2Fh
    Data Address: 9815A000h Length: 0000BCBDh
    MKC.NLM MicroKernel Cursor Library
    Version 8.50 29 October 2003
    Code Address: 980F8000h Length: 00017170h
    Data Address: 98110000h Length: 000129EFh
    LEGACYLM.NLM Legacy License Manager
    Version 8.50 29 October 2003
    Code Address: 97E06000h Length: 0001039Fh
    Data Address: 97E17000h Length: 0001A46Ah
    LICMGRRB.NLM Pervasive.SQL V8.5 Security Component License Manager Resource Bundle
    Version 8.50 29 October 2003
    Code Address: 96C29000h Length: 0000345Fh
    Data Address: 978DE000h Length: 000096C9h
    NWEXP010.NLM Pervasive.SQL V8.5 Security Component
    Version 8.50 29 October 2003
    Code Address: 96C11000h Length: 00002FBFh
    Data Address: 96C15000h Length: 000036C1h
    MKDERB.NLM Pervasive MKDE Resource Bundle
    Version 8.50 29 October 2003
    Code Address: 96C07000h Length: 0000345Fh
    Data Address: 978B6000h Length: 0000BE61h
    PSUTILRB.NLM Pervasive.SQL V8.5 Security Component Psutilrb Resource Bundle
    Version 1.50 29 October 2003
    Code Address: 96BF4000h Length: 00003EFFh
    Data Address: 96BF8000h Length: 00006D31h
    PCEUROP.NLM Pervasive Services Eurpoean Codec Collection
    Version 1.50 29 October 2003
    Code Address: 96BE1000h Length: 0000503Bh
    Data Address: 978AA000h Length: 0000B921h
    PSCP932.NLM Pervasive Services CP932 Codec
    Version 1.50 29 October 2003
    Code Address: 96AFC000h Length: 000020FBh
    Data Address: 96B9C000h Length: 00042BD9h
    PSCL.NLM Pervasive Services Class Library
    Version 1.50 29 October 2003
    Code Address: 9786D000h Length: 00038F5Fh
    Data Address: 96C80000h Length: 0009C6E3h
    PSCORE.NLM Pervasive Services Core Library
    Version 1.50 29 October 2003
    Code Address: 9783C000h Length: 0001C3FFh
    Data Address: 97859000h Length: 00013F05h
    UNI_MON.NLM NetWare Unicode Lower Case API, V1.01
    Version 1.01 23 July 1998
    Code Address: 96B0E000h Length: 00000107h
    Data Address: 96B0F000h Length: 0000207Ch
    UNI_UPR.NLM NetWare Unicode Upper Case API, V1.01
    Version 1.01 23 July 1998
    Code Address: 96B0A000h Length: 00000107h
    Data Address: 96B0B000h Length: 00002328h
    MONDATA.NLM NetWare 5.x/6.x Monitor MIB
    Version 6.00 18 July 2003
    Code Address: 97549000h Length: 00008C9Fh
    Data Address: 96AC4000h Length: 00004DD1h
    NWIDK.NLM CDWare Volume Module
    Version 3.01.01 19 September 2003
    Code Address: 96ACA000h Length: 00004640h
    Data Address: 96ACF000h Length: 00000730h
    SERVINST.NLM NetWare 5.x/6.x Instrumentation
    Version 5.00.13 21 November 2005
    Code Address: 97538000h Length: 00010D4Ch
    Data Address: 969F6000h Length: 00007744h
    NWTRAP.NLM NetWare 5.x/6.x Trap Monitor
    Version 6.00.05 6 June 2005
    Code Address: 967D6000h Length: 000066C3h
    Data Address: 97506000h Length: 0000A2E0h
    HOSTMIB.NLM NetWare 5.x/6.x Host Resources MIB
    Version 5.03.01 1 December 2006
    Code Address: 974F1000h Length: 0000BB80h
    Data Address: 9672A000h Length: 00003D88h
    ZIP.NLM Java zip (based on 1.4.2_13)
    Version 1.42.09 30 July 2007
    Code Address: 974D2000h Length: 0000ADCCh
    Data Address: 96617000h Length: 00001C90h
    JVMLIB.NLM Java jvmlib (based on 1.4.2_13)
    Version 1.42.09 30 July 2007
    Code Address: 974B1000h Length: 00017124h
    Data Address: 974C9000h Length: 00008670h
    VERIFY.NLM Java verify (based on 1.4.2_13)
    Version 1.42.09 30 July 2007
    Code Address: 97473000h Length: 000087B4h
    Data Address: 92633000h Length: 00001BC0h
    JVM.NLM Java Hotspot 1.4.2_13 Interpreter
    Version 1.42.09 30 July 2007
    Code Address: 97123000h Length: 002215AFh
    Data Address: 96A22000h Length: 00064DE0h
    LIBPERL.NLM Perl 5.8.4 - Script Interpreter and Library
    Version 5.00.05 13 September 2005
    Code Address: 96FB5000h Length: 000B3D60h
    Data Address: 97069000h Length: 0001ADE0h
    IPMGMT.NLM TCPIP - NetWare IP Address Management
    Version 1.03.01 29 May 2007
    Code Address: 96948000h Length: 000307CDh
    Data Address: 96979000h Length: 0000D778h
    JSOCK6X.NLM NetWare 6.x Support For Java Sockets (JDK 1.4.2)
    Version 1.42.09 30 July 2007
    Code Address: 96918000h Length: 0000FDB1h
    Data Address: 95B05000h Length: 00002C44h
    JAVA.NLM java.nlm (based on 1.4.2_13) Build 07073000
    Version 1.42.09 30 July 2007
    Code Address: 9686E000h Length: 000385DEh
    Data Address: 968A7000h Length: 0003DD40h
    JSOCK.NLM Support For Java Sockets (loader)
    Version 1.42.09 30 July 2007
    Code Address: 96850000h Length: 00000086h
    Data Address: 96851000h Length: 00000064h
    NLSTRAP.NLM NetWare License Server Trap
    Version 5.02 19 February 2004
    Code Address: 93D66000h Length: 0000298Ah
    Data Address: 9479A000h Length: 00000695h
    CONNAUD.NLM NLS - Connection Metering
    Version 3.17 10 May 2005
    Code Address: 93D54000h Length: 000034D3h
    Data Address: 94644000h Length: 00000A9Ch
    NLSMETER.NLM NLS - Software Usage Metering Database
    Version 3.43 10 May 2005
    Code Address: 9460B000h Length: 0000E597h
    Data Address: 9461A000h Length: 0000759Ch
    NPKIAPI.NLM Public Key Infrastructure Services
    Version 3.30 15 August 2007
    Code Address: 93DE3000h Length: 00034A17h
    Data Address: 93E18000h Length: 0001D09Fh
    NBMLDAP NMAS LDAP METHOD - LDAP Authentication Server Method
    Version 5.00.13 13 August 2003
    Code Address: 93D19000h Length: 00002444h
    Data Address: 93DDC000h Length: 00000BB4h
    LDAPSSL.NLM NetWare SSL Library for LDAP SDK (Clib version)
    Version 3.04 2 September 2005
    Code Address: 93689000h Length: 0005F55Dh
    Data Address: 93DA7000h Length: 0001883Dh
    CERTLCM.NLM NMAS External LCM
    Version 2.00 3 December 2003
    Code Address: 93CFA000h Length: 0000D6C1h
    Data Address: 923C5000h Length: 00001360h
    VOLSMS.NLM NSS Distributed Volume Manager (Build 263 MP)
    Version 3.26 14 September 2007
    Code Address: 93CC4000h Length: 000186A1h
    Data Address: 923BD000h Length: 00001780h
    VLRPC.NLM DFS Volume Location Database (VLDB) RPC interface (Build 536 MP)
    Version 3.26 14 September 2007
    Code Address: 93C8B000h Length: 00003373h
    Data Address: 93CC1000h Length: 000002FDh
    VMRPC.NLM DFS Volume Manager RPC interface (Build 403 MP)
    Version 3.26 14 September 2007
    Code Address: 93C87000h Length: 00003703h
    Data Address: 93CBF000h Length: 000002FDh
    JSTCP.NLM Jetstream TCP Transport Layer (Build 589 MP)
    Version 3.26 14 September 2007
    Code Address: 93CB4000h Length: 000050F0h
    Data Address: 93CBA000h Length: 000001E0h
    JSMSG.NLM Jetstream Message Layer (Build 611 MP)
    Version 3.26 14 September 2007
    Code Address: 93C92000h Length: 00006E80h
    Data Address: 93C83000h Length: 00000220h
    DFSLIB.NLM DFS Common Library (Build 502 MP)
    Version 3.26 14 September 2007
    Code Address: 93C84000h Length: 000005C3h
    Data Address: 93C85000h Length: 00000080h
    CERTLSM.NLM NMAS External LSM
    Version 2.00 3 December 2003
    Code Address: 9395B000h Length: 0000E431h
    Data Address: 923B1000h Length: 00001370h
    LDAPSDK.NLM LDAP SDK Library (Clib version)
    Version 3.04 2 September 2005
    Code Address: 93932000h Length: 00020AF3h
    Data Address: 93953000h Length: 00006B6Dh
    NPKIT.NLM Public Key Infrastructure Services
    Version 3.30 15 August 2007
    Code Address: 938BF000h Length: 0002E1CEh
    Data Address: 938EE000h Length: 00016433h
    NTLS.NLM NTLS 2.0.2.0 based on OpenSSL 0.9.7m
    Version 20210.01 20 August 2007
    Code Address: 93767000h Length: 000A6F76h
    Data Address: 9380E000h Length: 000390AFh
    LLDAPSDK.NLM LDAP SDK Library (LibC version)
    Version 3.01 16 January 2004
    Code Address: 935C2000h Length: 0001CEDBh
    Data Address: 935DF000h Length: 0000611Ch
    LCMCIFS2.NLM Windows Native File Access Login Methods (Build 87 SP)
    Version 2.00.09 5 September 2006
    Code Address: 9350D000h Length: 0000E011h
    Data Address: 92290000h Length: 000016B0h
    LSMCIFS2.NLM Windows Native File Access Login Methods (Build 99 SP)
    Version 2.00.07 5 September 2006
    Code Address: 934CB000h Length: 0000F071h
    Data Address: 9228A000h Length: 000017B0h
    LSMAFP3.NLM Macintosh Native File Access Login Methods (Build 115 SP)
    Version 2.00.11 5 September 2006
    Code Address: 93497000h Length: 0000F24Eh
    Data Address: 92280000h Length: 000013C0h
    NMASGPXY.NLM NMAS Generic Proxy 3.2.0.0 20070914
    Version 32000709.14 14 September 2007
    Code Address: 9227E000h Length: 000015BCh
    Data Address: 93496000h Length: 000000E0h
    SPMDCLNT.NLM Novell SPM Client for DClient 3.2.0.0 20070914
    Version 32000709.14 14 September 2007
    Code Address: 93379000h Length: 0001459Bh
    Data Address: 92266000h Length: 00001370h
    ODINEB.NLM Novell ODI to Novell Event Bus Interface Module
    Version 1.10 13 August 1999
    Code Address: 91CB0000h Length: 000012E9h
    Data Address: 93208000h Length: 0000077Ch
    LSAPI.NLM NLS LSAPI Library
    Version 5.02 7 January 2003
    Code Address: 9321E000h Length: 0000A51Bh
    Data Address: 93229000h Length: 00001B00h
    IPXRTRNM.NLM IPX Router Network Management
    Version 6.60 24 June 1998
    Code Address: 931F2000h Length: 0000C223h
    Data Address: 931FF000h Length: 000043C0h
    NLSAPI.NLM NLSAPI
    Version 5.02 7 August 2003
    Code Address: 931DA000h Length: 000124DBh
    Data Address: 92FDE000h Length: 000022A4h
    IPXRTR.NLM IPX NLSP Router Production_15Mar2007
    Version 6.71.01 15 March 2007
    Code Address: 92214000h Length: 00047C2Eh
    Data Address: 9317C000h Length: 00017B10h
    NLSLSP.NLM NLS - License Service Provider
    Version 5.02 25 May 2005
    Code Address: 930E1000h Length: 0006DF03h
    Data Address: 9314F000h Length: 000205DCh
    IPFLT31.NLM Novell TCP/IP Filter Module
    Version 6.00.01 27 May 2005
    Code Address: 93045000h Length: 00012421h
    Data Address: 93058000h Length: 00019730h
    NSPDNS.NLM NetWare Winsock 2.0 NSPDNS.NLM Name Service Providers
    Version 6.20.03 8 September 2003
    Code Address: 9303D000h Length: 00002527h
    Data Address: 93040000h Length: 000004E4h
    SLPTCP.NLM SERVICE LOCATION TCP/UDP INTERFACE (RFC2165/RFC2608)
    Version 2.13 15 November 2005
    Code Address: 93014000h Length: 0000386Ah
    Data Address: 93018000h Length: 0000108Ch
    BMALMGR.NLM BorderManager Audit Log Manager BM37SP1_21AUG2002
    Version 1.00.03 21 August 2002
    Code Address: 9300E000h Length: 00000A9Ch
    Data Address: 9300F000h Length: 000003F0h
    BMSFLOG.NLM BorderManager Sequential File Logging Facility
    Version 1.00.07 5 December 2003
    Code Address: 92FE3000h Length: 000034C5h
    Data Address: 92FE7000h Length: 00001820h
    WSPIP.NLM NetWare Winsock Service 1.0 NLM for TCP and UDP
    Version 6.23.06 18 September 2007
    Code Address: 92E4C000h Length: 00010224h
    Data Address: 92E5D000h Length: 0000283Ch
    IPFLT.NLM Novell TCP/IP Filter Support Module
    Version 4.60.03 10 December 2002
    Code Address: 92E25000h Length: 0000026Ch
    Data Address: 92E26000h Length: 00000090h
    FILTSRV.NLM Filter Services
    Version 1.61.13 24 November 2005
    Code Address: 92DD4000h Length: 0001AC47h
    Data Address: 92DEF000h Length: 00005BF4h
    INETLIB.NLM NETINFO.CFG Maintenance Library Production_28Mar2002
    Version 6.00.04 28 March 2002
    Code Address: 92DC8000h Length: 00009B8Fh
    Data Address: 92DD2000h Length: 00000FA2h
    NCPIP.NLM NetWare NCP Services over IP
    Version 6.02 6 October 2006
    Code Address: 92D32000h Length: 000168E9h
    Data Address: 92D49000h Length: 00003540h
    BSDSOCK.NLM Novell BSDSOCK Module (Domestic)
    Version 6.91.03 23 April 2007
    Code Address: 92CA8000h Length: 00011F39h
    Data Address: 92CBA000h Length: 0000C0E0h
    TCPIP.NLM Novell TCP/IP/IPSec Module (Domestic) NICI Enabled
    Version 6.91.09 8 August 2007
    Code Address: 92330000h Length: 00078704h
    Data Address: 9259E000h Length: 00040570h
    TCP.NLM Novell TCP/IP Stack - Transport module (Domestic)
    Version 6.91.04 8 August 2007
    Code Address: 923E2000h Length: 00025772h
    Data Address: 92506000h Length: 0007EF60h
    NETLIB.NLM Novell TCPIP NETLIB Module
    Version 6.50.22 12 February 2003
    Code Address: 92409000h Length: 00005AACh
    Data Address: 9240F000h Length: 000D0710h
    CSLIND.NLM TCPIP CSL INDEPENDENCE MODULE 7Dec99 7Dec99
    Version 4.21 7 December 1999
    Code Address: 9232C000h Length: 000003CCh
    Data Address: 9232D000h Length: 000024E0h
    DEBUGLOG.NLM Debug Log NLM (IP0200.G05)
    Version 1.00 14 July 1997
    Code Address: 922E9000h Length: 00000D5Ah
    Data Address: 922EA000h Length: 000005D4h
    CE1000.LAN Intel(R) PRO/1000 Network Connections Driver
    Version 7.84 9 March 2005
    Code Address: 921A1000h Length: 00017768h
    Data Address: 1E71B000h Length: 000093B5h
    B57.LAN Broadcom Ethernet Network Controller Driver
    Version 10.41 1 February 2007
    Code Address: 9212E000h Length: 00024069h
    Data Address: 00700000h Length: 00008DA0h
    ETHERTSM.NLM Novell Ethernet Topology Specific Module
    Version 3.90 20 March 2006
    Code Address: 9212B000h Length: 000024CEh
    Data Address: 91B2E000h Length: 000002BCh
    MSM.NLM Novell Multi-Processor Media Support Module
    Version 4.12 22 August 2007
    Code Address: 92119000h Length: 0000E5B3h
    Data Address: 920AB000h Length: 00003DFCh
    CSL.NLM NetWare Call Support Layer For NetWare
    Version 2.06.02 13 January 2000
    Code Address: 92077000h Length: 0000CB32h
    Data Address: 91DB2000h Length: 000028F4h
    BTRIEVE.NLM Btrieve Interface - Version 8.50
    Version 8.50 29 October 2003
    Code Address: 91B4E000h Length: 000022BBh
    Data Address: 91B51000h Length: 0000103Dh
    NWAIF103.NLM nwaif103.nlm v8.50.189.000
    Version 8.50 28 October 2003
    Code Address: 91AFC000h Length: 00010E51h
    Data Address: 91B0D000h Length: 00006828h
    IPXS.NLM NetWare STREAMS IPX Protocol
    Version 4.10.01 12 February 1998
    Code Address: 91A30000h Length: 00001C95h
    Data Address: 91483000h Length: 000000ECh
    Global Code Address: 91484000h Length: 00001000h
    SNMP.NLM Netware 4.x/5.x/6.x SNMP Service
    Version 4.18 25 July 2006
    Code Address: 919FF000h Length: 00013E90h
    Data Address: 91A14000h Length: 00003220h
    TLI.NLM NetWare Transport Level Interface Library
    Version 4.30.02 19 December 2000
    Code Address: 919F2000h Length: 00003859h
    Data Address: 91438000h Length: 00000164h
    Global Code Address: 91480000h Length: 00001000h
    Global Data Address: 919F6000h Length: 00002000h
    NSPSAP.NLM NetWare Winsock 2.0 NLM NSPSAP.NLM Name Service Provider
    Version 6.20.02 8 September 2003
    Code Address: 919D7000h Length: 00001EE7h
    Data Address: 91435000h Length: 00000610h
    CONLOG.NLM System Console Logger
    Version 3.01.02 8 August 2006
    Code Address: 919C2000h Length: 0000243Ch
    Data Address: 919C5000h Length: 00001CE0h
    AFTER311.NLM NetWare 3.11 Compatible NLM Support Module
    Version 4.10.01 21 October 1994
    Code Address: 91417000h Length: 00000018h
    Data Address: 91418000h Length: 00000004h
    WSPIPX.NLM NetWare Winsock Service 1.0 NLM for IPX and SPX
    Version 6.21 23 November 2005
    Code Address: 91807000h Length: 0000DB19h
    Data Address: 914F2000h Length: 00001762h
    NCPIPX.NLM Novell NCP/IPX Stack NLM
    Version 5.60 25 April 2006
    Code Address: 9148A000h Length: 00005720h
    Data Address: 91490000h Length: 00001308h
    IPXSPX.NLM NetWare IPX/SPX Protocol Stack NLM
    Version 5.60 1 February 2006
    Code Address: 9143E000h Length: 0000FDF2h
    Data Address: 9144F000h Length: 00009A3Ah
    DHOST.NLM Novell DHost Portability Interface 1.0.0 SMP
    Version 10010.97 18 September 2006
    Code Address: 911C7000h Length: 00006621h
    Data Address: 80803000h Length: 0000234Ch
    NSPNDS.NLM NetWare Winsock 2.0 NSPNDS.NLM Name Service Provider
    Version 6.20 12 November 2001
    Code Address: 911C0000h Length: 00006547h
    Data Address: 80920000h Length: 00000518h
    DS.NLM Novell eDirectory Version 8.7.3.9 SMP
    Version 10553.73 9 October 2006
    Code Address: 91DB6000h Length: 0026B9BEh
    Data Address: 91344000h Length: 00078250h
    ROLLCALL.NLM RollCall NLM (101, API 1.0)
    Version 5.00 27 July 1998
    Code Address: 8A526000h Length: 0000055Dh
    Data Address: 8A527000h Length: 000002D4h
    SAL.NLM Novell System Abstraction Layer Version 2.3.1
    Version 20350.95 18 September 2006
    Code Address: 911B8000h Length: 00007CD6h
    Data Address: 9133B000h Length: 000012A8h
    POLIMGR.NLM NetWare License Policy Manager
    Version 6.27 3 November 2005
    Code Address: 802D6000h Length: 00013F5Ch
    Data Address: 8A51D000h Length: 00008E90h
    TIMESYNC.NLM NetWare Time Synchronization Services
    Version 6.61.01 14 October 2005
    Code Address: 919B1000h Length: 0000E13Ch
    Data Address: 91327000h Length: 00004240h
    DSAPI.NLM NetWare NWNet Runtime Library
    Version 6.00.04 27 January 2006
    Code Address: 91325000h Length: 00000043h
    Data Address: 91326000h Length: 00000024h
    DSEVENT.NLM NetWare DSEvent Runtime Library
    Version 6.01.01 18 September 2007
    Code Address: 91323000h Length: 00000633h
    Data Address: 91324000h Length: 00000034h
    NETNLM32.NLM NetWare NWNet Runtime Library
    Version 6.01.01 18 September 2007
    Code Address: 9197B000h Length: 00035B17h
    Data Address: 9131E000h Length: 00004D65h
    SPMNWCC.NLM Novell SPM Client for NWCC 3.2.0.0 20070914
    Version 32000709.14 14 September 2007
    Code Address: 91969000h Length: 0001193Bh
    Data Address: 9131C000h Length: 00001340h
    NMAS.NLM Novell Modular Authentication Service 3.2.0.0 20070914
    Version 32000709.14 14 September 2007
    Code Address: 8FF1C000h Length: 0005B9E8h
    Data Address: 9195C000h Length: 0000CD70h
    GAMS.NLM Graded Authentication Management Service
    Version 1.20 8 October 2004
    Code Address: 9194E000h Length: 0000D867h
    Data Address: 91272000h Length: 000012B8h
    NDSAUDIT.NLM Directory Services Audit
    Version 2.09 22 May 2003
    Code Address: 9193D000h Length: 00010844h
    Data Address: 9126A000h Length: 00002ED0h
    NICISDI.NLM Security Domain Infrastructure
    Version 27310.01.01 4 June 2007
    Code Address: 918FA000h Length: 0000ACC2h
    Data Address: 006CF000h Length: 000012A0h
    SASDFM.NLM SAS Data Flow Manager
    Version 27310.01.01 4 June 2007
    Code Address: 9120E000h Length: 000040AEh
    Data Address: 1DFEA000h Length: 00000980h
    CALNLM32.NLM NetWare NWCalls Runtime Library
    Version 6.01.01 18 September 2007
    Code Address: 918CE000h Length: 0001CEB9h
    Data Address: 911FF000h Length: 00000510h
    CLXNLM32.NLM NetWare NWCLX Runtime Library
    Version 6.01.01 18 September 2007
    Code Address: 911FC000h Length: 000011F3h
    Data Address: 911FE000h Length: 000001B0h
    NCPNLM32.NLM NetWare NWNCP Runtime Library
    Version 6.01.01 18 September 2007
    Code Address: 91873000h Length: 0001F483h
    Data Address: 00000000h Length: 00000000h
    CLNNLM32.NLM NetWare NWClient Runtime Library
    Version 6.01.01 18 September 2007
    Code Address: 911E3000h Length: 00001CC2h
    Data Address: 911E5000h Length: 00000150h
    CLIB.NLM (Legacy) Standard C Runtime Library for NLMs
    Version 5.90.14 14 December 2006
    Code Address: 91835000h Length: 0001898Eh
    Data Address: 91168000h Length: 00002FB0h
    NIT.NLM NetWare Interface Tools Library for NLMs
    Version 5.90.14 14 December 2006
    Code Address: 91818000h Length: 0001C694h
    Data Address: 910C8000h Length: 00000690h
    NLMLIB.NLM Novell NLM Runtime Library
    Version 5.90.14 14 December 2006
    Code Address: 917CF000h Length: 000263EDh
    Data Address: 9115E000h Length: 000038C0h
    STREAMS.NLM NetWare STREAMS PTF
    Version 6.00.06 4 May 2005
    Code Address: 917BC000h Length: 0001206Dh
    Data Address: 910BD000h Length: 000010A0h
    Global Code Address: 910BF000h Length: 00001000h
    REQUESTR.NLM Novell NCP Requestor for NLMs
    Version 5.90.14 14 December 2006
    Code Address: 91784000h Length: 00020D53h
    Data Address: 910BB000h Length: 000010B0h
    THREADS.NLM Novell Threads Package for NLMs
    Version 5.90.14 14 December 2006
    Code Address: 91759000h Length: 00018CD8h
    Data Address: 91772000h Length: 000116A0h
    LIB0.NLM Novell Ring 0 Library for NLMs
    Version 5.90.14 14 December 2006
    Code Address: 914F5000h Length: 000250EAh
    Data Address: 9151B000h Length: 00228070h
    MASV.NLM Mandatory Access Control Service
    Version 1.50 27 July 2006
    Code Address: 911A6000h Length: 00011F26h
    Data Address: 91100000h Length: 00002390h
    NSPSLP.NLM NetWare Winsock 2.0 NSPSLP.NLM Name Service Provider
    Version 6.20.02 8 September 2003
    Code Address: 910FA000h Length: 00005ED3h
    Data Address: 910B1000h Length: 00000B30h
    PMLODR.NLM PMLodr for NW65
    Version 1.26 7 October 2005
    Code Address: 91115000h Length: 0000E63Ah
    Data Address: 910AB000h Length: 00001658h
    SLP.NLM SERVICE LOCATION PROTOCOL (RFC2165/RFC2608)
    Version 2.13 15 November 2005
    Code Address: 910D6000h Length: 0001A658h
    Data Address: 910F1000h Length: 00005384h
    CCS.NLM Controlled Cryptography Services from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 91090000h Length: 00019EC4h
    Data Address: 1E8D8000h Length: 00002F90h
    DSLOADER.NLM Novell eDirectory Version 8.7.3 Loader SMP
    Version 10553.73 9 October 2006
    Code Address: 90FE5000h Length: 0000C73Ch
    Data Address: 90FF2000h Length: 00001278h
    XENGUSC.NLM NICI U.S./Worldwide XENG from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 90FD2000h Length: 00000058h
    Data Address: 00000000h Length: 00000000h
    XNGAUSC.NLM NICI U.S./Worldwide XMGR Assistant XENG from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 90F90000h Length: 000153E4h
    Data Address: 006CA000h Length: 000044E4h
    XENGEXP.NLM NICI Import Restricted XENG from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 90F3B000h Length: 00050A44h
    Data Address: 006B5000h Length: 0001485Ch
    XENGNUL.NLM NICI NULL XENG from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 90F39000h Length: 00001DC9h
    Data Address: 327B3000h Length: 00000860h
    XMGR.NLM NICI XMGR from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 90EDB000h Length: 00025FB1h
    Data Address: 0069A000h Length: 0000A9D0h
    XSUP.NLM NICI XSUP from Novell, Inc.
    Version 27310.01.01 4 June 2007
    Code Address: 90E62000h Length: 00006EF2h
    Data Address: 00676000h Length: 00023170h
    XIM.XLM Novell NICI Signed Loader
    Version 27310.01.01 4 June 2007
    Code Address: 90E03000h Length: 0002C460h
    Data Address: 0066E000h Length: 00007904h
    WS2_32.NLM NetWare Winsock 2.0 NLM
    Version 6.23.05 18 September 2007
    Code Address: 90A69000h Length: 00037C48h
    Data Address: 90AA1000h Length: 00011AF4h
    NCP.NLM NetWare Core Protocol (NCP) Engine
    Version 5.61 20 July 2007
    Code Address: 9005D000h Length: 00026DEFh
    Data Address: 90A4F000h Length: 00018B24h
    QUEUE.NLM NetWare Queue Services NLM
    Version 5.60 24 May 2001
    Code Address: 90A42000h Length: 00006D8Dh
    Data Address: 90A49000h Length: 00000473h
    VDISK.NLM NetWare Virtual Disk
    Version 1.00 30 November 2004
    Code Address: 90A38000h Length: 00001FEEh
    Data Address: 90A3B000h Length: 00001160h
    NWTERMIO.NLM NetWare Terminal Emulation
    Version 1.00 11 September 2006
    Code Address: 90A07000h Length: 00007570h
    Data Address: 90A0F000h Length: 00004560h
    MALHLP.NLM NSS Configure help messages (Build 436 MP)
    Version 3.26 14 September 2007
    Code Address: 8A53F000h Length: 000000BAh
    Data Address: 8A540000h Length: 0000002Ah
    CDDVD.NSS NSS Loadable Storage System (LSS) for CD/UDF (Build 318 MP)
    Version 3.26 14 September 2007
    Code Address: 8AB83000h Length: 00014B00h
    Data Address: 8A3A8000h Length: 00001050h
    NSSIDK.NSS NSS Pool Configuration Manager (Build 490 MP)
    Version 3.26 14 September 2007
    Code Address: 8A534000h Length: 000039C5h
    Data Address: 8A538000h Length: 00000090h
    PARTAPI.NLM Partition APIs for NetWare 6.1
    Version 2.00 17 April 2002
    Code Address: 8A3AE000h Length: 00000007h
    Data Address: 00000000h Length: 00000000h
    VOLMN.NSS NSS Distributed Volume Manager (Build 451 MP)
    Version 3.26 14 September 2007
    Code Address: 8AB53000h Length: 0000A6A3h
    Data Address: 8A3A1000h Length: 000005B0h
    NWSA.NSS NSS NetWare Semantic Agent (NWSA) (Build 1394 MP)
    Version 3.26 14 September 2007
    Code Address: 8A346000h Length: 0004ADCEh
    Data Address: 8AAA0000h Length: 000A1390h
    ZLSS.NSS NSS Journaled Storage System (ZLSS) (Build 1926 MP)
    Version 3.26 14 September 2007
    Code Address: 8A78D000h Length: 000CCED6h
    Data Address: 8AA94000h Length: 0000BE30h
    MAL.NSS NSS Media Access Layer (MAL) (Build 640 MP)
    Version 3.26 14 September 2007
    Code Address: 8A33A000h Length: 00003196h
    Data Address: 8A39A000h Length: 00000170h
    MANAGE.NSS NSS Management Functions (Build 733 MP)
    Version 3.26 14 September 2007
    Code Address: 8A73D000h Length: 0004F0C5h
    Data Address: 8A394000h Length: 00000C20h
    COMN.NSS NSS Common Support Layer (COMN) (GPACHNER based on Build 2997 MP)
    Version 3.26 25 October 2007
    Code Address: 8A87E000h Length: 000EE978h
    Data Address: 8A96D000h Length: 00015DD0h
    NSS.NLM NSS (Novell Storage Services) (Build 1062 MP)
    Version 3.26 14 September 2007
    Code Address: 8A58A000h Length: 00030420h
    Data Address: 8A5BB000h Length: 00091830h
    SYSLOG.NLM NetWare Logfile Daemon
    Version 6.05.03 7 December 2006
    Code Address: 8A285000h Length: 0000616Ah
    Data Address: 8A563000h Length: 00026140h
    LIBNSS.NLM Generic Library used by NSS (Build 204 MP)
    Version 3.26 14 September 2007
    Code Address: 8A2E4000h Length: 0000464Ch
    Data Address: 8A2E9000h Length: 000003D0h
    NSSWIN.NLM NSS ASCI Window API Library (Build 216 MP)
    Version 3.26 14 September 2007
    Code Address: 8A290000h Length: 000047DCh
    Data Address: 8A2E2000h Length: 000000FCh
    LOCNLM32.NLM NetWare NWLocale Runtime Library
    Version 6.00.04 29 November 2005
    Code Address: 8A280000h Length: 000044BBh
    Data Address: 8A2E1000h Length: 00000B30h
    UNICODE.NLM NetWare Unicode Runtime Library (UniLib-based) [optimized]
    Version 7.00 26 October 2004
    Code Address: 8A250000h Length: 000016F5h
    Data Address: 8A2B0000h Length: 00000504h
    FILESYS.NLM NetWare File System NLM
    Version 5.14 21 September 2006
    Code Address: 8A3AF000h Length: 0008E4E7h
    Data Address: 8A43E000h Length: 00012C90h
    LFS.NLM NetWare Logical File System NLM
    Version 5.12 21 September 2005
    Code Address: 8A2CB000h Length: 000098A2h
    Data Address: 8A2D5000h Length: 000084BCh
    CONNMGR.NLM NetWare Connection Manager NLM
    Version 5.60.01 7 September 2006
    Code Address: 8A295000h Length: 0001172Bh
    Data Address: 8A23D000h Length: 00003CE8h
    ACPIPWR.NLM ACPI Power Management Driver for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 8A273000h Length: 00000C9Ah
    Data Address: 8A274000h Length: 00000904h
    ACPICMGR.NLM ACPI Component Manager for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 8A233000h Length: 00000A6Fh
    Data Address: 8A234000h Length: 000002F4h
    ADPU320.HAM Adaptec Ultra320 Host Adapter Module
    Version 3.01.13 6 August 2004
    Code Address: 8A1DC000h Length: 0002BF2Fh
    Data Address: 0078C000h Length: 000053ECh
    IPSRAID.HAM NetWare NWPA IBM ServeRAID Adapter HAM.
    Version 7.12.03 17 August 2005
    Code Address: 8A1CB000h Length: 00006256h
    Data Address: 00FEB000h Length: 00000BCCh
    IDEATA.HAM Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Version 4.34 5 May 2007
    Code Address: 8A1AC000h Length: 00010F67h
    Data Address: 00942000h Length: 00005880h
    BAKPLANE.CDM Novell Backplane Custom Device Module
    Version 2.00 31 October 2004
    Code Address: 8A1AA000h Length: 00001AFCh
    Data Address: 00FF1000h Length: 0000080Ch
    SCSIHD.CDM Novell NetWare SCSI Fixed Disk Custom Device Module
    Version 3.03.08 9 January 2007
    Code Address: 8A1A4000h Length: 00005413h
    Data Address: 0099F000h Length: 00001728h
    IDECD.CDM Novell ATA/IDE CD/DVD Custom Device Module
    Version 4.13 4 April 2007
    Code Address: 8A09E000h Length: 00004201h
    Data Address: 00FF4000h Length: 00001084h
    ACPIDRV.PSM ACPI Platform Support Module for ACPI compliant systems
    Version 1.05.19 16 January 2007
    Code Address: 8A150000h Length: 0000AD1Eh
    Data Address: 00A1A000h Length: 0000C694h
    ACPICA.NLM ACPI Component Architecture for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 8A0B7000h Length: 0002BA90h
    Data Address: 8A0E3000h Length: 00011C74h
    ACPIASL.NLM ACPI Architecture Services Layer for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Code Address: 89722000h Length: 00000F9Bh
    Data Address: 89723000h Length: 0000019Ch
    EHCIDRV.CAD Novell Universal Serial Bus EHCI driver
    Version 1.05 12 September 2005
    Code Address: 8974F000h Length: 00004C11h
    Data Address: 00FFC000h Length: 00000B18h
    UHCIDRV.CAD Novell Universal Serial Bus UHCI driver
    Version 1.07 24 October 2005
    Code Address: 89733000h Length: 00004F5Bh

    Thanks Andrew and Burkhard for your input.
    I have applied the TCP681K patch which has the versions 6.91.03 ..09 and 04 and it helped for the last 3 days .We did not have an abend since they run.
    This particular server had been quite nicely running for months and I am still intrigued what triggered these abends.
    Was it load on BM , as we now see 1 GB per day being pumped through the proxy server or is it more likely a rogue packet from a nasty website ?
    There were no recent configuration changes but the general LAN activity had increased in more recent times to 5 million packets per day .
    I will apply SP8 et alia ASAP and report back.
    Regards
    Dieter

  • HI YANN/VADIM...Still having problem in BADIs...please help me out

    Hi Yann/Vadim,
    Facing a problem in BADI can u please help me out...
    I am implementing sourcing dashboard.
    I am facing problem while implementing the badi BBP_ECS_PO_OUT_BADI in SRM. and BBP_PO_INBOUND_BADI in R3.
    i have written following code in BBP_ECS_PO_OUT_BADI in SRM
    method IF_EX_BBP_ECS_PO_OUT_BADI~BBP_B46B_PO_OUTBOUND.
    data : ls_item type BBP_PDS_PO_ITEM_D.
    data : w_customer_fields type BBPS_IF_CUSTOMER_FIELDS_PI.
    move 'POITEM' to w_customer_fields-refobject.
    move 'CATALOGID' to w_customer_fields-fieldname.
    move ls_item-catalogid to w_customer_fields-container.
    append w_customer_fields to ct_bapi_customer_fields.
    endmethod.
    i have created field zsrmcatalogid field in R3 in EKPO table.and i am now implementing the Badi in R3 for BBP_PO_INBOUND_BADI .....in extended classic scenario.
    i have written following code in R3 BADI
    method IF_EX_BBP_PO_INBOUND_BADI~BBP_MAP_BEFORE_BAPI.
    data : wa_customer_fields type bbps_if_customer_fields,
    wa_bapi_te_mepoitem type bapi_te_mepoitem,
    wa_bapi_te_mepoitemx type bapi_te_mepoitemx,
    wa_extensionin type bapiparex.
    data : txt_960(960) type c.
    read table bbp_customer_fields into wa_customer_fields with key
    refobject = 'POITEM' fieldname = 'CATALOGID'.
    if sy-subrc eq 0.
    move wa_customer_fields-container TO
    wa_bapi_te_mepoitem-zsrmcatalogid.
    wa_bapi_te_mepoitemx-zsrmcatalogid = 'X'.
    endif.
    clear txt_960.
    clear wa_extensionin.
    write wa_bapi_te_mepoitem to txt_960 left-justified.
    wa_extensionin-structure = 'BAPI_TE_MEPOITEM'.
    wa_extensionin-valuepart1 = txt_960(240).
    wa_extensionin-valuepart2 = txt_960+240(240).
    wa_extensionin-valuepart3 = txt_960+480(240).
    wa_extensionin-valuepart4 = txt_960+720(240).
    append wa_extensionin to bapi_extensionin.
    clear txt_960.
    clear wa_extensionin.
    write wa_bapi_te_mepoitemx to txt_960 left-justified.
    wa_extensionin-structure = 'BAPI_TE_MEPOITEMX'.
    wa_extensionin-valuepart1 = txt_960(240).
    wa_extensionin-valuepart2 = txt_960+240(240).
    wa_extensionin-valuepart3 = txt_960+480(240).
    wa_extensionin-valuepart4 = txt_960+720(240).
    append wa_extensionin to bapi_extensionin.
    endmethod.
    But its not working...
    The PO details are not passed from SRM to R3.......
    PLEASE CAN U GIVE ME EXACT CODE FOR CHANGES TO BE MADE IN THIS BADI ..AS IT IS NOT WORKING...
    Can anybody help me regarding how to debug the BADI in R3.
    Thanks in Advance...

    Hi Ravi,
    You can transfer the standard SRM catalog ID field to R/3 tracking number field (if not already used for another purpose) in the R/3 PO.
    This will avoid to implement the R/3 inbound bapi.
    Here is an extract of the code.
    The ECS PO badi example was here used to transfer the unlimited delivery flag to R/3 PO for a Z combination of criteria as well as the transfer of <b>catalog ID</b> to <b>tracking number field</b> in R/3 PO :
    method IF_EX_BBP_ECS_PO_OUT_BADI~BBP_B46B_PO_OUTBOUND.
    update unlimited delivery flag in R3 PO for combination of vendor +
    Product Category maintained in the bespoke table ZUD_PC_VNDR ..
      LOOP AT ct_bapi_poitem INTO ls_bapi_poitem.
        lv_tabix = sy-tabix.
        IF ls_bapi_poitem-po_item IS NOT INITIAL.
          READ TABLE it_item INTO ls_item
               WITH KEY number_int = ls_bapi_poitem-po_item
                          del_ind    = ' '.
          IF sy-subrc = 0.
    Set Unlimited delivery Flag
            read table li_zud_pc_vndr into ls_zud_pc_vndr
                            with key partner       = ls_partner-PARTNER_ID
                                       category_id = ls_item-category_id.
            if sy-subrc eq 0.
              ls_bapi_poitem-UNLIMITED_DLV = 'X'.
            endif.
    Set the Dummy catalog.. entry..
            if ls_item-catalogid eq c_dummy.
              ls_bapi_poitem-TRACKINGNO = c_noncat.
            endif.
            ls_bapi_poitem-GR_BASEDIV = ' '.
            modify ct_bapi_poitem from ls_bapi_poitem index lv_tabix
                          transporting UNLIMITED_DLV TRACKINGNO GR_BASEDIV.
          ENDIF. "READ TABLE it_item ..
        ENDIF.   "IF ls_bapi_poitem-po_item ..
      ENDLOOP.   "LOOP AT ct_bapi_poitem ..
    endmethod.
    Kind regards,
    Yann
    PS : please do reward helpful answers ))

  • Problem in BADI, error message not getting displayed

    Hello Experts,
    I am facing a strange problem in BADI.
    The requirement is that the user should not be allowed to change the plant field
    on the screen of standard MM transctions for PO/PR amendment.
    I have written the code in separate BADIs for PO and PR.
    I am displaying an error message if the user tries to change the field.
    For PO, it is working fine.But for PR, the same code is not working.
    The control is going over to the BADI for PR and rest of the code is working fine.
    But the error message is not getting displayed for PR amendment.
    Can anybody please suggest the possible cause of problem and some solution to it.
    Thanks in advance.

    Hi
    See the sample BADI code for PR which raises an exceptions and do accordingly
    BAdI Name: ZPUR_RFQ (Implementation name) Purchase Requisitions
    Definition Name: ME_REQ_POSTED
    Interface Name : IF_EX_ME_REQ_POSTED
    Implementing Class: ZCL_IM_PUR_REQ
    Method :            POSTED
    METHOD if_ex_me_req_posted~posted .
      DATA : v_mtart TYPE mtart.
      DATA l_s_eban TYPE ueban.
      LOOP AT im_eban INTO l_s_eban.
        IF l_s_eban-estkz NE 'B'.
          CLEAR v_mtart.
          SELECT SINGLE  mtart INTO v_mtart FROM mara WHERE matnr = l_s_eban-matnr.
          IF v_mtart EQ 'ZERS' OR v_mtart EQ 'FHMI' OR v_mtart EQ 'UNBW'.
            MESSAGE e000(zm_msg) WITH 'You are not allowed' 'to create PR for stock items'.
          ENDIF.
        ENDIF.
        IF  l_s_eban-knttp NE 'F' OR l_s_eban-pstyp NE '9'.
          IF l_s_eban-knttp NE 'A'.
            IF ( l_s_eban-pstyp NE '9' AND l_s_eban-pstyp NE 'D' ) 
               AND l_s_eban-matnr EQ space.
              MESSAGE e000(zm_msg) WITH 'You cannot create'
                'a PR without material number'.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMETHOD.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How to pass a date parameter from report builder query designer to oracle database

    i'm using report builder 3.0 connected to oracle database. i'm trying to pass a date parameter in the query with no success, i don't
    know the exact syntax. I've tried :
    SELECT * FROM igeneral.GCL_CLAIMS where CREATED_BY IN (:CREATED_BY) AND CLAIM_YEAR IN(:UW_YEAR) AND (LOSS_DATE) >To_Date('01/01/2014','mm/dd/yyyy')
    it worked perfectly.
    However if i try to put a date parameter "From" instead of 01/01/2014 it will not work, a Define Query Parameter popup window appear and error occurred after i fill
    the values (usually i shouldnt get this popup i should enter the value when i run the report)
    SELECT * FROM igeneral.GCL_CLAIMS where CREATED_BY IN (:CREATED_BY) AND CLAIM_YEAR IN(:UW_YEAR) AND (LOSS_DATE) >To_Date(:From,'mm/dd/yyyy')
    appreciate your assistance

    Hi Gorgo,
    According to your description, you have problem when in passing a parameter for running a Oracle Query. Right?
    Based on my knowledge, it use "&" as synax for parameter in Oracle, like we use "@" in SQL Server. In this scenario, maybe you can try '01/01/2014' when inputing in "From". We are not sure if there's any limitation for To_Date()
    function. For your self-testing, you can try the query in sqlplus/sql delveloper. Since your issue is related to Oracle query, we suggest you post this thread onto Oracle forum.
    Best Regards,
    Simon Hou

  • How to pass delivery date through BAPI while creating a sale order

    Dear frndz,
         I am using 'BAPI_SALESORDER_CREATEFROMDAT1'
    to create a sale order .
        I don't have any problem..
        But I have to pass schedule line delivery date through this bapi .
       I used REQ_DATE in structure BAPISCHDL.
       But I can' t get it.
       Through which parameter can i meet this..
       The sale order should be created line item wise along with my delivery date..
      Any suggestions...
    regards.
    siva

    Dear frnd,
        Danq for your response..I can't use DLV_DATE for this requirement..
        But I used REQ_DATE in the structure BAPISCHEDULE .
       I came to know that the problem i faced previously  was only
    internal data conversion.
        Now am able to pass my delivery date..
        so I am closing the thread..
    Regards.
    siva

  • How to pass the  data to field of  table.

    I want to pass the data to the fields of table. I want it with codes.

    Hi sindu,
    First of all Welcome to SCN.
    I hope you need to Read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting more.
    There are lots of resources available already here, so have a habit of searching before posting a question.
    Also while posting a question ensure that you include the following details;
    1) what is your requirement?
    2) How you are doing it?
    3) Where are you struck?
    4) What have you done to overcome the problem?
    5) The part of code that needs troubleshooting.
    Regards
    Karthik D

  • Passing a Date value from a BI Dashboard prompt to a BI Publisher param

    Hello everyone,
    I have a dashboard page with a Date (type: Date). This date is linked with a presentation variable vpres_datedanssemaine.
    In my time dimension (name: Date) I have 3 columns:
    -"Date" which is the date
    -"Lundi de semaine" ("Monday of the week") which is the monday of the week whose includes "Date"
    -"Dimanche de semaine" ("Sunday of the week") (you understand the purpose...)
    (Weeks go from Monday to Sunday)
    It works perfectly in BI answers when I use this filter :
    "Lundi de semaine" lesser than or equal to @{vpres_datedanssemaine}
    AND "Dimanche de semaine" greater than or equal to @{vpres_datedanssemaine}
    The problem arises when I try to substitute the BI Answer report by a Publisher one in the Dashboard.
    The publisher report defines a parameter:
    -Name: vpres_datedanssemaine
    -Data Type: Date
    -Parameter type: Date
    -Date format string: yyyyy-MM-dd HH-mm-ss
    The filter we use
    Date."Lundi de semaine" <= :vpres_datedanssemaine AND
    Date."Dimanche de semaine" >= :vpres_datedanssemaine
    When we run the dashboard page, we get an error " Error can be displayed due to an error. Contact an administrator".
    Do you see an error anywhere?
    Did someone manage to pass a Date from a dashboard prompt to a BI Publisher parameter?
    Thanks
    Edited by: Jerome D on Jan 23, 2009 10:06 AM

    Hi
    see whether this is helpful or not for you...
    http://oraclebizint.wordpress.com/2007/10/19/oracle-bi-ee-101332-dashboard-prompts-and-bi-publisher/
    Thanks & Regards
    Kishore Guggilla

  • Storing resultset data to vector and then passing this data to JList

    hi every body I am facing this problem since two days I tried but could't get correctly,I am new to java and I need to pass the result set data from the database to a JList having JCheckBox
    I think I need to store the resulsetdata to a vector or array
    I tried but could't solve the problem
    I tried but could't get it
    please do help me out
    need some sample code for passing resultset data to JList having JCheckBox anybody please help me out
    thanking you,
    with regards

    hi guys any body please help me out
    need a sample code for the first thread which i had the problems
    trying but could't get that correctly,please please do help me out,
    do help me out as I am new to java need some code snippet java gurus
    thanking you,
    with regards

  • ICal Alarm - Pass Event data to AppleScript?

    Is there a way that a script called by an iCal alarm can be passed event data as parameters?

    This is a quick one I knocked up a while back to see if it was possible. The problem is that iCal doesn't tell the script what event triggered it, so you have to go looking ...
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">(*
    called from iCal as on alarm, will speak the title of the alarm event
    won't work for repeating events
    AK ITCarlow Nov 2004
    set Now to current date
    -- Adjust FuzzSeconds to suit; if too big, close events will speak several times
    set FuzzSeconds to 15
    tell application "iCal"
    set MyEvents to every event of every calendar where ((start date of it) ≥ (current date))
    repeat with ThisEvent in MyEvents --scan the list looking for events that have triggered us
    try
    set MinutesBefore to (trigger interval of open file alarm of ThisEvent) as number
    set TriggerInt to (Now - ((start date of ThisEvent) + 60 * MinutesBefore)) --notionally 0 for firing event
    if (TriggerInt < FuzzSeconds) and (TriggerInt > (-FuzzSeconds)) then
    say (summary of ThisEvent as text) & " at " & (start date of ThisEvent as text)
    --could say other fields too eg location, description ...
    end if
    end try
    end repeat
    end tell
    </pre>
    AK

  • Passing XMLType Data into oracle stored procedure using JDBC

    Hi Friends,
    I have requirement where my oracle stored procedure accepts XML file as an input. This XML File is generated in runtime using java, I need to pass that xml file using JDBC to oracle stored procedure. Please let me know the fesibile solution for this problem.
    Following are the environment details
    JDK Version: 1.6
    Oracle: 10g
    Server: Tomcat 6.x
    Thanks in Advance

    user4898687 wrote:
    I have requirement where my oracle stored procedure accepts XML file as an input. This XML File is generated in runtime using java, I need to pass that xml file using JDBC to oracle stored procedure. Please let me know the fesibile solution for this problem.As stated - no.
    A 'file' is a file system entity. There is no way to pass a 'file' anywhere. Not PL/SQL. Not java.
    Now you can pass a file path (a string) in java and to PL/SQL.
    Or you can pass xml data (a string) in java and to PL/SQL. For PL/SQL you could use eithe a varchar2, if the xml is rather small, or a blob/clob.

  • How to Pass Multiple data records into SDATA for a segment

    Hi Friends,
    I need to Pass data records to Function Module
    MASTER_IDOC_DISTRIBUTE for Creating Outbound IDOCs
    I am Collecting all the Data Records and Passing into the Structure EDIDC.
    Here my problem is
    For one Route there are Multiple Customer records.
    so my First Parent Segment is ZROUTE
    i am passing the Datarecord for this Segment.
    and for the Customer Segment , I have 5 Customers,
    so i am passing the 5 Data records to SDATA .
    Loop at gt_route into gw_route.
    Pass the Route data into the Data record SDATA
      gw_idocdata-sdata    = gw_route_header.
      gw_idocdata-segnam = lc_route_header.
      gw_idocdata-hlevel = lc_4.
      APPEND gw_idocdata TO gt_idocdata.
      CLEAR : gw_route_header, gw_idocdata.
    Loop at gt_customer into gw_customer
                                   where anlage  = gw_route-anlage.
    Pass the Customer data into the Data record SDATA
      gw_idocdata-sdata  = gw_customer.
      gw_idocdata-segnam = lc_customer.
      gw_idocdata-hlevel = lc_5.
      APPEND gw_idocdata TO gt_idocdata.
      CLEAR : gw_customer, gw_idocdata.
    ENDLOOP
    ENDLOOP.
    So this customer segment is comming 5 times in my IDOC
    Can any one suggest me whether i am going in correct way or not.
    I am Getting the IDOC status 26.
    Error during syntax check of IDoc (outbound)
    I think it is because the IDOC is not yet SET RELEASE.
    But i am having the Dought in Passing the data to SDATA fied
    of the EDIDC Structure.
    Can any one Suggest me.
    Thanks in Advance,
    Ganesh

    Hi,
    First of all EDIDC is the control record, EDID4 is the data record. When collecting customer record into idoc_data you need to insert customer's parent segment number.
    Eg.
    route1, segnum 1.
       child 1, segnum 2 and parent segnum = 1
       child 2, segnum 3 and parent segnum = 1
       child 3, segnum 4 and parent segnum = 1
    route 2, segnum 5
       child 1, segnum 6 and parent segnum = 5
       child 2, segnum 7 and parent segnum = 5
       child 3, segnum 8 and parent segnum = 5
    Cheers.
    ...Reward if useful.

Maybe you are looking for

  • Permission level ruleset download.

    Hi, We have unmitigated risks showed up when the risk analysis is done by action level, and those transactions showed up in the   transaction usage history(stats) reports, but we use permission level risk analysis in AE and CC, so these risks dont sh

  • Help filling out PDF - How can I get text to fit in text boxes?

    I need to fill out an application that is in the PDF format. When I filled it out, there were a few text boxes where the text did not wrap around. In other words, some of the text doesn't show. There is not enough space for what I typed. When I print

  • XML News content modification problem in Portal application

    Hi, We are trying to update the xml news content in Portal application with KM API. We are getting following exception while updating the content. javax.xml.transform.TransformerException: Namespace fixup failed. Prefix 'xsi' used in attribute 'xsi:n

  • Struts: saveToken, restToken, isTokenValid, and isCancelled

    Dear Struts users, Although there are so many examples in internet, I could not really understand when and how to use "saveToken, restToken, isTokenValid, and isCancelled" in a Struts DispatchAction class. I would appreciate any explaination in order

  • HT1689 What is the meaning of the small arrow icon top right corner, please.

    I am puzzled by the arrow icon at the top right corner of my iPad.  Bluetooth, capacity used and battery condition are self-explanatory, but the arrow icon?