$(function () { pageContext.i18n.modTalk = 'moderation talk'; pageContext.i18n.replyToComment = 'Reply'; pageContext.i18n.modTalkEmpty = 'moderation talk is empty'; pageContext.url.getModTalk = "/comments/%25ID%25/listModTalk.json"; pageContext.url.possibleCommentRecipients = "/comments/%ID%/possibleRecipients.json"; pageContext.url.commentEdit = '/comments/%25ID%25/edit.html'; pageContext.url.commentView = '/comments/%ID%/view.html'; pageContext.i18n.commentVisibility = { 'full': 'Viewable by all users', 'op': 'Viewable by the original poster', 'mod': 'Viewable by moderators', 'opAndMod': 'Viewable by moderators and the original poster', 'other': 'Advanced visibility', 'dialogTitle': 'Comment visibility', 'selectGroups': 'Visible to groups', 'selectOther': 'Other recipients', 'selectOriginalPoster': 'Original poster', 'selectModerators': 'Moderators', 'selectAssignees': 'Asked to answer users' }; pageContext.i18n.commentMenuLabels = { 'comment-edit': 'comments.menu.edit', 'comment-delete': 'comments.menu.delete', 'comment-convert': 'comments.menu.convert' };pageContext.i18n.answer= { bestAnswer: 'Best Answer', controlBar : { accept: 'Accept', unaccept: 'Unaccept', acceptCommand: 'Accept this answer as correct', cancelAcceptedCommand: 'Remove this answers accepted status' } }; window.croles = { u: false, op: false, m: false, og: false, as: false, ag: false, dc: false, doc: false, eo: false, ea: false }; tools.init({ q: { e: false, ew: false, eo: false, r: false, ro: false, d: false, dow: false, fv: false, c: false, co: false, p: false, tm: false , ms: false, mos: false }, n: { f: false, vf: false, vfo: false, vr: true, vro: true, c: false, co: false, vu: false, vd: false, w: false, wo: false, l: false }, c: { e: false, eo: false, d: false, dow: false, ta: false, tao: false, l: false }, a: { e: false, ew: false, eo: false, d: false, dow: false, a: false, aoq: false, ao: false, tc: false, tco: false, p: false, tm: false }, pc: croles }, { tc: true, nsc: true }); commandUtils.initializeLabels(); });
Skip to Contentfor-each does change the current node so you should only use xsl:value-of select ="."
for-each does change the current node so you should only use xsl:value-of select ="."
Thank you Rossi for ur reply.
Now I am struggling in ABAP code, I have check my code and did not find place to correct it.
Since I am not getting the data <ADDTLINF> tag in my ABAP internal table defined in my report.
Below is my ABAP code:
TYPES: BEGIN OF GRPHDR, MSGID TYPE CHAR50, CREDTTM TYPE CHAR20, END OF GRPHDR. TYPES: BEGIN OF ADDTLINF, ADDTLINF(50), END OF ADDTLINF. TYPES: BEGIN OF STSRSNINF, ADDTLINF TYPE STANDARD TABLE OF ADDTLINF WITH NON-UNIQUE DEFAULT KEY, END OF STSRSNINF. TYPES: BEGIN OF ORGNLGRPINFANDSTS, ORGNLMSGID TYPE CHAR50, ORGNLMSGNMID TYPE CHAR20, ORGNLCREDTTM TYPE CHAR25, ORGNLNBOFTXS TYPE NUMC10, ORGNLCTRLSUM TYPE P DECIMALS 3, GRPSTS TYPE CHAR20, STSRSNINF TYPE STSRSNINF, END OF ORGNLGRPINFANDSTS. TYPES: BEGIN OF CSTMRPMTSTSRPT, GRPHDR TYPE GRPHDR, ORGNLGRPINFANDSTS TYPE ORGNLGRPINFANDSTS, END OF CSTMRPMTSTSRPT. TYPES: BEGIN OF TY_FINAL, CSTMRPMTSTSRPT TYPE CSTMRPMTSTSRPT, END OF TY_FINAL. DATA: IT_FINAL TYPE STANDARD TABLE OF TY_FINAL, WA_FINAL TYPE TY_FINAL.
.........
GET REFERENCE OF IT_FINAL INTO GS_RESULT_XML-VALUE. GS_RESULT_XML-NAME = 'CSTMRPMTSTSRPT_GET'. APPEND GS_RESULT_XML TO GT_RESULT_XML.
* Perform the XSLT stylesheet TRY. CALL TRANSFORMATION ZXSLT_TEST SOURCE XML GT_ITAB RESULT (GT_RESULT_XML). CATCH CX_ROOT INTO GS_RIF_EX. GS_VAR_TEXT = GS_RIF_EX->GET_TEXT( ). MESSAGE GS_VAR_TEXT TYPE 'E'. ENDTRY.
Above structure I am passing to the XSLT Transformation.
Add comment