<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Goto page navigation in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaa-p/891780#M311536</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the &amp;lt;htmlb:form&amp;gt; element you can specify the target attribute. ( &amp;lt;htmlb:form  id           = "myFormId"   &lt;/P&gt;&lt;P&gt;              method       = "post"       &lt;/P&gt;&lt;P&gt;              target       = "_blank"    )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jan 2005 04:44:18 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2005-01-11T04:44:18Z</dc:date>
    <item>
      <title>Goto page navigation</title>
      <link>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaq-p/891779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help/some sample code to display (result) page on same window as the tableview where the user click on the cell data.&lt;/P&gt;&lt;P&gt;The following is my current prototype codes.&lt;/P&gt;&lt;P&gt;(on display.htm page)&lt;/P&gt;&lt;P&gt;&amp;lt;htmlb:form&amp;gt;&lt;/P&gt;&lt;P&gt;      &amp;lt;htmlb:tableView id              = "t1"&lt;/P&gt;&lt;P&gt;                       visibleRowCount = "15"&lt;/P&gt;&lt;P&gt;                       table           = "&amp;lt;%= it_contracts %&amp;gt;" &amp;gt;&lt;/P&gt;&lt;P&gt;        &amp;lt;htmlb:tableViewColumns&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;htmlb:tableViewColumn columnName = "lifnr"&lt;/P&gt;&lt;P&gt;                                 title      = "Vendor" /&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;htmlb:tableViewColumn columnName = "name1"&lt;/P&gt;&lt;P&gt;                                 title      = "Name1" /&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;htmlb:tableViewColumn columnName          = "ebeln"&lt;/P&gt;&lt;P&gt;                                 title               = "Agreement No"&lt;/P&gt;&lt;P&gt;                                 horizontalAlignment = "center" /&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;htmlb:tableViewColumn columnName          = "kdate"&lt;/P&gt;&lt;P&gt;                                 title               = "Validity End dt."&lt;/P&gt;&lt;P&gt;                                 horizontalAlignment = "center" /&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;htmlb:tableViewColumn columnName          = "ekgrp"&lt;/P&gt;&lt;P&gt;                                 title               = "Purchasing Grp"&lt;/P&gt;&lt;P&gt;                                 horizontalAlignment = "center"&lt;/P&gt;&lt;P&gt;                                 type                = "user" &amp;gt;&lt;/P&gt;&lt;P&gt;            [&amp;lt;b&amp;gt;b]&amp;lt;htmlb:link id      = "$ekgrp$"&lt;/P&gt;&lt;P&gt;                        onClick = "buyer.htm"&lt;/P&gt;&lt;P&gt;                        text    = "$ekgrp$"/&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;/htmlb:tableViewColumn&amp;gt;          &amp;lt;htmlb:tableViewColumn columnName = "ltex1"&lt;/P&gt;&lt;P&gt;                                 title      = "Agreement Title" /&amp;gt;&lt;/P&gt;&lt;P&gt;          &amp;lt;htmlb:tableViewColumn columnName          = "zterm"&lt;/P&gt;&lt;P&gt;                                 title               = "Terms"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user click on Purchasing group, the OnInputProcessing event is called, the following code pass the parameters &lt;/P&gt;&lt;P&gt;IF event-&amp;gt;name = 'link'.&lt;/P&gt;&lt;P&gt;       buyer = event-&amp;gt;id.&lt;/P&gt;&lt;P&gt;       navigation-&amp;gt;set_parameter( name = 'ekgrp' value = buyer ).&lt;/P&gt;&lt;P&gt;       navigation-&amp;gt;goto_page( 'buyer.htm' ).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;This will open up another page window "buyer.htm" to show the detail information for the buyer selected but how do I code so this page buyer.htm to open up in page window of display.htm ( like how target="_blank" works).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope my question is not confusing.&lt;/P&gt;&lt;P&gt;Thank you for any suggestions.&lt;/P&gt;&lt;P&gt;nhd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2005 22:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaq-p/891779</guid>
      <dc:creator>nu_dang</dc:creator>
      <dc:date>2005-01-10T22:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Goto page navigation</title>
      <link>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaa-p/891780#M311536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the &amp;lt;htmlb:form&amp;gt; element you can specify the target attribute. ( &amp;lt;htmlb:form  id           = "myFormId"   &lt;/P&gt;&lt;P&gt;              method       = "post"       &lt;/P&gt;&lt;P&gt;              target       = "_blank"    )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2005 04:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaa-p/891780#M311536</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-01-11T04:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Goto page navigation</title>
      <link>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaa-p/891781#M311537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a bit confused by what you really want to achieve, so I can just extend Raja's suggestion, but maybe not changing the target for the whole form, just set target="_blank" for the link in your column ... at least if I got that part of your problem the right way ...&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2005 08:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/goto-page-navigation/qaa-p/891781#M311537</guid>
      <dc:creator>maximilian_schaufler</dc:creator>
      <dc:date>2005-01-11T08:59:31Z</dc:date>
    </item>
  </channel>
</rss>

