Executable program not able to open

I have created an executable program which is distributed with the 8.5 runtime engine. When deployed on the target systems (XP) the executable will open on the taskbar for a few seconds then just disappear. But on some systems (also XP) the program will open and operate normally. There is no DAQ in this application, it is purely a visualization tool for some text files. I have had this problem before, but now it is more serious because my program is distributed world wide to our organization.
I could find no references to this problem. I have an error dialog at the end of my application, if there was an error reported, I would be able to see it, but nothing happens, the window just disappears without opening. The normal VI version has not problems at all.
Thanks,
Henry

Hello everyone,
I did the whittle down to the problem in my code. I can clearly identify that this problem has to do with the NI_AALPro.lvlib functions.
If you look at the image I attached, it is quite clear that there is nothing else in going on in my once large, now very small program !!
If I remove this function, the program compiles and runs properly !
Now the question is why do the NI_AALPro.lvlib functions work on some PCs, but not others? As my application requires the use of these functions, I am under pressure to find a solution.
Thanks
Attachments:
exe no start.JPG ‏5 KB

Similar Messages

  • Not able to open adobe XI Pro after I have filled out a documents and trying saving it. The program stops working & won't open up again.  Tried to complete a repair, rebooting nothing works. Help please.

    Not able to open adobe XI Pro after I have filled out a documents and trying saving it. The program stops working & won't open up again.  Tried to complete a repair, rebooting nothing works. Help please.

    Hi,
    Can you pls. provide more details of the issue?
    OS/Platform
    It would be great if you can provide the MSI logs for repair from the %temp% directory.
    Thanks,

  • Just installed Lion and iCloud. Now I'm not able to open the Mail program. What's the problem? Thanks. Andrew

    Just installed Lion and iCloud. Now I'm not able to open the Mail program. What's the problem? Thanks.
    Andrew

    Dear Ralph, thank you for your lightspeed answer!
    When I had installed the app, there was been written: "open", and when I pushed this, NO reaction of the iPad! And crazy too: I am NOT able to find the app itself at any screen of the iPad!!! I can see it only in the list "bought" items. With other words: The app is neither to be seen nor I am able to open it in the "list".
    Thank you in advance for your advice
    Best greetings from Austria (Wien, Vienna)
    Wiener Schnitzel

  • I was subscribed to Adobe CC, it ended, i subscribed again and now im not able to open any program, but adobe already charged my credit card

    I was subscribed to Adobe CC, it ended, i subscribed again and now im not able to open any program, but adobe already charged my credit card

    Since this is an open forum, not Adobe support... you need to contact Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Not able to open MS Excel attachment in the email Using SO_NEW_DOCUMENT_ATT

    Hi, I am not able to open the attached MS excel in the mail its giving error as "Problems came up in the following areas during load Table". My requirement is to send a colored excel as attachment through mail when the program is executed in background. For this i have reffered the following link " http://wiki.sdn.sap.com/wiki/display/Snippets/FormattedExcelasEmailAttachment". That is i have used the XML method for this . I would be thankful if you can let me know where i am doing the mistake For refference i am pasting my code: * Send mail when executed in background mode IF sy-batch eq 'X'. PERFORM send_mail_bkgrnd. ELSE. " Foreground mode PERFORM build_layout. PERFORM build_field_cat. PERFORM display. ENDIF. FORM SEND_MAIL_BKGRND . PERFORM process_xml_data. PERFORM disatch_mail. ENDFORM. " SEND_MAIL_BKGRND &---- *& Form PROCESS_XML_DATA &---- FORM PROCESS_XML_DATA . DATA lv_xlwidth TYPE i. * Creating a ixml Factory l_ixml = cl_ixml=>create( ). * Creating the DOM Object Model l_document = l_ixml->create_document( ). * Create Root Node 'Workbook' l_element_root = l_document->create_simple_element( name = 'Workbook' parent = l_document ). l_element_root->set_attribute( name = 'xmlns' value = 'urn:schemas-microsoft-com:office:spreadsheet' ). ns_attribute = l_document->create_namespace_decl( name = 'ss' prefix = 'xmlns' uri = 'urn:schemas-microsoft-com:office:spreadsheet' ). l_element_root->set_attribute_node( ns_attribute ). ns_attribute = l_document->create_namespace_decl( name = 'x' prefix = 'xmlns' uri = 'urn:schemas-microsoft-com:office:excel' ). l_element_root->set_attribute_node( ns_attribute ). * Create node for document properties. r_element_properties = l_document->create_simple_element( name = 'TEST_REPORT' parent = l_element_root ). l_value = sy-uname. l_document->create_simple_element( name = 'Author' value = l_value parent = r_element_properties ). * Styles r_styles = l_document->create_simple_element( name = 'Styles' parent = l_element_root ). * Style for Header r_style = l_document->create_simple_element( name = 'Style' parent = r_styles ). r_style->set_attribute_ns( name = 'ID' prefix = 'ss' value = 'Header' ). r_format = l_document->create_simple_element( name = 'Font' parent = r_style ). r_format->set_attribute_ns( name = 'Bold' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Interior' parent = r_style ). r_format->set_attribute_ns( name = 'Color' prefix = 'ss' value = '#92D050' ). r_format->set_attribute_ns( name = 'Pattern' prefix = 'ss' value = 'Solid' ). r_format = l_document->create_simple_element( name = 'Alignment' parent = r_style ). r_format->set_attribute_ns( name = 'Vertical' prefix = 'ss' value = 'Center' ). r_format->set_attribute_ns( name = 'WrapText' prefix = 'ss' value = '1' ). r_border = l_document->create_simple_element( name = 'Borders' parent = r_style ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Bottom' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Left' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Top' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Right' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). * Style for Data "Color properties are set over here r_style1 = l_document->create_simple_element( name = 'Style' parent = r_styles ). r_style1->set_attribute_ns( name = 'ID' prefix = 'ss' value = 'Data' ). r_border = l_document->create_simple_element( name = 'Borders' parent = r_style1 ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Bottom' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Left' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Top' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). r_format = l_document->create_simple_element( name = 'Border' parent = r_border ). r_format->set_attribute_ns( name = 'Position' prefix = 'ss' value = 'Right' ). r_format->set_attribute_ns( name = 'LineStyle' prefix = 'ss' value = 'Continuous' ). r_format->set_attribute_ns( name = 'Weight' prefix = 'ss' value = '1' ). * Worksheet r_worksheet = l_document->create_simple_element( name = 'Worksheet' parent = l_element_root ). r_worksheet->set_attribute_ns( name = 'Name' prefix = 'ss' value = 'Sheet1' ). * Table r_table = l_document->create_simple_element( name = 'Table' parent = r_worksheet ). r_table->set_attribute_ns( name = 'FullColumns' prefix = 'x' value = '1' ). r_table->set_attribute_ns( name = 'FullRows' prefix = 'x' value = '1' ). * Column Formatting DO 32 TIMES. CASE sy-index. WHEN 1. lv_xlwidth = '300'. WHEN 2. lv_xlwidth = '300'. WHEN OTHERS. lv_xlwidth = '300'. ENDCASE. PERFORM clmn_formatting USING lv_xlwidth. ENDDO. * Blank Row r_row = l_document->create_simple_element( name = 'Row' parent = r_table ). * Column Headers Row r_row = l_document->create_simple_element( name = 'Row' parent = r_table ). r_row->set_attribute_ns( name = 'AutoFitHeight' prefix = 'ss' value = '1' ). * VC. No. r_cell = l_document->create_simple_element( name = 'Cell' parent = r_row ). r_cell->set_attribute_ns( name = 'StyleID' prefix = 'ss' value = 'Header' ). r_data = l_document->create_simple_element( name = 'Data' value = 'VC No.' parent = r_cell ). r_data->set_attribute_ns( name = 'Type' prefix = 'ss' value = 'String' ). * Source r_cell = l_document->create_simple_element( name = 'Cell' parent = r_row ). r_cell->set_attribute_ns( name = 'StyleID' prefix = 'ss' value = 'Header' ). r_data = l_document->create_simple_element( name = 'Data' value = 'Source' parent = r_cell ). r_data->set_attribute_ns( name = 'Type' prefix = 'ss' value = 'String' ). DO 30 TIMES. * * TPLGRP r_cell = l_document->create_simple_element( name = 'Cell' parent = r_row ). r_cell->set_attribute_ns( name = 'StyleID' prefix = 'ss' value = 'Header' ). r_data = l_document->create_simple_element( name = 'Data' value = '' parent = r_cell ). r_data->set_attribute_ns( name = 'Type' prefix = 'ss' value = 'String' ). ENDDO. * Blank Row after Column Headers r_row = l_document->create_simple_element( name = 'Row' parent = r_table ). DO 32 TIMES. r_cell = l_document->create_simple_element( name = 'Cell' parent = r_row ). r_cell->set_attribute_ns( name = 'StyleID' prefix = 'ss' value = 'Data' ). ENDDO. * Data Table CLEAR gs_output. LOOP AT gt_output INTO gs_output. r_row = l_document->create_simple_element( name = 'Row' parent = r_table ). DO 32 TIMES. CASE sy-index. WHEN 1. a_dvalue = gs_output-vc_number. WHEN 2. a_dvalue = gs_output-source. WHEN 3. a_dvalue = gs_output-tplgrp_01. WHEN 4. a_dvalue = gs_output-tplgrp_02. WHEN 5. a_dvalue = gs_output-tplgrp_03. WHEN 6. a_dvalue = gs_output-tplgrp_04. WHEN 7. a_dvalue = gs_output-tplgrp_05. WHEN 8. a_dvalue = gs_output-tplgrp_06. WHEN 9. a_dvalue = gs_output-tplgrp_07. WHEN 10. a_dvalue = gs_output-tplgrp_08. WHEN 11. a_dvalue = gs_output-tplgrp_09. WHEN 12. a_dvalue = gs_output-tplgrp_10. WHEN 13. a_dvalue = gs_output-tplgrp_11. WHEN 14. a_dvalue = gs_output-tplgrp_12. WHEN 15. a_dvalue = gs_output-tplgrp_13. WHEN 16. a_dvalue = gs_output-tplgrp_14. WHEN 17. a_dvalue = gs_output-tplgrp_15. WHEN 18. a_dvalue = gs_output-tplgrp_16. WHEN 19. a_dvalue = gs_output-tplgrp_17. WHEN 20. a_dvalue = gs_output-tplgrp_18. WHEN 21. a_dvalue = gs_output-tplgrp_19. WHEN 22. a_dvalue = gs_output-tplgrp_20. WHEN 23. a_dvalue = gs_output-tplgrp_21. WHEN 24. a_dvalue = gs_output-tplgrp_22. WHEN 25. a_dvalue = gs_output-tplgrp_23. WHEN 26. a_dvalue = gs_output-tplgrp_24. WHEN 27. a_dvalue = gs_output-tplgrp_25. WHEN 28. a_dvalue = gs_output-tplgrp_26. WHEN 29. a_dvalue = gs_output-tplgrp_27. WHEN 30. a_dvalue = gs_output-tplgrp_28. WHEN 31. a_dvalue = gs_output-tplgrp_29. WHEN 32. a_dvalue = gs_output-tplgrp_30. ENDCASE. PERFORM fill_data_val_excel USING a_dvalue. ENDDO. CLEAR gs_output. ENDLOOP. * Creating a Stream Factory l_streamfactory = l_ixml->create_stream_factory( ). * Connect Internal XML Table to Stream Factory l_ostream = l_streamfactory->create_ostream_itable( table = l_xml_table ). * Rendering the Document l_renderer = l_ixml->create_renderer( ostream = l_ostream document = l_document ). l_rc = l_renderer->render( ). * Saving the XML Document l_xml_size = l_ostream->get_num_written_raw( ). ENDFORM. " PROCESS_XML_DATA &---- *& Form DISATCH_MAIL &---- FORM DISATCH_MAIL . DATA: objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE. DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE. DATA: objbin LIKE solix OCCURS 10 WITH HEADER LINE. DATA: objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE. DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE. DATA: doc_chng LIKE sodocchgi1. DATA: tab_lines LIKE sy-tabix. DATA: l_num(3). DATA: subj_date(10) TYPE c. * Mail Subject data lv_date TYPE d. lv_date = sy-datum. CONCATENATE lv_date6(2) '-' lv_date4(2) '-' lv_date+0(4) INTO subj_date. CONCATENATE 'SAP Application Usage Report ' subj_date INTO doc_chng-obj_descr SEPARATED BY space. * Mail Contents objtxt = 'Dear User,'. APPEND objtxt. CLEAR objtxt. APPEND objtxt. CONCATENATE 'Please find the attached SAP Application Usage Report for ' subj_date INTO objtxt SEPARATED BY space. " Mail Contents APPEND objtxt. CLEAR objtxt. APPEND objtxt. objtxt = 'Thanks & Regards,'. APPEND objtxt. objtxt = 'Himanshu Kanekar'. APPEND objtxt. DESCRIBE TABLE objtxt LINES tab_lines. READ TABLE objtxt INDEX tab_lines. doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ). * Packing List For the E-mail Body objpack-head_start = 1. objpack-head_num = 0. objpack-body_start = 1. objpack-body_num = tab_lines. objpack-doc_type = 'RAW'. APPEND objpack. * Creation of the Document Attachment LOOP AT l_xml_table INTO wa_xml. CLEAR objbin. objbin-line = wa_xml-data. APPEND objbin. ENDLOOP. DESCRIBE TABLE objbin LINES tab_lines. objhead = 'SAP Login Details'. APPEND objhead. * Packing List For the E-mail Attachment objpack-transf_bin = ''."'X'. objpack-head_start = 1. objpack-head_num = 0. objpack-body_start = 1. objpack-body_num = tab_lines. CONCATENATE 'SAP_Login_Details' subj_date INTO objpack-obj_descr SEPARATED BY space. objpack-doc_type = 'XLS'. objpack-doc_size = tab_lines * 255. APPEND objpack. * Target Recipent CLEAR reclist. reclist-receiver = reclist-rec_type = 'U'. APPEND reclist. * Sending the document CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1' EXPORTING document_data = doc_chng put_in_outbox = 'X' commit_work = 'X' TABLES packing_list = objpack object_header = objhead contents_txt = objtxt contents_hex = objbin receivers = reclist EXCEPTIONS too_many_receivers = 1 document_not_sent = 2 operation_no_authorization = 4 OTHERS = 99. ENDFORM. " DISATCH_MAIL

    Refer:
    http://www.sap-img.com/abap/sending-mail-with-attachment-report-in-background.htm
    http://www.saptechies.com/sending-mail-with-attachment-report-in-background/

  • I'm not able to open PDF files in Adobe Reader XI.

    I recently updated to Adobe Reader XI and now I can't open any of my PDF documents or PDF e-mail attachments.  When I click on a document I now get a window that asks if I want to allow this file to open.  I click yes and get a monstrousity the likes I've never seen.  It blacks out my screen for a couple seconds and then I get a mixture of my desktop, task bar, and a window wanting to know if I want to open this with Protected Mode disabled.  It only fills 3/4 of the screen, the items all all blown-up in size, and are distorted.  In playing with this I have gotten notes that I have an "Incompatable Application" and "Acrobat failed to connect to a DDS Server".  On occasion I will get an Adobe Reader screen that is completely greyed out with no content in it and after a couple of seconds it goes off.  Other times I got the window about Protected Mode and I've clicked on to disable it but that doesn't work either.  I removed Adobe Reader XI and re-installed Adobe Reader X and I still have the same problem which I did not have before.  I 'm running Windows 7 Professional and have McAfee anti-virus, which I have disbled on one occasion during download and that I still had the same problem.  I went to program files to find the End User License Agreement and try to see if I needed to click on 'Accept" but it tells me the file does not exist.  I even tried using System Restore to take me back to before I did the upgrade to Adobe Reader XI and I still have this problem.  I'm at the end of my knowledge level and because these files are needed in my business I'm only able to operate at about 50%. 

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

  • Not able to open FCS console

    Dear All
    I have one Forefront Client Security server which exist on Storage, before 3 days Storage was goen down and when it ups we are not able to open FCS/MOM console and getting errors given below
    plesae help>>
    Event Type: Warning
    Event Source: SQLAgent$FCSDB
    Event Category: (3)
    Event ID: 208
    Date:  2/6/2014
    Time:  12:10:00 PM
    User:  N/A
    Computer: COMV-FCS-GGN
    Description:
    The description for Event ID ( 208 ) in Source ( SQLAgent$FCSDB ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag
    to retrieve this description; see Help and Support for details. The following information is part of the event: OnePoint - TodayStatisticsUpdateComputersAndAlerts, 0xB315BE3B7359194DA14F3B22838F57EA, Failed, 2014-02-06 12:10:00, The job failed.  The Job
    was invoked by Schedule 20 (TodayStatisticsUpdateComputersAndAlerts Schedule).  The last step to run was step 2 (Update Alerts)..
    Event Type: Error
    Event Source: Microsoft Operations Manager
    Event Category: (1)
    Event ID: 21213
    Date:  2/6/2014
    Time:  12:34:07 PM
    User:  NT AUTHORITY\NETWORK SERVICE
    Computer: COMV-FCS-GGN
    Description:
    The description for Event ID ( 21213 ) in Source ( Microsoft Operations Manager ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: 1, IDispatch error #3222.
    Event Type: Warning
    Event Source: Microsoft Operations Manager
    Event Category: None
    Event ID: 20607
    Date:  2/6/2014
    Time:  12:32:24 PM
    User:  NT AUTHORITY\NETWORK SERVICE
    Computer: COMV-FCS-GGN
    Description:
    The description for Event ID ( 20607 ) in Source ( Microsoft Operations Manager ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: COMV-FCS-GGN, -2147217770, IDispatch error #3222, ConfigurationGetOnePointFreeSpace, d:\bt\4\private\product\core\engine\managers\perfcountermanager\src\momperfcountermanager.cpp,
    984.
    Event Type: Error
    Event Source: FcsMs
    Event Category: None
    Event ID: 10002
    Date:  2/6/2014
    Time:  12:32:05 PM
    User:  N/A
    Computer: COMV-FCS-GGN
    Description:
    The description for Event ID ( 10002 ) in Source ( FcsMs ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve
    this description; see Help and Support for details. The following information is part of the event: The Management Server Service could not import the updated antimalware definition. The component reporting the error returned the following details:
    Cannot open database "OnePoint" requested by the login. The login failed.
    Details
    Error number: 4060
    Severity level: 11
    State: 1
    Server: COMV-FCS-GGN\FCSDB
    Procedure:
    Line: 1
    Result code: 0x80004005
    Connection string:
    Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=OnePoint;Data Source=COMV-FCS-GGN\FCSDB;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=COMV-FCS-GGN;Use Encryption for Data=False;Tag with
    column collation when possible=False.
    Event Type: Error
    Event Source: DataTransformationServices
    Event Category: None
    Event ID: 81
    Date:  2/6/2014
    Time:  12:16:19 PM
    User:  N/A
    Computer: COMV-FCS-GGN
    Description:
    The description for Event ID ( 81 ) in Source ( DataTransformationServices ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE=
    flag to retrieve this description; see Help and Support for details. The following information is part of the event:
    Error Source: Microsoft Data Transformation Services (DTS) Package
    Error Description:Package failed because Step 'DTSStep_DTSTransferObjectsTask_1' failed.
    Error code: 80040428
    \Error Help File:sqldts80.hlp
    Error Help Context ID:0
    Package Name: Microsoft Forefront Client Security
    Package Description: Microsoft Forefront Client Security DTS
    Package ID: {4589F8C7-17D3-4A87-BB5B-0DBF47B6D00A}
    Package Version: {B02AC71F-35F8-45BA-ABA9-2EBFA5F33F62}
    Package Execution Lineage: {00A27827-0F39-4D31-BDED-AA77A00ACF12}
    Executed On: COMV-FCS-GGN
    Executed By: SYSTEM
    Execution Started: 2/6/2014 12:16:02 PM
    Execution Completed: 2/6/2014 12:16:19 PM
    Total Execution Time: 16.969 seconds
    Package Steps execution information:
    Step 'DTSStep_DTSTransferObjectsTask_1' failed
    Step Error Source: Microsoft SQL-DMO (ODBC SQLState: 01000)
    Step Error Description:[Microsoft][ODBC SQL Server Driver][SQL Server]Database 'OnePoint' cannot be opened. It has been marked SUSPECT by recovery. See the SQL Server errorlog for more information.
    Step Error code: 8004039E
    Step Error Help File:SQLDMO80.hlp
    Step Error Help Context ID:1131
    Step Execution Started: 2/6/2014 12:16:18 PM
    Step Execution Completed: 2/6/2014 12:16:19 PM
    Total Step Execution Time: 0.547 seconds
    Progress count in Step: 0
    Step 'DTSStep_DTSTransferObjectsTask_3' was not executed
    Step 'DTSStep_DTSExecuteSQLTask_1' was not executed
    Step 'DTSStep_DTSDynamicPropertiesTask_1' succeeded
    Step Execution Started: 2/6/2014 12:16:18 PM
    Step Execution Completed: 2/6/2014 12:16:18 PM
    Total Step Execution Time: 0.015 seconds
    Progress count in Step: 0
    Step 'DTSStep_DTSExecuteSQLTask_2' succeeded
    Step Execution Started: 2/6/2014 12:16:18 PM
    Step Execution Completed: 2/6/2014 12:16:18 PM
    Total Step Execution Time: 0.063 seconds
    Progress count in Step: 0
    Step 'DTSStep_DTSExecuteSQLTask_3' was not executed.
    ===========================
    Event Type: Error
    Event Source: SQL Server Report Service
    Event Category: None
    Event ID: 0
    Date:  2/5/2014
    Time:  12:34:44 PM
    User:  N/A
    Computer: COMV-FCS-GGN
    Description:
    Service cannot be started. Microsoft.ReportingServices.Diagnostics.Utilities.EventLogSourceNotFound: The event source "Schedule and Delivery Processor" does not exist.
       at Microsoft.ReportingServices.Diagnostics.Utilities.RSEventLog.Init()
       at Microsoft.ReportingServices.Diagnostics.Globals.Init(RSConfigurationManager configManager, RunningApplication app, Boolean resetAllPerfCounters)
       at Microsoft.ReportingServices.Diagnostics.Globals.Init(RSConfigurationManager configManager, RunningApplication app)
       at Microsoft.ReportingServices.Library.ServiceAppDomainController.Start(Boolean firstTime)
       at Microsoft.ReportingServices.NTService.ReportService.OnStart(String[] args)
       at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.

    Hi,
    Based on my research, this event ID 81 occurs if the account that the SQL Server agent runs as on the server with the Reporting database does not have permissions to
    the collection database on the other server. This most frequently happens if the SQL Server agent is running as Local System.
    If you are using an existing SQL Server computer for Client Security, you may not have the SQL Server Agent service using a domain user account.
    For Client Security to work correctly, you must give permissions for the account under which the SQL Server Agent service runs on the reporting database to the collection database on the
    management, collection, and reporting servers.
    In addition, the event ID 10002 is usually due to the installation of Client Security not being fully configured.
    Best regards,
    Susie

  • I am not able to open my Adobe Creative Cloud any more...What happened?

          The following is the information shows why I am not able to use my Adobe Creative Cloud. I don't konw why and how this kind of information appeared on my desktop, then I was not able to open the Adobe Photoshop CC, Adobe Illustractor CC, AfterFX... again, but I am still able to open and use Adobe Premiere Pro,Adobe Audition CC and  Flash. I don't understand what happened... when I tried to follow the instructions that shows below, it asked me to pay $500 so that I could use my Adobe again... So what can I do in order to fix it?
    "What happened to your files? All of your files were protected by a strong encryption with RSA-2048 using CryptoWall 2.0. More information about the encryption keys using RSA-2048 can be found here: http://en.wikipedia.org/wiki/RSA_(cryptosystem) What does this mean?
    This means that the structure and data within your files have been irrevocably changed, you will not be able to work with them, read them or see them, it is the same thing as losing them forever, but with our help, you can restore them.
    How did this happen? Especially for you, on our server was generated the secret key pair RSA-2048 - public and private.
    All your files were encrypted with the public key, which has been transferred to your computer via the Internet.
    Decrypting of your files is only possible with the help of the private key and decrypt program, which is on our secret server. What do I do? Alas, if you do not take the necessary measures for the specified time then the conditions for obtaining the private key will be changed.
    If you really value your data, then we suggest you do not waste valuable time searching for other solutions because they do not exist. For more specific instructions, please visit your personal home page, there are a few different addresses pointing to your page below:
    [further information removed by forum host]

    This is very serious. Your computer got infected with ransom malware, Cryptowall.
    Go here for further info.
    CryptoWall 2.0 Anything Good about Buying you Keys? - General Security
    CryptoWall and DECRYPT_INSTRUCTION Ransomware Information Guide and FAQ

  • We are facing issue to open a static form PDF in Chrome Browser , which is loaded using Adobe FormService.Able to open in other browsers but not able to open the static forms in chrome with LC 11.0 version

    We are facing issue to open a static form PDF in Chrome Browser
    , which is loaded using Adobe FormService.
    Able to open in other browsers but not able to open the static
    forms in chrome with LC 11.0 version
    Below error message:
    The document you are trying to load
    requires Adobe Reader 8 or higher. You may not have the Adobe Reader installed
    or your viewing environment may not be properly configured to use Adobe Reader.
    For information on how to install Adobe Reader and configure your viewing
    environment please see http://www.adobe.com/go/pdf_forms_configure.
    Please let us know do we have any option for disabling
    <NoXFA/> tag by calling formService. RenderPDF() method on adobe service
    For dynamic forms its working by adding <NOXFA/> in
    DDX xml . only for static forms its not working because we are not using
    assembler service for this forms.
    Please let us know how we can disable XFA in static forms??????????????????

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • Not able to open Dataset when adding Encoding Default

    Hi Experts,
    I have an urgent requirement . I wanted to make one programs Unicode Complaint
    I had to change the statement
      open dataset gv_string in text mode  for output.
    to
      open dataset gv_string in text mode encoding default for output.
    But after this change the sy-subrc is becoming 8 and not able to open the .Can any one please help
    Thanks
    Arshad

    HI,
    Maybe there is no authorization for you to write the file onto the app.server.
    Check with basis about your authorizations.
    Or could be the directory does not exist.
    Regards,
    Subramanian
    Edited by: Subramanian PL on Jun 27, 2008 1:24 AM

  • Acrord32.exe problem...not able to open pdf files..........

    I am using adobe reader 9 version. I am not able to open pdf still the acrord32.exe is running in the background. Plz help. Acrord32.exe running processes are proportional to number of times i tried to open the pdf...........So manually i need to end the process to open a pdf document.........Kindly give me the solution

    I have tried to fix this issue but all you get is programs to fix your registry for $$$$$. I cannot belive that no information exists on this BIG ISSUE for 9.0 users....
    Cant contact Adobe at all to get help ..you must purchase support from adobe to fix there ****** program...nice!

  • Not able to open Communication Channel Monitoring

    Hello All,
        I am not able to open communication Channel Monitoring in Runtime workbench under Component Monitoring. When i am click on Communication Channel Monitoring button following error was thrown. Can anybody suggest me, How to resolve this problem.
    java.lang.NullPointerException
         at com.sapportals.htmlb.table.TableView.getColumns(TableView.java:332)
         at com.sapportals.htmlb.table.TableView.getColumn(TableView.java:350)
         at com.sap.aii.mdt.amt.channelmonitoring.ChannelListTableView.setTableSortingStuff(ChannelListTableView.java:556)
         at com.sap.aii.mdt.amt.channelmonitoring.ChannelListTableView.setSingleSelectTable(ChannelListTableView.java:393)
         at jsp_channelmonitoring1213186378553._jspService(jsp_channelmonitoring1213186378553.java:257)
         at com.sap.engine.services.servlets_jsp.server.jsp.JspBase.service(JspBase.java:112)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:566)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:190)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:68)
         at com.sapportals.htmlb.page.PageProcessorServlet.doGet(PageProcessorServlet.java:29)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Thanks&Regards,
    VenkatK.

    Hi,
    The error could be because
    1) The URL referenced from RWB (Communictaion Channel) is incorrect.
            Try accesing the link directly http://HOST:JAVAPORT/mdt/channelmonitorservlet
    If you are able to open the window with out nay error, it means you url referenced from SLD is wrong. Correct your SLD and update the cache.
    2) If you are not able to access above URL, it means the java service is not running to accept your request, check in visual admin if any of the services are stopped. Try restarting the same.
    Regards,
    KNS Kumar

  • How do I reset Firefox if I am not able to open the application after ending it on the task manager?

    We changed the privacy options on firefox, closed the program, and now we are not able to open it. We have ended the process on the task manager, but it still will not open. We tried to uninstall it but it won't even let us do that. I've read lots of articles on how to reset firefox, but it isn't helpful when i can't get into firefox to try it.

    See:
    *http://kb.mozillazine.org/Browser_will_not_start_up
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    Can you bring up the Profile Manager to create a new profile?
    *http://kb.mozillazine.org/Profile_Manager
    *https://support.mozilla.org/kb/Managing+profiles

  • HT4528 On connecting my iphone5 to my windows7 pc I am not able to open the iphone folder from my computers. It says "you dont have permission to access this phone"

    On connecting my iphone5 to my windows7 pc I am not able to open the iphone folder from my computers. It says "you dont have permission to access this phone"

    I'm not sure what you're asking.  Are you writing a program that results in the error when you test it?  (This is the developer forum).

  • When I download certain files(most often exe files), I'm not able to open the source folder anymore when the download is complete.

    When I download certain files(most often exe files), I'm not able to open the source folder anymore when the download is complete. Neither can I execute the exe file. It often forces me to redownload the file in google chrome and then I go to the source folder and right click properties and I have to unblock the file. Only then I'm able to start the exe file.
    FYI: I use vista, so that might be the problem by itself...

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See "Disable virus scanning in Firefox preferences - Windows"
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

Maybe you are looking for

  • Put folders inside folders in iOS 7.1?

    Before I start, I'll just say that I have an iPad fourth generation. In the versions of iOS 7 before the recent 7.1, you were able to put folders inside folders on the home screen. I was wondering if there was a new way to do this. Maybe it was remov

  • No sound one side on headphones

    new iPhone 4s no sound on one side on headphones

  • How do I clear previously typed searched items

    I have a problem When ever I am typing something on google or youtube, in the search box...a huge list of previously searched items that i typed in shows up when i start writing something with that same letter.. on my pc, i would just select the whol

  • Error with Solaris 8 and Apache 2.0.39

    Hello everyone. I've been trying to install the binary version of Apache 2.0.39 on Solaris 8. With the binary files copied to /usr/local/apache2 and using the following command: . apachectl -f /usr/local/apache2/conf/httpd.conf -k start I get the fol

  • Problem with compound objects in IP input-ready queries

    Hi, gurus! I have following problem: In IP input-ready query I have 2 restricted key figures (KF1 and KF2): KF1 restrictions:       Char1 = X1       Char2 = 100 KF2 restrictions:       Char1 = X2       Char2 = 100 Char2 is compound with Char1, so KF1