Search external files on RoboHelp Server

With the RoboHelp Server (previously called the RoboEngine)
installed on a server, you can add external files to your WebHelp
or FlashHelp project and have the Search tab also search the
contents of those files (PDF, DOC, XLS, PPT, and HTML). All you
have to do is create an HTTP or FTP link to the external files and
the RoboHelp Server will scan them and add them to the search
index.

Hi, rune1io
From what I understand, the (PPT, DOC, XLS, TXT, and PDF)
files would have to be included in the project, either in baggage
files or placed in the root of your project folder on the server.
Here is a snip from the online help regarding this:
<snip>
Enhanced indexing support for Search
In RoboHelp Server 8, for all the WebHelp Pro and FlashHelp
Pro projects, you can search for any topics and baggage files (PPT,
DOC, XLS, TXT, and PDF) included in a project. You can also add a
reference to these files in a topic, and the baggage files are
displayed in the search results.
For server-side indexing, you can copy the required baggage
files to the project folder. The RoboHelp server reads these files
and re-creates the index at the time of scheduled scanning. Also,
if you do not include these baggage files in the project, the
server still indexes them, provided they exist in the project
folder.
</snip>
So it seems that a link to an external file via HTTP or FTP
would not be indexed. I will try to seek further clarification on
this, but that's the way I read it.
Thanx,
john

Similar Messages

  • Mac mini Server 10.6  unable to search for files on the server from desktop.

    I'm running Mac mini Server 10.6 with 15 various Apple Mac desktops 10.4 / 10.6. The problem i'm having is that i'm unable to search for files on the server from any of the desktops. I have fixed permissions and rebooted. I can perfomr a search though command - F and spotlight from the server.
    Anyone have any ideas?

    I have a Mac mini server with Mac osx 10.6.8 installed --- I have a website {UNDER CONSTRUCTION} installed on it with a REGISTERED DOMAIN NAME belizeansworldwide.com -->[DNS service w/GoDaddy]  & DSL INTERNET service  w/VERIZON --- {My server is the ONLY DEVICE CONNECTED to my VERIZON DSL router/modem}
    When I enter my DOMAIN NAME or WAN IP # in my browser(s)--> Chrome OR Safari -- i get my Verizon modem
    set-up page-->{this incl the WAN IP# as I expected}----{NORMALLY I WOULD ACCESS MY Actiontec
    modem/router via 192.168.1.1} --- While in that webpage there's an option "shared files/folders"   & clicking on that option DISPLAYS MY WEBSITE --->  {"PORT FORWARDING DID NOT RESOLVE THAT"}
    My next attempt @ a solution was through my Server's SystemPreference>Sharing>Internet Sharing
    & this the Original Object of my post ===>  "MY SHARING PANEL DOES NOT INCLUDE THE OPTION
    FOR   'Internet Sharing' among the others like CD DVD, Remote Login,Remote Management, Bluetooth Sharing, etc.etc ---- Hope this additional info will help to clarify  &/or explain my problem
    Thanks, & best regards to you & yours

  • Searching a file in application server

    Hi Guys ,
    Any ways by which i can search a file passed in my program in the sap network ...
    reagrds.

    check out this link
    http://sap.ittoolbox.com/code/d.asp?a=s&d=2241
    In the code sample given there (for a different purpose), check out the form
    <b>FORM SEARCH_PROT</b>
    The code within this form is what is required for your case. Note that you have slightly modify the code, the code given there is for listing all files in the directory.
    Just found a better sample at (after posting)
    http://www.sapassist.com/code/d.asp?d=1862&a=s
    Regards
    Raja
    Is my answer for your previous Uplaoding PDF file to Application server and Web application from net Direc useful. Do you need more help on that?

  • Searching external files

    We are using interMedia to index files stored in our file system. I've set up a FILE_DATASTORE preference and created the index as described in the reference guide. Now that I have the index, how do I search it?
    Thanks!
    --Laura                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    illegalthreadstate wrote:
    So assume you have a folder in an external hard drive called "Documents" and you can browse all files normally with Finder. The minute you type anything in the Finder's search box, all files disappear regardless of what you have just typed.
    If I try the same with a folder in my system hard drive, it behaves as expected. In the spotlight privacy tab, the volume is in the exclusion list, so I assume that explains why.
    yes, it does.
    However, I don't think this justifies not being able to filter by filename.
    because you excluded the drive from searches. spotlight behaves exactly as you told it to.
    Why should I have to go through the overhead of files and all their content being indexed for something as fundamental as searching by filename?
    what overhead? what's the problem with indexing the external? it's a one time operation. after that the searches are very quick.
    Just curious what others have to say...

  • How to upload a file in application server to an internal table

    Hi,
          I am asked to upload a file from application server to internal table. Can you please suggest me the ways to do it or the function module which helps to browse the application server file names.
      I have done a program. But its giving problem in searching the files from application server. I am pasting my code for ur review. Please tell me which part i have to correct or suggest me some other ways to do it.
    *& Report  ZUPLOAD1
    REPORT  ZUPLOAD1.
    type-pools: truxs.
    parameters: p_upl_ps radiobutton group g1 default 'X', "upload from pres. server
                 p_path type rlgrap-filename, 
                 p_upl_as radiobutton group g1,   "upload from appln server
                 <b>p_dir LIKE filepath-pathintern DEFAULT 'Y_ABAP', 
                 p_file LIKE filepath-pathintern lower case,</b>      
                 p_test as checkbox.
    constants: c_x value 'X',
               c_tab type c value cl_abap_char_utilities=>horizontal_tab.
    types: ty_data(1000) type c.    "structure to hold legacy data
    data: i_data type standard table of ty_data. "internal table of ty_data
    types: begin of stritab,
          land1 type v_t604-land1,  "structure of legacy file.
          stawn type v_t604-stawn,
          bemeh type v_t604-bemeh,
          impma type v_t604-impma,
          minol type v_t604-minol,
          end of stritab.
    data: gi_itab type standard table of stritab, "internal table of legacy file
          gw_itab type stritab.  "work area
    data: i_raw type truxs_t_text_data,
          v_fullpath type string.
    at selection-screen on value-request for p_path.
    if p_upl_ps = c_x. "if presentation server is selected
    perform get_file.
    else.            "if application server is selected
    perform set_file_path.      
    perform upload_from_server.
    perform split_data.
    endif.
    form get_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
      PROGRAM_NAME        = SYST-CPROG
      DYNPRO_NUMBER       = SYST-DYNNR
      FIELD_NAME          = ' '
    IMPORTING
       FILE_NAME           = p_path.     "getting the file name of pres server
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
      EXPORTING
      I_FIELD_SEPERATOR          =
        I_LINE_HEADER              = 'X'              "converting excel to sap and filling in
        I_TAB_RAW_DATA             = i_raw      "internal table
        I_FILENAME                 = p_path
      TABLES
        I_TAB_CONVERTED_DATA       = gi_itab
    EXCEPTIONS
       CONVERSION_FAILED          = 1
       OTHERS                     = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.
    form set_file_path.                 "Getting the file path of application server
    data: lv_file type p_file.
          lv_file = p_file.
          CALL FUNCTION 'FILE_GET_NAME_USING_PATH'
            EXPORTING
            CLIENT                           = SY-MANDT
              LOGICAL_PATH                     = p_dir
            OPERATING_SYSTEM                 = SY-OPSYS
            PARAMETER_1                      = ' '
            PARAMETER_2                      = ' '
            PARAMETER_3                      = ' '
            USE_BUFFER                       = ' '
              FILE_NAME                        = lv_file
            USE_PRESENTATION_SERVER          = ' '
            ELEMINATE_BLANKS                 = 'X'
           IMPORTING
             FILE_NAME_WITH_PATH              = v_fullpath
           EXCEPTIONS
             PATH_NOT_FOUND                   = 1
             MISSING_PARAMETER                = 2
             OPERATING_SYSTEM_NOT_FOUND       = 3
             FILE_SYSTEM_NOT_FOUND            = 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.
    endform.
    form upload_from_server.
    data: lv_msg type string,
          lw_data type ty_data.
    open dataset v_fullpath for input message lv_msg in text mode encoding default.
    if sy-subrc <> 0.
    message lv_msg type 'i'.
    stop.
    endif.
    do.
    read dataset v_fullpath into lw_data.
    if sy-subrc <> 0.
    write:/5 'Error in processign data set'.
    exit.
    endif.
    append lw_data to i_data.
    enddo.
    close dataset v_fullpath.
    if sy-subrc <> 0.
    write: /5 'Error closing dataset'.
    endif.
    endform.
    form split_data.
    data: lw_data type ty_data.
    data: lw_itab type stritab.
    data: begin of ty_itab,
          land1 type v_t604-land1,
          stawn type v_t604-stawn,
          bemeh type v_t604-bemeh,
          impma type v_t604-impma,
          minol type v_t604-minol,
          end of ty_itab.
    loop at i_data into lw_data.
    split lw_data at c_tab into
          ty_itab-land1
          ty_itab-stawn
          ty_itab-bemeh
          ty_itab-impma
          ty_itab-minol.
    lw_itab-land1 = ty_itab-land1.
    lw_itab-stawn = ty_itab-stawn.
    lw_itab-bemeh = ty_itab-bemeh.
    lw_itab-impma = ty_itab-impma.
    lw_itab-minol = ty_itab-minol.
    append lw_itab to gi_itab.
    endloop.
    endform.
    start-of-selection.
    loop at gi_itab into gw_itab.
    write: /5 'COUNTRY', 'IMPORT CODE', 'SUP UNIT', 'FIRST UOM', 'SECOND UOM',
           /5 gw_itab-land1, gw_itab-stawn,gw_itab-bemeh,gw_itab-impma,gw_itab-minol.
    endloop.
    end-of-selection.
    I hope problem must be in p_dir and p_file which are in bold.. Kindly help me out. Thanks in advance.

    see the following ex:
    *&      Form  SUB_GET_FILEPATH
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_GET_FILEPATH .
        GFILE = 'D:\SAP_INT\INBOUND\INBOX'.  "Path
    ENDFORM.                    " SUB_GET_FILEPATH
    *&      Form  SUB_GET_FILE
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_GET_FILE .
      DATA: P_FDIR(200) TYPE C.
      DATA: IT_FILEDIR1 TYPE STANDARD TABLE OF TY_FILEDIR WITH HEADER LINE.
      P_FDIR = GFILE.
      CALL FUNCTION 'RZL_READ_DIR_LOCAL'
        EXPORTING
          NAME     = P_FDIR
        TABLES
          FILE_TBL = IT_FILEDIR.
      REFRESH : IT_FILEDIR1.
      LOOP AT IT_FILEDIR.
        IF IT_FILEDIR-NAME(4) = 'ZINC' OR IT_FILEDIR-NAME(4) = 'zinc'.
          MOVE IT_FILEDIR-NAME TO IT_FILEDIR1-NAME.
          APPEND IT_FILEDIR1.
        ENDIF.
      ENDLOOP.
      IF IT_FILEDIR1[] IS INITIAL.
        STOP.
      ENDIF.
      LOOP AT IT_FILEDIR1.
        REFRESH: I_TAB.
        CLEAR: I_TAB.
        NAME = IT_FILEDIR1-NAME.
        CONCATENATE: GFILE '\' NAME INTO G_FILE.
        OPEN DATASET G_FILE FOR INPUT IN TEXT MODE
                                         ENCODING DEFAULT
                                         IGNORING CONVERSION ERRORS.
        IF SY-SUBRC EQ 0.
          CONCATENATE 'FILENAME  : ' G_FILE INTO I_MSG1.
          APPEND I_MSG1.
          DO.
            READ DATASET G_FILE INTO RECORD.
            IF SY-SUBRC = 0.
              SPLIT RECORD AT ',' INTO I_TAB-BUKRS  I_TAB-EBELN
                  I_TAB-BLDAT  I_TAB-XBLNR I_TAB-LIFNR I_TAB-AMOUNT
                  I_TAB-CURR  I_TAB-BUSAREA
                  I_TAB-BKTXT I_TAB-DMBTR I_TAB-MENGE I_TAB-SRNO.
              MOVE-CORRESPONDING I_TAB TO I_TAB1.
            ELSE.
              EXIT.
            ENDIF.
            APPEND I_TAB1.
            CLEAR: I_TAB, I_TAB1.
          ENDDO.
        ENDIF.
        CLOSE DATASET G_FILE.

  • Writing from a BLOB to a FIle on the Server

    I need to be able to save the data from a BLOB column to an external file on the server, preferably in a temporary directory. Afterwards I will add a header to the file and send to the web client. I believe I know how to add the header. However, everything I have read in DBMS_LOB or UTIL_FILE describes saving a BFILE or CLOB to a BLOB, but not the reverse. Can you save from a BLOB to an external file on the server? The processing must be done on the Server.
    I have been able to select TEXT from a VARCHAR column and save to a file on the server but unable to select a BLOB and save to the file.
    Thank you for your help,

    UTL_FILE would be the correct thing to use, but I seem to recall that it didn't work for binary files. It apparently adds CR LF data into the files when written. I am not sure if this has changed recently or not. You might try posting in the database or PL/SQL forum about UTL_FILE.

  • Using external search without RoboHelp server

    Is it possible to index pages external to your project in
    order to conduct searches without having RoboHelp Server?
    Thanks

    Hi, rune1io
    From what I understand, the (PPT, DOC, XLS, TXT, and PDF)
    files would have to be included in the project, either in baggage
    files or placed in the root of your project folder on the server.
    Here is a snip from the online help regarding this:
    <snip>
    Enhanced indexing support for Search
    In RoboHelp Server 8, for all the WebHelp Pro and FlashHelp
    Pro projects, you can search for any topics and baggage files (PPT,
    DOC, XLS, TXT, and PDF) included in a project. You can also add a
    reference to these files in a topic, and the baggage files are
    displayed in the search results.
    For server-side indexing, you can copy the required baggage
    files to the project folder. The RoboHelp server reads these files
    and re-creates the index at the time of scheduled scanning. Also,
    if you do not include these baggage files in the project, the
    server still indexes them, provided they exist in the project
    folder.
    </snip>
    So it seems that a link to an external file via HTTP or FTP
    would not be indexed. I will try to seek further clarification on
    this, but that's the way I read it.
    Thanx,
    john

  • RoboHelp Server 8 reports - printing to a file for distribution

    I've been using RH7 WebHelp Pro layout to publish to RoboHelp Server 8 default database for about 2 weeks now. We've got F1 help linked to our windows and everything seems to be working fine except for the following:
    #1 - As noted in a previous posting, if quotes are used around search keywords, then the html code for quotes displays in the details of the Frequently Asked Questions or Unanswered Questions reports. I've reported this as a bug as well. It really makes the report results a pain to read, especially when someone uses quotes and another doesn't for the same keywords.
    #2 - Although I can view and print any of the RoboHelp Server 8 reports, there is no way for me to save it to a pdf format so that I can distribute the report to managers that are not local. If there is a way to do this, I would appreciate knowing what steps need to be taken so that I can produce a pdf file on the server.

    There is currently no way to save the report data from the RH Server application. Personally I'd like the option to save it in a number of different formats with PDF being just one. How about .XLS, .TXT, .RTF for starters. However as this doesn't exist this is really helping you. You should be able to get the data out of the RH Server database by using an external reporting tool (e.g. Crystal) that specialising in this sort of thing.
    I'd also strongly suggest that you submit a feature request to get this functionality added to a future release. When you do so, please state that it is for RH Server in the comments field.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

  • Searching External Drive on Server

    We recently added a 1 Tb external hard drive to our server and when we try to search for files on it, it only shows us folders, never an individual file. And it only shows the folder, not what's inside it.
    I've added it the the privacy window in Spotlight and left it for anywhere from 1 minute to 24 hours before removing it and it still won't find files.
    Any suggestions??

    In the GetInfo window, click the disclosure triangle of "Sharing and Permissions". This will open up that part showing the Owner, Group, and everyone permissions., and also show the little gear in the center of the bottom margin. Click on the little gear and you get a submenu that includes propagate permissions.
    Using Server Admin, connect to your Server and log in with a Server Admin account. Click the File Sharing Icon, and select the drive you want to look at. The default display shows permissions in the bottom pane, and makes clearer what is the Posix default file permissions ("inherited" file permissions) and what is the "add-on" Access Control List (ACL) permissions. Double click on the drive or folder to navigate more deeply, and use the buttons to set permissions. Help is available.

  • How to Provide search Help for files on Application Server

    Hi Guys,
                   Can anyone tell me How to Provide search Help for files on Application Server. I have put a file name on selection screen. I want to give search help for files on application server.
    Thanks & Regards.
    Harish.

    Hi Harish,
    Use the following code,
    tables sxpgcotabe.
    data: lt_execprot LIKE btcxpm OCCURS 0 WITH HEADER LINE,
            w_filepath(60)       TYPE c, --> length depending on your Directory path.
      SELECT SINGLE *
        FROM sxpgcotabe
             WHERE name = 'LIST_DB2DUMP'
               AND opsystem = sy-opsys.
      IF sy-subrc <> 0.
        SELECT SINGLE *
          FROM sxpgcotabe
               WHERE name = 'LIST_DB2DUMP'
                 AND opsystem = 'UNIX'.
        IF sy-subrc <> 0.
          MESSAGE e000 WITH 'External operating system command '
                            'LIST_DB2DUMP not found'.
        ENDIF.
      ENDIF.
      sxpgcotabe-parameters = p_filepath. --> provide the directory path.
      CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
           EXPORTING
                commandname                   = sxpgcotabe-name
                additional_parameters         = sxpgcotabe-parameters
                operatingsystem               = sxpgcotabe-opsystem
           TABLES
                exec_protocol                 = lt_execprot 
           EXCEPTIONS
                no_permission                 = 1
                command_not_found             = 2
                parameters_too_long           = 3
                security_risk                 = 4
                wrong_check_call_interface    = 5
                program_start_error           = 6
                program_termination_error     = 7
                x_error                       = 8
                parameter_expected            = 9
                too_many_parameters           = 10
                illegal_command               = 11
                wrong_asynchronous_parameters = 12
                cant_enq_tbtco_entry          = 13
                jobcount_generation_error     = 14
                OTHERS                        = 15.
      IF sy-subrc <> 0.
        MESSAGE e000 WITH text-e01 p_filepath.  "Directory failed
      ENDIF.
    Loop round the directory list, split each line up into a line table
    and get the last data for each line, should be the filename
    Then build the dirlist.
      REFRESH t_dirlist.
      LOOP AT lt_execprot.
        REFRESH t_dirline.
        SPLIT lt_execprot-message AT space INTO TABLE t_dirline.
        DESCRIBE TABLE t_dirline LINES w_nolines.
        READ TABLE t_dirline INDEX w_nolines.
        MOVE t_dirline-data TO t_dirlist-filename.
        APPEND t_dirlist.
      ENDLOOP.
    Here you will get all the files in the directory mentioned in Application server.
    For displaying them as a Search help use the FM '/BMC/ZPOPUP_GET_VALUE'
    Pass the Internal table to this FM.
    Regards,
    Paul.

  • How to search file in application server using pattern

    Hi all,
    I want to search file in application server.
    Suppose there is file named abc20090808.dat.
    Is there is any function module to search the file?
    it should return back the file names starting with abc, if the import parameter is abc*
    Regards,
    Nikhil

    hello,
                 Have a look
            You can use this function module /SAPDMC/LSM_F4_SERVER_FILE for F4 help for application server file and then you can use the function module TEXT_CONVERT_XLS_TO_SAP to read data into internal table.
      access file from application server
    regards,
    shweta

  • Integrating External File Server In SAP EP - Help Needed.

    Hello All,
    We have a EP 7.0 Running on HP-UX, can some one please tell me how I can integrate an External File Server or a Web DAV Folder into the SAP EP.
    Any suggestion would be a great help.
    Best Wishes,
    John.
    Message was edited by:
            John Bray

    Hi John,
    This would be helpful for you for Webdav or external filesystems  
    <a href="http://help.sap.com/saphelp_ep60sp2/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm">Integrating Documents from a Windows System into KM</a>
    Pls reward points if  helpful
    Regards
    Vineeth

  • Searching Directories and Files in Application Server

    Hi All,
    I need a function module that will give me all FOLDERS, SUBFOLDERS and FILES in an application server.
    So far function modules like RZL_READ_DIR_LOCAl, SUBST_GET_FILE_LIST and EPS_GET_DIRECTORY_LISTING can only work if I specify at least one folder name after the server IP.
    I wanted the folder names to be searched dynamically by passing only server IP.
    This is for a background program.
    Please help
    Thanks in advance.
    Regards,
    Lily

    Done.

  • Search in external files with Oracke DB?

    Is it possible to use Oracle DB to search in external files (Excel and Word)?
    If yes, does it work in version 7 and 8 also?
    Per Magne

    Is it possible to use Oracle DB to search in external files (Excel and Word)?
    If yes, does it work in version 7 and 8 also?
    Per Magne Yes it is possible. The name for this feature is different in each version and I recommend to use 8.1.7 or 9i and you can use a FILE_DATASTORE.
    Oracle is using a third party apllication (INSO-Filter) to covert excel,word,... to html and index these.
    7/8 context option (or cartridge)
    8i Intermedia Text
    9i Oracle Text
    For further in see the documention here on technet.
    Thomas

  • PLSQL sample for searching a file name in the server

    Hello All,
    what plsql package i need to use or any plsql sample code available for searching a file name in the server.
    For example If I provide any text "XX%", the plsql code should provide me the list of file names in a specific folder in server.
    If any one worked on this kind of requirement, please provide me the sample code.
    Thanks & Regards
    Aboothahir

    Hello,
    https://sourceforge.net/projects/oracle-jutils/
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584#1565062600346635117
    {message:id=4070746}
    Regards
    Marcus

Maybe you are looking for

  • How to set thumbnailUrl and/or thumbnailLocation?

    Hi... I have now been struggling how to set the URL or location for the thumbnail, when packaging a book... PS. The thumbnail is already uploaded to a location I know the path to: This is my XML request (bolded text are examples): [thumbnailLocation

  • End of year as default value in date item [SOLVED]

    Hi I'd like the last day of the current year (i.e. 31.12.2008) to be the default value of an item (in Forms 6i) (Format dd.mm.rrrr). The default value in the database is TO_DATE('31.12.'||TO_CHAR(sysdate,'yyyy')) and there it works fine. In Forms I h

  • Service activity creation in SAP from MSP (Microsoft Project)

    Dear All, As we are planning to integrate  SAP & MSP, I have one query regarding service activity creation in SAP from MSP. In case of service activity in SAP we have to assign respective services also otherwise it does not get saved.So when we trans

  • Throws infinite-loop error after cycline through Vector - HELP!!!

    public void paint(Graphics g) { FontMetrics fm = g.getFontMetrics(); xpos = (getSize().width - fm.stringWidth(((String[])parseVector.elementAt(kount))[1])) / 2; if (ypos >= getSize().height || ypos <= 0) { g.drawString("", 0, 0); // CLEAR THE APPLET

  • PDF Version 1.7

    Hi there, whenever I use the CreatePDF service, the PDF created always seems to be version 1.5.  I need to create a document that is PDF version 1.7, is there a way to change this using the CreatePDF service?  Thanks in advance.