<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>hide &#8211; SAP EWM Help</title>
	<atom:link href="https://www.sapewmhelp.com/question-tag/hide/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sapewmhelp.com</link>
	<description>SAP EWM questions answered by experts — ABAP, S/4HANA, warehouse management</description>
	<lastBuildDate>Mon, 04 Aug 2025 19:51:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>
	<item>
		<title>Use of Hide keyword in sap abap</title>
		<link>https://www.sapewmhelp.com/question/use-of-hide-keyword-in-sap-abap/</link>
					<comments>https://www.sapewmhelp.com/question/use-of-hide-keyword-in-sap-abap/#respond</comments>
		
		<dc:creator><![CDATA[DPM125]]></dc:creator>
		<pubDate>Mon, 04 Aug 2025 19:51:26 +0000</pubDate>
				<guid isPermaLink="false">https://www.sapewmhelp.com/?question=use-of-hide-keyword-in-sap-abap</guid>

					<description><![CDATA[It stores the value of a variable or field at the time the line is being written to the list. Later, when that line is clicked (e.g., in an AT LINE-SELECTION event), the hidden values are automatically restored. How it works: During WRITE statements in the basic list, you use HIDE to store additional data [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It stores the value of a variable or field at the time the line is being written to the list. Later, when that line is clicked (e.g., in an <code>AT LINE-SELECTION</code> event), the hidden values are automatically restored.</p>
<h3 data-start="586" data-end="606">How it works:</h3>
<ul>
<li>
<p>During <code>WRITE</code> statements in the <strong>basic list</strong>, you use <code>HIDE</code> to store additional data in the background.</p>
</li>
<li>
<p>When the user interacts (e.g., double-clicks) on that list line, the system retrieves the hidden data, which you can then use in the <code>AT LINE-SELECTION</code> event.</p>
<div class="hcb_wrap">
<pre class="prism line-numbers lang-ts" data-lang="TypeScript"><code><!--StartFragment --><span><span>REPORT </span>zprg_test_ecc<span>.</span>

<span>DATA</span><span>: </span>v_ename <span>TYPE </span>ename<span>,</span>
      v_empno <span>TYPE </span>empno<span>.</span>

<span>START-OF-SELECTION</span><span>.</span>

  <span>SELECT </span>empno ename <span>FROM </span>emp <span>INTO </span><span>(</span>v_empno<span>, </span>v_ename<span>)</span><span>.</span>
    <span>WRITE</span><span>: </span>/ v_ename<span>.</span>
    <span>HIDE</span><span>: </span>v_empno<span>, </span>v_ename<span>.</span>
  <span>ENDSELECT</span><span>.</span>

<span>AT </span><span>LINE-SELECTION</span><span>.</span>

  <span>WRITE</span><span>: </span>/ <span>'Details for employee:'</span><span>,</span>
         / <span>'EmpNo:'</span><span>, </span>v_empno<span>,</span>
         / <span>'Name:'</span><span>, </span>v_ename<span>.</span></span> </code></pre>
</div>
</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sapewmhelp.com/question/use-of-hide-keyword-in-sap-abap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
