# superseded-in-release.rq # ----------------------------------------------------------------------------- # List every SAP artifact whose migration path targets a successor valid # FROM a named release — the "what got replaced in S/4HANA 2023" question. # # Parameters: # $release — the release string (e.g. "2023") PREFIX atlas: SELECT ?oldName ?newName ?priority ?citation WHERE { ?path a atlas:MigrationPath ; atlas:guidesFrom ?old ; atlas:guidesTo ?new ; atlas:priority ?priority ; atlas:citesDocument ?citation . ?old atlas:artifactName ?oldName ; atlas:hasVersionScope ?scope . ?new atlas:artifactName ?newName ; atlas:hasVersionScope ?newScope . ?newScope atlas:validForRelease ?release . ?release atlas:artifactName $release . } ORDER BY ?priority ?oldName