Functionality Determines the attribute values of a record. This function is used to read all, or only selected attribute valuesof arecord. Example * Read keywords for a record> wa_record_properties-NAME = 'SRM_KEYWORD'.> APPEND wa_record_properties TO record_properties.> CALL FUNCTION BAPI_RECORD_GETPROPERTIES> EXPORTING> OBJECTID = 'FE55793BA8182177E10000000A1148F5'> DOCUMENTCLASS = 'SRM_REC00'> WHOLE_DOCUMENT = ' '> >IMPORTING RETURN = bapi_return> TABLES> PROPERTIES = record_properties>Notes Because some attributes (for example SRM_KEYWORD) can have more thanone value, it is theoretically possible for an attribute to occur morethan once in the results table (column NAME in table PROPERTIES). The authorization> for displaying record attributes is required(authorization object S_SRMGS_PR).Description Result of the BAPI call Description Location of the record (content model) whose attribute values youwant to read Description If the record is stored in the WebDAV, you must specify the RMS and SPS(corresponding element type of the record) here. Otherwise, you do notneed to set this parameter. Description Internal ID of the record whose attribute values you want to read Description This parameter is optional.
|