magritton
5/31/2016 - 8:29 PM

The following example shows the definition of an action in a BDC model. The <Action> element should be placed inside an <Entity> element, af

The following example shows the definition of an action in a BDC model. The element should be placed inside an element, after the definitions and before the closing tag. Replace the Name attribute value of the ActionParameter ("ParameterName") with the name for the parameter you want to pass to the Action. This name is defined in the Entity.

<Actions>
  <Action Position="1" IsOpenedInNewWindow="true" Name="Search" DefaultDisplayName="Search on Bing"
                  Url="http://www.bing.com/search?q={0}"
                  ImageUrl="http://www.bing.com/s/wlflag.ico" >
    <ActionParameters>
      <ActionParameter Index="0" Name="ParameterName">       
      </ActionParameter>
    </ActionParameters>
  </Action>
</Actions>