<?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: Value help is displaying by using @Consumption.valueHelpDefinition: in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436711#M4657066</link>
    <description>&lt;P&gt; @&lt;A href="https://answers.sap.com/users/1186349/mark_castle.html"&gt;Mark Castle&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;I found out why for the ZI_COMPANYCODE_VH value is coming because for the field BUKRS there is search help and for the blart field there is no search help and can i know how to proceed.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(51, 51, 51);" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913578-valuehelp9.jpg" /&gt;&lt;/P&gt;&lt;P&gt;but for  field Blart there is not search help.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(51, 51, 51);" /&gt; &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913577-valuehelp8.jpg" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Apr 2021 08:14:32 GMT</pubDate>
    <dc:creator>durgaprasanth_vemula</dc:creator>
    <dc:date>2021-04-16T08:14:32Z</dc:date>
    <item>
      <title>Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaq-p/12436704</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I am using Value help is displaying by using @Consumption.valueHelpDefinition: but it is not displaying and please find the below code.&lt;/P&gt;
  &lt;P&gt;1)I had created the below CDS View to get the list of Document Types&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913447-valuehelp1.jpg" /&gt;&lt;/P&gt;
  &lt;P&gt;2)In the below CDS View i am using Annotation @Consumption.valueHelpDefinition: and given element and name(CDS View name)&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913448-valuehelp2.jpg" /&gt;&lt;/P&gt;
  &lt;P&gt;3) As per the below screen still appearing as normal which should appear as valuehelp&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913449-valuehelp3.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Apr 2021 09:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaq-p/12436704</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-12T09:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436705#M4657060</link>
      <description>&lt;P&gt;Can you show how association to ZI_DOCUMENTTYPE_VH is defined in ZI_POSTINGS_R1V2?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 08:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436705#M4657060</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-04-14T08:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436706#M4657061</link>
      <description>&lt;P&gt;Try something like this for your Value Help&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;@AbapCatalog.sqlViewName: 'ZVHSALESORDTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Sales Order Types VH'
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true
define view ZCDS_VH_SALES_ORDER_TYPES
  as select from tvakt


{
      @Search.defaultSearchElement: true
      @ObjectModel.text.element: ['SalesOrderDescription']
  key auart,
      @Semantics.text: true
      bezei as SalesOrderDescription


}
where
  spras = 'E'
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Apr 2021 08:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436706#M4657061</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-04-14T08:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436707#M4657062</link>
      <description>&lt;P&gt; @&lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;Please find the below screen and i had not given any association between ZI_DOCUMENTTYPE_VH is defined in ZI_POSTINGS_R1V2.&lt;/P&gt;&lt;P&gt;But as per the below screen shot i had used for the  ZI_COMPANYCODE_VH and it is displaying perfectly fine for the Cmpany Code&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1910663-valuehelp4.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 08:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436707#M4657062</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-14T08:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436708#M4657063</link>
      <description>&lt;P&gt;@&lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;As you had asked me to do the change and i had done the change but still nothing is displaying.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1910666-valuehelp6.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1910667-valuehelp7.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 08:20:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436708#M4657063</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-14T08:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436709#M4657064</link>
      <description>&lt;P&gt;Are you sure that the BUKRS Value Help isn't coming from the value help on the field from the database table, rather than ZI_COMPANYCODE_VH?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 08:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436709#M4657064</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-04-14T08:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436710#M4657065</link>
      <description>&lt;P&gt; @&lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am getting those values in F4 which are there in the ZI_COMPANYCODE_VH. but i am not able to understand why it is not working for ZI_DOCUMENTTYPE_VH.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 07:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436710#M4657065</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-15T07:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436711#M4657066</link>
      <description>&lt;P&gt; @&lt;A href="https://answers.sap.com/users/1186349/mark_castle.html"&gt;Mark Castle&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;I found out why for the ZI_COMPANYCODE_VH value is coming because for the field BUKRS there is search help and for the blart field there is no search help and can i know how to proceed.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(51, 51, 51);" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913578-valuehelp9.jpg" /&gt;&lt;/P&gt;&lt;P&gt;but for  field Blart there is not search help.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(51, 51, 51);" /&gt; &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913577-valuehelp8.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Apr 2021 08:14:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436711#M4657066</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-16T08:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436712#M4657067</link>
      <description>&lt;P&gt;Create your value help e.g.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;@AbapCatalog.sqlViewName: 'ZVHSALESORDTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Sales Order Types VH'
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true
define view ZCDS_VH_SALES_ORDER_TYPES
  as select from tvakt


{
      @Search.defaultSearchElement: true
      @ObjectModel.text.element: ['SalesOrderDescription']
  key auart,
      @Semantics.text: true
      bezei as SalesOrderDescription


}
where
  spras = 'E'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In your composite view &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;association [1]    to ZCDS_VH_SALES_ORDER_TYPES as _SalesOrderVH      on $projection.auart = _SalesOrderVH.auart
......
@ObjectModel.text.element: ['SalesOrderDescription']
auart,
@Semantics.text: true
@EndUserText.label: 'Sales Order Type'
_SalesOrderVH.SalesOrderDescription,
......
_SalesOrderVH,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In your consumption view&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;@Consumption.valueHelp: '_SalesOrderVH'
auart&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Apr 2021 13:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436712#M4657067</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-04-16T13:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436713#M4657068</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Hi Mark, &lt;/P&gt;&lt;P&gt;As per your instruction i had tried but still it is not displaying and please find the below screen shots in details.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913737-valuehelp14.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 10:31:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436713#M4657068</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-21T10:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436714#M4657069</link>
      <description>&lt;P&gt; @&lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;But still it is same issue after following your instructions.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1913738-valuehelp13.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 10:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436714#M4657069</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-21T10:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436715#M4657070</link>
      <description>&lt;P&gt;Post a screenshot of your OData service metadata showing the relevant fields and the association section.  Also the local metadata.xml file in webapp-&amp;gt;localService folder.  Also, make sure that you have refreshed your Data Source in manifest (right click manifest.json -&amp;gt; Open Service Manager (if using BAS)).&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 10:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436715#M4657070</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-04-21T10:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436716#M4657071</link>
      <description>&lt;P&gt; @&lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;please find the screen shot of ODATA Metadata.&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917461-valuehelp15.jpg" /&gt;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917462-valuehelp16.jpg" /&gt;&lt;/P&gt;&lt;P&gt;3)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917463-valuehelp17.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Apr 2021 06:50:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436716#M4657071</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-22T06:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436717#M4657072</link>
      <description>&lt;P&gt;@Mark Castle&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917464-valuehelp18.jpg" /&gt;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917465-valuehelp19.jpg" /&gt;&lt;/P&gt;&lt;P&gt;3)&lt;/P&gt;&lt;P&gt;4)&lt;/P&gt;</description>
      <pubDate>Thu, 22 Apr 2021 06:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436717#M4657072</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-22T06:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436718#M4657073</link>
      <description>&lt;P&gt;@Mark Castle&lt;/P&gt;&lt;P&gt;local metadata.xml file in webapp-&amp;gt;localService folder and also refreshed your Data Source in manifest (right click manifest.json -&amp;gt; Open Service Manager (if using BAS))&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917469-valuehelp20.jpg" /&gt;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1917470-valuehelp21.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Apr 2021 06:59:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436718#M4657073</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-04-22T06:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436719#M4657074</link>
      <description>&lt;P&gt; @Mark Castle&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;Could you please help me on this as I had put all screen shots as you have requested.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Durga Prasanth&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 06:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436719#M4657074</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-05-03T06:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436720#M4657075</link>
      <description>&lt;P&gt;Try adding &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;@ObjectModel.foreignKey.association: '_zi_doctype'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;above blart in your Composite View.  &lt;/P&gt;&lt;P&gt;However, looking at your OData service i would have expected to see an entry similar to the Company Code Value Help starting with&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;EntityType Name="ZI_DOCUMENTTYPE_VH2"&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;so it looks like something is missing in the OData service.  Have you tried re-publishing the OData service by activating the view with  @Odata.publish: false, then re-activating with @OData.publish: true?&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 15:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436720#M4657075</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-05-05T15:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436721#M4657076</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;mark_castle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;As per your suggestion i had added the @ObjectModel.foreignKey.association:'_zi_doctype' and also done the @Odata.publish: false, then re-activating with @OData.publish: true. but still it is not appearing.&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1925447-valuehelp22.jpg" /&gt;&lt;/P&gt;&lt;P&gt;2)Please find the ODATA Service metadata&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1925448-valuehelp23.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 07:07:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436721#M4657076</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-05-06T07:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436722#M4657077</link>
      <description>&lt;P&gt;I’m out of ideas. The only thing I can think is that you’re seeing a cache issue in your browser, or the local metadata is out of sync. &lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 07:28:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436722#M4657077</guid>
      <dc:creator>mdcastle</dc:creator>
      <dc:date>2021-05-06T07:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Value help is displaying by using @Consumption.valueHelpDefinition:</title>
      <link>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436723#M4657078</link>
      <description>&lt;P&gt; @&lt;A href="https://answers.sap.com/users/1186349/mark_castle.html"&gt;Mark Castle&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;The metadata.xml file in the LocalService in the Business Application Studio is not getting refreshed and it is not sync and that is the reason Valuehelp is not working.&lt;/P&gt;&lt;P&gt;As per the below screen the changes are reflecting and could you please tell me how to sync.&lt;/P&gt;&lt;P&gt;Note:I found the below issue because when i again created a New Fiori App and fetch the ODATA service and Valuehelp is working.&lt;/P&gt;&lt;P&gt;Now my issue is how the metadata.xml will be sync in Business Application Studio? &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1934895-valuehelp24.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 12:12:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/value-help-is-displaying-by-using-consumption-valuehelpdefinition/qaa-p/12436723#M4657078</guid>
      <dc:creator>durgaprasanth_vemula</dc:creator>
      <dc:date>2021-05-17T12:12:18Z</dc:date>
    </item>
  </channel>
</rss>

