<?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>cds view join &#8211; SAP EWM Help</title>
	<atom:link href="https://www.sapewmhelp.com/question-tag/cds-view-join/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>Tue, 05 Aug 2025 10:47:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>
	<item>
		<title>Creating CDS View with table Join and Where condition</title>
		<link>https://www.sapewmhelp.com/question/creating-cds-view-with-table-join-and-where-condition/</link>
					<comments>https://www.sapewmhelp.com/question/creating-cds-view-with-table-join-and-where-condition/#respond</comments>
		
		<dc:creator><![CDATA[basantbharti]]></dc:creator>
		<pubDate>Tue, 05 Aug 2025 10:45:26 +0000</pubDate>
				<guid isPermaLink="false">https://www.sapewmhelp.com/?post_type=question&#038;p=7401</guid>

					<description><![CDATA[Example CDS view to join delivery table LIKP and LIPS on VBELN field and with LFART in where condition]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Example CDS view to join delivery table LIKP and LIPS on VBELN field and with LFART in where condition</p>



<div class="hcb_wrap">
<pre class="prism line-numbers lang-plain"><code>------------------------------------------------------------
CDS VIEW:
------------------------------------------------------------
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS - Inner Join'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
    serviceQuality: #X,
    sizeCategory: #S,
    dataClass: #MIXED
}
define view entity ZI_CDS_INNER_JOIN 
as select from LIKP               //Left
inner join LIPS                   //Right
on LIKP.VBELN = LIPS.VBELN        //Join Condition
{
    key likp.vbeln,
    key lips.posnr,
    likp.erdat,
    likp.lfart,
    lips.lfimg,
    @Semantics.amount.currencyCode: 'meins'
    lip.meins}
where likp.lfart = 'LF'</code></pre>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sapewmhelp.com/question/creating-cds-view-with-table-join-and-where-condition/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
