Control flush error in gui_download

Hi All,
I get a control flush error while trying to use the FM GUI_DOWNLOAD
in my BSP Application.
Can anyone suggest the possible cause and solution?

Dear Raja,
I used the code given in one of the posts:
ITAB contains my data so..
LOOP AT ITAB INTO WA.
CONCATENATE L_STRING WA-PARTNER
WA-ADR_KIND
WA-ADDRNUMBER
CL_ABAP_CHAR_UTILITIES=>CR_LF
INTO L_STRING SEPARATED BY SPACE.
ENDLOOP.
APP_TYPE = 'APPLICATION/MSEXCEL'.
call function 'SCMS_STRING_TO_XSTRING'
exporting
text = l_string
MIMETYPE = APP_TYPE
IMPORTING
BUFFER = l_xstring
EXCEPTIONS
FAILED = 1
OTHERS = 2
response->set_header_field( name = 'content-type'
value = APP_TYPE ).
some Browsers have caching problems when loading Excel format
response->delete_header_field( name =
if_http_header_fields=>cache_control ).
response->delete_header_field( name =
if_http_header_fields=>expires ).
response->delete_header_field( name =
if_http_header_fields=>pragma ).
start Excel viewer either in the Browser or as a separate window
response->set_header_field(
name = 'content-disposition'
value = 'attachment;
filename=webforms.xls' ).
finally display Excel format in Browser
l_len = xstrlen( l_xstring ).
response->set_data( data = l_xstring
length = l_len ).
navigation->response_complete( ).
But I'm getting runtime errors in the line
response->set_header_field( name = 'content-type'
value = APP_TYPE ).
Do you have any idea about how to correct it?
Or, could you please suggest a simpler method?

Similar Messages

  • Control Flush Error

    Hi,
    I am using GUI_DOWNLOAD FM inside my program. I need to download the internal table into 'dbf' file format. But while executing I am getting sy-subrc = 21 which is 'CONTROL FLUSH ERROR'. Could anyone please help me on this issue?
    Regards,
    Gunasree

    Hi,
    Structure of internal table ITAB is  
    FIELD1  CHAR 18
    FIELD2  CHAR 18
    FIELD3  CHAR 40
    FIELD4  CHAR 40
    FIELD5  CHAR 10
    FIELD6  CHAR 40
    FIELD7  CHAR 12
    FIELD8  DATS  8
    FIELD9  CHAR 10
    Actually all this code lies into the RFC in which data is coming from oracle through XI.
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                  =
          filename                      = p_path
          filetype                      = 'ASC'
      APPEND                        = ' '
      WRITE_FIELD_SEPARATOR         = ' '
      HEADER                        = '00'
      TRUNC_TRAILING_BLANKS         = ' '
      WRITE_LF                      = 'X'
      COL_SELECT                    = ' '
      COL_SELECT_MASK               = ' '
      DAT_MODE                      = ' '
      CONFIRM_OVERWRITE             = ' '
      NO_AUTH_CHECK                 = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      WRITE_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
        TABLES
    *{   REPLACE        RESK900114                                        2
    *\      data_tab                      = p_mfg_diff
          data_tab                      = ITAB[]
    *}   REPLACE
       EXCEPTIONS
         file_write_error              = 1
         no_batch                      = 2
         gui_refuse_filetransfer       = 3
         invalid_type                  = 4
         no_authority                  = 5
         unknown_error                 = 6
         header_not_allowed            = 7
         separator_not_allowed         = 8
         filesize_not_allowed          = 9
         header_too_long               = 10
         dp_error_create               = 11
         dp_error_send                 = 12
         dp_error_write                = 13
         unknown_dp_error              = 14
         access_denied                 = 15
         dp_out_of_memory              = 16
         disk_full                     = 17
         dp_timeout                    = 18
         file_not_found                = 19
         dataprovider_exception        = 20
         control_flush_error           = 21
         OTHERS                        = 22
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Thanxs
    Gunasree

  • How to remove control flush error

    hi
    basically i m devloping one application with lotus notes domino serve
    i made one bapi in which i m using <b>gui_download</b>   function modul
    when i m running my bapi in SAP environment  which i devloped its working fine
    not any kind of exception is generating pdf file also genearting and my bapi saving it into c:/
    no problem with sap gui.
    but when i m trying to run my bapi in which i used <b>gui_download</b> functon module  in this function module one exception is there  <b>control fulsh erro</b>
    is generating.
    so how can i remove this exception when i m tring to run this bapi from lotus notes domino mail server.
    help
    thanks in advanced.

    Hi,
    control errors come often with old SAP GUI version, have you installed the newest GUI patches? Also patch all other components which might have something (remotely) to do with this (operating system, explorer, JAVA,...) - and if still errors occurs, a OSS message might bring help for you.
    Regards,
    Christian

  • Control File error while duplicating Database through Rman

    Hi,
    Oracle Ver: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    Os:Win Xp
    I am trying to create a Standby through Rman....
    I am using this Run Block to take backup of Primary Database.......
    run {
    allocate channel d1 type disk;
    allocate channel d2 type disk;
    setlimit channel d1 kbytes 2097150;
    setlimit channel d2 kbytes 2097150;
    backup incremental level 0 format 'e:\Oracle\standby\rman\df_%U' database
    include current controlfile for standby;
    sql "alter system archive log current";
    backup
    archivelog all format 'e:\Oracle\standby\rman\al_%U' delete input;
    }After taking the Backup when I am trying to create the standby with Duplicate command it s giving me Error...
    The Run Block I am using is ......
    RMAN> run {
    2> allocate auxiliary channel dup1 type disk;
    3> allocate auxiliary channel dup2 type disk;
    4> set newname for datafile 1 to 'E:\Oracle\standby\system01.dbf';
    5> set newname for datafile 2 to 'E:\Oracle\standby\UNDOTBS01.DBF';
    6> set newname for datafile 3 to 'E:\Oracle\standby\SYSAUX01.DBF';
    7> set newname for datafile 4 to 'E:\Oracle\standby\USERS01.DBF';
    8> duplicate target database for standby
    9> dorecover;
    10> }
    allocated channel: dup1
    channel dup1: sid=37 devtype=DISK
    allocated channel: dup2
    channel dup2: sid=36 devtype=DISK
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting Duplicate Db at 02-OCT-08
    contents of Memory Script:
       set until scn  1105194;
       restore clone standby controlfile;
       sql clone 'alter database mount standby database';
    executing Memory Script
    executing command: SET until clause
    Starting restore at 02-OCT-08
    channel dup1: starting datafile backupset restore
    channel dup1: restoring control file
    channel dup1: reading from backup piece E:\ORACLE\STANDBY\RMAN\DF_0VJS4RS7_1_1
    channel dup1: restored backup piece 1
    piece handle=E:\ORACLE\STANDBY\RMAN\DF_0VJS4RS7_1_1 tag=TAG20081002T124502
    channel dup1: restore complete, elapsed time: 00:00:01
    output filename=D:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\CTL1STANDBY.ORA
    Finished restore at 02-OCT-08
    sql statement: alter database mount standby database
    released channel: dup1
    released channel: dup2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 10/02/2008 13:01:43
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of sql command on clone_default channel at 10/02/2008 13:01:43
    RMAN-11003: failure during parse/execution of SQL statement: alter database mount standby database
    *ORA-00201: control file version 10.2.0.1.0 incompatible with ORACLE version 10.2.0.0.0*
    ORA-00202: control file: 'D:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\CTL1STANDBY.ORA'Why i am getting this Incomaptable Control File error inspite of Backing up the control File.....
    Regards,
    Prosenjit Mukherjee

    Check the value for the parameter "COMPATIBLE" in the source and standby database instance parameter files.
    "COMPATIBLE" should be the same.
    See http://download.oracle.com/docs/cd/B19306_01/server.102/b14239/create_ps.htm#i70517
    "... ensure the COMPATIBLE initialization parameter is set to the same value on both the primary and standby databases"
    Edited by: Hemant K Chitale on Oct 2, 2008 4:09 PM
    Added link and quote from 10g doc

  • Need create a new control key, which message control is "error mode", then PR or PO

    Hi All,
    Can please help me I got an issue in QM ,
    Issue Description :-  Current QM control key for supplier validation date is “0001”, the message mode is only warning. PR or PO still can be created forcibly. Need create a new control key, which message control is “error mode”, then PR or PO cannot be created successfully.
    I thing should add some additional logic using BADI or USER-EXIT.
    can please help me how to find BADI or USER-EXIT if you know the appropriate BADI please let me know.
    Regards,
    Nani

    Hi,
    I tried that way I entered message control as Defect even purchase requisition is created how can I restricted purchase request ion.
    Regards,
    Nani.   

  • RH_START_EXCEL_WITH_DATA - System Error:unknown error when GUI_DOWNLOAD is

    Hi,
    I am using FM 'RH_START_EXCEL_WITH_DATA' to download data of an internal table to excel sheet.
    I'm passing the filename, internal table as mentioned below:
    CALL FUNCTION 'RH_START_EXCEL_WITH_DATA'
    EXPORTING
    DATA_FILENAME         = v_xls_file
    DATA_PATH_FLAG     = 'W'
    DATA_TABLE              = i_test[].
    But I am getting this following error:
    System Error: unknown error when GUI_DOWNLOAD is called.
    Thanks in advance.

    Hey Wincy , If you want to download Internal Table's data in to Excel just use the Method
    cl_gui_frontend_services=>gui_download....
    If you need any code assistance kindly Let me know. although  the method is easy to use and Works fine.

  • How to control the error messages (like Application..) in visual composer?

    hi
    is it possible to control the error message?
    After creating the delivery using a BAPI function,
    the return message is displayed in the table list if the transaction is succeeded.
    But the error occurred, dialog box is showed (Application Message).
    I just want to show the error message like being succeed in.
    Regards,
    Wooho.

    Hi
    You can try and use guard conditions or check the table for data, if there is no data in the table the application will return an error message.
    Jarrod Williams

  • Event 7024, Service Control Manager Error %%16842771

    Am running Windows Server 2008 R2 OS.  I received a Service Control Manager error, event ID 7024 with an error code of
    %%16842771 when trying to stop the PlanetPress Suite Messenger 7 service.  Does anyone know what this error code of
    %%16842771 means and/or how to fix it?  Is there somewhere that I can look up these codes?  Here are the details:
    System
    Provider
    [ Name]
    Service Control Manager
    [ Guid]
    {555908d1-a6d7-4695-8e1e-26931d2012f4}
    [ EventSourceName]
    Service Control Manager
    EventID
    7024
    [ Qualifiers]
    49152
    Version
    0
    Level
    2
    Task
    0
    Opcode
    0
    Keywords
    0x8080000000000000
    TimeCreated
    [ SystemTime]
    2013-12-03T16:40:51.395984800Z
    EventRecordID
    33920
    Correlation
    Execution
    [ ProcessID]
    512
    [ ThreadID]
    11744
    Channel
    System
    Computer
    AXE1PPS02P.axe.anixter.com
    Security
    EventData
    param1
    PlanetPress Suite Messenger 7
    param2
    %%16842771
    Thanks,
    Laurie

    The error code may be linked to application (PlanetPress Suite Messenger 7).
    So seek help from application vendor once.
    Regards, Ravikumar P

  • [SOLVED] NetworkManager "not authorized to control networking" error

    I'm installing arch with XFCE on an eeepc-1005ha. My wired ethernet works fine, both with dhcpcd eth0 and the NetworkManager (which connects automatically on boot). I'm following the instructions from this link: https://wiki.archlinux.org/index.php/Ne … nager#XFCE
    I installed the NetworkManager and the xfce notify package. From the configuration setting part of the linked page, I disabled my internet connections with these commands:
    ip link set down eth0
    ip link set down wlan0
    I added NetworkManager to the DAEMONS array, after dbus, per the instructions. I still get a "not authorized to control networking" error when I select a wireless network, so I followed the troubleshooting instructions. This is my .xinitrc file:
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    # exec gnome-session
    # exec startkde
    exec startxfce4 --with-ck-launch
    #exec ck-launch-session dbus-launch startxfce4
    # ...or the Window Manager of your choice
    The exec line that's not commented out comes from the XFCE configuration instructions. The troubleshooting instructions for NetworkManager say to add
    exec ck-launch-session wm
    to .xinitrc, where wm is whatever window manager I'm using. Should
    exec ck-launch-session startxfce4
    or
    exec dbus-launch ck-launch-session startxfce4
    work? Neither of those options, nor the commented exec line in .xinitrc work.
    Finally, I followed the NetworkManager troubleshooting instructions and added my user to the wheel group, using this command:
    gpasswd -a myusername wheel
    After a reboot, everything else still works (wired ethernet, xfce4, etc.) but the error upon connecting to wireless is still the same.
    Any ideas? My user (username: myusername) does have full sudo privileges for this hostname.
    Last edited by pythonscript (2012-05-22 18:41:41)

    Both my flatmate and I are having this problem too, I am using openbox with consolekit and he is using awesome, again with consolekit.
    We both use slim, me through inittab and he through the slim daemon.
    By the way, it used to work, and has for around a year until now.
    My outputs from ck-list-sessions:
    Session1:
    unix-user = '1000'
    realname = '(null)'
    seat = 'Seat1'
    session-type = 'x11'
    active = TRUE
    x11-display = ':0.0'
    x11-display-device = '/dev/tty7'
    display-device = ''
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-05-17T07:56:42.199869Z'
    login-session-id = '1'
    Session2:
    unix-user = '1000'
    realname = '(null)'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ':0.0'
    x11-display-device = '/dev/tty7'
    display-device = ''
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-05-17T07:56:43.178151Z'
    login-session-id = '1'
    Last edited by tntexplosivesltd (2012-05-17 10:37:04)

  • AI Control gives error: 10452 occurred at AI control. Possible reasons: NI-DAQ LV no interrupt level is available for use.

    How can I run out of interrupts while accessing my DAQPad? Does
    the community have troubleshooting suggestions?

    You don't say which DAQpad. If this is a device on your parallel port then
    you will need to make sure that the parallel port has an interrupt assigned
    and not just a base address.
    Check out the following from the NI Knowledgebase:
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/bf7960eb90
    ef882a8625654e007d8b1a?OpenDocument
    Ian
    "Riverside Consulting, LLC" wrote in message
    news:[email protected]..
    > AI Control gives error: 10452 occurred at AI control. Possible
    > reasons: NI-DAQ LV no interrupt level is available for use.
    >
    > How can I run out of interrupts while accessing my DAQPad? Does
    > the community have troubleshooting suggestions?

  • After Mavericks upgrade, Parental Controls shows error

    When trying to change settings in Parental Controls for a user, it shows "error occurred in Parental Controls pane".  The prevous OS was Lion and I was using Parental Controls to limit the hours for the user.

    One more with the same problem - here is the log file that the issue generated I hope this helpsAfter Mavericks upgrade, Parental Controls shows error 
    3/25/14 9:48:24.372 PM com.apple.preferences.parentalcontrols.remoteservice[733]: Parental Controls Pref Remote Service launching
    3/25/14 9:48:24.404 PM com.apple.preferences.parentalcontrols.remoteservice[733]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    3/25/14 9:48:24.422 PM com.apple.preferences.parentalcontrols.remoteservice[733]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    3/25/14 9:48:24.556 PM com.apple.preferences.parentalcontrols.remoteservice[733]: GetICUWeekdayWeekendInfo [773] -- *** ICU lookup failed, using default values
    3/25/14 9:48:25.219 PM com.apple.preferences.parentalcontrols.remoteservice[733]: Bogus event received by listener connection:
    <error: 0x7fff749e1b50> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x7fff749e1e60> { length = 18, contents = "Connection invalid" }
    3/25/14 9:48:33.854 PM launchservicesd[53]: Application App:"System Preferences" asn:0x0-72072 pid:700 refs=8 @ 0x7fec18425960 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x79079 pid=735 "SecurityAgent"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100005/0x186a5 queue
    3/25/14 9:48:33.854 PM WindowServer[128]: [cps/setfront] Failed setting the front application to System Preferences, psn 0x0-0x72072, securitySessionID=0x186a5, err=-13066
    3/25/14 9:48:54.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1099c8000): p=733[com.apple.prefer] final status 0x1000a00, denying page sending SIGKILL
    3/25/14 9:48:54.000 PM kernel[0]: CODE SIGNING: process 733[com.apple.prefer]: rejecting invalid page at address 0x1099c8000 from offset 0x1000 in file "/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/MacO S/ksadmin" (cs_mtime:1337806864.0 == mtime:1337806864.0) (signed:1 validated:1 tainted:1 wpmapped:0 slid:0)
    3/25/14 9:48:54.829 PM System Preferences[700]: view service marshal for <NSRemoteView: 0x7fd42853b640> failed to order out windows in service window group for which service is presenter due to Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x600000664b80 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.}
    timestamp: 21:48:54.829 Tuesday 25 March 2014
    process/thread/queue: System Preferences (700) / 0x101a64000 / com.apple.NSXPCConnection.user.endpoint
    code: line 2972 of /SourceCache/ViewBridge/ViewBridge-46.2/NSRemoteView.m in __57-[NSRemoteView viewServiceMarshalProxy:withErrorHandler:]_block_invoke
    domain: communications-failure
    3/25/14 9:48:54.845 PM com.apple.launchd[1]: (com.apple.preferences.parentalcontrols.remoteservice[733]) Exited: Killed: 9
    3/25/14 9:48:55.111 PM ReportCrash[737]: Saved crash report for com.apple.preferences.parentalcontrols.remoteservice[733] version 1.0 (1.0) to /Users/robert/Library/Logs/DiagnosticReports/com.apple.preferences.parentalcont rols.remoteservice_2014-03-25-214855_Primo-Mac-5.crash
    3/25/14 9:50:55.479 PM com.apple.preferences.parentalcontrols.remoteservice[743]: Parental Controls Pref Remote Service launching
    3/25/14 9:50:55.510 PM com.apple.preferences.parentalcontrols.remoteservice[743]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    3/25/14 9:50:55.526 PM com.apple.preferences.parentalcontrols.remoteservice[743]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    3/25/14 9:50:55.720 PM com.apple.preferences.parentalcontrols.remoteservice[743]: GetICUWeekdayWeekendInfo [773] -- *** ICU lookup failed, using default values
    3/25/14 9:50:56.339 PM com.apple.preferences.parentalcontrols.remoteservice[743]: Bogus event received by listener connection:
    <error: 0x7fff749e1b50> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x7fff749e1e60> { length = 18, contents = "Connection invalid" }

  • Error in GUI_DOWNLOAD

    hi everybody
    do u know why we get the error "Error Calling Data Provider" when downloading a file using the fm 'GUI_DOWNLOAD

    Hi Sia Anjali,
    Use this code to download your records into a text file (.txt).
    Its working.
    REPORT  Z_VENDRP.
    ***********************************************Type declaration****************************************************
    TYPES : BEGIN OF VENDOR,
            LIFNR LIKE RF02K-LIFNR,
            BUKRS LIKE RF02K-BUKRS,
            EKORG LIKE RF02K-EKORG,
            KTOKK LIKE RF02K-KTOKK,
            ANRED LIKE LFA1-ANRED,
            NAME1 LIKE LFA1-NAME1,
            SORTL LIKE LFA1-SORTL,
            LAND1 LIKE LFA1-LAND1,
            SPRAS LIKE LFA1-SPRAS,
            WAERS LIKE LFM1-WAERS,
            END OF VENDOR.
    ******************************************Internal Table declaration***********************************************
    DATA : VENDOR_TAB TYPE STANDARD TABLE OF VENDOR INITIAL SIZE 10 WITH HEADER LINE.
    START-OF-SELECTION.
    ***************************************Select query into internal table********************************************
    SELECT ALIFNR BBUKRS CEKORG AKTOKK AANRED ANAME1 ASORTL ALAND1 ASPRAS CWAERS
    FROM ( LFA1 AS A JOIN LFB1 AS B ON ALIFNR = BLIFNR )
    JOIN LFM1 AS C ON ALIFNR = CLIFNR
    INTO TABLE VENDOR_TAB.
    *********************************Use GUI_DOWNLOAD Function Module***************************************
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
         FILENAME                        = 'C:/Vendors1.txt'    "File name
         FILETYPE                        = 'DAT'                     "File type
        TABLES
          DATA_TAB                        = VENDOR_TAB.     "internal table (data to be passed)
      IF SY-SUBRC <> 0.
      ENDIF.
    Hope this solves your problem.
    Thanks & Regards.
    Tarun Gambhir.

  • Error in GUI_DOWNLOAD in background processing

    Hi All,
             We have a program that is using GUI_DOWNLOAD to download the results in text and .dbf format. In foreground it is working fine.But  in background the job is getting cancelled with a log that "Error in Downloading file."
    Please let me know if there is any solution for this.

    Hi,
    GUI_DOWNLOAD  does not work properly in the background.
    You can change the GUI_DOWNLOAD by
    'open dataset .. for output... ' and 'close dataset..' and use 'transfer..' to fill up the file.
    regards,
    Rolf

  • Remote Control and error 1456

    We are having a Remote control issue with more and more PC's. If they are
    logged in, we can remote control them. If they have bee restarted and are
    waiting to log in, then we can not remote control them. We Can use
    diagnostics on them though....
    Zen 4.01 ir7 is where we are.
    We are also having an issue where many times after imaging, the ISD is not
    populated into windows, and gets associated with our Image PC's workstation
    object. If we clear the ISD, delete both workstation objects, and reboot the
    target PC, it does re-import correctly. The remote control issue does not
    get fixed when this happens though....
    I have seen that rmerrorlog.txt has been asked for in the past to help solve
    this issue, so We are including that. Any help in resolving what we have set
    wrong is appreciated.
    Thanks,
    Mark Waters, CNA
    John Evans, MCNE
    Systems Group
    Housing and Food Services
    Michigan State University
    watersmd at mail dot hfs dot msu dot edu
    1st attempt to remote control target PC was not Logged in. It Failed - Error
    1456.
    2nd attempt was when target PC was logged in. It Worked.
    PC with ConsoleOne - A004686
    #(89212)# 11:45:46 AM 02/13/07 Normal : CONSOLE > Starting console
    #(89212)# 11:45:46 AM 02/13/07 Normal : ZenGetLangValueFromNWLanguage:
    Trying to load the resource DLL from Nls\ENGLISH directory
    #(89212)# 11:45:46 AM 02/13/07 Normal : CONSOLE > Resource is loaded
    successfully
    #(89212)# 11:45:46 AM 02/13/07 Normal : CONSOLE > Inside
    LoadandParseCommand
    #(89212)# 11:45:46 AM 02/13/07 NORMAL : CONSOLE > AppData.bSessionRestart ==
    FALSE Hiding window
    #(89212)# 11:45:46 AM 02/13/07 NORMAL : CONSOLE > Command line parameters
    parsed successfully
    #(89212)# 11:45:46 AM 02/13/07 NORMAL : CONSOLE > Init Client
    Successfull!!!
    #(89212)# 11:45:46 AM 02/13/07 NORMAL : Before Authentication
    #(89212)# 11:45:47 AM 02/13/07 NORMAL : After Authentication
    #(89212)# 11:45:47 AM 02/13/07 CRITICAL : Authentication Failed:
    #(89212)# 11:45:51 AM 02/13/07 CRITICAL : CONSOLE > LoadAndAuthenticate
    returned FALSE
    #(89212)# 11:45:51 AM 02/13/07 CRITICAL : CONSOLE > Authentication Failed:
    returning -201
    #(89212)# 11:45:51 AM 02/13/07 NORMAL : Out of process
    #(89212)# 11:47:03 AM 02/13/07 Normal : CONSOLE > Starting console
    #(89212)# 11:47:03 AM 02/13/07 Normal : ZenGetLangValueFromNWLanguage:
    Trying to load the resource DLL from Nls\ENGLISH directory
    #(89212)# 11:47:03 AM 02/13/07 Normal : CONSOLE > Resource is loaded
    successfully
    #(89212)# 11:47:03 AM 02/13/07 Normal : CONSOLE > Inside
    LoadandParseCommand
    #(89212)# 11:47:03 AM 02/13/07 NORMAL : CONSOLE > AppData.bSessionRestart ==
    FALSE Hiding window
    #(89212)# 11:47:03 AM 02/13/07 NORMAL : CONSOLE > Command line parameters
    parsed successfully
    #(89212)# 11:47:03 AM 02/13/07 NORMAL : CONSOLE > Init Client
    Successfull!!!
    #(89212)# 11:47:03 AM 02/13/07 NORMAL : Before Authentication
    #(89212)# 11:47:04 AM 02/13/07 NORMAL : After Authentication
    #(89212)# 11:47:04 AM 02/13/07 NORMAL : CONSOLE > Authentication
    Successful!!!
    #(89212)# 11:47:04 AM 02/13/07 Normal : CONSOLE > Initialize returned TRUE
    #(89212)# 11:47:04 AM 02/13/07 NORMAL : RTT > Avg Delay is 0
    #(89212)# 11:47:04 AM 02/13/07 NORMAL : CONSOLE > Sent out WallPaperRequest
    #(89212)# 11:47:04 AM 02/13/07 Normal : CONSOLE > Send Thread : Received
    Startreceiving event
    #(89212)# 11:47:04 AM 02/13/07 NORMAL : CONSOLE > Receive Thread : Received
    Startreceiving Event
    #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Received CMD_AGENT_READY
    Command
    #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Compression sending is 6
    #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Value of did->DrishtiType
    sent to Agent is 1
    #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Sent out the DisplayInfo
    Packet succesfully
    #(89212)# 11:47:06 AM 02/13/07 Critical : HandlePacket >>Memory
    reallocation
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > LookForTerminate got an
    event
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > out of SendThread
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > Value returned from the
    ReceiveData(For Header) is -1
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > out of StartReceiveThread
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : Out of process
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > Receive thread terminated
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > Send thread terminated
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : out of Startsession
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : Out of startsession :
    HandleRCSession
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : Out of DeInit
    #(89212)# 11:47:13 AM 02/13/07 NORMAL : out of HandleRCSession
    Target PC - A003514
    #(768)# 11:45:46 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\ZenLite.dll
    #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\ZenPol32.dll
    #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Successfully loaded
    dependent modules...
    #(768)# 11:45:47 AM 02/13/07 Normal : LoadZenAutilLibraryAndGetProc:
    Successfully loaded ZenAutil.dll and its dependent DLLs
    #(768)# 11:45:47 AM 02/13/07 Normal : Console version is SP1
    #(768)# 11:45:47 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    wsDN = 'A003514.Workstations.UHsg.HFS'
    #(768)# 11:45:47 AM 02/13/07 Normal : Workstation is registered
    #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Attempting to read
    policies...
    #(768)# 11:45:47 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    wsDN = 'A003514.Workstations.UHsg.HFS'
    #(768)# 11:45:47 AM 02/13/07 Normal : Workstation is registered
    #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    A003514.Workstations.UHsg.HFS, treename - HFS
    #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    authenticated...
    #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    failed...
    #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    A003514.Workstations.UHsg.HFS, treename - HFS
    #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    authenticated...
    #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    failed...
    #(768)# 11:45:47 AM 02/13/07 Normal : Neither policy settings active. All
    operations disabled.
    #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Finished reading policies
    #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    A003514.Workstations.UHsg.HFS, treename - HFS
    #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    authenticated...
    #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    failed...
    #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: readVerifyInformation:
    initializeContext() failed for master 0, tree:HFS
    #(768)# 11:45:47 AM 02/13/07 Normal : AgentDSAuthenticationHandler:
    authentication for nearest replica returned : -201
    #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    A003514.Workstations.UHsg.HFS, treename - HFS
    #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    authenticated...
    #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    failed...
    #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: readVerifyInformation:
    initializeContext() failed for master 1, tree:HFS
    #(768)# 11:45:47 AM 02/13/07 Normal : AgentDSAuthenticationHandler:
    authentication for master replica returned : -201
    #(768)# 11:45:47 AM 02/13/07 Critical : Unable to reach the eDirectory
    server
    #(768)# 11:45:47 AM 02/13/07 Critical :
    RMAudit::Auditing.cpp:recordAuditLog() The audit record is corrupted.
    #(768)# 11:45:47 AM 02/13/07 Normal : RMSessionFinished - Begin
    #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Unloaded modules...
    #(768)# 11:45:47 AM 02/13/07 Normal : UnLoadZenAutilLibrary :Successfully
    unloaded ZenAutil.dll
    #(768)# 11:47:02 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\ZenLite.dll
    #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\ZenPol32.dll
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully loaded
    dependent modules...
    #(768)# 11:47:03 AM 02/13/07 Normal : LoadZenAutilLibraryAndGetProc:
    Successfully loaded ZenAutil.dll and its dependent DLLs
    #(768)# 11:47:03 AM 02/13/07 Normal : Console version is SP1
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    wsDN = 'CN=A003514.OU=Workstations.OU=UHsg.O=HFS'
    #(768)# 11:47:03 AM 02/13/07 Normal : Workstation is registered
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Attempting to read
    policies...
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    wsDN = 'CN=A003514.OU=Workstations.OU=UHsg.O=HFS'
    #(768)# 11:47:03 AM 02/13/07 Normal : Workstation is registered
    #(768)# 11:47:03 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:47:03 AM 02/13/07 Normal : workstation DN -
    CN=A003514.OU=Workstations.OU=UHsg.O=HFS, treename - HFS
    #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:47:03 AM 02/13/07 Normal : Workstation IS authenticated...
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Loaded [ZENNW32.DLL]
    successfully
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully initialized
    context
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Failure in reading boolean
    attribute DM:Ignore Policy in CN=A003514.OU=Workstations.OU=UHsg.O=HFS
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Attempt to read using
    user:, tree:HFS
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Workstation Policy -
    'z_Global Workstation Package:General:Remote Control
    Policy.WorkstationPackages.Workstations.UHsg.HFS'
    #(768)# 11:47:03 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:47:03 AM 02/13/07 Normal : workstation DN -
    CN=A003514.OU=Workstations.OU=UHsg.O=HFS, treename - HFS
    #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:47:03 AM 02/13/07 Normal : Workstation IS authenticated...
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Loaded [ZENNW32.DLL]
    successfully
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully initialized
    context
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: User Policy - ''
    #(768)# 11:47:03 AM 02/13/07 Normal : Only workstation policy settings
    active...
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Finished reading policies
    #(768)# 11:47:03 AM 02/13/07 Normal : Reading workstation DN and tree
    name...
    #(768)# 11:47:03 AM 02/13/07 Normal : workstation DN -
    CN=A003514.OU=Workstations.OU=UHsg.O=HFS, treename - HFS
    #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(768)# 11:47:03 AM 02/13/07 Normal : Workstation IS authenticated...
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Loaded [ZENNW32.DLL]
    successfully
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully initialized
    context
    #(768)# 11:47:03 AM 02/13/07 Normal : AgentDSAuthenticationHandler:
    authentication for nearest replica returned : 0
    #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Unloaded modules...
    #(768)# 11:47:03 AM 02/13/07 Normal : UnLoadZenAutilLibrary :Successfully
    unloaded ZenAutil.dll
    #(768)# 11:47:03 AM 02/13/07 Normal : LaunchRcRvAgent: CalculateRTT is
    over...
    #(768)# 11:47:04 AM 02/13/07 Normal : Darapan is loaded successfully
    #(768)# 11:47:04 AM 02/13/07 Normal : Init Proc of RCAgent has been called
    successfully
    #(768)# 11:47:04 AM 02/13/07 Critical : Successfully executed RcAgent.DLL's
    Init Proc Address
    #(768)# 11:47:04 AM 02/13/07 Normal : Call to update desktop is made
    #(768)# 11:47:04 AM 02/13/07 normal : CMD_AGENT_READY is sent
    #(768)# 11:47:04 AM 02/13/07 normal : CMD_SUPRESS_WALLPAPER is received
    #(768)# 11:47:04 AM 02/13/07 Normal : WallPaperThread is closed
    #(768)# 11:47:04 AM 02/13/07 Normal : CMD_KEY_MASK is received
    #(768)# 11:47:04 AM 02/13/07 normal : CMD_DISPLAY_INFO is received
    #(768)# 11:47:04 AM 02/13/07 Normal : Display Info. received. Remote Control
    session for P1.
    #(768)# 11:47:04 AM 02/13/07 Normal : Console version is SP1
    #(768)# 11:47:04 AM 02/13/07 Normal : Calling startlookforchangesthread.
    #(768)# 11:47:04 AM 02/13/07 Normal : InitialDisplayInfo sent
    #(768)# 11:47:04 AM 02/13/07 Normal : DRIVER to use is DARPAN
    #(768)# 11:47:04 AM 02/13/07 Normal : CallInitDrishti :
    ESC_START_VIEWING_DARPAN Successful
    #(768)# 11:47:04 AM 02/13/07 Normal : Came out after loading the driver
    #(768)# 11:47:04 AM 02/13/07 normal : Setting hook to cursor shapes is ok
    #(768)# 11:47:04 AM 02/13/07 Normal : Got WM_SWITCH_DESKTOP
    #(768)# 11:47:05 AM 02/13/07 Normal : Call to update desktop is made
    #(768)# 11:47:12 AM 02/13/07 Normal : RecvThread is returning
    #(768)# 11:47:12 AM 02/13/07 Normal : WaitThread : WaitForMultipleObjects
    returned. Closed thread is = 1
    #(768)# 11:47:12 AM 02/13/07 Normal : Periodic Check thread is returning
    #(768)# 11:47:12 AM 02/13/07 Normal : In desktop change thread terminate
    session is set
    #(768)# 11:47:12 AM 02/13/07 normal : Terminate session event is set in send
    thread
    #(768)# 11:47:12 AM 02/13/07 Normal : Close msg for visible window. Calling
    CloseConnection().
    #(768)# 11:47:12 AM 02/13/07 Normal : Clean up is going to start
    #(768)# 11:47:12 AM 02/13/07 Normal : LookforchangesThread returning
    #(768)# 11:47:12 AM 02/13/07 Normal : WallPaperThread is closed
    #(768)# 11:47:12 AM 02/13/07 normal : All the threads are closed normally
    #(768)# 11:47:12 AM 02/13/07 Normal : Call to update desktop is made
    #(768)# 11:47:12 AM 02/13/07 normal : RC session is completed successfully
    #(768)# 11:47:12 AM 02/13/07 Normal : CZenRmServer::RCRvThread:
    hAcceptThread Signals
    #(768)# 11:47:12 AM 02/13/07 Critical :
    RMAudit::Auditing.cpp:recordAuditLog() The audit record is corrupted.
    #(768)# 11:47:12 AM 02/13/07 Normal : RcRvThread: RcAgent.dll is
    successfully unloaded from memory
    #(768)# 11:47:12 AM 02/13/07 Normal : RcRvThread: Ict_Uc.dll is not unloaded
    from memory ...
    #(768)# 11:47:12 AM 02/13/07 Normal : RcRvThread: Ict_Uc.dll is not unloaded
    from memory and it is forcefully unloaded...
    #(768)# 11:47:12 AM 02/13/07 Normal : Darapan is Unloaded successfully
    #(768)# 11:47:12 AM 02/13/07 Normal : RMSessionFinished - Begin

    Delete a few test workstation objects. Delete the object that was created by
    the Image PC. Run DSREPAIR. Disable windows firewall. Reboot the PCs. Check
    if the Workstation objects are created and if you can remotely control
    them.
    "Mark Waters" <[email protected]> wrote in message
    news:[email protected]...
    > We are having a Remote control issue with more and more PC's. If they are
    > logged in, we can remote control them. If they have bee restarted and are
    > waiting to log in, then we can not remote control them. We Can use
    > diagnostics on them though....
    > Zen 4.01 ir7 is where we are.
    > We are also having an issue where many times after imaging, the ISD is not
    > populated into windows, and gets associated with our Image PC's
    > workstation
    > object. If we clear the ISD, delete both workstation objects, and reboot
    > the
    > target PC, it does re-import correctly. The remote control issue does not
    > get fixed when this happens though....
    > I have seen that rmerrorlog.txt has been asked for in the past to help
    > solve
    > this issue, so We are including that. Any help in resolving what we have
    > set
    > wrong is appreciated.
    >
    > Thanks,
    > Mark Waters, CNA
    > John Evans, MCNE
    > Systems Group
    > Housing and Food Services
    > Michigan State University
    > watersmd at mail dot hfs dot msu dot edu
    >
    >
    > 1st attempt to remote control target PC was not Logged in. It Failed -
    > Error
    > 1456.
    > 2nd attempt was when target PC was logged in. It Worked.
    >
    >
    > PC with ConsoleOne - A004686
    >
    > #(89212)# 11:45:46 AM 02/13/07 Normal : CONSOLE > Starting console
    > #(89212)# 11:45:46 AM 02/13/07 Normal : ZenGetLangValueFromNWLanguage:
    > Trying to load the resource DLL from Nls\ENGLISH directory
    > #(89212)# 11:45:46 AM 02/13/07 Normal : CONSOLE > Resource is loaded
    > successfully
    > #(89212)# 11:45:46 AM 02/13/07 Normal : CONSOLE > Inside
    > LoadandParseCommand
    > #(89212)# 11:45:46 AM 02/13/07 NORMAL : CONSOLE > AppData.bSessionRestart
    > ==
    > FALSE Hiding window
    > #(89212)# 11:45:46 AM 02/13/07 NORMAL : CONSOLE > Command line parameters
    > parsed successfully
    > #(89212)# 11:45:46 AM 02/13/07 NORMAL : CONSOLE > Init Client
    > Successfull!!!
    > #(89212)# 11:45:46 AM 02/13/07 NORMAL : Before Authentication
    > #(89212)# 11:45:47 AM 02/13/07 NORMAL : After Authentication
    > #(89212)# 11:45:47 AM 02/13/07 CRITICAL : Authentication Failed:
    > #(89212)# 11:45:51 AM 02/13/07 CRITICAL : CONSOLE > LoadAndAuthenticate
    > returned FALSE
    > #(89212)# 11:45:51 AM 02/13/07 CRITICAL : CONSOLE > Authentication Failed:
    > returning -201
    > #(89212)# 11:45:51 AM 02/13/07 NORMAL : Out of process
    >
    >
    >
    > #(89212)# 11:47:03 AM 02/13/07 Normal : CONSOLE > Starting console
    > #(89212)# 11:47:03 AM 02/13/07 Normal : ZenGetLangValueFromNWLanguage:
    > Trying to load the resource DLL from Nls\ENGLISH directory
    > #(89212)# 11:47:03 AM 02/13/07 Normal : CONSOLE > Resource is loaded
    > successfully
    > #(89212)# 11:47:03 AM 02/13/07 Normal : CONSOLE > Inside
    > LoadandParseCommand
    > #(89212)# 11:47:03 AM 02/13/07 NORMAL : CONSOLE > AppData.bSessionRestart
    > ==
    > FALSE Hiding window
    > #(89212)# 11:47:03 AM 02/13/07 NORMAL : CONSOLE > Command line parameters
    > parsed successfully
    > #(89212)# 11:47:03 AM 02/13/07 NORMAL : CONSOLE > Init Client
    > Successfull!!!
    > #(89212)# 11:47:03 AM 02/13/07 NORMAL : Before Authentication
    > #(89212)# 11:47:04 AM 02/13/07 NORMAL : After Authentication
    > #(89212)# 11:47:04 AM 02/13/07 NORMAL : CONSOLE > Authentication
    > Successful!!!
    > #(89212)# 11:47:04 AM 02/13/07 Normal : CONSOLE > Initialize returned TRUE
    > #(89212)# 11:47:04 AM 02/13/07 NORMAL : RTT > Avg Delay is 0
    > #(89212)# 11:47:04 AM 02/13/07 NORMAL : CONSOLE > Sent out
    > WallPaperRequest
    > #(89212)# 11:47:04 AM 02/13/07 Normal : CONSOLE > Send Thread : Received
    > Startreceiving event
    > #(89212)# 11:47:04 AM 02/13/07 NORMAL : CONSOLE > Receive Thread :
    > Received
    > Startreceiving Event
    > #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Received CMD_AGENT_READY
    > Command
    > #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Compression sending is 6
    > #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Value of
    > did->DrishtiType
    > sent to Agent is 1
    > #(89212)# 11:47:05 AM 02/13/07 NORMAL : CONSOLE > Sent out the DisplayInfo
    > Packet succesfully
    > #(89212)# 11:47:06 AM 02/13/07 Critical : HandlePacket >>Memory
    > reallocation
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > LookForTerminate got an
    > event
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > out of SendThread
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > Value returned from the
    > ReceiveData(For Header) is -1
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > out of
    > StartReceiveThread
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : Out of process
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > Receive thread
    > terminated
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : CONSOLE > Send thread terminated
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : out of Startsession
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : Out of startsession :
    > HandleRCSession
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : Out of DeInit
    > #(89212)# 11:47:13 AM 02/13/07 NORMAL : out of HandleRCSession
    >
    >
    > Target PC - A003514
    >
    > #(768)# 11:45:46 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\ZenLite.dll
    > #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\ZenPol32.dll
    > #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Successfully loaded
    > dependent modules...
    > #(768)# 11:45:47 AM 02/13/07 Normal : LoadZenAutilLibraryAndGetProc:
    > Successfully loaded ZenAutil.dll and its dependent DLLs
    > #(768)# 11:45:47 AM 02/13/07 Normal : Console version is SP1
    > #(768)# 11:45:47 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    > wsDN = 'A003514.Workstations.UHsg.HFS'
    > #(768)# 11:45:47 AM 02/13/07 Normal : Workstation is registered
    > #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Attempting to read
    > policies...
    > #(768)# 11:45:47 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    > wsDN = 'A003514.Workstations.UHsg.HFS'
    > #(768)# 11:45:47 AM 02/13/07 Normal : Workstation is registered
    > #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    > A003514.Workstations.UHsg.HFS, treename - HFS
    > #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    > authenticated...
    > #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    > failed...
    > #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    > A003514.Workstations.UHsg.HFS, treename - HFS
    > #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    > authenticated...
    > #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    > failed...
    > #(768)# 11:45:47 AM 02/13/07 Normal : Neither policy settings active. All
    > operations disabled.
    > #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Finished reading
    > policies
    > #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    > A003514.Workstations.UHsg.HFS, treename - HFS
    > #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    > authenticated...
    > #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    > failed...
    > #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: readVerifyInformation:
    > initializeContext() failed for master 0, tree:HFS
    > #(768)# 11:45:47 AM 02/13/07 Normal : AgentDSAuthenticationHandler:
    > authentication for nearest replica returned : -201
    > #(768)# 11:45:47 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:45:47 AM 02/13/07 Normal : workstation DN -
    > A003514.Workstations.UHsg.HFS, treename - HFS
    > #(768)# 11:45:47 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:45:47 AM 02/13/07 Critical : Workstation NOT yet
    > authenticated...
    > #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: initializeContext()
    > failed...
    > #(768)# 11:45:47 AM 02/13/07 Critical : ZENNDSUtil: readVerifyInformation:
    > initializeContext() failed for master 1, tree:HFS
    > #(768)# 11:45:47 AM 02/13/07 Normal : AgentDSAuthenticationHandler:
    > authentication for master replica returned : -201
    > #(768)# 11:45:47 AM 02/13/07 Critical : Unable to reach the eDirectory
    > server
    > #(768)# 11:45:47 AM 02/13/07 Critical :
    > RMAudit::Auditing.cpp:recordAuditLog() The audit record is corrupted.
    > #(768)# 11:45:47 AM 02/13/07 Normal : RMSessionFinished - Begin
    > #(768)# 11:45:47 AM 02/13/07 Normal : ZENNDSUtil: Unloaded modules...
    > #(768)# 11:45:47 AM 02/13/07 Normal : UnLoadZenAutilLibrary :Successfully
    > unloaded ZenAutil.dll
    >
    >
    > #(768)# 11:47:02 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\ZenLite.dll
    > #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\ZenPol32.dll
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully loaded
    > dependent modules...
    > #(768)# 11:47:03 AM 02/13/07 Normal : LoadZenAutilLibraryAndGetProc:
    > Successfully loaded ZenAutil.dll and its dependent DLLs
    > #(768)# 11:47:03 AM 02/13/07 Normal : Console version is SP1
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    > wsDN = 'CN=A003514.OU=Workstations.OU=UHsg.O=HFS'
    > #(768)# 11:47:03 AM 02/13/07 Normal : Workstation is registered
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Attempting to read
    > policies...
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENUtil: ZENIsWorkstationRegistered:
    > wsDN = 'CN=A003514.OU=Workstations.OU=UHsg.O=HFS'
    > #(768)# 11:47:03 AM 02/13/07 Normal : Workstation is registered
    > #(768)# 11:47:03 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:47:03 AM 02/13/07 Normal : workstation DN -
    > CN=A003514.OU=Workstations.OU=UHsg.O=HFS, treename - HFS
    > #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:47:03 AM 02/13/07 Normal : Workstation IS authenticated...
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Loaded [ZENNW32.DLL]
    > successfully
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully initialized
    > context
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Failure in reading
    > boolean
    > attribute DM:Ignore Policy in CN=A003514.OU=Workstations.OU=UHsg.O=HFS
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Attempt to read using
    > user:, tree:HFS
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Workstation Policy -
    > 'z_Global Workstation Package:General:Remote Control
    > Policy.WorkstationPackages.Workstations.UHsg.HFS'
    > #(768)# 11:47:03 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:47:03 AM 02/13/07 Normal : workstation DN -
    > CN=A003514.OU=Workstations.OU=UHsg.O=HFS, treename - HFS
    > #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:47:03 AM 02/13/07 Normal : Workstation IS authenticated...
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Loaded [ZENNW32.DLL]
    > successfully
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully initialized
    > context
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: User Policy - ''
    > #(768)# 11:47:03 AM 02/13/07 Normal : Only workstation policy settings
    > active...
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Finished reading
    > policies
    > #(768)# 11:47:03 AM 02/13/07 Normal : Reading workstation DN and tree
    > name...
    > #(768)# 11:47:03 AM 02/13/07 Normal : workstation DN -
    > CN=A003514.OU=Workstations.OU=UHsg.O=HFS, treename - HFS
    > #(768)# 11:47:03 AM 02/13/07 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(768)# 11:47:03 AM 02/13/07 Normal : Workstation IS authenticated...
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Loaded [ZENNW32.DLL]
    > successfully
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Successfully initialized
    > context
    > #(768)# 11:47:03 AM 02/13/07 Normal : AgentDSAuthenticationHandler:
    > authentication for nearest replica returned : 0
    > #(768)# 11:47:03 AM 02/13/07 Normal : ZENNDSUtil: Unloaded modules...
    > #(768)# 11:47:03 AM 02/13/07 Normal : UnLoadZenAutilLibrary :Successfully
    > unloaded ZenAutil.dll
    > #(768)# 11:47:03 AM 02/13/07 Normal : LaunchRcRvAgent: CalculateRTT is
    > over...
    > #(768)# 11:47:04 AM 02/13/07 Normal : Darapan is loaded successfully
    > #(768)# 11:47:04 AM 02/13/07 Normal : Init Proc of RCAgent has been called
    > successfully
    > #(768)# 11:47:04 AM 02/13/07 Critical : Successfully executed
    > RcAgent.DLL's
    > Init Proc Address
    > #(768)# 11:47:04 AM 02/13/07 Normal : Call to update desktop is made
    > #(768)# 11:47:04 AM 02/13/07 normal : CMD_AGENT_READY is sent
    > #(768)# 11:47:04 AM 02/13/07 normal : CMD_SUPRESS_WALLPAPER is received
    > #(768)# 11:47:04 AM 02/13/07 Normal : WallPaperThread is closed
    > #(768)# 11:47:04 AM 02/13/07 Normal : CMD_KEY_MASK is received
    > #(768)# 11:47:04 AM 02/13/07 normal : CMD_DISPLAY_INFO is received
    > #(768)# 11:47:04 AM 02/13/07 Normal : Display Info. received. Remote
    > Control
    > session for P1.
    > #(768)# 11:47:04 AM 02/13/07 Normal : Console version is SP1
    > #(768)# 11:47:04 AM 02/13/07 Normal : Calling startlookforchangesthread.
    > #(768)# 11:47:04 AM 02/13/07 Normal : InitialDisplayInfo sent
    > #(768)# 11:47:04 AM 02/13/07 Normal : DRIVER to use is DARPAN
    > #(768)# 11:47:04 AM 02/13/07 Normal : CallInitDrishti :
    > ESC_START_VIEWING_DARPAN Successful
    > #(768)# 11:47:04 AM 02/13/07 Normal : Came out after loading the driver
    > #(768)# 11:47:04 AM 02/13/07 normal : Setting hook to cursor shapes is ok
    > #(768)# 11:47:04 AM 02/13/07 Normal : Got WM_SWITCH_DESKTOP
    > #(768)# 11:47:05 AM 02/13/07 Normal : Call to update desktop is made
    > #(768)# 11:47:12 AM 02/13/07 Normal : RecvThread is returning
    > #(768)# 11:47:12 AM 02/13/07 Normal : WaitThread : WaitForMultipleObjects
    > returned. Closed thread is = 1
    > #(768)# 11:47:12 AM 02/13/07 Normal : Periodic Check thread is returning
    > #(768)# 11:47:12 AM 02/13/07 Normal : In desktop change thread terminate
    > session is set
    > #(768)# 11:47:12 AM 02/13/07 normal : Terminate session event is set in
    > send
    > thread
    > #(768)# 11:47:12 AM 02/13/07 Normal : Close msg for visible window.
    > Calling
    > CloseConnection().
    > #(768)# 11:47:12 AM 02/13/07 Normal : Clean up is going to start
    > #(768)# 11:47:12 AM 02/13/07 Normal : LookforchangesThread returning
    > #(768)# 11:47:12 AM 02/13/07 Normal : WallPaperThread is closed
    > #(768)# 11:47:12 AM 02/13/07 normal : All the threads are closed normally
    > #(768)# 11:47:12 AM 02/13/07 Normal : Call to update desktop is made
    > #(768)# 11:47:12 AM 02/13/07 normal : RC session is completed successfully
    > #(768)# 11:47:12 AM 02/13/07 Normal : CZenRmServer::RCRvThread:
    > hAcceptThread Signals
    > #(768)# 11:47:12 AM 02/13/07 Critical :
    > RMAudit::Auditing.cpp:recordAuditLog() The audit record is corrupted.
    > #(768)# 11:47:12 AM 02/13/07 Normal : RcRvThread: RcAgent.dll is
    > successfully unloaded from memory
    > #(768)# 11:47:12 AM 02/13/07 Normal : RcRvThread: Ict_Uc.dll is not
    > unloaded
    > from memory ...
    > #(768)# 11:47:12 AM 02/13/07 Normal : RcRvThread: Ict_Uc.dll is not
    > unloaded
    > from memory and it is forcefully unloaded...
    > #(768)# 11:47:12 AM 02/13/07 Normal : Darapan is Unloaded successfully
    > #(768)# 11:47:12 AM 02/13/07 Normal : RMSessionFinished - Begin
    >

  • Bursting Control file, Error!! Could not deliver the output for Delivery

    Hi,
    I am using bursting control file to send report output to email in R12.1.3.
    If the report output is having data, it is working fine. if there is no data it is getting errored out with the below message.
    "Error!! Could not deliver the output for Delivery channel:null "
    In the report output i put "No data found", when i click on view output the output in application is showing as "NO DATA FOUND" in PDF .
    "Bursting VMC Approved Purchase Orders for a period (XML Publisher Report Bursting Program)" got above error.
    my requirement is if there is no data, still i require the output to email.
    Thanks in Advance
    Adina.

    Hi,
    I am facing the same situation and want the bursting program to finish in normal even when there is no data.
    Can you please let me know how you resolved this?
    Thanks
    RG

Maybe you are looking for