FM HELPSCREEN_NA_CREATE

Hi All..
          I need replacement for this FM...currently we are working on ECC 6.0
Points are assurred....
Regards,
Priya.

Hi Priya,
Is there is any specific reason for replacement of this function module in ECC 6.0? If you can give some more information, that will be useful.
This functional module is part of SHLP function group. Following are the function modules available in SHLP function group. One of these should help you out -
BUILD_SECTION                       
DOCUHELP_CREATE                     
FELDFORMAT_READ                     
FIELDHELP_CREATE                    
FUNKTIONHELP_CREATE                 
HELPSCREEN_CREATE                   
HELPSCREEN_NA_CREATE          
SHORT_MESSAGE_DOWNLOAD              
THEX_OBJECT_SHOW              
Hope this sort out your query.
PS If the answer solves you query, plz close the thread by rewarding points to each reply.
Regards

Similar Messages

  • Alternative for HELPSCREEN_NA_CREATE

    Hi
    I am working on a update from 4.0b to 4.7 , on performing extended check on a program the FM HELPSCREEN_NA_CREATE is said to be obsolete , what could be the alternative for it.
    Regards
    Arun

    Hi Christian,
    The function  module "HELPSCREEN_NA_CREATE" itself is calling the function "HELP_OBJECT_SHOW".
    How can we go about calling this "help_object_show" function.
    Regards
    guru

  • Replacement of obsolete FM 'HELPSCREEN_NA_CREATE'

    hi all,
    Any one can help me with the replacement of 'HELPSCREEN_NA_CREATE'?
    Thanks
    Protyusha

    hi,
    use FM HELP_OBJECT_SHOW
    refer this link for other oboslete FM's in Wiki....http://wiki.sdn.sap.com/wiki/display/ABAP/NEWFMinPlaceofObsoleteFM

  • Display of long text message

    Helllo Expert,
         I want to display a long message, In module pool program . I have maintain the other message of the program in message class but the long message is not fitting into the message class. the message which I want to display is *"Data saved. Market group (&) and market super group (&) saved. Market (&), market (&) and market super group (&) saved" I have tried using text-xxx but it's not allowing after WITH only 4 field allowed.
    Thanks .

    You can use the function module
    HELPSCREEN_NA_CREATE
    to display the long text of the message!
    Regards
    Naren

  • Replacement function modules/method for obsolete Funtion Modules in ECC 6.0

    We are working on Upgrade Project and need your help in finding the replacement Function module/ Methods for following obsolete Function Modules:
       1.   GET_FIELDTAB
       2.   WS_EXCEL
       3.  HR_DISPLAY_BASIC_LIST
       4.  LOG_SYSTEM_GET_RFC_DESTINATION
       5.  HELPSCREEN_NA_CREATE
       6. TR_RELEASE_COMM
    Thank in Advance.
    Sarita.
    Edited by: Sarita Yalamati on Mar 28, 2008 1:23 PM

    Hi sarita,
    for GET_FIELDTAB use 'DDIF_NAMETAB_GET'..here is sample code
      CALL FUNCTION 'GET_FIELDTAB'
           EXPORTING
                LANGU               = SY-LANGU
                TABNAME             = C_STRUCTURE_NAME
                WITHTEXT            = ' '
           TABLES
                FIELDTAB            = IDFIES
           EXCEPTIONS
               INTERNAL_ERROR      = 01
                NO_TEXTS_FOUND      = 02
                TABLE_HAS_NO_FIELDS = 03
                TABLE_NOT_ACTIV     = 04.
    Replacement :
    CALL FUNCTION 'DDIF_NAMETAB_GET'
      EXPORTING
        TABNAME           =  C_STRUCTURE_NAME
      ALL_TYPES         = ' '
      LFIELDNAME        = ' '
      GROUP_NAMES       = ' '
      UCLEN             =
    IMPORTING
      X030L_WA          =
      DTELINFO_WA       =
      TTYPINFO_WA       =
      DDOBJTYPE         =
      DFIES_WA          =
      LINES_DESCR       =
    TABLES
      X031L_TAB         =
       DFIES_TAB         = IDFIES
    EXCEPTIONS
       NOT_FOUND         = 1
       OTHERS            = 2
    For WS_EXCEL  use GUI_DOWNLOAD.. here is sample code
    CALL FUNCTION 'WS_EXCEL'
    EXPORTING
       FILENAME            = 'D:\FILE1.xls'
      SYNCHRON            = ' '
      TABLES
        DATA                = itab
    EXCEPTIONS
       UNKNOWN_ERROR       = 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.
    Repalcement :
    data : l_filename type string.
    l_filename  = 'D:\FILE1.xls'.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        = l_filename
      FILETYPE                        = 'ASC'
    IMPORTING
      FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab
      FIELDNAMES                      =
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    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_FRONTEND_SERVICES=>EXECUTE
      EXPORTING
        DOCUMENT               = 'D:\FILE1.xls'
       APPLICATION            =
       PARAMETER              =
       DEFAULT_DIRECTORY      =
       MAXIMIZED              =
       MINIMIZED              =
       SYNCHRONOUS            =
        OPERATION              = 'OPEN'
      EXCEPTIONS
        CNTL_ERROR             = 1
        ERROR_NO_GUI           = 2
        BAD_PARAMETER          = 3
        FILE_NOT_FOUND         = 4
        PATH_NOT_FOUND         = 5
        FILE_EXTENSION_UNKNOWN = 6
        ERROR_EXECUTE_FAILED   = 7
        SYNCHRONOUS_FAILED     = 8
        NOT_SUPPORTED_BY_GUI   = 9
        others                 = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Obsolete function module in ECC6 - what to use instead of that

    I have to upgrade from SAP 4.7 to ECC6 .
    Some obsolete function module are as follows:
    ADDRESS_MAINTAIN
    ADDRESS_UPDATE_OLD
    DD_PR_REDEFINE
    GRAPH_DIALOG
    HELPSCREEN_NA_CREATE
    Can anybody assist me which function module to use in place of this function module or which class methods to be used instead of these function modules ?
    Thanks...

    Hi Deepak,
    For ADDRESS_MAINTAIN you can go this way for now.
    DATA : func_name TYPE rs38l_fnam.
    func_name = 'ADDRESS_MAINTAIN'. "To escape the EPC Check
        DO.
          CALL FUNCTION func_name
            EXPORTING
              adrswa_in         = sadr
              processing_status = mode
              kennzeichen       = kz
              save_intern       = 'X'
              title             = am_title
            IMPORTING
              adrswa_out        = sadr
              returncode        = return
              update_flag       = am_save
            EXCEPTIONS
              not_found         = 4.
    we haven't found any replacement for this. so doing it this way.
    ADDRESS_UPDATE_OLD - No Replacement for this.
    DD_PR_REDEFINE - No Replacement for this.
    GRAPH_DIALOG - No Replacement for this.
    All the Above 3 FMs are still being used in ECC standard programs.
    Thanks,
    Sai
    Edited by: Sai Krishna Kowluri on Dec 5, 2008 7:34 AM
    Edited by: Sai Krishna Kowluri on Dec 5, 2008 7:37 AM

  • Need replacement FM for the Obsolete FMs provided

    Hi,
            Can someone tell me what are all the FM which can be used as replacement for the following FM's.
    ADDRESS_MAINTAIN             
    ADDRESS_UPDATE_OLD           
    DD_PR_REDEFINE
    GRAPH_DIALOG   
    HELPSCREEN_NA_CREATE 
    STRING_SPLIT
    Thanks in advance

    Ok Mevin,,
    Sorry for that.
    1.ADDRESS_MAINTAIN this function module is related to wat is it SU01 Address.
    Please clarify.
    2.ADDRESS_UPDATE_OLD same as above
    Please clarify
    Thanks

  • Replacement FM...

    Hai Friends ,
    Good Evening .........
    Can Any one give the Alternate FM(Replacement) For These FM,
    LOG_SYSTEM_GET_RFC_DESTINATION,
    HELPSCREEN_NA_CREATE
    CONVERT_DATE_INPUT,
    DISPLAY_BASIC_LIST
    TRANSFER_NAMES_TO_FIELDS,
    HELP_VALUES_GET_NO_DD_NAME
    ISO_TO_SAP_MEASURE_UNIT_COD
    HELP_VALUES_GET_WITH_DD_TABL
    HELP_VALUES_GET
    TABLE_COMPRESS
    Points will be Awarded ....
    thanks ,
    Siva

    LOG_SYSTEM_GET_RFC_DESTINATION - OBJ_METHOD_GET_RFC_DESTINATION
    HELPSCREEN_NA_CREATE - HELP OBJECT SHOW
    CONVERT_DATE_INPUT - CONVERT_DATE_INPUT
    DISPLAY_BASIC_LIST - DISPLAY_GRID_LIST
    TRANSFER_NAMES_TO_FIELDS - Could not find
    HELP_VALUES_GET_NO_DD_NAME - F4IF_INT_TABLE_VALUE_REQUEST
    ISO_TO_SAP_MEASURE_UNIT_COD - UNIT_OF_MEASURE_ISO_TO_SAP
    HELP_VALUES_GET_WITH_DD_TABLE - F4IF_INT_TABLE_VALUE_REQUEST
    HELP_VALUES_GET - F4IF_FIELD_VALUE_REQUEST
    TABLE_COMPRESS - Do not Replace.
    Hope these details resolves your problems
    Regards,
    Vaibhav

  • Regarding obselete function modules

    What are replacements for these funciton modules its urgent please reply
    POPUP_TO_CONFIRM_WITH_MESSAGE,
    LOG_SYSTEM_GET_RFC_DESTINATION,
    HELPSCREEN_NA_CREATE

    Hi Naveen,
    'POPUP_TO_CONFIRM_WITH_MESSAGE' is obsolete.
    The replacement FM is 'POPUP_TO_CONFIRM’
    Example:
    CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE'
    EXPORTING
    DIAGNOSETEXT1 = TEXT-900
    DIAGNOSETEXT2 = SY-MSGV1
    DIAGNOSETEXT3 = TEXT-901
    TEXTLINE1 = TEXT-902
    TEXTLINE2 = TEXT-903
    TITEL = TEXT-904
    IMPORTING
    ANSWER = UP_ANSWER.
    The Diagnose object parameter Z_ZIMPCHK1_POPUP_TO_CONFIRM'
    is created in SE61 transaction as DIALOG TEXT object
    DATA: W_PARAM TYPE SPAR,
    I_PARAMETERS TYPE STANDARD TABLE OF SPAR,
    W_TEXT_Q TYPE STRING.
    MOVE TEXT-900 TO W_PARAM-VALUE.
    MOVE 'TEXT1' TO W_PARAM-PARAM.
    APPEND W_PARAM TO I_PARAMETERS.
    WRITE SY-MSGV1 TO W_PARAM-VALUE.
    MOVE 'TEXT2' TO W_PARAM-PARAM.
    APPEND W_PARAM TO I_PARAMETERS.
    WRITE TEXT-901 TO W_PARAM-VALUE.
    MOVE 'TEXT3' TO W_PARAM-PARAM.
    APPEND W_PARAM TO I_PARAMETERS.
    CONCATENATE TEXT-902
    TEXT-903
    INTO
    W_TEXT_Q.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    TITLEBAR = TEXT-904
    DIAGNOSE_OBJECT = 'Z_ZIMPCHK1_POPUP_TO_CONFIRM'
    TEXT_QUESTION = W_TEXT_Q
    IMPORTING
    ANSWER = UP_ANSWER
    TABLES
    PARAMETER = I_PARAMETERS
    EXCEPTIONS
    TEXT_NOT_FOUND = 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.
    You can try,
    HELP_OBJECT_SHOW
    or
    HELP_OBJECT_SHOW_FOR_FIELD
    as an alternate for
    HELPSCREEN_NA_CREATE
    Also, Check the list of function modules
    [http://www.sap-img.com/abap/function-list.htm]
    [http://www.erpgenie.com/abap/functions.htm]
    Hope it Helps.
    Regards,
    Anita

  • Reg : Replacement FM

    Hi ,
    can u tel me the Replacement functional module for the below given obsolete functional modules .
    DISPLAY_BASIC_LIST.
    CONVERT_DATE_INPUT
    HELPSCREEN_NA_CREATE.
    Regards,
    Arun Prasad

    Hi ARUN
    DISPLAY_GRID_LIST.
    CONVERT_DATE_TO_INTERNAL.
    CONVERT_DATE_TO_INTERN_FORMAT.
    HELP OBJECT SHOW
    reward points to all helpful answers
    kiran.M

Maybe you are looking for

  • Q: Error message when printing Photoshop CS3 file

    I get an error message when I try printing a CS3 photo on my Epson C86 printer, and the resulting print has the wrong colors and luminance levels. Error Message = "Some PostScript specific print settings (Interpolation, Calibration, Encoding) will be

  • Regarding  alv logic

    Hi all iam making blocked alv programe. In the below code if i want to display in Second block  the list of Material Types with No. of materials in each type than what should be the approach for this logic. TYPE-POOLS: slis. TYPES: BEGIN OF ty_mara  

  • Change Documents for SQ03

    Hi Experts, I want to know the changes documents for the transaction SQ03 (User Groups). There are some changes in user group/infoset assignments through this transaction. I want to know where we we can get this information in SAP ECC 6.0? Regards Ke

  • Tracking directory on 11.1 equivalent to ODS/Content

    Hi Please can anyone tell me the equivalent directory for Usage Tracking from 3.5.1 (or 3.6.1) to 11.1 Knowledge Center. Basically in 3* if the player package is placed in ODS/Content  and accessed through the tracking software.  this ensures the con

  • Address Data for SAP user

    hi Guys, I maintained a user using SU01. I entered some value in the Department field in the Address Tab. Is there any function module which can get me the address details based on the SAP user name? Please advise. Thanks.