i have customised our job traveler and it works as expected, very simple but to the point data!
the problem? i can not work out how to add the image chosen in the product configurator to be displayed on the job traveler.
has anyone had any success with this?
Hi Simon, its a Kinetic Configurator, there is a picturebox and then a line of code which selects the picture based on what values are chosen in a couple of combo boxes
Since youâve got a File Name / Path, I think the easy way would be to add a Document rule with the condition that Context.Entity = âJobHeadâ (executed when the job is created). In the document rule, pass your filename from Inputs.Profile_pic.Value to a UD field like JobHead.ProfilePic_c (or to a UserChar field you arenât using.
Then you can add an image to the SSRS Job Traveler report, using the Image Source as External, and add the value of the UD field in the Expressions editor.
i have wrote the value to UserChar1 of the profile pic value (InternalImageB)
i then went into the report data definition, loaded up the data definition the SSRS is using. opened report style, checked for issues between RDD and SSRS, no issues were found.
then generated the SSRS for design and the UserChar1 field does not appear in the datasetâŚam i missing something really stupid and simple here?
Yep, you need to add that field to the DataSet fields if it isnât already there. Iâm not sure if thereâs an easier way to do this, but what I do is:
Open your report .rdl file in Report Builder
Right click the DataSet that your field is in (In this case, JobHead), and open âDataSet Propertiesâ
Open the expression editor for the Query
Add the field you want to the Select Statement. (In your case, T1.UserChar1,
not entirely sure, how would i check?..i know that sounds like a silly question but i would not have a clue what the string would be in front of the image name and extension