Allan a45f5bb3b2
All checks were successful
Release / Build-production-and-ng-test (push) Successful in 4m49s
Release / Build-and-test-development (push) Successful in 9m42s
Release / release (push) Successful in 10m27s
feat: uses SORTSEQ=LINGUISTIC for the services/metanav/metadetails service
2025-02-26 19:24:53 +00:00

34 lines
716 B
SAS

/**
@file metadetails.sas
@brief Retrieves metadata attributes and associations for a particular object
@details
<h4> SAS Macros </h4>
@li mm_getdetails.sas
@li mpe_getvars.sas
@li mpeinit.sas
@version 9.3
@author 4GL Apps Ltd
@copyright 4GL Apps Ltd. This code may only be used within Data Controller
and may not be re-distributed or re-sold without the express permission of
4GL Apps Ltd.
**/
%mpeinit()
%mpe_getvars(SASControlTable, SASControlTable)
%mm_getdetails(&objecturi
,outattrs=work.attributes
,outassocs=work.associations
,sortoptions=SORTSEQ=LINGUISTIC
)
%webout(OPEN)
%webout(OBJ,attributes, missing=STRING)
%webout(OBJ,associations)
%webout(CLOSE)
%mpeterm()