FRONTEND_ERROR in the "WS_QUERY"

Hello Experts,
I am getting an runtime error when trying to open an archived invoice via transaction FBL5N.This runtime error is coming in the FM " WS_QUERY" with description as " Exception condition "Frontend Error raised."  Is this error is related to the SAP/IXOS/LiveLink or the SAP Gui?
Currently I am using SAP GUI 640 and we recently upgraded to the ECC 6.0 from 4.7.
Please provide your valuable inputs to overcome this problem.
Thanks and Regards,
Sachin

Even we are getting this error.
Is there any solution to this error?

Similar Messages

  • CALL_BROWSER function is not launching the browser

    Hello friends,
    We have ECC6 server and I have written a custom bapi that calls "CALL_BROWSER" function. We have sevaral window clients with sapGUI running on them from where we logon to server to use this BAPI.
    The CALL_BROWSER function launches browser with the right URL on all the window clients. However, on one of the client
    which is WIndows 7 (64 BIT), it doesn't launch the browser at all.
    SAP has a function name WS_QUERY, that is suppose to return the u201Cnameu201D of the operating system that the SAP GUI is running under. In the WS_QUERY function, there is code to distinguish between Unix, OSX, OS/2, and all the flavors of windows except for the Windows 7 64-bit operating system.
    Has anyone seen this problem before? I would appreciate if some one can please let me know how to fix this problem.
    Thanks
    Ram

    Since no one responded, looks like this is not the right place to ask this question and so closing the question

  • Hi Experts, replace function module WS_QUERY to return the name of OS?

    Hi Experts,
    the function WS_QUERY can return your computer operating system, you can try it SE37(WS_QUERY), and only give value 'OS' to the QUERY parameter and execute the function, you can see it in RETURN parameter, but now this function is obsolete and I must replace it with another function or method, can anyone of you tell me which function can totally(the return value need to be the same, but any valuable feedback is also welcome) replace it? thanks in advance!
    Kind regards
    Dawson

    Hi Dawson,
    You can use the static method GET_PLATFORM of the class CL_GUI_FRONTEND_SERVICES.
    Regards,
    Jeevan

  • How to open a web page from a BSP ? Or swap from the actual URL to another?

    Hi,
    I have a BSP, executing some data loading. It works fine.
    I am trying to enhance it by adding a call to another URL, at the end of the program.
    The same code works when I execute it from transaction SE38. However, when this is executed from the BSP itself, the return code of the function CALL_BROWSER is 2.
    I made som debugs, and the CALL_BROWSER function executes another function which is WS_QUERY. And there, SAP seems not being able to find wich system it is running on.
    Has someone done that before?
    Here is the code of my BSP (the same that works in SE38):
    DATA : appname      TYPE string,
           ls_page_name TYPE string,
           cb_true      TYPE boolean,
           cb_false     TYPE boolean,
           url          TYPE string,
           c_url(2054)  TYPE c.
        MOVE : 'ZPC_STKVTES'     TO appname,
               'zpc_stkvtes.htm' TO ls_page_name,
               'X'               TO cb_true,
               '-'               TO cb_false.
        CALL FUNCTION 'UPWB_GET_APPLICATION_URL'
          EXPORTING
            application          = appname
            page                 = ls_page_name
            ib_additional_params = cb_true
            ib_in_subgui         = cb_false
            ic_preview_type      = 'B'
          IMPORTING
            url                  = url.
        CONCATENATE url '&bps-design_messages=X' INTO c_url.
        CALL FUNCTION 'CALL_BROWSER'
          EXPORTING
            url                    = c_url
            window_name            = ' '
            new_window             = 'X'
          EXCEPTIONS
            frontend_not_supported = 1
            frontend_error         = 2
            prog_not_found         = 3
            no_batch               = 4
            unspecified_error      = 5
            OTHERS                 = 6.
    Regards
    Laurent
    Message was edited by: Laurent THIBERT

    > Thanks, but can I use such technology within Abap?
    YES with report programs or dialog programs but not in BSP framework
    > I use the Event OnProcessing of the BSP to execute
    > many tasks, and then only I want to open or swap to
    > antoher URL.
    in that case you can either use
    navigation->goto_page(<url>) .
    or if you want to open the page in a new window.
    inoninputprocessing after all your processing done youc an set a varialbe say opennewwindow = 'YES'
    and in the layout write this code.
    <% if opennewwindow = 'YES' . %>
    <script>
          window.open( '<%= url %>', target='_balnk');
          </script>
    <% endif . %>
    Regards
    Raja

  • Runtime Dump: FRONTEND_ERROR : RAISE_EXCEPTION

    Hi,
    We are getting a Runtime Dump RAISE_EXCEPTION in production.
    I know this error, but the error is occuring in function module "WS_QUERY".
    It is raised at line 265..
    It seems to be some error with the Operating system. I am not sure.
    Below is the extract from dump:
    Error analysis
        A RAISE statement in the program "SAPLGRAP" raised the exception
        condition "FRONTEND_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.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "RAISE_EXCEPTION" " "
    "SAPLGRAP" or "LGRAPU32"
    "WS_QUERY"
    or
    "SAPLGRAP" "FRONTEND_ERROR"
    or
    "RAIMRECH " "FRONTEND_ERROR"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
      Program............. "SAPLGRAP"
      Screen.............. "SAPMSSY0 1000"
      Screen line......... 6
    Information on where terminated
        Termination occurred in the ABAP program "SAPLGRAP" - in "WS_QUERY".
        The main program was "RAIMRECH ".
        In the source code you have the termination point in line 266
        of the (Include) program "LGRAPU32".
    I have searched on OSS Notes, but could not find any related notes.
    Please guide.

    Hello,
    Are you scheduling any program in background which is calling ws_query? WS_QUERY is only used to excute files in the presentation server and will not work in the background
    Vikranth

  • How to get the user connection type

    hi all, I have a PAI process to execute only if the user is connected from ESS/MSS. how can I determine the type of connection, if u have some suggestions please help.
    thanks in advance.

    >
    mniakh mahmoud wrote:
    > hi all, I have a PAI process to execute only if the user is connected from ESS/MSS. how can I determine the type of connection, if u have some suggestions please help.
    > thanks in advance.
    I use function module WS_QUERY to do exactly this thing.  If it sends back RETURN = 'ITS" then it is connected to ESS/MSS.  This has worked in our 6.20 and ECC6 systems, though I guess it may not work in exactly the same way in your system.  There also might be a more modern method of a class to do the same thing. 
    CALL FUNCTION 'WS_QUERY'
           EXPORTING
    *           ENVIRONMENT    =
    *           FILENAME       =
                query          = 'WS'
    *           WINID          =
           IMPORTING
                return         = window_system
           EXCEPTIONS
    *           inv_query      = 1
                no_batch       = 2
                frontend_error = 3
                OTHERS         = 4.

  • Reg ws_query

    Hi,
    what is the purpose of ws_query function module??
    Thanks & Regards,
    abc xyz

    Short Text
    OBSOLETE: Execute Query Functions on Presentation Server
    This module is obsolete. Use the appropriate module from the function group SFES.
    Queries the file parameters and environment variables on the presentation server. The length or the existence of files can be determined.
    Parameters
    ENVIRONMENT
    FILENAME
    QUERY
    WINID
    RETURN
    Exceptions
    INV_QUERY
    NO_BATCH
    FRONTEND_ERROR
    Function Group
    GRAP
    Thanks,
    Max

  • Obsolete FM ws_query

    Hi all,
    Can you please say me how am i to change this obsolete FM to class CL_GUI_FRONTEND_SERVICES
    PARAMETERS: PCPATH LIKE RLGRAP-FILENAME
    DEFAULT 'c:\temp\rbe_extract.txt'.
    DATA: PATH LIKE PCPATH.
    CALL FUNCTION 'WS_QUERY'
    EXPORTING
            ENVIRONMENT    = ' '
    FILENAME       = PATH
    QUERY          = 'DE'
            WINID          = ' '
    IMPORTING
    RETURN         = ERR_CODE
    EXCEPTIONS
    INV_QUERY      = 1
    NO_BATCH       = 2
    FRONTEND_ERROR = 3
    OTHERS         = 4.

    Hi,
    Use this F.M
    CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST (if the query is 'DE')
    or CL_GUI_FRONTEND_SERVICES=>FILE_EXIST (if the query is 'FE')
    IF U_QUERY = 'DE'.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST
    EXPORTING
    DIRECTORY = W_FILENAME
    RECEIVING
    RESULT = W_RETURN
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    WRONG_PARAMETER = 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.
    ELSEIF U_QUERY = 'FE'.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_EXIST
    EXPORTING
    FILE = W_FILENAME
    RECEIVING
    RESULT = W_RETURN
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    WRONG_PARAMETER = 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.
    ENDIF.
    IF W_RETURN = 'X'.
    C_RETURN = '1'.
    ELSE.
    C_RETURN = ' '.
    ENDIF.
    Cheers,
    Simha.
    Reward all the helpful answers...

  • Problems with the report export in PDF format

    Hi All,
    I am new to this forum.
    I'm developing a web application that uses Java Reporting Component (JRC) to display crystal reports.
    I have three problem:
    1) I want, after entering the filters in a jsp, to print a report in PDF format (WORD) without opening it
    with Adobe Reader (Microsoft Word). The class of API JRC used for export is ReportExportControl.
    2) I want to print multiple reports one after the other to reduce the time (possibly joining two or more reports into a single PDF)
    3) I want to insert, in the jsp page filters, the number of pages to print from the same report (without
    opening it with Adobe Reader (Microsoft Word))
    Can anyone help me? or can give a simple java code to do the same.
    Thanks in advance.

    Hi, this works for me in 4.6B:
      CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
            BIN_FILESIZE            =
               filename                = i_pfad
               filetype                = 'BIN'
       IMPORTING
            FILELENGTH              =
          TABLES
                data_tab                = i_att_cont
          EXCEPTIONS
               file_write_error        = 1
               no_batch                = 2
               gui_refuse_filetransfer = 3
               invalid_type            = 4
               OTHERS                  = 5.
      IF sy-subrc <> 0.
        MESSAGE i000(zv) WITH 'Problem mit PDF Darstellung'.
      ENDIF.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
           EXPORTING
                spoolid = spoolnr.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                document           = ' '
                commandline        = i_pfad
                program            = 'AcroRd32.exe'
           EXCEPTIONS
                frontend_error     = 1
                no_batch           = 2
                prog_not_found     = 3
                illegal_option     = 4
                gui_refuse_execute = 5
                OTHERS             = 6.
      IF sy-subrc <> 0.
        MESSAGE i000(zv) WITH 'Acrobat Reader nicht gefunden!'.
      ENDIF.

  • "WS_QUERY" is obsolete in ECC 6.0

    Hi Guys
    Which is the correct Function module in ECC 6.0 is related to "WS_QUERY"
    Thanks,
    Gourisankar.

    Refer to this thread in sdn
    CALL FUNCTION 'WS_QUERY'
    or refer
    Use the appropriate module from the function group SFES.
    The appropriate function modules from funciton group SFES.
    GUI_GET_DESKTOP_INFO
    GUI_GET_FILE_INFO
    GUI_EXEC
    GUI_RUN etc
    The Equivalent Function Module for in ABAP 4.7 is
    WS_QUERY-File Exist is CL_GUI_FRONTEND_SERVICES=>FILE_EXIST , or ,
    WS_QUERY-Directory Exist is CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST.
    Reward if useful.

  • How to creat the logical file name.

    Hello All,
    I want to create Logical file name in my program, So Please guide me  in this issue.
    Thanks

    Check this out
    http://help.sap.com/saphelp_45b/helpdata/en/2a/fa02b7493111d182b70000e829fbfe/content.htm
    FU FILE_GET_NAME
    Text
    Assign the Physical File Name Using a Logical File Name
    Functionality
    R/3 applications run on various platforms with various file systems. This function module enables you to use platform-independent logical file names in your application programs.
    Based on definitions maintained in customizing tables for platform-independent file names, the function module converts a logical file name to the corresponding physical file name and path for the hardware platform concerned.
    For this conversion to work for different platforms, the definition of a logical file name must include a logical file path, which in turn is converted to different physical file paths, depending on the particular platform. The platform-specific file name returned by the function module is composed of the physical file path for the current platform and the physical file name associated with the logical file name. Placeholders in physical file and path names are substituted at runtime by the corresponding current values.
    Example
    logical file name: MONTHLY_SALES_FILE
    physical file name: VALUES<PARAM_1>
    logical path: SALES_DATA_PATH
    physical path (UNIX): /usr/<SYSID>/<FILENAME>
    physical path (Windows): C:\SALES\<FILENAME>
    Example 1
    Get file name for UNIX platform
    (current system: K11)
    CALL FUNCTION 'FILE_GET_NAME'
    EXPORTING
    LOGICAL_FILENAME = 'MONTHLY_SALES_FILE'
    IMPORTING
    FILE_NAME = FILE
    FILE_FORMAT = FORMAT.
    Result:
    FILE = /usr/K11/VALUES
    FORMAT = WK1
    Example 2
    Get file name for UNIX platform, passing a parameter
    (current system: K11)
    CALL FUNCTION 'FILE_GET_NAME'
    EXPORTING
    LOGICAL_FILENAME = 'MONTHLY_SALES_FILE'
    PARAMETER_1 = '_TST'
    IMPORTING
    FILE_NAME = FILE
    FILE_FORMAT = FORMAT.
    Result:
    FILE = /usr/K11/VALUES_TST
    FORMAT = WK1
    Example 3
    Get file name for WINDOWS platform, with file name extension
    CALL FUNCTION 'FILE_GET_NAME'
    EXPORTING
    LOGICAL_FILENAME = 'MONTHLY_SALES_FILE'
    WITH_FILE_EXTENSION = 'X'
    IMPORTING
    FILE_NAME = FILE
    FILE_FORMAT = FORMAT.
    Result:
    FILE = C:\SALES\VALUES.WK1
    FORMAT = WK1
    Notes
    All definitions needed for the platform-independent assignment of file names are maintained client-independently with transaction FILE. Logical file names (but not logical file paths) can also be defined specifically for the current client with transaction SF01. Transaction SF07 generates a list of current definitions.
    The following concepts are used in the platform-independent assignment of file names:
    Logical file name
    A descriptive name for a file which is associated with these values:
    physical file name
    file format
    logical file path.
    If no logical file path is specified, the function module returns the physical file name only; placeholders are substituted by current values.
    Physical file name
    The physical file name may contain placeholders.
    Logical file path
    A descriptive name for a path which is associated with these values:
    syntax groups (groups of operating systems)
    physical file paths.
    Physical file path
    The physical file path is defined for a particular syntax group. It must contain the reserved word <FILENAME> as a placeholder for the file name. It may also contain other placeholders.
    Operating system
    Presentation server and application server can run under different operating systems. The current value for the application server can be obtained from the system field SY-OPSYS, the value for the presentation server by calling function module WS_QUERY.
    Both operating systems must be defined and assigned to a syntax group.
    Syntax group
    Group of operating systems with a common syntax for file and path names (e.g. HP-UX and SINIX).
    Placeholder
    Reserved words, set in angle brackets, which can be included in physical file and path names (e.g. <DATE>, <FILENAME>). You can find information on possible reserved words in the online help (F1 help) for the fields physical file name and physical file path when maintaining platform-independent file names with transaction FILE.
    If the logical path associated with a logical file name does not specify a physical path for the current operating system (syntax group), the path stored in the profile parameter DIR_GLOBAL of the current system is used for generating a complete platform-specific file name.
    Parameters
    CLIENT
    LOGICAL_FILENAME
    OPERATING_SYSTEM
    PARAMETER_1
    PARAMETER_2
    PARAMETER_3
    USE_PRESENTATION_SERVER
    WITH_FILE_EXTENSION
    USE_BUFFER
    ELEMINATE_BLANKS
    EMERGENCY_FLAG
    FILE_FORMAT
    FILE_NAME
    Exceptions
    FILE_NOT_FOUND
    Function Group
    SFIL
    Thanks
    mahesh

  • Replacement for ws_query

    Hi,
    We are using WS_QUERY FM to get the length of file name.
    CALL FUNCTION 'WS_QUERY'
    EXPORTING
    filename = l_filename
    query = 'FL'
    IMPORTING
    return = return
    This FM is obslete in ECC 6.0. So is there any FM or method which provides the same functionality.
    Thanks & Regards,
    Sri ramya g.

    data:V_FILENAME        LIKE RLGRAP-FILENAME value 'C:\Documents and Settings\narayanp\Desktop\pass.txt',
         V_RETURN          TYPE  I.
    DATA:L_FILE TYPE STRING,
         RC TYPE I.
       CALL FUNCTION 'WS_QUERY'
            EXPORTING
                 FILENAME = V_FILENAME
                 QUERY    = 'FL'
            IMPORTING
                 RETURN   = V_RETURN
            EXCEPTIONS
                 OTHERS   = 1.
    *MOVE V_FILENAME TO L_FILE.
    *CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_GET_SIZE
    EXPORTING
       FILE_NAME            = L_FILE
    IMPORTING
       FILE_SIZE            = RC
    EXCEPTIONS
       FILE_GET_SIZE_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.
    *CALL METHOD CL_GUI_CFW=>FLUSH
    EXCEPTIONS
       CNTL_SYSTEM_ERROR = 1
       CNTL_ERROR        = 2
       others            = 3
    *IF SY-SUBRC <> 0.
    *MOVE RC TO V_RETURN .
    *ENDIF.
    WRITE V_RETURN .

  • Replacement of WS_QUERY to get length of filename

    Hi,
    We are using WS_QUERY FM to get the length of file name.
    CALL FUNCTION 'WS_QUERY'
          EXPORTING
            filename      = l_filename
            query          =  'FL'
          IMPORTING
            return         = return
    This FM is obslete in ECC 6.0.  So is there any FM or method which provides the same functionality.
    Regards
    Mandeep

    GUI_GET_DESKTOP_INFO
    or
    You can make use of the method "FILE_EXIST" or "DIRECTORY_EXIST" or "GET_PLATFORM" of the class "CL_GUI_FRONTEND_SERVICES"

  • F4 Help to get the path for a File source directory

    There are numerous function modules for browsing a particular file in desktop and getting the file path (including the fine name)  , like F4_FILENAME , KD_GET_FILENAME_ON_F4 , WS_FILENAME_GET etc. But can anyone tell me how to fetch only the directory path to the field were the F4 help is given. Actually the filename has to come in some other field in the selection screen. Is there separate funtion modules for these OR will changing parameters in the above function modules work?
    Pls Help....
    Also are there function modules for providing F4 help for getting the path to a file in application directory?

    Try this method CL_GUI_FRONTEND_SERVICES.
    It is a Global CLASS which is having different methods for different purposes
    see the documentation of it and use the methods of it
    see
    CL CL_GUI_FRONTEND_SERVICES
    Short 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.
    Reward points if useful.

  • Ws_query function module obsolete in ECC 6.0

    HI experts,
       V r upgrading system from 4.6 to ecc 6.0 . In one of the programs FM ws_query is obsole, pls let me know the replacement of it.
    form process_selections_filen.
      call function 'WS_QUERY'
           exporting
                filename = p_filen
                query    = 'FE'
           importing
                return   = g_subrc
           exceptions
                others   = 1.
      check syst-subrc ne 0 or g_subrc ne 1.
      message e000(zz) with p_filen text-e01.
    endform.

    You must OO ABAP.
    You can use a method of CL_GUI_FRONTEND_SERVICES class to do the same process. This is the new class for handling files.

Maybe you are looking for

  • Synching customization data

    In our HR landscape, the functional team wants to synchronize the customization data down from Production to QAT to DEV. I saw message type CONDA2 - is that appropriate to transfer this data? Also, I ran into an article about using Solution Manager (

  • Extract data with reports scripts

    <p>Hi,</p><p> </p><p>I try to extract data from a database with the following code.It seems that some information desapeared... Does it come from thecommands in the reports?</p><p>{DECIMAL 3</p><p>SUPMISSINGROWS</p><p>SUPBRACKET</p><p>SUPCOMMAS</p><p

  • My external iSight works in iChat, but NOT quicktime 7 pro

    I'd like to get in on this... My external iSight works in iChat, but NOT quicktime 7 pro when i try to make a movie recording. No audio, no video, nothing. But, iChat works. This is on a brand new mac pro with the latest leopard. Any ideas????

  • Start Up Items (Listed on System Profiler)

    Hi, I have two macs. My Mac Mini is running on Tiger and MBP on Leopard. The Mini has 16 "start up items" listed on the systems profiler that I have no item what they do. My MBP only has 4. How do I identify necessary from unnecessary start up items?

  • Photos from Mac still appearing on iPhone, even though "sync photos from iPhoto" is unticked in iTunes?

    A colleague has all his Mac photos showing up on his iPhone, even though the "Sync with iPhoto" tickbox is unticked when he syncs it with iTunes. He has PhotoStream turned off. What else is possible to clear the photos off his iPhone please?