hi all, what are scope types of action.i know type and role scoping but what about component scoping?
Regards.
Where are you seeing this reference? You define a scope for a component, but I havent seen the term "component scoping". The list of scope features is listed in WDK Development Guide under "Scopes available in WDK applications"
i see it in our project like in action definition: <scope component="blabla"> i think it has no effet to scoping but it is surprising that it also does not give any error.
Is this custom action xml or one of the out of the boxes - please provide name if OOTB?
i dont know if it is custom or OOTB.but i know this action definition exists in the custom layer of the webtop.moreover this action definition made by our architects. i am putting the file content here so that you have an idea if it is custom action or OOTB.
Best Regards.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version="1.0">
<scope type="dmc_workqueue" component="managequeueinbox">
<menuconfig id="context-menu">
<actionmenuitem dynamic="singleselect" action="properties" nlsid="MSG_PROPERTIES" showifdisabled="false" showifinvalid="false"/>
<actionmenuitem dynamic="singleselect" name="wqworkload" action="processorqueueinbox" nlsid="MSG_SHOW_TASKS" showifdisabled="false" showifinvalid="false"/>
<actionmenuitem dynamic="singleselect" name="members" action="queueusersandgroups" nlsid="MSG_MEMBERS" showifdisabled="false" showifinvalid="false"/>
<actionmenuitem dynamic="singleselect" action="showggskillset" nlsid="MSG_SKILLSET" showifdisabled="false" showifinvalid="false"/>
</menuconfig>
<action id="showggskillset">
<desc>...</desc>
<params>
<param name="queuename" required="true"/>
</params>
<preconditions>
<precondition class="com.documentum.webcomponent.library.actions.ArgumentNotEmptyPrecondition">
<argument>queuename</argument>
</precondition>
</preconditions>
<execution class="com.documentum.web.formext.action.LaunchComponent">
<!-- container>taskprogress_ext_container</container -->
<component>ggskillset</component>
</execution>
<navigation>nested</navigation>
</action>
</scope>
</config>
I think this is custom code. If you look at the OOTB dmc_workqueue_actions.xml file, you will see that there is no "scope - component" argument.