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

You use this method to list all the types of document that are registered for a particular interface type.

CALL METHOD control->get_registered_doc_types
      EXPORTING interface_type  = interface_type
                no_flush        = no_flush
     IMPORTING descr_list       = descr_list
                retcode         = retcode
                error           = error.

Description of parameters

Parameter

Optional

Description

interface_type

X

One of the following interface types:

' ' : ‘ ’: all possible document types are displayed in an internal table

'BASIC': only document types supported by the standard interface are displayed.

'WORDPROCESSOR': only document types supported by the standard interface are displayed.

descr_list

 

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