문제

For a given object, how do I find links to baselined modules? The code below only seemed to work on links to "Current" working versions of modules.

Link lnk
for lnk in (current Object) -> "*" do 
{
    print "Link found"
} 

Thanks, Phil

Edit:Added markup for code block -Jaambageek

도움이 되었습니까?

해결책

You are close, and don't worry this is not easy to find in the DXL Help either.

Link lnk
for lnk in all (current Object) -> "*" do 
{
    print "Link found"
}

The only word I added is all. That allows it to find versioned links. You can search Versioned Links in the DXL Help and you should find it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top