Views
Replies
Total Likes
Hello @Luca_Lattarini
use can query the data from customer table via the adobe campaign data api.
Reference link: https://experienceleague.adobe.com/docs/campaign-classic/using/configuring-campaign-classic/api/data...
Sample Code:
<%
var query=xtk.queryDef.create(<queryDef schema="nms:recipient" operation="select">
<select>
<node expr="@email"/>
<!-- builds a string with the concatenation of the last name and first name separated by a dash -->
<node expr="@lastName+'-'+@firstName"/>
<!-- get year of birth date -->
<node expr="Year(@birthDate)"/>
</select>
<where>
<condition expr="[@folder-id] = 1234 and @domain like 'Adobe%'"/>
</where>
<!-- order by birth date -->
<orderBy>
<node expr="@birthDate" sortDesc="true"/> <!-- by default sortDesc="false" -->
</orderBy>
</queryDef>);
var records = query.ExecuteQuery();
%>
Hello @Luca_Lattarini
use can query the data from customer table via the adobe campaign data api.
Reference link: https://experienceleague.adobe.com/docs/campaign-classic/using/configuring-campaign-classic/api/data...
Sample Code:
<%
var query=xtk.queryDef.create(<queryDef schema="nms:recipient" operation="select">
<select>
<node expr="@email"/>
<!-- builds a string with the concatenation of the last name and first name separated by a dash -->
<node expr="@lastName+'-'+@firstName"/>
<!-- get year of birth date -->
<node expr="Year(@birthDate)"/>
</select>
<where>
<condition expr="[@folder-id] = 1234 and @domain like 'Adobe%'"/>
</where>
<!-- order by birth date -->
<orderBy>
<node expr="@birthDate" sortDesc="true"/> <!-- by default sortDesc="false" -->
</orderBy>
</queryDef>);
var records = query.ExecuteQuery();
%>
Hello @Luca_Lattarini ,
apart from the @_Manoj_Kumar_ asnswer -querydef- you you can also use:
sqlSelect from jsapi:
var res = sqlSelect("publicUrl,@sstringValue:string",
"select sstringValue from XtkOption where sname='XtkFileRes_PublicUrl'")
logInfo(res.publicUrl.@sstringValue.toString(
Marcel
Hey @Luca_Lattarini,
Were you able to resolve this query with the help of the given solutions or do you still need more help here? Do let us know.
Thanks!
Views
Replies
Total Likes
Views
Likes
Replies