<?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>topic CDS View HelpValue Annotation Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-view-helpvalue-annotation-issue/m-p/12809521#M2025475</link>
    <description>&lt;P&gt;&lt;STRONG&gt;Ask:&lt;/STRONG&gt; I have a CDS View which contains GLAccount for which I need to show the description in the report. There is also a filter at the GLAccount level where users can input multiple GLAccounts which they want to see in the report. Users will use SAC to view the report from the view.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Issue: &lt;/STRONG&gt;As per below code, I'm able to see the GLAccount Description in the report only if I remove the filter on GLAccount. If I add filter on GLAccount then when user tries to enter another GLAccount (filter multipleselection = true) then they get error "Member ID not found". F4 is not showing up any values.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Composite View&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.sqlViewName: 'ZCBVIEW'&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.compiler.compareFilter: true&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.preserveKey: true&lt;/P&gt;
  &lt;P&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'BasicCubeView'&lt;/P&gt;
  &lt;P&gt;@VDM.viewType: #COMPOSITE&lt;/P&gt;
  &lt;P&gt;@Analytics.dataCategory: #CUBE&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.serviceQuality: #D&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.sizeCategory: #XXL&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.dataClass: #MIXED&lt;/P&gt;
  &lt;P&gt;define view ZCB_VIEW&lt;/P&gt;
  &lt;P&gt; with parameters&lt;/P&gt;
  &lt;P&gt; P_CompanyCode : &lt;EM&gt;bukrs&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup : &lt;EM&gt;setnamenew&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; as select from ZTF_VIEW(P_CompanyCode: $parameters.P_CompanyCode,&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate: $parameters.P_PostingStartDate,&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate: $parameters.P_PostingEndDate,&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup: $parameters.P_ProfitCenterGroup,&lt;/P&gt;
  &lt;P&gt; P_Client: $session.client)&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; association[0..*] to I_GLAccountText as _GLAccountText on _GLAccountText.ChartOfAccounts = '1000' and $projection.AccountNumber = _GLAccountText.GLAccount &lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt; CompanyCode,&lt;/P&gt;
  &lt;P&gt; LedgerGroup,&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; @ObjectModel.text.association: '_GLAccountText'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; AccountNumber&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Consumption View (WORKING):&lt;/STRONG&gt; I am able to see the GLAccount description for AccountNumber field in the report&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.sqlViewName: 'ZCQVIEW'&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.compiler.compareFilter: true&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.preserveKey: true&lt;/P&gt;
  &lt;P&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'ConsumptionView'&lt;/P&gt;
  &lt;P&gt;@VDM.viewType: #CONSUMPTION&lt;/P&gt;
  &lt;P&gt;@Analytics.query: true&lt;/P&gt;
  &lt;P&gt;@OData.publish: true&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.serviceQuality: #D&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.sizeCategory: #XXL&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.dataClass: #MIXED&lt;/P&gt;
  &lt;P&gt;define view ZCQ_VIEW&lt;/P&gt;
  &lt;P&gt; with parameters&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt; @Consumption.valueHelpDefinition: [ { entity: { name: 'C_CompanyCodeValueHelp', element: 'CompanyCode' } } ]&lt;/P&gt;
  &lt;P&gt; P_CompanyCode : &lt;EM&gt;bukrs&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Posting Start Date'&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Posting End Date'&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Profit Center Group'&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup : &lt;EM&gt;setnamenew&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; as select from ZCB_VIEW(P_CompanyCode: $parameters.P_CompanyCode,&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate: $parameters.P_PostingStartDate,&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate: $parameters.P_PostingEndDate,&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup: $parameters.P_ProfitCenterGroup)&lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt; CompanyCode,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Ledger Group'&lt;/P&gt;
  &lt;P&gt; @Consumption.filter : { selectionType : #SINGLE,defaultValue: '0L' ,mandatory: false}&lt;/P&gt;
  &lt;P&gt; LedgerGroup,&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; @EndUserText.label: 'Account Number'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@Consumption.valueHelp: '_GLAccountText'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; @AnalyticsDetails.query.display: #KEY_TEXT&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; AccountNumber&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Consumption View (NOT WORKING):&lt;/STRONG&gt; Once I add filter to the AccountNumber, in SAC I see the description coming up for default Account Number&lt;/P&gt;
  &lt;P&gt;but when I try to enter another AccountNumber, I get error "Member ID not found". Also F4 option doesnt show any values for AccountNumber&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.sqlViewName: 'ZCQVIEW'&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.compiler.compareFilter: true&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.preserveKey: true&lt;/P&gt;
  &lt;P&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'ConsumptionView'&lt;/P&gt;
  &lt;P&gt;@VDM.viewType: #CONSUMPTION&lt;/P&gt;
  &lt;P&gt;@Analytics.query: true&lt;/P&gt;
  &lt;P&gt;@OData.publish: true&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.serviceQuality: #D&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.sizeCategory: #XXL&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.dataClass: #MIXED&lt;/P&gt;
  &lt;P&gt;define view ZCQ_VIEW&lt;/P&gt;
  &lt;P&gt;with parameters&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt;@Consumption.valueHelpDefinition: [ { entity: { name: 'C_CompanyCodeValueHelp', element: 'CompanyCode' } } ]&lt;/P&gt;
  &lt;P&gt;P_CompanyCode : &lt;EM&gt;bukrs&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Posting Start Date'&lt;/P&gt;
  &lt;P&gt;P_PostingStartDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Posting End Date'&lt;/P&gt;
  &lt;P&gt;P_PostingEndDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Profit Center Group'&lt;/P&gt;
  &lt;P&gt;P_ProfitCenterGroup : &lt;EM&gt;setnamenew&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;as select from ZCB_VIEW(P_CompanyCode: $parameters.P_CompanyCode,&lt;/P&gt;
  &lt;P&gt;P_PostingStartDate: $parameters.P_PostingStartDate,&lt;/P&gt;
  &lt;P&gt;P_PostingEndDate: $parameters.P_PostingEndDate,&lt;/P&gt;
  &lt;P&gt;P_ProfitCenterGroup: $parameters.P_ProfitCenterGroup)&lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt;CompanyCode,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Ledger Group'&lt;/P&gt;
  &lt;P&gt;@Consumption.filter : { selectionType : #SINGLE,defaultValue: '0L' ,mandatory: false}&lt;/P&gt;
  &lt;P&gt;LedgerGroup,&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@EndUserText.label: 'Account Number'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@Consumption.valueHelp: '_GLAccountText'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@AnalyticsDetails.query.display: #KEY_TEXT&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;@Consumption.filter : { multipleSelections: true, defaultValue: '12345', mandatory: true}&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;AccountNumber&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Please let me know what am I doing wrong here and how can I make valuehelp for GLAccount work in both; filter and report level&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Oct 2023 16:36:34 GMT</pubDate>
    <dc:creator>sumitsharma_79</dc:creator>
    <dc:date>2023-10-13T16:36:34Z</dc:date>
    <item>
      <title>CDS View HelpValue Annotation Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-view-helpvalue-annotation-issue/m-p/12809521#M2025475</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Ask:&lt;/STRONG&gt; I have a CDS View which contains GLAccount for which I need to show the description in the report. There is also a filter at the GLAccount level where users can input multiple GLAccounts which they want to see in the report. Users will use SAC to view the report from the view.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Issue: &lt;/STRONG&gt;As per below code, I'm able to see the GLAccount Description in the report only if I remove the filter on GLAccount. If I add filter on GLAccount then when user tries to enter another GLAccount (filter multipleselection = true) then they get error "Member ID not found". F4 is not showing up any values.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Composite View&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.sqlViewName: 'ZCBVIEW'&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.compiler.compareFilter: true&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.preserveKey: true&lt;/P&gt;
  &lt;P&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'BasicCubeView'&lt;/P&gt;
  &lt;P&gt;@VDM.viewType: #COMPOSITE&lt;/P&gt;
  &lt;P&gt;@Analytics.dataCategory: #CUBE&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.serviceQuality: #D&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.sizeCategory: #XXL&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.dataClass: #MIXED&lt;/P&gt;
  &lt;P&gt;define view ZCB_VIEW&lt;/P&gt;
  &lt;P&gt; with parameters&lt;/P&gt;
  &lt;P&gt; P_CompanyCode : &lt;EM&gt;bukrs&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup : &lt;EM&gt;setnamenew&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; as select from ZTF_VIEW(P_CompanyCode: $parameters.P_CompanyCode,&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate: $parameters.P_PostingStartDate,&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate: $parameters.P_PostingEndDate,&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup: $parameters.P_ProfitCenterGroup,&lt;/P&gt;
  &lt;P&gt; P_Client: $session.client)&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; association[0..*] to I_GLAccountText as _GLAccountText on _GLAccountText.ChartOfAccounts = '1000' and $projection.AccountNumber = _GLAccountText.GLAccount &lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt; CompanyCode,&lt;/P&gt;
  &lt;P&gt; LedgerGroup,&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; @ObjectModel.text.association: '_GLAccountText'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; AccountNumber&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Consumption View (WORKING):&lt;/STRONG&gt; I am able to see the GLAccount description for AccountNumber field in the report&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.sqlViewName: 'ZCQVIEW'&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.compiler.compareFilter: true&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.preserveKey: true&lt;/P&gt;
  &lt;P&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'ConsumptionView'&lt;/P&gt;
  &lt;P&gt;@VDM.viewType: #CONSUMPTION&lt;/P&gt;
  &lt;P&gt;@Analytics.query: true&lt;/P&gt;
  &lt;P&gt;@OData.publish: true&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.serviceQuality: #D&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.sizeCategory: #XXL&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.dataClass: #MIXED&lt;/P&gt;
  &lt;P&gt;define view ZCQ_VIEW&lt;/P&gt;
  &lt;P&gt; with parameters&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt; @Consumption.valueHelpDefinition: [ { entity: { name: 'C_CompanyCodeValueHelp', element: 'CompanyCode' } } ]&lt;/P&gt;
  &lt;P&gt; P_CompanyCode : &lt;EM&gt;bukrs&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Posting Start Date'&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Posting End Date'&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Profit Center Group'&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup : &lt;EM&gt;setnamenew&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; as select from ZCB_VIEW(P_CompanyCode: $parameters.P_CompanyCode,&lt;/P&gt;
  &lt;P&gt; P_PostingStartDate: $parameters.P_PostingStartDate,&lt;/P&gt;
  &lt;P&gt; P_PostingEndDate: $parameters.P_PostingEndDate,&lt;/P&gt;
  &lt;P&gt; P_ProfitCenterGroup: $parameters.P_ProfitCenterGroup)&lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt; CompanyCode,&lt;/P&gt;
  &lt;P&gt; @EndUserText.label: 'Ledger Group'&lt;/P&gt;
  &lt;P&gt; @Consumption.filter : { selectionType : #SINGLE,defaultValue: '0L' ,mandatory: false}&lt;/P&gt;
  &lt;P&gt; LedgerGroup,&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; @EndUserText.label: 'Account Number'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@Consumption.valueHelp: '_GLAccountText'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; @AnalyticsDetails.query.display: #KEY_TEXT&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt; AccountNumber&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Consumption View (NOT WORKING):&lt;/STRONG&gt; Once I add filter to the AccountNumber, in SAC I see the description coming up for default Account Number&lt;/P&gt;
  &lt;P&gt;but when I try to enter another AccountNumber, I get error "Member ID not found". Also F4 option doesnt show any values for AccountNumber&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.sqlViewName: 'ZCQVIEW'&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.compiler.compareFilter: true&lt;/P&gt;
  &lt;P&gt;@AbapCatalog.preserveKey: true&lt;/P&gt;
  &lt;P&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'ConsumptionView'&lt;/P&gt;
  &lt;P&gt;@VDM.viewType: #CONSUMPTION&lt;/P&gt;
  &lt;P&gt;@Analytics.query: true&lt;/P&gt;
  &lt;P&gt;@OData.publish: true&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.serviceQuality: #D&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.sizeCategory: #XXL&lt;/P&gt;
  &lt;P&gt;@ObjectModel.usageType.dataClass: #MIXED&lt;/P&gt;
  &lt;P&gt;define view ZCQ_VIEW&lt;/P&gt;
  &lt;P&gt;with parameters&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt;@Consumption.valueHelpDefinition: [ { entity: { name: 'C_CompanyCodeValueHelp', element: 'CompanyCode' } } ]&lt;/P&gt;
  &lt;P&gt;P_CompanyCode : &lt;EM&gt;bukrs&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Posting Start Date'&lt;/P&gt;
  &lt;P&gt;P_PostingStartDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Posting End Date'&lt;/P&gt;
  &lt;P&gt;P_PostingEndDate : &lt;EM&gt;abap&lt;/EM&gt;.&lt;EM&gt;dats&lt;/EM&gt;,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Profit Center Group'&lt;/P&gt;
  &lt;P&gt;P_ProfitCenterGroup : &lt;EM&gt;setnamenew&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;as select from ZCB_VIEW(P_CompanyCode: $parameters.P_CompanyCode,&lt;/P&gt;
  &lt;P&gt;P_PostingStartDate: $parameters.P_PostingStartDate,&lt;/P&gt;
  &lt;P&gt;P_PostingEndDate: $parameters.P_PostingEndDate,&lt;/P&gt;
  &lt;P&gt;P_ProfitCenterGroup: $parameters.P_ProfitCenterGroup)&lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Company Code'&lt;/P&gt;
  &lt;P&gt;CompanyCode,&lt;/P&gt;
  &lt;P&gt;@EndUserText.label: 'Ledger Group'&lt;/P&gt;
  &lt;P&gt;@Consumption.filter : { selectionType : #SINGLE,defaultValue: '0L' ,mandatory: false}&lt;/P&gt;
  &lt;P&gt;LedgerGroup,&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@EndUserText.label: 'Account Number'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@Consumption.valueHelp: '_GLAccountText'&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;@AnalyticsDetails.query.display: #KEY_TEXT&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;@Consumption.filter : { multipleSelections: true, defaultValue: '12345', mandatory: true}&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;AccountNumber&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Please let me know what am I doing wrong here and how can I make valuehelp for GLAccount work in both; filter and report level&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 16:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-view-helpvalue-annotation-issue/m-p/12809521#M2025475</guid>
      <dc:creator>sumitsharma_79</dc:creator>
      <dc:date>2023-10-13T16:36:34Z</dc:date>
    </item>
  </channel>
</rss>

