AWS code-library documentation change
Summary
Added SAP ABAP SDK code example for ListDatastores API with error handling
Security assessment
Demonstrates API usage without security-specific changes. Access denied error handling is part of normal SDK documentation.
Diff
diff --git a/code-library/latest/ug/medical-imaging_example_medical-imaging_ListDatastores_section.md b/code-library/latest/ug/medical-imaging_example_medical-imaging_ListDatastores_section.md index 3def32b87..819898866 100644 --- a//code-library/latest/ug/medical-imaging_example_medical-imaging_ListDatastores_section.md +++ b//code-library/latest/ug/medical-imaging_example_medical-imaging_ListDatastores_section.md @@ -282,0 +283,33 @@ There's more on GitHub. Find the complete example and learn how to set up and ru +SAP ABAP + + +**SDK for SAP ABAP** + + + + TRY. + oo_result = lo_mig->listdatastores( ). + DATA(lt_datastores) = oo_result->get_datastoresummaries( ). + DATA(lv_count) = lines( lt_datastores ). + MESSAGE |Found { lv_count } data stores.| TYPE 'I'. + CATCH /aws1/cx_migaccessdeniedex. + MESSAGE 'Access denied.' TYPE 'I'. + CATCH /aws1/cx_miginternalserverex. + MESSAGE 'Internal server error.' TYPE 'I'. + CATCH /aws1/cx_migthrottlingex. + MESSAGE 'Request throttled.' TYPE 'I'. + CATCH /aws1/cx_migvalidationex. + MESSAGE 'Validation error.' TYPE 'I'. + ENDTRY. + + + + * For API details, see [ListDatastores](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + + +###### Note + +There's more on GitHub. Find the complete example and learn how to set up and run in the [AWS Code Examples Repository](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/sap-abap/services/mig#code-examples). +