Entering content frameSyntax documentation check_registered_doc_types Locate the document in its SAP Library structure

This method checks whether there is a list of desktop applications on the presentation server, and returns a list of existing applications. List the document types you want to check in the DOCUMENT_TYPE column. The information about whether the application exists is returned in the AVAILABLE column.

CALL METHOD control->check_registered_doc_types
      EXPORTING no_flush        = no_flush
      IMPORTING error           = error
      CHANGING  descr_list      = descr_list
                retcode         = retcode.

Description of parameters

Parameter

Optional

Description

descr_list

X

Possible document types in an internal table with type soi_document_type_descr_list.

Note

You can call this method without previously having used the init_control method. It allows you to check whether a desktop application exists on the frontend.

Leaving content frame