Hello,
After we did a recent EHP5 upgrade in our test system , some of the ADOBE forms are not displaying.
One of the forms is triggered from a custom ABAP program and on clicking the print preview button, the screen goes blank ( not PDF screen blank but the R3 blank screen)
I enabled the trace for this particular form and it downloaded the trace file as file as the output expected PDF correctly even though it didnt display on the screen.
The trace file had a scripting error as shown below and also the 'The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5' error. We got the same error when we went to the print preview in form layout and we fixed the error and now on the form layout the error does not occur. While on the trace it continues to give the same error even after we fixed the script.
Also please give us inputs on the 'The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5' error.
Thanks.
<m mid="29487" tid="7060.12888" sev="w" d="2012-04-10T14:42:59.239+03:00">Invalid version: The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5.</m> n 77 <m mid="29487" tid="7060.12888" sev="w" d="2012-04-11T07:44:27.142+03:00">Invalid version: The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5.</m>
78 <m mid="29292" tid="7060.12888" sev="w" d="2012-04-10T14:42:59.270+03:00">Script failed (language is formcalc; context is xfa[0].form[0].data[0].table[0].Detail[0].TABLE[0].Data[0]) 78 <m mid="29292" tid="7060.12888" sev="w" d="2012-04-11T07:44:27.173+03:00">Script failed (language is formcalc; context is xfa[0].form[0].data[0].table[0].Detail[0].TABLE[0].Data[0])
79 script=var norows_t = xfa.resolveNodes("data.table.Detail.TABLE.Data[*]").length; 79 script=var norows_t = xfa.resolveNodes("data.table.Detail.TABLE.Data[*]").length;
80 for ( var i =0; i<norows_t; i++) 80 for ( var i =0; i<norows_t; i++)
81 { 81 {
82 if(xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].ZZWBILL_NUMBER").rawValue == null || xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].ZZWBILL_NUMBER").rawValue == "") 82 if(xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].ZZWBILL_NUMBER").rawValue == null || xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].ZZWBILL_NUMBER").rawValue == "")
83 { 83 {
84 xfa.resolveNode("data.table").presence = "hidden"; 84 xfa.resolveNode("data.table").presence = "hidden";
85 } 85 }
86 if(xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].REMARK").rawValue == null || xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].REMARK").rawValue == "") 86 if(xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].REMARK").rawValue == null || xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].REMARK").rawValue == "")
87 { 87 {
88 xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].REMARK").presence = "hidden"; 88 xfa.resolveNode("data.table.Detail.TABLE.Data["+i+"].REMARK").presence = "hidden";
89 } 89 }
90 }</m>