SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

List all function modules and go to SE37 by double-clicking



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP Dictionary
View previous topic :: View next topic  
Author Message
admin
Администратор
Администратор



Joined: 01 Sep 2007
Posts: 1639

PostPosted: Sat Nov 17, 2007 7:19 pm    Post subject: List all function modules and go to SE37 by double-clicking Reply with quote

Code:
REPORT ZZBGS030 MESSAGE-ID 00 LINE-COUNT 65 LINE-SIZE 132
                NO STANDARD PAGE HEADING.
*----------------------------------------------------------------------*
* Description: This program list all functions module regards to the   *
*              selection criteria.                                     *
*                                                                      *
* Customizing: You need not to make any customizing to use this program*
*                                                                      *
* Change of    You only have to check that tables, functions and       *
* release:     includes till exists. Bedst just to check and run the   *
*              program.                                                *
*                                                                      *
* Programmer:  Benny G. Sørensen                                       *
* Date:        July 1995                                               *
* SAP R/3      2.2F                                                    *
*                                                                      *
*-------------------------------Corrections----------------------------*
* Date        Userid     Correction                                    *
* xx-xx-xxxx  xxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx *
*----------------------------------------------------------------------*
TABLES: TFTIT                "Function module titles
        .
DATA: BEGIN OF FUNCTIONS OCCURS 100.
        INCLUDE STRUCTURE TFTIT.
DATA: END OF FUNCTIONS.
DATA: L        TYPE I,
      REPL(30) TYPE C VALUE '????????????????????????????'.
FIELD-SYMBOLS: <P>.

PARAMETERS:
  FUNCTION(30)    TYPE C,
  TITLE(74)       TYPE C LOWER CASE DEFAULT ' ',
  DOWNLOAD(1)     TYPE C DEFAULT ' ',
  FILENAME(65)    TYPE C DEFAULT 'c:\SAP\DOC\?',
  EXCEPT(30)      TYPE C DEFAULT ' '.

START-OF-SELECTION.
  IF FUNCTION = ''.
     FUNCTION = '*' .
  ENDIF.
  IF TITLE = ''.
     TITLE = '*' .
  ENDIF.
  TRANSLATE FUNCTION    USING '*%'.
  TRANSLATE TITLE       USING '*%'.
  CONDENSE EXCEPT NO-GAPS.
  L = STRLEN( EXCEPT ).
  IF L > 0.
    ASSIGN REPL(L) TO <P>.
  ENDIF.

  SELECT * FROM TFTIT INTO FUNCTIONS
    WHERE SPRAS    = SY-LANGU
      AND FUNCNAME LIKE FUNCTION
      AND STEXT    LIKE TITLE.

    IF EXCEPT NE ''.
      REPLACE EXCEPT LENGTH L WITH
              <P>    INTO FUNCTIONS-FUNCNAME.
    ENDIF.

    TRANSLATE FUNCTION USING '% '.
    CONDENSE FUNCTION NO-GAPS.
    IF FUNCTIONS-FUNCNAME CS FUNCTION.
      WRITE:/ FUNCTIONS-FUNCNAME, '   ', FUNCTIONS-STEXT.
      APPEND FUNCTIONS.
    ENDIF.
  ENDSELECT.

  IF DOWNLOAD NE ''.
    CALL FUNCTION 'WS_DOWNLOAD'
      EXPORTING
        FILENAME     = FILENAME
        FILETYPE     = 'WK1'   "ASC, WK1, DBF, DAT, bin
      TABLES
        DATA_TAB     = FUNCTIONS.
  ENDIF.

AT LINE-SELECTION.
  SET PARAMETER ID 'LIB' FIELD SY-LISEL(30) .
  CALL TRANSACTION 'SE37' AND SKIP FIRST SCREEN.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP Dictionary All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.