Reusable subcontrollers

Hi Friends,
     for item partners display in Sales Order transactions . SAP uses reusable subscreen (1000) from program ( SAPLV069 ).
     this screen we can call from our programs also,
     in bsp's we can call subcontrollers ( some what like subscreens ), actually do we have any such type of bsp's like partners subscreen  that we can use in our programs.
     whether SAP delivers any bsp's which will be reusable  that we can include in our programs ?
Thanks and Regards,
Shiva.

If I u derstand correctly, you are having problems trying to relate the Tasks created from the original custom list? If you need to get the ID of your Tasks, you do not need to create a variable. All Tasks entries can be referenced by the ID column. It
is automatically updated when a new Task is created. To get the related custom list ID, you can use the WorkflowItem ID column which is yet again another column that can be only updated by the system and is equivalent to the ID of the original custom list.
I can get these 2 columns using List workflows but not on reusable workflow. So am pretty stuck at this point as well. If possible try to create a list workflow instea. Unfortunately I can't cos my custom list blocks out SPD and my only way of having a workflow
run on my custom list is to deploy reusable workflows. If I find a workaround I'll let you know. Not an answer you are looking for but hope it helps.

Similar Messages

  • How to use existing WSP file of reusable workflow and create sanbox solution?

    Hello,
    I have to migrate the SharePoint Designer 2013 workflows from Development environment to Production environment. So, I am following the process which is mentioned in this blog:
    http://sharepointyankee.com/2010/12/11/options-for-deploying-reusable-workflows-in-sharepoint-2010/
    And it is working also, but problem is that; this visual studio solution is getting deployed as a Farm Solution and I wanted to deploy it as a sandbox solution. 
    Is there any way to achieve this?
    I have also tried one more way which is:
    Create SharePoint Custom Workflow Project as a sandbox solution in Visual studio.
    Get WSP file from development site (as mentioned in above referenced blog)
    Open WSP file and copy the content to Visual Studio Created project
    But this solution is also not working; "Feature is not getting deployed as sandbox solution" error is occurring.
    Can anyone please help me on the same?
    Thanks,
    Asim

    Hi,
    When you export SPD workflow, it will be a sandbox solution only, you are not required to configure further.
    Just import the workflow into Visual Studio, and make the changes that are required. you are good here.
    you can set the scope attribute in your WSP feature element.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to package a page template as a reusable component??

    Hello, i need to package a page template as a reusable component, this template has images and lot of parameters.
    Any suggest?

    carlson.steve wrote:
    So I have done as you suggested and created a new and separate application to hold not only my jsf template files but also my trinidad-config and trinidad-skins xml files, packaged it into an ADF library Jar and then added that jar to the libraries of my forward facing public app but still can't get the public app to see either the jsf template or trinidad skinning files... what am I doing wrong here?Hi,
    I suggest that you verify that both pagetemplate-metadata.xml and oracle.adf.common.services.ResourceService.sva service resources file are packaged in the META-INF directory of your Template Project ADF Library JAR.
    Cheers,
    Nick

  • Deploying a Reusable Workflow to a List Content Type using PowerShell

    We have a situation where deployment of a reusable workflow for a site content type cannot be completed through the web interface due to the number of libraries where the content type is in use (time-out on deploy and update).
    It was hoped that this could be accomplished with PowerShell but the method of deploying to a list content type appears to be different than it is to a list (all content types).
    The below snippet works fine for a list / all content types:
    function AddWorkflowToLibraries ($SiteCollection, $ctName, $WfName, $WfAssociationName)
    $site = Get-SPSite $SiteCollection
    [Guid]$wfTemplateId = New-Object Guid
    #Step through each web in site collection
    $site | Get-SPWeb -limit all | ForEach-Object {
    $web = $_
    $_.Lists | ForEach-Object{
    if($_.AllowContentTypes -eq $true)
    if($_.ContentTypes.Item("$ctName") -ne $null)
    write-host "Enabling workflow on" $_.Title "in" $_.ParentWebUrl
    $ct = $_.ContentTypes[$ctName]
    $culture = New-Object System.Globalization.CultureInfo("en-US")
    $template = $site.RootWeb.WorkflowTemplates.GetTemplateByName($WfName, $culture)
    if($template -ne $null)
    $tasklist = "Tasks"
    $historylist = "Workflow History"
    if(!$web.Lists[$historylist])
    $web.Lists.Add($historylist, "A system library used to store workflow history information that is created in this site. It is created by the Publishing feature.",
    "WorkflowHistory", "00BFEA71-4EA5-48D4-A4AD-305CF7030140", 140, "100")
    if (!$web.Features["00BFEA71-4EA5-48D4-A4AD-305CF7030140"]) {
    Enable-SPFeature -Identity WorkflowHistoryList -Url $web.Url
    $wfHistory = $web.Lists[$historylist]
    $wfHistory.Hidden = $true
    $wfHistory.Update()
    if(!$web.Lists[$tasklist])
    $web.Lists.Add($tasklist, "This system library was created by the Publishing feature to store workflow tasks that are created in this site.", "WorkflowTasks", "00BFEA71-A83E-497E-9BA0-7A5C597D0107", 107, "100")
    $association = [Microsoft.SharePoint.Workflow.SPWorkflowAssociation]::CreateListAssociation($template, $wfName, $web.Lists[$tasklist], $web.Lists[$historylist])
    $association.AllowManual = $true
    $_.AddWorkflowAssociation($association)
    $_.Update()
    else
    Write-Error "Workflow Template not found"
    AddWorkflowToLibraries <Site Name> <Content Type Name> <Workflow Template Name> <Association Name>
    However changing the association as follows causes the script to still execute without a problem but the workflow doesn't appear for the content and the associations collection is empty:
    function AddWorkflowToLibraries ($SiteCollection, $ctName, $WfName, $WfAssociationName)
    $site = Get-SPSite $SiteCollection
    [Guid]$wfTemplateId = New-Object Guid
    #Step through each web in site collection
    $site | Get-SPWeb -limit all | ForEach-Object {
    $web = $_
    $_.Lists | ForEach-Object{
    if($_.AllowContentTypes -eq $true)
    if($_.ContentTypes.Item("$ctName") -ne $null)
    write-host "Enabling workflow on" $_.Title "in" $_.ParentWebUrl
    $ct = $_.ContentTypes[$ctName]
    $culture = New-Object System.Globalization.CultureInfo("en-US")
    $template = $site.RootWeb.WorkflowTemplates.GetTemplateByName($WfName, $culture)
    if($template -ne $null)
    $tasklist = "Tasks"
    $historylist = "Workflow History"
    if(!$web.Lists[$historylist])
    $web.Lists.Add($historylist, "A system library used to store workflow history information that is created in this site. It is created by the Publishing feature.",
    "WorkflowHistory", "00BFEA71-4EA5-48D4-A4AD-305CF7030140", 140, "100")
    if (!$web.Features["00BFEA71-4EA5-48D4-A4AD-305CF7030140"]) {
    Enable-SPFeature -Identity WorkflowHistoryList -Url $web.Url
    $wfHistory = $web.Lists[$historylist]
    $wfHistory.Hidden = $true
    $wfHistory.Update()
    if(!$web.Lists[$tasklist])
    $web.Lists.Add($tasklist, "This system library was created by the Publishing feature to store workflow tasks that are created in this site.", "WorkflowTasks", "00BFEA71-A83E-497E-9BA0-7A5C597D0107", 107, "100")
    $association = [Microsoft.SharePoint.Workflow.SPWorkflowAssociation]::CreateListContentTypeAssociation($template, $wfName, $web.Lists[$tasklist], $web.Lists[$historylist])
    $association.AllowManual = $true
    $_.ContentTypes[$ctname].AddWorkflowAssociation($association)
    $_.ContentTypes[$ctname].Update()
    else
    Write-Error "Workflow Template not found"
    AddWorkflowToLibraries <Site Name> <Content Type Name> <Workflow Template Name> <Association Name>
    The only change is:
    $association = [Microsoft.SharePoint.Workflow.SPWorkflowAssociation]::CreateListContentTypeAssociation($template, $wfName, $web.Lists[$tasklist], $web.Lists[$historylist])
    $association.AllowManual = $true
    $_.ContentTypes[$ctname].AddWorkflowAssociation($association)
    $_.ContentTypes[$ctname].Update()
    But unlike the list version, the association doesn't appear to be saved and no error is generated.
    Is anyone aware of what may cause this or have an example in C# that may explain something my script is missing?

    Hi Garry,
    After you associate the workflow to the content type, you should update the update the content type using
    $ct.UpdateWorkflowAssociationsOnChildren($true,$true,$true,$false)
     method.
    Here is the completed script:
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    $site=Get-SPSite "http://serverName"
    $web=$site.OpenWeb()
    $list=$web.Lists["ListC"]
    $taskList=$web.Lists["Tasks"]
    $historyList=$web.Lists["Workflow History"]
    $ct=$list.ContentTypes["Link"]
    $culture=New-Object System.Globalization.CultureInfo("en-US")
    $wfTemplate=$web.WorkflowTemplates.GetTemplateByName("Three-State",$culture)
    $associationWF=[Microsoft.SharePoint.Workflow.SPWorkflowAssociation]::CreateListContentTypeAssociation($wfTemplate, "myThreeStateWF",$taskList,$historyList)
    $ct.WorkflowAssociations.Add($associationWF)
    $ct.UpdateWorkflowAssociationsOnChildren($true,$true,$true,$false)
    Here is a demo about how to update it using C#
    http://www.thorntontechnical.com/tech/sharepoint/sharepoint-2010-associate-workflow-to-content-type-in-a-feature
    Wayne Fan
    TechNet Community Support

  • Trying to call a reusable process from a process in the same project

    I have one process which has a call activity in it. I'm using this call activity to call a reusable process. When I deploy the workflow, it calls the reusable process just fine but when I open it, I get a 500 error on the screen. I have a data object defined for the main process and a different data object for the reusable process. On the data associations tab for the call activity, i have the data object defined for the main process in the Input going into argument1. On the start event of the reusable process, i have argument1 going into the data object defined for the reusable process. I have tried everything i can think of to make this process work and i keep getting a 500 error when i try to open the screen which was developed using ADF.
    I am running SOA and BPM 11.1.1.5 on ECM using 11g databases.
    If anyone could provide some help, I would be most appreciative.
    Edited by: Elizabeth on Jan 31, 2012 2:56 PM
    Edited by: Elizabeth on Feb 1, 2012 5:58 AM

    The workflow actually goes to the first node in the reusable process. When I try to open the screen, I get the following error:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    That leads me to believe it has something to do with the way i'm passing the data into the reusable process. In the Call Activity in the main process, under data associations I feed the data object for the main process into argument1. On the inputs to the reusable process i defined name as argument1 and type as the data object from the main process. On the start node in the reusable process under data associations, I have argument1 being fed into the data object for the reusable process. This seems like the perfectly logical way to do it and how it was explained in some documentation i found.

  • How to Create reusable Jsfcomponent in Jheadstart 10.1.3.2

    Hi Jheadstart team,
    We are in the early stages of developing a larg project using jheadstart 10.1.3.2. 52 and we have some jsf compoents which will be repeated in meny pages like emploee information or product information.
    I wander if it is posiable to obtain some functionality like "Reusable module component" whitch was in oracle Designer?
    I have see the following demonstration in jdeveloper 11g Demos: http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/reusableJSFComponents/reusableJSFComponents.html
    and my question is if there is a way to implement such a functionality in Jheadstart 10.1.3.3?
    Thank you in advance.
    Alireza

    Alireza,
    You could use an af:region and include that in each and every page, using JHeadstart custom templates. Similar to how we use af:region elements for including the menu, form browse buttons, etc.
    However, a 10.1.3 af:region does not have native support for its own page definition like in R11, so you need to create a separate page definition, which needs to be "prepared" (calling refreshControl on it) for each page in wich you use the region. You can do this by overriding the JhsPageLifecycle class.
    Furthermore, the value bindings of the items within the region cannot use the #{bindings.EmployeeId.inputValue} notation, because they need to point to the separate page def, so you should use the notation #{data.SeparatePageDefName.EmployeeId.inputValue}.
    Steven Davelaar,
    JHeadstart Team.

  • Getting problem with reusable workflow

    I have one reusable workflow. it having more conditions and statements, it is associated to Case Library(Library name-- which holds all case details) .  Based on workflow outcome status cases are forwarding to next level. Case library  have case
    start date, case due date , Case KPI durations columns. Base on case start date case due date , KPI Duration values are updating. Current image will represent conditions and statements
    According to  workflow condition KPI Duration has to update minimum 14. but some cases(Items) KPI Duration column is  updating as an 13, 12,-761 values .
    I have not found any errors are exception or workflow related issues in 14 bin\log folder also. Please help me...

    Hi Chakravarthy,
    The values are less that 14 is because the Find Interval Between Dates action in the workflow.
    The action will use the second date to minus the first date in order to get the days between the two dates, so if the second date is less that the first date, then the value will be negative.
    So in your case, if Today is earlier than Case Start Date, then the Variable: Case KPI Duration will be a negative number.
    I recommend to add a condition after the first step in the workflow to convert the Variable: Case KPI Duration to a positive number.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Reusable toolbar with Oracle ADF declarative components(ADf code corner)

    Hi All,
    Using Jdeveloper 11.1.1.2.0.
    Following the how to achieve "reusable toolbar with Oracle ADF declarative components" published here
    [http://www.oracle.com/technology/products/jdev/tips/fnimphius/GenericMenuBar/genericMenuBar.html]
    But I am not getting any method parameters under JSP Objects -> Components when binding the buttons toolbar menu buttons.Following is the code I have in my GeneralToolbarComponent.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <af:componentDef var="attrs" componentVar="component">
    <af:toolbar id="dc_t1">
    <af:commandToolbarButton text="commandToolbarButton 1" id="dc_ctb1"/>
    <af:commandToolbarButton text="commandToolbarButton 2" id="dc_ctb2"/>
    <af:commandToolbarButton text="commandToolbarButton 3" id="dc_ctb3"/>
    <af:commandToolbarButton text="commandToolbarButton 4" id="dc_ctb4"/>
    </af:toolbar>
    <af:xmlContent>
    <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
    <display-name>GeneralToolbarComponent</display-name>
    <attribute>
    <attribute-name>DataSet</attribute-name>
    <attribute-class>java.lang.String</attribute-class>
    </attribute>
    <component-extension>
    <component-tag-namespace>component</component-tag-namespace>
    <component-taglib-uri>/VikramLib1</component-taglib-uri>
    <method-attribute>
    <attribute-name>handleFirstMethod</attribute-name>
    <method-signature>void
    handleFirstMethod(javax.faces.event.ActionEvent)</method-signature>
    </method-attribute>
    <method-attribute>
    <attribute-name>handleLastMethod</attribute-name>
    <method-signature>void
    handleLastMethod(javax.faces.event.ActionEvent)</method-signature>
    </method-attribute>
    <method-attribute>
    <attribute-name>handleNextMethod</attribute-name>
    <method-signature>void
    handleNextMethod(javax.faces.event.ActionEvent)</method-signature>
    </method-attribute>
    <method-attribute>
    <attribute-name>handlePreviousMethod</attribute-name>
    <method-signature>void
    handlePreviousMethod(javax.faces.event.ActionEvent)</method-signature>
    </method-attribute>
    </component-extension>
    </component>
    </af:xmlContent>
    </af:componentDef>
    </jsp:root>
    Thanks
    Vikram

    Thanks for the link. We are trying to write a template as described on this link - Help on JSF Page Template
    However we are running in to issues after defining the attribute.
    Can anyone help?
    Thanks
    Ajay

  • How can I use ViewObject in Reusable Validation Rule ?

    I read chapter 9.6.1 of ADF Developer Guide 4GL, "Creating View Objects at Runtime for Validation". In our system there is a validation that can use ViewObject, e.g :
    SUM of outstanding AR cannot exceed the Credit Limit of the Customer.
    This rule must be applied to more than one entity :
    - During Order data entries
    - During Invoice Creation
    - ..and some more..
    So I think about create a Reusable Validation Rule
    (Like Steve recommends on : http://radio.weblogs.com/0118231/stories/2005/07/21/recommendedValidationStrategies.html. => DateRangeRule.Java )
    And within this Reusable Validation Rule, I use View Object to do SQL based validation as explained on chapter 9.6.1 above.
    How can I do that ?
    Thank you for your help,
    xtanto

    The ADF Toy Store Demo 10.1.2 version contains a reusable rule that uses view objects. If you google for "ADF Toy Store Demo 10.1.2" you will find it. Its a validation rule in the FwkExtensions project in that demo that validates state abbreviations for a country code.

  • Reusable objects using web dynpro java...any suggestions ?

    Hello All,
    I want to create few Reusable objects using web dynpro java. Please suggest some scenarios.
    regards
    Mrinalini.

    Hi,
    I can suggest especially this one:
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30d56578-f7e5-2a10-5ab5-8afc55d2e0e8
    Some other hits you may find useful:
    This guide mentions some tutorials about reusability:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ba2db0e5-0601-0010-9790-e271902f2c38?quicklink=index&overridelayout=true
    Here
    Web Dynpro Java [original link is broken]
    and here
    SAP NetWeaver Composition Environment Samples Center [original link is broken]
    you'll find other tutorials as well.
    Best Regards,
    Ervin

  • Reusable components

    Hi Experts,
    Can anybody provide me some material on Reusable components in SAP/ABAP HR to have better understanding of the concept.
    Gd points will be awarded for the well wishers of mine.
    Regards,
    Rahul

    Hi Anand,
    I would say, that you are not able to open a new window or trigger a navigation
    from the component controller thru a call from anaother component.
    So the descision whether to show the view or to send directly must be done by the
    using component.
    The EMAIL component provides the view which you can embedd in the using component in a new window or just a simple view (ViewContainerUIElement).
    The using component then decides whether it should call the method directly, or navigates to the view which contains the interface view of the EMAIL component.
    Hope this helps,
    Sascha
    Message was edited by:
            Sascha Dingeldey

  • Assigning List Fields in a Custom Reusable Workflow

    I am creating a custom Reusable Workflow and associating it with a Task List (base list) as well as another assigned Task List (associated).
    I would like to assign the result of the "Assigned To" column to a "Workflow Variable" so that I can use this value for other Workflow operations as well.
    However, I am having a hard time understanding how to perform lookups and assignments from lists in a Reusable Workflow.  In List-based workflows, I know that I can simply use "Current Item" and that seems to address most needs, but I have
    no idea how to tackle this functionality in an SharePoint 2013 Reusable Workflow.
    I have attached a screenshot of value assignment from SharePoint Designer for your review. The result of this value assignment needs to be assigned to a workflow variable.
    In my test workflow, the assignment of the field from the list never occurs (it is not logged in my Workflow History List), so I am sure something is wrong with the way I am using it.
    Any direction and advice on how to accomplish this is greatly appreciated.
    Thanks.

    Hi,
    According to your post, my understanding is that you wanted to know how to use the lookup and assignment from the reusable workflow.
    We could not get the “Assigned To” column in the reusable workflow.
    As when we select the current item or current list, there is no “Assigned to” column in the reusable workflow.
    We can only get the value when the user assigned by the workflow not assigned by the UI.
    If you wanted to get the “Assigned To”, you can use the list workflow to achieve it.
    I created a simple reusable workflow using a “Assign a task” action, we can get the assigned user as the below lookup, you can have a look at it.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Jason Guo
    TechNet Community Support

  • Can't retrieve approval status in Globally Reusable Workflow (Approval - Sharepoint 2010)

    For day's i am trying to implement the following in one of the standard, out of the box, Globally Reusable Workflow with Sharepoint Designer 2010:
    If Current Item:Approval Status not equals 0:#Approved Start Approval Workflow Task process on Current Item with Parameter:Approvers Else //Nothing
    This is to prevent that a workflow is started if the item is already approved! The strange thing is, a buddy of mine has also Sharepoint 2010 and he can select in the DropDown list -Current Item: -> Approval Status..
    But the only things I can select are the following:
    Content Type
    Created By
    ID
    Modified
    Modified By
    Title
    I don't understand what is going wrong! What am i forgetting to configure or bind or set?

    I have found the solution!
    I have setup an test environment, Sharepoint 2013 on MS Server 2008R2 and installed Sharepoint Designer 2013. When I now edit the default out of the box "Approval - Sharepoint 2010", if you enter the condition "if current item field equals value", you can
    now select "Approval Status"!!
    So this means that it IS available after all! After a lot of trying, searching, this is the solution in a Sharepoint 2010 environment, installed on MS Server 2008R2:
    Edit the (global or copied version if you want) workflow.
    Add the condition "if current item field equals value" as a step.
    Select from the item field: Content Type
    Click on "equals" and change it to "not equals"
    Then click on the condition and enter manually the following: 0;#Approved
    Move the task "Start Approval Workflow Task..." up so it is a part of the condition "If.. "
    Add an Else condition
    Enter here your custom action or log to show the user that the Task is not performed.
    Save the workflow.
    We now have to manually edit the Workflow Rules file.
    In Sharepoint Designer 2010, click at the left side of the ribbon on "All Files".
    If you have created a custom workflow, you can find the "Workflow.xoml.rules" file, in the folder
    Workflows/"Your custom workflow"/"CustomWorkflow.xoml.rules".
    If you are using the global, out of the box Workflow, you can find the .rules file in:
    _catalogs/wfpub/Approval - SharePoint 2010/ReviewApproval_1033.xoml.rules
    Click on the file, then in the next screen click on "Edit file" under Customization. 4.Search for the string "ContentType" 5.When you have found the string, it looks a bit like this:
    ns1:String xmlns:ns1="clr-namespace:System;Assembly=mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">ContentType ns1:String
    (When you look a few lines below this line, you see your added condition 0;#Approved)!
    6.Replace the string ContentType with: _ModerationStatus 7.Save the file! 8.Open in the current directory the "Workflow.xoml" file (this is the workflow itself) 9. Click on the Save button, it will give you a notice:
    A more recent version of _catalogs/wfpub/Approval - SharePoint 2010/ReviewApproval_1033.xoml.rules has been saved to the server by "user" on 1/5/2014 10:50 AM.
    Do you want to replace this with your file?
    Click NO! (Important, otherwise it will replace it with the default rules file, and nothing has changed!)
    Close Sharepoint Designer 2010, reopen SPD2010 and go to the workflow.
    Edit the workflow and you'll see the following now:
    "If Current Item: equals 0;#Approved"
    The field Content Type is now gone! This is correct so don't worry!
    Publish the workflow and you are done!
    Check now on a library that has a link to the edited workflow, when you start a new Workflow on a Approved-Major version of the document, what the outcome is:
    The workflow is discarded because of the condition and nothing happened, so your document stays on the most recent Approved-Major version and is not published back to a previous version number!!
    Conclusion: I think that the Sharepoint 2010 Designer, is missing that specific "Approval Status" field, but with the solution i have just given, you can solve this!
    C# for the win!

  • Reusable JSF components - bundling a converter with a text field

    I am trying to create reusable text fields for different types of data (notes, amounts, percentages) that will use a JSF converter to implement formatting.
    Here is what I have done
    - created an application in JDeveloper that contains my components as JSF declarative components
    - created the Converter classes
    - registered the converter classes in faces-config.xml of the reusable components project
    - added my Converters to the inputText fields for each of my declarative components using the property palette
    - deployed the components as a jar file using the ADF Library Jar File archive type
    - created a second application to act as a consumer of the components
    - imported the jar file into the component palette using a file system connection
    - added the jar file to the active project's component library
    - added a converter entry for the converter I am trying to use to this project's faces-config.xml
    - created a consumer jspx page and dragged and dropped the control onto the page
    I put some system.outs in the getAsString() and getAsObject() methods of the converter I am trying to use and they are not output when I run the page. I've also set breakpoints in those methods to see if they are being called.
    I have no indication that my converter is being called.
    Can someone please confirm that what I am trying to do is possible using the declarative components?
    Any insight appreciated.
    Dave

    Actually this is working. I made the incorrect assumption that getAsString() in the converter class would be called on the initial request.
    Another thing I just noticed is that it is not necessary to reference the converter in the faces-config.xml of the consuming project. Not sure how this works, but its a nice feature :)

  • Reusable Web template in WAD 3.X

    Hi Experts,
    Can anyone tell me where do we have reusable web template in WAD 3.x please.
    I want to make user of 3D pie chart. Please help
    Thanks

    Hi Ahmed,
    you can see all the Standard web templates at WAD -> Find -> * and find, you will see all Standard web templates, we can use these, if you want to change any, copy standard one change the copied template.
    you can check Standard "0ANALYZER" web template in that you can change chart type.
    Navigation path for WAD 3.x :
    Start -> Programs -> Business Explorer -> Business Explorer (SAP 3.x) -> WAD.
    Best Regards.
    Edited by: Daya Sagar on Oct 26, 2009 10:06 AM

Maybe you are looking for

  • New to flash and fireworks

    I've worked with frontpage and dreamweaver on simple websites. Now I want to publish pictures to my site. My problem is tht I want to install a picture a a hair style. I want to display the front and bsvk of the style. Which do I use(Flash of Firewor

  • Problem: Plugging an LED-display into my MBP 15"

    Hello! I recently bought a BenQ G2222HDL 21.5" LED Monitor and I have encountered some problems when trying to connect it to my MBP via the Mini DisplayPort to DVI-adapter. My MBP (spring 2010) won't find the display but when I try to connect the dis

  • Where is a download link for firefox4?

    I searched Google..cannot find a download link for Firefox 4!

  • File Read Failure

    hi I am trying to read the file which is written from LabVIEW only. But it fails. I cant debug this. my source data is fixed 2d array of cluster of 55 elements. Herewith i attached VIs for reference. ( If i try to convert the data to variance, LabVIE

  • The frame won't contract.

    Hello , In a matrix report I have a repeating frame and inside it I have a frame. Properties of repeating frame: Vertical elasticity: Expand Horizontal elasticity: Contract The other frame does not display sometimes by a formatting trigger. My proble