Functionality You can use this function module to read the dependencies for acharacteristic. The first time you call this module, you see a list ofthe names of global dependencies. Each time you call this module, yousee a local dependency with source code, description, and anydocumentation. Example *======================================================================= * Characteristic: Read dependency *======================================================================= data: basic like depdat, descr like depdescr occurs 0 with header line, docu like doc_lang occurs 0 with header line, source like depsource occurs 0 with header line. data: get_next(1) type c value ' '. * Initialize API calls call function 'CALO_INIT_API' ... do. call function 'CARD_CHAR_READ_DEP' exporting characteristic = 'CHAR1' get_next_dependency = get_next importing basic_data = basic tables description = descr documentation = docu source = source dep_assign = alloc exceptions error = 1 warning = 2 others = 3. if sy-subrc <> 0. if sy-subrc > 1. "error handling... endif. exit. endif. loop at source. "... endloop. get_next = 'X'. enddo. *======================================================================= |