Load Baseline (by name as string) without current module Reference?

Hi!

Is there a way to load()... the baseline of a Module without opening it's current?

I.e. like with read(modulString,false) i know i can open the current with the String "modulString".

Ie: Can i open a baselined module of Version 6.2. with the name "moduleString" without opening it's current?

 

I am searching an Example for this:

Module b=load(modulString, baseline(6,2), false);

 

With best regards,
Bjoern


Bjoern_Karpenstein - Wed Feb 03 04:17:01 EST 2016

Re: Load Baseline (by name as string) without current module Reference?
morast - Wed Feb 03 06:30:23 EST 2016

It's all in the DXL manual

string mName = "Test Module"
Baseline b = baseline(1,0,"")
Module mb = load(moduleVersion(module(mName), b), true)