2009 Aug 04 3:33 PM
hi,
i want to read the attachment list from GOS.So i have used the FM BDS_GOS_CONNECTIONS_GET.I am passing the following parameter
LOGICAL_SYSTEM = <XXXXXX>
CLASSNAME = 'BUS2031'
OBJKEY = quotation number
client = <xxx>
but i am not able to get the output
weather i should pass any other parameter
hi,
i want to read the attachment list from GOS.So i have used the FM BDS_GOS_CONNECTIONS_GET.I am passing the following parameter
LOGICAL_SYSTEM = <XXXXXX>
CLASSNAME = 'BUS2031'
OBJKEY = quotation number
client = <xxx>
but i am not able to get the output
weather i should pass any other parameter
2009 Aug 04 3:39 PM
2009 Aug 28 4:14 AM
Hello,
u can try this sample code
Handle TEMP Doc Links.
try.
clear: role,relation ,rol,rel.
rol-sign = 'I'.
rol-option = 'EQ'.
rol-low = 'GOSAPPLOBJ'.
append rol to role.
rel-sign = 'I'.
rel-option = 'EQ'.
rel-low = 'ATTA'.
append rel to relation.
object-instid = '$000000001'. --->ur document no
object-typeid = 'YFIE_00016'.
object-catid = 'BO'.
call method cl_binary_relation=>read_links
exporting
is_object = object
it_role_options = role
it_relation_options = relation
ip_no_buffer = 'X'
importing
et_links = et_links.
catch cx_obl_parameter_error .
catch cx_obl_internal_error .
catch cx_obl_model_error .
endtry.
regards
Prabhu
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |