I am working with BizTalk 2010 and using the BAM API to record the body of an incoming message in the BAM_Itinerary_CompletedRelationships table of the BAMPrimaryImport database. This is working well and through SSMS I can see the inbound XML message in the LongReferenceData column. I was hoping to see link to this in the "Related Documents" section of the BAM Portal, but this is empty.
Does anyone know how to get this data to be displayed in the BAM portal?
I'd rather not write a custom / SSRS UI if I can avoid it!
With the API you should be able to achieve that using the AddReference method with a type of DocumentUrl - see http://msdn.microsoft.com/en-us/library/aa956649.aspx
This blog might also have some useful info for you - http://geekswithblogs.net/gwiele/archive/2009/05/28/132469.aspx
Good luck!
Related
After configuring Portal Site Map for a report I get Error#0. Please see details below.
Not seeing anything on this question - Can someone point me to the documentation on this. I've been told this has to be completed via a customization project - before heading down that path surely I'm not the first to want to expose a report.
Thank you.
Mark Mynatt
Error:
2/19/2019 10:13:15 PM Error:
Error: You don't have enough rights on 'QQ301000.rpx'.
The error message implies that the report is visible on the portal. That's a great start. If it isn't/weren't visible you would have to first add it to the portal files and then add it in the sitemap.
The error message suggests it is an Access Right problem that prevents access to the report. Make sure the report is visible in sitemap and then lookup screen Access Rights By Role (SM201025) to see if Portal User and Portal Admin have access right to the report. If it's Not Set, that could be your problem. Try giving higher access rights (delete is the most permissive right you can give):
I have setup ADX Master portal in my local and connecting to Dynamics CRM 365 free subscription.
Problem I am currently facing is am not able to show the list of contacts or any other entities in ADX portals.
I have created an Entity List for Active Contacts,and created a webpage under content as "activecontacts" with Page Template as "Full Page".
When I am trying to browse to the page
http://localhost/MasterPortal/content/activecontacts
it is displaying a Table with header containing all columns from the selected view but not the data.
In place of data it is displaying:
The required anti-forgery form field "__RequestVerificationToken" is not present
I have verified the cookies and the hidden field (__RequestVerificationToken) on the form. This field is present on the form. Still the page is not displaying any contacts.
Please help me to solve this issue which enable me to continue my learning in ADX.
I finally solved this problem, just in case someone else runs into this.
If you upgrade adx studio from a previous version, make sure you update the entity-*.js files. Get them from the sample project of your ADX studio new installation. For my project, I upgrade from version 7.0.0.21 to 7.0.0.24. Hope this helps someone else....
PS: Make sure you added the below in your Default.master page.
<div id="antiforgerytoken"
data-url="<%: Url.Action("GetAntiForgeryToken", "Layout",new { area = "Portal" } ) %>"></div>
I've had the same issue happen to me, to fix it I only had to run VS with elevated privileges
I'm facing two issues while uploading multiple documents in Oracle webcenter content(UCM) via Desktop integration suite(DIT)
1) multiple file uploads are not taking the content information and not replicating the same for e.g. metadata field "Title" appear itself as null_null_null_null
2) files are not visible under the required folders.
I haven't done any customization and using default product Oracle webcenter content. Is their any bug/issue with product. If those who have used DIT with Oracle UCM can throw some light?
What specific version/patchset of WebCenter Content are you running? You can find this by navigating to Administration -> Configuration for instance_name.
Do you have any errors in the Content Server Logs that pertain to this?
Agree with the above. Check your content server logs.
Sounds likely you are missing metadata either because it hasn't been inherited or simply not set.
Scenario was when documents were uploaded via client DIS, option to 'populate metadata' was not configured. Hence, check-in metadata fields were not asked from the end user and title which was taking its name from the metadata fields took null values with respect to each left metadata field.
But can we configure settings to populate metadata as an administrator for all end users rather than doing it on each client DIS?
I'm a Drupal beginner, and I would like to display a web service (SOAP) result (in JSON) in a page.
I would like to display the result in a table (so I think Drupal View would be nice to display it...), but I don't know how to bring the Web Service result to display it into a View.
I am using the module "wsclient" (http://drupal.org/project/wsclient) together with "Rules" to execute a web service method, and I am able to get its result into a message, but that's all I was able to do until now.
I'm new to Drupal. Can someone help me please, to perform this action in the best way?
I am using Drupal 7.
Thank you!
There's a feature request in the wsclient issue queue for views integration: http://drupal.org/node/1215570
EDIT: as pointed out in the comments below, the following does not apply to the original question:
Have you considered using the Services module instead? There is already views integration for it.
I'm making a page for a simple shopping website using visual studio 2010 (ASP.NET).
I have an SQL server database with sample products in it. Each product has an associated image I would like to load into a datagrid on a web page. So far I've tried storing the images as URLs and local directories (data type - text) but no joy. Any ideas?
Thanks for asking Manoj, I've actually managed to solve my issue using the following link if anyone should need it: msdn.microsoft.com/en-us/library/aa479350.aspx
My image URL was set as "text" data type in the SQL server database I then followed the instructions in the link. I'm happy to provide further help on the subject to anyone who might need it.