CL_GUI_FRONTEND_SERVICES Documentation

Does anyone knows where I can find documentation for this class?

In Rel 6.20 is following (Patch-Level 48):
CL CL_GUI_FRONTEND_SERVICES
Text
Frontend Services
Functionality
The class CL_GUI_FRONTEND_SERVICES contains static methods for the following areas:
File functions
Directory functions
Registry
Environment
Write to / read from clipboard
Upload / download files
Execute programs / open documents
Query functions, such as Windows directory, Windows version, and so on
Standard dialogs (open, save, directory selection)
Example
Determine the temp directory on your PC:
DATA: TEMP_DIR TYPE STRING.
CALL METHOD CL_GUI_FRONTEND_SERVICES=>GET_TEMP_DIRECTORY
CHANGING
TEMP_DIR = TEMP_DIR
EXCEPTIONS
CNTL_ERROR = 1
ERROR_NO_GUI = 2.
IF SY-SUBRC <> 0.
Error handling
ENDIF.
flush to send previous call to frontend
CALL METHOD CL_GUI_CFW=>FLUSH
EXCEPTIONS
CNTL_SYSTEM_ERROR = 1
CNTL_ERROR = 2
OTHERS = 3.
IF SY-SUBRC <> 0.
Error handling
ENDIF.
WRITE:  /  'Temporary directory is:', TEMP_DIR.
Notes
The class CL_GUI_FRONTEND_SERVICES is based on the Control Framework. See the documentation for more information, in particular on CL_GUI_CFW=>FLUSH which must be called after many CL_GUI_FRONTEND_SERVICES methods.
Migration Information
The old file transfer model was based on function modules of the function group GRAP. The old features have been replaced by the class CL_GUI_FRONTEND_SERVICES. The following list contains the old function modules (italic) and the new methods (bold) that replace them:
CLPB_EXPORT
CLIPBOARD_EXPORT
CLPB_IMPORT
CLIPBOARD_IMPORT
DOWNLOAD
GUI_DOWNLOAD, dialog replaced by FILE_SAVE_DIALOG
PROFILE_GET
No replacement, use REGISTRY_* methods instead
PROFILE_SET
No replacement, use REGISTRY_* methods instead
REGISTRY_GET
REGISTRY_GET_VALUE, REGISTRY_GET_DWORD_VALUE
REGISTRY_SET
REGISTRY_SET_VALUE, REGISTRY_SET_DWORD_VALUE
UPLOAD
GUI_UPLOAD, dialog replaced by FILE_OPEN_DIALOG
WS_DDE
Obsolete: This function is no longer supported.
SET_DOWNLOAD_AUTHORITY
Obsolete: This function is no longer supported.
WS_DOWNLOAD
GUI_DOWNLOAD
WS_DOWNLOAD_WAN
Obsolete: This function is no longer supported.
WS_EXCEL
Obsolete: This function is no longer supported.
WS_EXECUTE
EXECUTE
WS_FILENAME_GET
FILE_SAVE_DIALOG, FILE_OPEN_DIALOG
WS_FILE_ATTRIB
FILE_SET_ATTRIBUTES, FILE_GET_ATTRIBUTES
WS_FILE_COPY
FILE_COPY
WS_FILE_DELETE
FILE_DELETE
WS_MSG
Obsolete: This function is no longer supported.
WS_QUERY
CD (current directory)
DIRECTORY_GET_CURRENT
EN (read/write environment)
ENVIRONMENT_GET_VARIABLE
ENVIRONMENT_SET_VARIABLE
FL (determine file length)
FILE_GET_SIZE
FE (check if file exists)
FILE_EXIST
DE (check if directory exists)
DIRECTORY_EXIST
WS (determine Windows system)
GET_PLATFORM
OS (operating system)
GET_PLATFORM
WS_UPLDL_PATH
Obsolete: This function is no longer supported.
WS_UPLOAD
GUI_UPLOAD
WS_VOLUME_GET
Obsolete: This function is no longer supported.
Not too much, but a bit...

Similar Messages

  • Dump in Webdynpro abap.  CL_GUI_FRONTEND_SERVICES

    Hi ,
    my requirement is to copy the clip board data and bring that to internal table.
    i have created the Function module for that inside that i have used CL_GUI_FRONTEND_SERVICES=>CLIPBOARD_IMPORT method.
    My function module is working fine when i executed in se37. i used the same FM in a Se38 program and its working fine there also.
    but when i used the same in webdynpro component it is giving dump.
    Can any one help me !!!
    Thanks
    dhinesh.
    The /sap/bc/webdynpro/sap/zmxx_ap_ops was not called due to an error.
    Note
    The following error text was processed in the system GRD : Exception condition "CNTL_ERROR" raised.
    The error occurred on the application server bdhn4751_GRD_11 and in the work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: CLIPBOARD_IMPORT of program CL_GUI_FRONTEND_SERVICES======CP
    Function: ZMXX_OPN_MULT_SELECTION of program SAPLZMXX_OPN_FGROUP
    Method: ONACTIONONVIEW of program /1BCWDY/MC5EL1ZZ4FF51IFEMMKF==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/MC5EL1ZZ4FF51IFEMMKF==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: IF_WDR_ACTION~FIRE of program CL_WDR_ACTION=================CP
    Method: DO_HANDLE_ACTION_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP
    Method: EXECUTE of program CL_WDR_MAIN_TASK==============CP
    Error Analysis :
    A RAISE statement in the program "CL_GUI_FRONTEND_SERVICES======CP" raised the
    exception
    condition "CNTL_ERROR".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Short description of exception condition:
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.

    Hi dinesh ,
    WDA does't have clipboad Functions & you cannot use the  CL_GUI_FRONTEND_SERVICES because of the below reason
    The class CL_GUI_FRONTEND_SERVICES supports the SAP GUI for Windows, the SAP GUI for the Java Environment and the SAP GUI for HTML. WebDynpro applications are not supported.
    you can refer Thomas answer in below link .
    [upload from clipboard option in webdynpro abap selection screen|upload from clipboard option in webdynpro abap selection screen]
    alternatively you can achive using ABAP memory
    creat a button for COPY ..inside that Export the value to the memory ID
    and create a button for paste and import the value using the memory ID
    Regards
    Chinnaiya P

  • Cl_gui_frontend_services= get_sapgui_workdir returns nothing with 7.20

    Hi SAP GUI Experts,
    I've installed the SAP GUI 7.20 and patched it to Patchlevel 4 on Windows 7, 64 Bit. When I run the following report
    REPORT  z_test_frontend_services.
    DATA: temp_dir   TYPE string,
          sapworkdir type string.
    cl_gui_frontend_services=>get_temp_directory(
      CHANGING
        temp_dir             = temp_dir    " Temporary Directory
      EXCEPTIONS
        cntl_error           = 1
        error_no_gui         = 2
        not_supported_by_gui = 3
        OTHERS               = 4
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    WRITE: / 'Temp Dir: ', temp_dir.
    cl_gui_frontend_services=>get_sapgui_workdir(
      CHANGING
        sapworkdir            = sapworkdir
      EXCEPTIONS
        get_sapworkdir_failed = 1
        cntl_error            = 2
        error_no_gui          = 3
        not_supported_by_gui  = 4
        others                = 5
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    WRITE: / 'SAP Workdir: ', sapworkdir.
    No values for the requested directories are returned. In the Security Settings of the Options menu I set the Default Action to Allow. As far as I understand [SAP Note 1442303 - SAP GUI 7.20 - replacement of SAPWORKDIR|https://service.sap.com/sap/support/notes/1442303] it should still work.
    Best regards
    Gregor

    Hi Uwe, Hi Julius,
    thank you, calling the "cl_gui_cfw=>flush( )." made it work. The returned Values are:
    Temp Dir:  C:\Users\gregor\AppData\Local\SAP\SAP GUI\tmp
    SAP Workdir:  C:\Windows\system32
    According to Note 1442303 that seems to be the correct behaviour as I've not used the "SAP Installation Server Administration Tool". But could anyone provide a reason why the SAP Workdir can ony be set when using the Admin Tool? Shouldn't the standalone installation of SAP GUI which most users of the NetWeaver Developer/Trial Edition will use provide this as a default? I've found the according documentation for the [GET_TEMP_DIRECTORY|http://help.sap.com/saphelp_nw70ehp2/helpdata/en/d8/369513b5994669abacb70ddf61960b/frameset.htm] where it's explicitly stated:
    "Call CL_GUI_CFW=>FLUSH in the ABAP program after calling this method to actually execute the method on the client."
    But for the [GET_SAPGUI_WORKDIR|http://help.sap.com/saphelp_nw70ehp2/helpdata/en/61/41d2c60d5d4747bfdd92626e9038ba/frameset.htm] method it is not mentioned that the cl_gui_cfw=>flush( ) has to be called. According to the documentation for [CL_GUI_FRONTEND_SERVICES|http://help.sap.com/saphelp_nw70ehp2/helpdata/en/c8/9421e2cf1d45c18adf862476234c0c/frameset.htm] where I've found:
    "If the caller needs to call the FLUSH himself, this is noted in the documentation."
    So it seems to me like a error in the documentation. I will open a OSS ticket to get this solved.
    Best regards
    Gregor

  • Using CL_GUI_FRONTEND_SERVICES- EXECUTE to open excel

    Is there a way to get EXCEL to run a macro when you open it using CL_GUI_FRONTEND_SERVICES? I have seen no documentation about the options of this method.
    Thanks

    hi,
    Get the filename using the CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DAILOG
    Using OLE run the macro using below code
    CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
    call method of h_excel 'WORKBOOKS' = h_mapl.
    set property of h_excel 'VISIBLE' = 0.
    call method of h_mapl 'OPEN'
    EXPORTING
    #1 = d_file.
    CALL METHOD OF H_EXCEL 'ActiveWorkbook' = h_book .
    CALL METHOD OF H_book 'Activesheet' = H_sheet .
    CALL METHOD OF h_excel 'RUN'
    EXPORTING
    #1 = ld_macro.

  • Issue with creation of custom layouts using SAP Help Documentation

    Hi Experts,
    My requirement is to create a home custom page layout (using web dynpro) in Composite Environment. The default options available in CE are not useful for me. I set out to make a custom layout using the following this SAP Help Documentation: [          Creating a Web Dynpro Page Layout (SAP Library - Using the Portal as a Frontend)|https://cw.sdn.sap.com/cw/docs/DOC-102846]
    I have followed the instructions and followed all the steps, yet I fail to see the application in CE. The custom page layout is not displayed neither in options and is not available any where.
    Please let me know if anybody followed these steps and have got any success.
    Thanks in advance
    Srikant

    Hi
    Can somebody let me know if they have implemented a customised solution of creation of page layouts using Web Dynpro - as per the steps suggested by SAP.
    Thanks in advance
    Srikant

  • Actions - How to replace GUI_DOWNLOAD and CL_GUI_FRONTEND_SERVICES= FILE_SA

    Hi,
    In sap gui was trigered action whih is using smartform and then output was being downloaded and saved as using:
    CALL FUNCTION 'GUI_DOWNLOAD' - to
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
    After the ubgrade this action is not working in web ui.
    Anyone knows how to change this to work in web ui?
    Thank you in advance

    Hi Tanja Lukovic 
    Pls check the settings defined in the SPRO path CRM->Basic settings->actions under this select your relevant application area and check whether any start/schedule conditions are not met (check in conditions) , apart from this reason there could be other reasons also pls check the trigger  processing type (it should be smart form print).
    if the actions are already created , you can change actions and conditions.
    Thanks & Regards
    Raj

  • Web Services API Documentation?

    Hello,
    I was looking for documentation regarding OLM web services, since I'd need to perform a few simples queries from an external software. Could you please point me in the right direction?
    Thanks....

    Hi,
    Please see "Oracle Learning Management Implementation Guide" manual, Page 11-54 -- Publicly Callable Business Process APIs in OLM. Also see "Oracle Integration Repository User Guide".
    Oracle Learning Management Implementation Guide & Oracle Integration Repository User Guide
    http://www.oracle.com/technetwork/documentation/applications-089559.html
    Oracle Integration Repository
    http://irep.oracle.com/index.html
    Thanks,
    Hussein

  • Where is Creative Cloud written documentation?

    I can find videos but they are a poor substitute for professionally prepared documentation. Where is Adobe's documentation of Creative Cloud services?

    Hi Ted,
    Help content for the individual products can be accessed from here http://helpx.adobe.com/support.html?promoid=KAWQK#
    Go the More Products section for an overall product list. Many of the products have a PDF version of the help which can be downloaded from the product specific help page.
    -Dave

  • Mobile iPhone Application for SAP B1 Documentation

    SAP releases the following statement on their landing page for their customers about using iPhone App in version 8.8.  Direct copy and paste:
    I am already using SAP Business One. Are there any requirements to be able to use this app?
    You need to be running SAP Business One version 8.8 with a professional user license. Before you start using the app, make sure your SAP partner configures the mobility settings in SAP Business One.
    Where is the documentation that is the checklist for installing and getting the mobile app up and running?  You know, the usual documentation from step A to Z - go to Add-ons and do this, go to User and do this, etc.   All I can find are videos/documents that are marketing oriented.  I have the user guide "Setting Up Mobile Scenario in 8.8", but it is woefully lacking in several steps (ie, it says some fields are mandatory, but SAP does not even mention what "code" column is supposed to mean).
    Anyone else have any luck digging out the pertinent information from SAP sites which SAP should have prominently highlighted to its partners before rolling this out?  Where can I find it?
    This all seems to be a rather disconnected roll-out.
    Thanks in Advance - Zal

    Here is part of the answer - Go here:  https://websmp203.sap-ag.de/sbo-swcenter
    Until it is changed, select "Updates" (not the other areas stated in some documentation, videos, and threads) and select "SAP Business 8.8", then "B1 8.8 Integration Component", and then it can be downloaded.
    I will add more info as the process goes along, if there is anything more...
    TIA - Zal

  • Where do I read in the documentation the list of the system properties?

    Yep. Sounds stupid. But it's true. I read in all these forums where and how to set the truststore and so on but it would be beautiful to understand it my own.
    1. First I read setting the -Djavax.net.ssl.trustStore in the VM arguments.
    2. Then I find out the the -D is just for setting something like a static property.
    3. Next I want to read about the system properties. Who, what and where the Java tries to get this system property. I do not find it.
    What I find is great help in these forums and solving this kind of problems seems easy... I googled and the only place I found info about this is in a boulder.ibm.com site:
    http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzaha/sysprop2.htm
    http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzaha/rzahajssesysprops.htm
    I also found some info on a sun tutorial but not an official documentation. Do you know where to find it? It seems that my learning is always about finding the right place to find information and not guessing and trying.
    Thanks!!

    Thanks for your soon reply. Yeah, I found that but I really was expecting a more serious documentation.
    I have to admit that it is documented. Yes. But I didn't expect to find that in middle of a guide. But more in a reference or in a specification document. It's inside the "Customization" and in a table, yes... But it's a guide!!
    I like Java but something to worry about is the "too many - too less" documentation. Documentation is not clear enough and all the hundreds of options you have can make the programming with Java no good. It would sound like a good thing have a lot of choices and hundreds of places to look info for but I am a bit disappointed with that. It's not clear enough to find the right info.
    Anyway, thanks a lot for your help!! I will have to live with that.
    Guide: http://java.sun.com/j2se/1.5.0/docs/guide/security/jsse/JSSERefGuide.html

  • Error when using the method cl_gui_frontend_services= file_open_dialog

    Hello Experts,
    I am currently practicing BDC and I think the first step is to locate where my text file is. Now based on my code below, after selecting my text file nothing happens.
    Also, what will be my next after getting the file from a specific location? Thanks guys!
    REPORT  z_aris_practice_bdc_0
            NO STANDARD PAGE HEADING
            LINE-SIZE 255
            LINE-COUNT 64
            MESSAGE-ID zz.
    *BDC Data
    DATA: BEGIN OF bdc_tab OCCURS 0.
            INCLUDE STRUCTURE bdcdata.
    DATA: END OF bdc_tab.
    *Internal Table
    DATA: BEGIN OF it_input OCCURS 0,
             user     TYPE usr02-bname,
             title    TYPE sza5_d0700-title_medi,
             lname    TYPE addr3_data-name_last,
             fname    TYPE addr3_data-name_first,
             initials TYPE addr3_data-initials,
             nickname TYPE addr3_data-nickname,
             function TYPE addr3_data-function,
          END OF it_input.
    DATA: gt_lines TYPE sy-tabix,
          gt_file  TYPE filetable,
          wa_file  TYPE filetable,
          gt_subrc TYPE i.
    *CONSTANTS
    CONSTANTS: c_mask(60) TYPE c  VALUE ',..'.
    *Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_input LIKE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_input.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
       WINDOW_TITLE            =
       DEFAULT_EXTENSION       =
       DEFAULT_FILENAME        =
       FILE_FILTER             =
          initial_directory       = 'C:\Temp\'
          multiselection          = 'X'
        CHANGING
          file_table              = gt_file[]
          rc                      = gt_subrc
       USER_ACTION             =
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          OTHERS                  = 4.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM put_in_itab.
      PERFORM process_records.
    *&      Form  get_files
          text
    FORM put_in_itab.
      DATA: lv_file TYPE string.
      lv_file = p_input.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = lv_file
        FILETYPE                      = 'ASC'
         has_field_separator           = 'X'
        HEADER_LENGTH                 = 0
        READ_BY_LINE                  = 'X'
        DAT_MODE                      = ' '
        CODEPAGE                      = ' '
        IGNORE_CERR                   = ABAP_TRUE
        REPLACEMENT                   = '#'
        CHECK_BOM                     = ' '
        VIRUS_SCAN_PROFILE            =
        NO_AUTH_CHECK                 = ' '
      IMPORTING
        FILELENGTH                    =
        HEADER                        =
        TABLES
          data_tab                      = it_input
       EXCEPTIONS
         file_open_error               = 1
         file_read_error               = 2
         no_batch                      = 3
         gui_refuse_filetransfer       = 4
         invalid_type                  = 5
         no_authority                  = 6
         unknown_error                 = 7
         bad_data_format               = 8
         header_not_allowed            = 9
         separator_not_allowed         = 10
         header_too_long               = 11
         unknown_dp_error              = 12
         access_denied                 = 13
         dp_out_of_memory              = 14
         disk_full                     = 15
         dp_timeout                    = 16
         OTHERS                        = 17
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        DESCRIBE TABLE it_input LINES gt_lines.
      ENDIF.
    ENDFORM.                    "get_files
    *&      Form  process_records
          text
    FORM process_records.
      LOOP AT it_input.
      ENDLOOP.
    ENDFORM.                    "process_records

    Hii viraylab,
    go throgh this link..This sample code solves ur problem....
    /people/milind.upasani/blog/2007/03/07/step-by-step-approach-to-ceate-simple-bdc-session-program-using-reusable-template
        U are new to BDC it seems...
        first u read the sap help ... then u will come know what to do after wards....
        http://help.sap.com/saphelp_47x200/helpdata/en/fa/097720543b11d1898e0000e8322d00/frameset.htm
    Be familiar with the structure BDCDATA.
    <b>Data transfers</b>  In this page..
    Next u need to know about the <b>transaction RECORDER the tcode is SHDB.</b>
    Nothing is difficult in this ..
    For example When u r creating a data element in SE11 u go through some screens in a flow, by clicking some pushbuttons and by generating some function codes manually, and entering values manually...
    But here u wont do it manually, these values will be populated from file into an internal table...
    Before calling a transaction into which u r going to populate the data is to be filled into a table with structure <b>BDCDATA.</b>
    <b>U need to use CALL TRANSACTION 'SE11' using BDCDATA or
    the session method..</b>
    Reward points for helpful answers...
    sai ramesh

  • Infoprovider documentation in BEx query designer

    Hi Experts,
    While users creating queries in BEx query designer (BI7) they have to see the predefined documentation about that inforprovider. Can we achive this requirement?
    What is the use of "Documents" in BEx query designer? Can we show the documentaion under this area?
    Thanks in advance.
    thanks and regards,
    Raju

    Hi,
    Plese go through these links which provides you detailed view on Documnet Navigator and Creating/Editing Documnets in it
    Business Document Navigator :[http://help.sap.com/saphelp_nw70/helpdata/EN/dd/f5253715dfb808e10000009b38f889/content.htm]
    Creating New Documents:[http://help.sap.com/saphelp_nw70/helpdata/EN/df/77ff72021311d3ae4b0000e82deb58/content.htm]
    I hope this helps you.
    Regards,
    Rajknadula

  • Customizing header and footer in the printed documentation

    Hi,
    I'm using a trial version of RoboHelp 2007 and Word 2003.
    I have two question about customizing the header and footer
    of the printed documentation.
    In the printed documentation the footer repeat at the bottom
    of each page and contain page numbers, which appear left-justified
    on even-numbered pages and right-justified on odd-numbered pages.
    How can I customize the footer, that pages numbers appear
    always right-justified?
    In the printed documentation the header repeat at the top of
    each page and are blank on the first page of sections. The name of
    the manual appears on even-numbered pages, left-justified. The name
    of the root chapter appears on odd-numbered pages, right-justified.
    How can I customize the header, that
    on every page the name of the root chapter and the name oft
    the manual appears? Furhermore I want to include a picture in the
    header. How can I realise this?

    You can't from RH. See the article on my site.
    Images in the header are tricky. If you use the setting that
    I think enables that, you will also get the images in the TOC. Try
    putting a two cell table and putting the heading in one and the
    image in another.

  • Unable to Generate Printed Documentation in PDF Format

    This past week I started having a consistent error when attempting to generate a Printed Documentation layout. This error reads "Internal error encountered,  Failed to generate Printed Documentation."  Prior Printed Documentation builds on this same project completed fine. Nothing was done to the Help project between the times when this worked and when it no longer was able to create Printed Documentation.
    I receive this error even if I generate an entirely new "blank project" build, and then attempt to create a Printed Documentation build from this new blank project.  Researching this error, I see this has been a reoccuring problem with this product for some time. The few threads that list the problem as having been "fixed" provide resolution steps that have not worked in my case. Right now I am waiting for our IT Helpdesk people to re-install the Suite. Hopefully this will resolve this problem.
    Additional information on this problem - PDF Printed Documentation is failing - the HTML build works fine. If I select just a .DOC Printed Documentation output, this also works correctly. The resulting Word document looks good, although hyperlinks do not work within this Word document. I have reloaded Office 2003 as a troubleshooting effort, but this has nbot resulted in any change in symptoms.
    The entire error text is enclosed below, although several other people have also done this in past entries. The few lines that read "Warning, and then report a style issue is NOT the problem here. As stated earlier, when I do this same Printed Documentation build on an entirely new "blank project" it does not work, and the Output text in that case does not contain any such "Warnings" about Styles.
    Error text below:
    Starting to build Printed Documentation...
    Printed Documentation processor 8.0.1.204
    Building C:\Documents and Settings\tcleary\My Documents\My RoboHelp Projects\Adobe RoboHelp 8\10515-0366-5004_7800v-hh rsp\!SSL!\Printed_Documentation.doc ...
    Preparing to create Printed Documentation...
    Clearing output folder...
    Preparing files for Print Document...
    Copying files...
    Updating files...
    Finished preparing in 2 seconds.
    Preparing environment...
    Printed Document Generator Environment: Word 11.0.8313,  OS 5.1.2600, RAM 2048 M Bytes
    Building Printed Documentation 'Printed Documentation'...
    Building Single Document 'Printed_Documentation.doc'...
    Building 'RF-7800V-HH About this Help'...
    Building 'Table of Contents'...
    Preparing to build chapters...
    Building 'RF-7800V-HH Help and Support'...
    Processing 'RF-7800V-HH Welcome'...
    Building 'RF-7800V-HH RSP Help'...
    Processing 'RF-7800V-HH Station Information'...
    Building 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Anc. Connector Mode'...
    Processing 'RF-7800V-HH No-Sync Beeps'...
    Processing 'RF-7800V-HH Power Management'...
    Processing 'RF-7800V-HH Retransmit'...
    Processing 'RF-7800V-HH USB Mode'...
    Processing 'RF-7800V-HH Broadcast Gateway'...
    Processing 'RF-7800V-HH IP Routing'...
    Processing 'RF-7800V-HH Voice Settings'...
    Processing 'RF-7800V-HH Time and Date Settings'...
    Processing 'RF-7800V-HH Position Reporting'...
    Processing 'RF-7800V-HH User Interfaces'...
    Processing 'RF-7800V-HH Net Switches'...
    Processing 'RF-7800V-HH Ethernet Interface'...
    Building 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Radio Passwords'...
    Processing 'RF-7800V-HH GPS'...
    Processing 'RF-7800V-HH Locksets'...
    Building 'RF-7800V-HH Network Types'...
    Processing 'RF-7800V-HH Network Types'...
    Building 'RF-7800V-HH Fixed Frequency LOS'...
    Processing 'General Information - Fixed Frequency LOS'...
    Processing 'RF-7800V-HH FF Network Information'...
    Processing 'RF-7800V-HH FF Preset'...
    Processing 'RF-7800V-HH FF General'...
    Processing 'RF-7800V-HH FF Comsec'...
    Processing 'RF-7800V-HH FF Data-Voice'...
    Processing 'RF-7800V-HH FF Squelch'...
    Processing 'RF-7800V-HH FF Advanced'...
    Warning: style (p.Heading7) is not defined and will be mapped to 'Normal'.
    Building 'RF-7800V-HH Quicklook'...
    Processing 'General Information - Quicklook'...
    Processing 'Hopset Creation - Quicklook'...
    Processing 'RF-7800V-HH QL Network Information'...
    Processing 'RF-7800V-HH QL Preset'...
    Processing 'RF-7800V-HH QL General'...
    Processing 'RF-7800V-HH QL Comsec'...
    Processing 'RF-7800V-HH QL Data-Voice'...
    Processing 'RF-7800V-HH QL Advanced'...
    Building 'RF-7800V-HH Sample Plans'...
    Processing 'General Information - Sample Plans'...
    Processing 'Simple Fixed and Quicklook Nets'...
    Processing 'Single Fixed and Quicklook Nets'...
    Processing 'RF-7800V-HH Manage Keys'...
    Processing 'RF-7800V-HH Program Radio'...
    Building 'RF-7800V-HH Tech Support'...
    Processing 'RF-7800V-HH Technical Support'...
    Processing 'RF-7800V-HH Radio Firmware Compatibility'...
    Building 'FAQs'...
    Processing 'RF-7800V-HH FAQ Index'...
    Processing 'FAQ 01'...
    Warning: style (span.strong) is not defined and will be removed.
    Warning: style (p.para) is not defined and will be mapped to 'Normal'.
    Processing 'FAQ 02'...
    Processing 'FAQ 03'...
    Processing 'FAQ 04'...
    Processing 'FAQ 05'...
    Processing 'RF-7800V-HH Glossary'...
    Warning: style (p.FM_CellRowHead) is not defined and will be mapped to 'Normal'.
    Warning: style (span.Glossary) is not defined and will be removed.
    Warning: style (p.FM_CellBodyLeft) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_GLOSSARY) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_Para) is not defined and will be mapped to 'Normal'.
    Completed building chapters...
    Building 'Index'...
    Updating list paragraphs...
    Updating images...
    Updating page numbers...
    Updating page headers...
    Updating Table of Contents...
    Updating Index...
    Saving 'Printed_Documentation.doc'...
    Generating 'Printed_Documentation.pdf'...
    Failed the generate PDF file 'C:\Documents and Settings\tcleary\My Documents\My RoboHelp Projects\Adobe RoboHelp 8\10515-0366-5004_7800v-hh rsp\!SSL!\Printed_Documentation.pdf'...
    Failed to save 'Printed_Documentation.doc'...
    Cleaning up temporary files...
    I am pretty sure nobody will have any fix suggestions that work to solve this problem, but I am making this entry for historical purposes. I will add an entry stating whether the Suite reload resolves this issue.
    Thanks,
    Tim C @ Harris

    If I select ONLY the Word DOC Output format in the Printed Documentation
    setup, the output is created without an error (output text below).  Links do work within
    this Word document (a symptom change since installing patch 8.0.2).
    When I use this Word document to create a PDF (using the Adobe PDF
    printer driver) a PDF is successfully created, however no bookmarks are
    created in the bookmarks panel and none of the links in this PDF work
    (although they are created looking like they will work, i.e., blue
    underlined text).
    Regards,
    Tim
    ------------- Output Text --------------------------
    Starting to build Printed Documentation...
    Printed Documentation processor 8.0.1.204
    Building C:\Documents and Settings\tcleary\My Documents\My RoboHelp Projects\Adobe RoboHelp 8\10515-0366-5004_7800v-hh rsp\!SSL!\Printed_Documentation.doc ...
    Preparing to create Printed Documentation...
    Clearing output folder...
    Preparing files for Print Document...
    Copying files...
    Updating files...
    Finished preparing in 3 seconds.
    Preparing environment...
    Printed Document Generator Environment: Word 11.0.8313,  OS 5.1.2600, RAM 2048 M Bytes
    Building Printed Documentation 'Printed Documentation'...
    Building Single Document 'Printed_Documentation.doc'...
    Building 'RF-7800V-HH About this Help'...
    Building 'Table of Contents'...
    Preparing to build chapters...
    Building 'RF-7800V-HH Help and Support'...
    Processing 'RF-7800V-HH Welcome'...
    Building 'RF-7800V-HH RSP Help'...
    Processing 'RF-7800V-HH Station Information'...
    Building 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Anc. Connector Mode'...
    Processing 'RF-7800V-HH No-Sync Beeps'...
    Processing 'RF-7800V-HH Power Management'...
    Processing 'RF-7800V-HH Retransmit'...
    Processing 'RF-7800V-HH USB Mode'...
    Processing 'RF-7800V-HH Broadcast Gateway'...
    Processing 'RF-7800V-HH IP Routing'...
    Processing 'RF-7800V-HH Voice Settings'...
    Processing 'RF-7800V-HH Time and Date Settings'...
    Processing 'RF-7800V-HH Position Reporting'...
    Processing 'RF-7800V-HH User Interfaces'...
    Processing 'RF-7800V-HH Net Switches'...
    Processing 'RF-7800V-HH Ethernet Interface'...
    Building 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Radio Passwords'...
    Processing 'RF-7800V-HH GPS'...
    Processing 'RF-7800V-HH Locksets'...
    Building 'RF-7800V-HH Network Types'...
    Processing 'RF-7800V-HH Network Types'...
    Building 'RF-7800V-HH Fixed Frequency LOS'...
    Processing 'General Information - Fixed Frequency LOS'...
    Processing 'RF-7800V-HH FF Network Information'...
    Processing 'RF-7800V-HH FF Preset'...
    Processing 'RF-7800V-HH FF General'...
    Processing 'RF-7800V-HH FF Comsec'...
    Processing 'RF-7800V-HH FF Data-Voice'...
    Processing 'RF-7800V-HH FF Squelch'...
    Processing 'RF-7800V-HH FF Advanced'...
    Warning: style (p.Heading7) is not defined and will be mapped to 'Normal'.
    Building 'RF-7800V-HH Quicklook'...
    Processing 'General Information - Quicklook'...
    Processing 'Hopset Creation - Quicklook'...
    Processing 'RF-7800V-HH QL Network Information'...
    Processing 'RF-7800V-HH QL Preset'...
    Processing 'RF-7800V-HH QL General'...
    Processing 'RF-7800V-HH QL Comsec'...
    Processing 'RF-7800V-HH QL Data-Voice'...
    Processing 'RF-7800V-HH QL Advanced'...
    Building 'RF-7800V-HH Sample Plans'...
    Processing 'General Information - Sample Plans'...
    Processing 'Simple Fixed and Quicklook Nets'...
    Processing 'Single Fixed and Quicklook Nets'...
    Processing 'RF-7800V-HH Manage Keys'...
    Processing 'RF-7800V-HH Program Radio'...
    Building 'RF-7800V-HH Tech Support'...
    Processing 'RF-7800V-HH Technical Support'...
    Processing 'RF-7800V-HH Radio Firmware Compatibility'...
    Building 'FAQs'...
    Processing 'RF-7800V-HH FAQ Index'...
    Processing 'FAQ 01'...
    Warning: style (span.strong) is not defined and will be removed.
    Warning: style (p.para) is not defined and will be mapped to 'Normal'.
    Processing 'FAQ 02'...
    Processing 'FAQ 03'...
    Processing 'FAQ 04'...
    Processing 'FAQ 05'...
    Building 'RF-7800V-HH Glossary'...
    Warning: style (p.FM_CellRowHead) is not defined and will be mapped to 'Normal'.
    Warning: style (span.Glossary) is not defined and will be removed.
    Warning: style (p.FM_CellBodyLeft) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_GLOSSARY) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_Para) is not defined and will be mapped to 'Normal'.
    Completed building chapters...
    Building 'Index'...
    Updating list paragraphs...
    Updating images...
    Updating page numbers...
    Updating page headers...
    Updating Table of Contents...
    Updating Index...
    Saving 'Printed_Documentation.doc'...
    Completed building Printed Documentation...
    Preparing output directory...
    Cleaning up temporary files...
    Finished Printed Documentation generation in 5 minutes 36 seconds.
    Building Printed Documentation complete.

  • CS4 Suite (all Windows versions) - documentation of XML and pre-configuration of components?

    With a view to packaging and deploying CS4 in Microsoft enterprise environments (ie GPO restricted desktops, mandatory user profiles, non-administrative user base, at or near minimum spec hardware) I was wondering if anyone was aware of any documentation, official or otherwise, for pre-configuration or omission of individual components within the CS4 suite in order to more specifically tailor their operation to user requirements.  Eg, such as the way Adobe provide a transform generator/editor for Acrobat in its standalone form.
    The instructions for performing silent installs with or without the more major components (such as Dreamweaver, Photoshop etc) work fine, and the Adobe CS4 Deployment Toolkit (aka AdobeUberInstaller) deals with a number of omissions in the base installer such ELUA and updates suppression.  However there are various options within the applications themselves I would like to change the defaults for at install time (eg suppress Adobe Bridge from prompting to run at startup, address Acrobat's refusal to run until another element of the suite has been run first etc), patches I would like to slipstream rather than apply retrospectively (currently Air, Indesign, Photoshop), and some elements (such as foreign language components and 64bit support) I would ideally like to omit from the source package altogether to keep the size down - 6GB+ to 500 clients is quite an ordeal!
    Web resources such as application deployment forums have allowed me to address some of the above, but I would be very interested in the feedback/experiences of this community.  I appreciate what I'm asking is somewhat vague but any crumbs of wisdom all add up...
    Many thanks in advance for any suggestions.
    Bill

    The best is to get the versions in which you have developed/tested. These can be found in MAX under Software, if it is possible provide a link to the NI ftp download URL.
    Then export the settings in MAX (for tasks/scales) if you use them and provide a simple app that loads these items into MAX.
    For RIO I'm not totally sure but I would create 'Getting started' that outlines what settings (IP/DNS etc.) to get the user started.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

Maybe you are looking for

  • Firmware Upgrade and Battery Life?

    Since the firmware upgrade on my Macbook in early February the fan appears to be running at full speed all the time and battery life is crap! Has anyone else noticed this? Is there a fix/workaround available please?

  • MiniDisplay to DVI on Mac Pro

    I recently bought a refurbished Mac Pro (4,1) 2.93ghz Quad core and I'm trying to get 2 monitors working with it like I had with my G5. The problem is that I cannot get either monitor to work with the Minidisplay port. I've tried using a MDP to VGA a

  • Times font is missing in Dreamweaver 5.5

    I've been using the Times font on my website for ages but suddenly Dreamweaver is unable to use this font. It is missing from the font list even though it works perfectly in Photoshop or other programs. The screen font in Dreamweaver suddenly changed

  • Can't drag songs onto iPod in iTunes

    I recently sent my corrupted iPod to Apple to be serviced. It got sent back and something was wrong with the hard drive in my computer I guess. Now I set up my iPod with my computer again but I can't put song on it. I drag the songs over to the iPod

  • Help pairing Motorola H700 Headset

    I've been trying to pair my h700 headset with my powerbook G4. However, it seems to get tuck on the bluetooth assistant. For example, I start the assistant, and it sees the device, but then it just sits there and contiunes searching for other headset