コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Personalization in proofs

Avatar

Level 10

Hi all,

 

I am trying to "alive" proofs for recurring deliveries (deprecated by Adobe).

Managed to do it for deliveries without personalization, but when personalization is included an error is thrown in the proof delivery:  'Error while compiling script 'content htmlContent' line 4: targetData is not defined. SCR-160012 Javascript: error while evaluating script 'content htmlContent'.'

 

So, if used seed address in the proof, we are defining additional data (below) but still cannot recognize targetData   

milanv69354962_0-1579603815729.png

 

Any idea why is refusing to use this additional data?

 

Regards,
Milan

 

 

 

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

Hello @Milan_Vucetic 

Without seeing the details normally this literally means that the delivery target does not have targetData available. You can make small workaround when you initialize the variables at the end of the delivery source code such as.

 

This error happened to me when I was using native JS functions such as targetData.string.toString().indexOf() even though those variables were coming to the delivery.

<%
targetData.variable1;
targetData.variable2;
...
..
..
%>

 

BR,

Marcel

元の投稿で解決策を見る

3 返信

Avatar

正解者
Community Advisor

Hello @Milan_Vucetic 

Without seeing the details normally this literally means that the delivery target does not have targetData available. You can make small workaround when you initialize the variables at the end of the delivery source code such as.

 

This error happened to me when I was using native JS functions such as targetData.string.toString().indexOf() even though those variables were coming to the delivery.

<%
targetData.variable1;
targetData.variable2;
...
..
..
%>

 

BR,

Marcel

Avatar

Level 10

Hi @Marcel_Szimonisz ,

 

where these variables should be initialised exactly?

If you mean on XML source code, there are two tabs Entity and Context but wherever is put an error is raised.

 

Thanks in advance.

 

Regards,

Milan

Avatar

Community Advisor
In the delivery template -> Source -> very end after <html> tag