Passing Parameters within SharePoint Designer

I'll preface this by saying it's probably something that needs to be done in Visual Studio, but my tool of preference is SPD.
I'm building a simple email workflow.
If Current Item: Assessors Assigned = Yes
   If Current Item:Reviewed = No
      If Current Item:Department = Agriculture
            Email Agriculture Assessors
      Else if Current Item:Department = Anatomy
            Email Anatomy Assessors
If there were only 2 groups of assessors that's not really a big deal, but there are 56 groups, so the way I have my workflow set I'll have to create 54 more email steps.
What I'd like to be able to do in SPD is
If Current Item: Department = Agriculture then Current Assessor Group = Agriculture Assessors,
then email Current Assessor
That way I would only need one email step in the workflow.
Any thoughts would be greatly appreciated.
== Steve Morley MedIT, Dalhousie University

I don't know it will work for you. But I have one idea
on the list just add extra one column called alert email. on Item creation item populate the column value based on department.
Now every row having the email value based on the department. Then
If Current Item: Assessors Assigned = Yes
   If Current Item:Reviewed = No
      Email <>
In Email activity to address  pass the current item email column value. So the email will send to the regarding department. you no need to check department name
Ravin Singh D

Similar Messages

  • Passing Parameters within a DPS App

    I have a DPS App with 2 slots. One slot contains embedded code which is suppose to show a list of assets. One slot contains code that launches an external site in a frame within the DPS app. 
    As per this article New Consumer Marketing APIs | Adobe Developer Connection, it is possible to pass parameters from an external app to a DPS app.
    I am running an issue. In my external site I am trying to call the DPS app like so dpsapp://v1/slot/storefront?path=/content/test.pdf via a button.  What I have noticed is that when I do that, the app does switch to the storefront side but queryingthe urlPath or urlQueryString will return a null value.
    It seems like I am unable to pass a parameter to the DPS app within the same app. If I load the external website in Safari, I am able to query for the parameters.
    Am I missing a step here or is it not possible?
    Thanks

    Hi,
    Do you use the adobeDPS.configurationService.applicationContext.urlQueryString to call the parameter? adobeDPS.configurationService.applicationContext.urlQueryString
    //Sample code to get a parameter from the query string, com.adobe.CustomDPSViewer://v1/slot/store?companyName=Adobe
    var companyName = adobeDPS.configurationService.applicationContext.urlQueryString.companyName;
    alert(companyName); //Alert box will appear with 'Adobe' in the description
    Adobe DPS - Library and Store SDK 2.32 : adobeDPS-ApplicationContext : JsDoc Reference
    What is the Adobe DPS version of your app?
    Cheers
    Mike

  • Passing parameters within 2 windows open at the same time

    Hi all,
    I'm developing a jsp site which i have 1 main window, and it contains link to open another sub window. In the sub window, I have to choose 1 to few plants from a list, when i click on "add" button, the main window will actually updated and display a list with the selected plants.
    1) Is that any ways for me to establish the parameter passing process?
    2) After getting those parameters, how can i make the main window refresh?
    Very thank you for any kind of advises.
    Regards,
    jeffcjm

    Hi all,
    Thanks for the quick reply.
    Can it handle using JSTL? I did some research, and some ppl said that jsp:include can actually use. However I still wondering on how it can be done if jsp:include can be used. I mean how to pass the parameters using the jsp:include? By setting the jsp:param?
    So pls advice.
    Regards,
    jeffcjm

  • Passing parameters within the ctrl:method/

    I am using the method tag of the controller namespace. Dose it have a child which will allow you to page/pageEvent parameters?
    <ctrl:method class="SomeClass" method="someMethod">
    <..../>
    </ctrl:method>
    If this is possible, where can I review the documentation on it?
    Tks
    Booker Northington II

    What exactly are you trying to do?
    Did you check out the UIX Element Reference for UIX Controller elements? Did you read the UIX Controller chapter?
    Here is some doc on the <pageURL> that I told you about:
    The<pageURL> element defines a declarative binding for building up a UIX Controller URL. It supports setting each part of the URL, and can data-bind virtually all the pieces individually. A single pageURL element can set any or all of the following pieces:
    Page name: can be data bound
    A list of Page property key/value pairs: the values can be individually data bound
    Event name: can be data bound
    Event parameter key/value pairs: the values can be individually data bound
    Anchor name: can be data bound
    "statePreserved": whether to copy the State object from the current page into the target URL. This defaults to true.
    The only pieces that cannot be databound are the keys used for the page properties and event parameters and the "statePreserved" and "propertiesPreserved" attributes. While the keys cannot be databound, a null value will omit a key.
    Thanks,
    Jeanne

  • Display Full Name in SharePoint Designer Workflow Email

    Hi!
        I want to Display Full Name of a User value from "Assigned to" column...
        When I use lookup on "Assigned to" column I get domain/username instead I want to display John Smith (Full Name)...
        Is there a way to do that within SharePoint Designer...

    Hi,
    Even I am facing the exactly similar issue as Ashish. Also I don’t have Central Administration access :(
    But I was just wondering, is there any way to extract the proper name in FName and LName format using user profile details option?
    I mean on the top-right section on sharepoint site you can see “Welcome username” section. On this you can select “My
    settings” option where you can see a form with user details including Name field (e.g. Sachin Dubey) and Account field (e.g. CompanyName/Dubey.s.4).
    In our case the workflow takes “Account” field instead of “Name” field so can we make any settings from the workflow
    or sharepoint front-end so that it takes Name field.
    Help is much appreciated.
    Sachin D Sharepoint Developer

  • Is it possible to have parameters within planning Sheets

    Hi - Is it possible to have paramaeters withing planning Sheets. I was able to save a macro successfully within a planning sheet. But wanted to know if we can pass parameters within a planning sheet.
    Thanks,
    Venkat

    You can pass parameters upto some extent. If you want to filter the MDX query then you can use InterlacePlanner.AddFilter method. e.g. InterlacePlanner.AddFilter "Customer", "ABCD"
    where ABCD is Customer dimension member.

  • Passing parameters from Design Studio to Explorer

    Is it possible to pass parameters (filter selections) from Design Studio to BO Explorer?
    Thanks,
    Anders

    Hi Andres,
    I could figure out the solution for all these options.
    I used if-esle statement to handle the blank parameter values
    To pass multiple values for the parameter, I converted the "; " separator to _]_ so as to convert the list in the format recognized by Explorer. Note that there is a space after ;
    To pass multiple parameters, I used the syntax "_;_" to include the second parameter in the url (refer to the last else statement in the below mentioned code)
    Hope this helps in case you haven't found any solution yet.
    //specify global variables for each filter and capture the filter selections in them
    var1=DS_1.getFilterText("Dim1");
    var2=DS_1.getFilterText("Dim2");
    //Use below mentioned code for the On Click event of the button
    if (var1.length <= 0 && var2.length <= 0)
        APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0");
    else if(var1.length <= 0 && var2.length > 0)
            APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0&fans=Dim2(Text)_:_" + Convert.replaceAll
    (DS_1.getFilterText("Dim2"), "; ", "_]_"));
        else if(var1.length > 0 && var2.length <= 0)
                 APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0&fans=Dim1(Text)_:_" +
    Convert.replaceAll(DS_1.getFilterText("Dim1"), "; ", "_]_"));
            else
                    APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0&fans=Dim1(Text)_:_" +
    Convert.replaceAll(DS_1.getFilterText("Dim1"), "; ", "_]_") +
                    "_;_Dim2(Text)_:_" + Convert.replaceAll(DS_1.getFilterText("Dim2"), "; ", "_]_"));
    Thanks & Regards,
    Tushar

  • Trigger a SQL Reporting Service Data Alert when a SharePoint List is updated & need to pass parameters to report

    We have been able to get a SSRS Data Alert to trigger a report to be emailed whenever an item is added to a specific SharePoint List.   The report can accept parameters but would like to be able to pass parameters that are used in the report.   
    Is this possible? (I cross posted over at SharePoint dev. and was referred here)
    Thanks
    Νικοσ Γιαννιοσ

    Hi Nikos,
    Based on my understanding, you have deploy a parameter report to SharePoint site, then you have created a data alter for this report. Then you want to pass parameters to report then send alter, right?
    In Reporting Services, if the report has parameters, we should select values for the parameter, after report display, we can create a new data alter. Otherwise, the New Data Alter button is grayed out in the drop-down list of the Action button. So that the
    rule is created based on the filtered report. Please refer to below screenshot:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Pass parameters to a report

    Hi all,
    I would like to know how to pass parameters to a report to filter the data from an external application, for example a Oracle ADF app.
    Thanks,
    Jhon
    BI PUB 11.1.1.7

    hello arjhay,
    webelements 2.3 will not work seemlessly, unfortunately, with xir3.
    in xir3 the dhtml viewer has changes in it that are more web 2.0.
    things that will not work and are deprecated for webelements & xir3 are the functions in WEViewer. this is due to the toolbar in the new viewer being a widget as opposed to a set of divs. however, opendocument for xir3 will allow one to switch off the toolbar using an opendocument paramter and will also allow one to switch off the new style tab bar.
    the new dhtml viewer also does not encase report fields & functions etc. within a form tag. many webelements controls require a form so the new design for xir3 will be to put a new WEFormStart at the top of each report using webelements. what this does is basically start a form in the viewer and allow the controls to function properly.
    so in summary there are 2 changes for xir3:
    a) each report using webelements must have a WEFormStart function added to the beginning of the report
    b) references to WEViewer must be removed from reports that are used in xir3
    there will be a new 2.4 function suite out in several weeks and this will contain the new WEFormStart as well as other syntax changes to allow reports to work in xir3.
    jw

  • List view web part not reflecting changes made to list view in SharePoint Designer

    Dear All,
    When adding a list view web part containing a view modified in SharePoint designer (e.g. conditional formatting applied, or group headers modified) I'm finding that the changes made in SPD are not reflected in the web part. 
    For example, I go into SPD edit a view, and the view appears correctly when I go back into SharePoint, however when I link to the view within a list view web part it results in losing the changes made in SPD. 
    Becasue it's a publishing page I'm unable to edit the contents of the web part in SPD.
    I'm sure this is expected behavior but how do I get around this?
    Thnaks,
    MDB

    Try below
    http://stackoverflow.com/questions/19533998/sharepoint-designer-doesnt-show-anything-in-list-and-libraries-link
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a63a1894-6b1d-420a-95dd-b6c546eab34d/updates-made-to-sharepoint-designer-2010-workflow-do-not-show-up-on-the-server?forum=sharepointcustomizationprevious
    http://stackoverflow.com/questions/5959521/sharepoint-designer-saves-the-changes-but-it-does-not-affect
    http://social.technet.microsoft.com/Forums/en-US/1e9a8c27-bbc5-4a6f-8daf-4b243182f543/changes-in-sharepoint-designer-2010-not-showing-in-sharepoint-server-2010-page?forum=sharepointadminprevious

  • Create a Webpart with Sharepoint Designer to see and upload documents in document set

    Hello,
    In a document set, we see documents in this document set and we can upload files and documents only in this document set.
    Can i save this view to other sites in webPart ?
    I tried to use sharepoint designer saving the dataview in a file and then import this file in other site but the result is that webpart show me the root of the library, not the document set and same for file uploads, it show me the file upload window for
    the root of the library.
    Thanks.

    Hi,
    Thanks for your answer.
    Yes, i linked source site collection from SPD; I don't want to send but i want to display document set in another site.
    Finaly, i found a solution but i don't know if its the best practice :
    i have all my libraries in the top site to have all important documents in one site.
    So i want to display a library/folder/document set in webParts to my subsites.
    To do this, i create a dataview in SPD; i save this dataview in a file and import this file as webPart in my subsites.
    my problem : It display the root of my library instead of within the document set. AND when i clic on "upload a document", it display the root of my library upload form instead of the document set upload form
    my solution : i create a dataview in SPD; i copy/past the document set upload form link in this dataview; I save this dataview in a file and import this file as webPart in my subsite; from the webpart of my subsite, i create a view to my document set.
    ... should i do it for all my views ? or is there another solution ?
    Thanks

  • When building a vacation leave holiday system using SharePoint Foundation 2010 and SharePoint Designer workflows how can I add half day functionality?

    Hi,
    I have built a vacation leave holiday system for SharePoint Foundation 2010 using SharePoint Designer workflows and Javascript. Everything works perfectly but I'm struggling to design a solution for users to specify half day requests that span over dates
    greater than 1 day, i.e. my half day solution works but only when the start and end date are the same. How would I change the user interface to allow users to choose which day they want the half day to be requested when the vacation leave holiday request is
    from, say,  6th - 10th Jan 2014?
    Thanks.

    Hi ,
    I have a test on my machine with a custom approval workflow and it can work normally .Here are the detailed steps :
    1.      
    Open the site in SharePoint Designer .Create a workflow to associate with the document library .Set the workflow to start when an item is created and when an item is changed
    .Also allow the workflow to start manually .
    2.      
    Choose ‘Collect Data from a user’ .
    3.      
    Click on the data and give a name to the Task created .
    4.      
    Define the custom form field name as ‘Approve ?’ .Set the information type as Choice .
    5.      
    Set the choices as ‘Approve’ and ’Reject’ .Display as Checkboxes .Uncheck the ‘Allow fill-in values’ and ‘Allow blank values’
    .Click finish to save .
    6.      
    Click on users and add the users who will approve the documents .
    7.      
    Keep the output to variable as collect .
    8.      
    Add a new step .Choose ‘If any value equals value ’ .Set the any value ‘Data source’ as  workflow variables and parameters .Set the ‘Field
    from source’ as Variable: collect .
    9.      
    Set the value behind ‘equals ’ as ‘Approve’ .
    10.  
    Add a new action ‘Update list item ’ .Set the item as current item .Add the field Approval status as Approved .
    11.  
    Add an Else-if branch to update the Approval status as Rejected .
    12.  
    Publish the workflow and test in your site .
    Thanks,
    Entan Ming

  • SharePoint Designer 2010 and Visio 2013 Issues

    I currently have Visio 2013 and SharePoint Designer 2010 installed.  I have two problems that I'm experiencing and any help would be greatly appreciated.
    1. I'm able to export an already manually created workflow from SharePoint Designer 2010 as a .vwi file without a problem and am able to import the file into Visio Pro 2013.  I
    was also able to export the file from Visio once changes were made.  However, when I go to import the file into SharePoint Designer I receive a message stating "This workflow cannot be imported because it was created in SharePoint Designer for a
    different site, or the original workflow has been moved or deleted.  To move a workflow between sites, use Save as Template (.wsp file) instead of Visio workflow drawing."  I cannot figure out how to save it in the format the prompt is suggesting
    as this is not available from the list of Save As options from Visio and when exporting from Visio the only format to do so is as a Visio Workflow Interchange (.vwi file).  When exporting from SharePoint Designer I’m only able to export as a .vwi file
    and the Save As option is not available in SharePoint Designer.  Additionally, the file location where I exported from SharePoint and importing back into SharePoint is not changing, nor is the file name. 
    2. If I create a workflow from scratch within Visio utilizing the SharePoint 2010 shapes, I'm about to export without a problem and save as a .vwi file.  I'm also able to import this workflow into SharePoint Designer, but the problem is the workflow
    never actually shows up and I do not receive any errors.
    Any help on either or both of these issues would be greatly appreciated.
    Thanks,
    Eric

    Use Visio 2010. You may be running into a compatibility issue between Visio 2013 and Designer 2010.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Pass parameters from JSP Dyn Page to WDJ Application

    Hi,
    I am trying to pass parameters from my JSPDyn Page to WDJ Application.
    I am using NWDS 7.1 EHP1
    My code is :
    function to_WEBDYNHK()
          EPCM.relaxDocumentDomain();
          EPCM.doNavigate
        ('ROLES://pcd:portal_content/Himanshu.Himanshu/TestDynUIApp?DynamicParameter="hkparam%3Dqwertyuio"');
    This method is being called on click of a button.
    hkparam is the parameter in question.
    The JSPDyn page is an iView and the WDJ application is a page and both have been assigned to a role.
    In the properties of the WDJ Page, I have removed DymanicParameter from "Do not Forward These Parameters To Web Dynpro" property.
    However I am getting null as the value of hkparam in my WDJ application.
    The code used is :
    IWDRequest request = WDProtocolAdapter.getProtocolAdapter().getRequestObject();
           String param1= request.getParameter("hkparam");
    What seems to be missing here.
    Please help.
    I went through the documentation on SDN but it does not seem to help.
    TIA,
    Himanshu

    Hi Himanshu,
    Try this code.
    EPCM.doNavigate("ROLES:portal_content/Himanshu.Himanshu/TestDynUIApp?hkparam=Dmypass1123")
    if the parameter is hkparam and the value to be passed is Dmypass1123. You need not change any design time property of the WD page, and WDProtocolAdapter should retrive the parameter.
    Regards,
    Vishweshwara P.K.M.

  • Unable to edit the site in sharepoint designer 2013

    Hi,
    I have created a custom list for one of my requirement, and I want to change the look and feel of the custom list view, so I was trying to edit this list in SharePoint Designer 2013, I'm able to open the list in SPD 2013, but unable to edit anything since
    I'm getting the "This page does not contain any regions that you have permission to edit." error.
    It will highly appreciated if anyone help in resolving the issue.
    Thanks in advance.
    Anil

    Anil,
    Below links will help you. Please use them.
    SharePoint
    Designer 2013 – How to modify List View web part filters and parameters
    Create
    a custom list view using SharePoint Designer
    Share point list view custmization
    in sharepoint 2013
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

Maybe you are looking for

  • No Twitter and Facebook Notifications

    There's still no sign of Twitter and Facebook push notifications appearing following the introduction of Notifications in ios5. All the settings in Notifications for these apps are set correctly and I have the latest versions of the apps. I'm getting

  • Trying to import one of six folders in my Earthlink WebMail to .Mac Mail

    Earthlink WebMail has no process to export mail to .Mac Mail or any other email service. I'd like to import one of the six folders in my Earthlink email to .Mac Mail. I launched Apple's "Mail Help" and opened "Importing email into Mail" and followed

  • t:inputFileUpload : problem with styleClass for button

    Hello, the component <t:inputFileUpload> has a field and a button. I want to add styleClass for button, but the styleClass into inputFileUpload tag works only for fields. Where can I add styleClass for button? Thank you in advance Manu

  • Resizing and resampling

    1. when do you want to keep the resample checkbox checked when changing the size of an image? 2. When typing a new resolution with resample checked, why does the top pixel dimensions change, though the document size does not? 3. If I type in a higher

  • [SOLVED]Can Some Processes Not Run In Background

    Hi, Can some process just not run in the background? I have an irc bot and I want irssi to continue running even after I exit. I do $irssi ctrl-z bg But after bg it says [1] irssi & [1] irssi STOPPED I've also tried sending the kill CONT signal but i