Show TOC Start of Content Area

Background documentation storeNavNode  Locate the document in its SAP Library structure

Stores a navigation node so that it can later be recalled by the recallNavNode tag.

Attributes

Name

Mandatory

Description

id

No

The ID of the stored navigation node.

If no ID is specified, the navigation node is stored with the ID default.

Cooperating Tags

The tag must be nested in one of the following tags:

·        iterateInitialNavNodes

·        iterateNavNodeChildren

·        iterateNavNodesInSelectedPath

·        iterateSelectedNavNodesLevel

·        launchedNavNode

·        navNode

·        navNodeParent

·        recallNavNode

·        recurseNavNodeChildren

·        selectedNavNode

Example

The following iterates through the top-level nodes, storing the selected top-level node. The selected node is then recalled, and an iteration is started through the children of that node.

<TABLE border="0" cellspacing="0" cellpadding="0" class="table1">

    <TR>

        <nav:iterateInitialNavNodes>

            <nav:ifNavNodeSelected>

 

                ... 

 

                <% if(levels==2) { %>

                    <nav:storeNavNode/>

                <% } %>

            </nav:ifNavNodeSelected>

            <nav:ifNotNavNodeSelected>

 

                ... 

 

            </nav:ifNotNavNodeSelected>

        </nav:iterateInitialNavNodes>

        <TD nowrap class="spacingTDLevel1">&nbsp;</TD>

    </TR>

</TABLE>

<TABLE border="0" cellspacing="0" cellpadding="0" class="table2">

    <TR>

        <nav:recallNavNode>

            <nav:iterateNavNodeChildren>

 

                ...  Display level 2 nodes 

 

            </nav:iterateNavNodeChildren>

            <TD nowrap class="spacingTDLevel2">&nbsp;</TD>

        </nav:recallNavNode>

    </TR>

</TABLE>

See Also

·        recallNavNode

 

End of Content Area