Drilldown not working in Siebel - siebel

The "Type" field is configured with a drill down object. And i checked the responsibilities associated with the view to which i have to drill down.
I possess all the responsibilities associated with the view.
I also checked if the View was active and found it to be active in Tools.
Still i dont have the hyperlink in the values of that column in my client.
The "Type" filed is part of "Account Activity List Applet".
And the view that i have to drill down is "Activity Detail Summary View".

After duscussion in chat appeared that when server SRF is copied to dedicated client (Client > Objects> ENU > siebel_sia.srf) the drilldown is missing. But after compilation drilldown reappears. So the issue is definitely in server SRF file. To update configuration you have to copy updated SRF file to the appropriate directory on the server and restart application. Also there is method that doesn't need application server restart, see this link for details.

Related

How do I add custom tables to App for Outlook?

I already tried asking this in the Microsoft Dynamics forum.
I have deployed the App for Outlook. I have added three custom tables (entities). These now show up in Quick Create and the Regarding lookup.
I have also removed the Contact, Lead, and Account tables. But when I click the Add button, the three options are "Add as Contact" and so on.
When I click on an email that is already saved in Dynamics 365 Sales Enterprise, the Recipient Picker says "Unknown Recipient" (see image below). How can I get the Recipient picker to include the custom tables that I've added?
I've tried refreshing the app, redeploying, and running the App for Outlook checker.
App for Outlook is using Exchange server-side synchronization.
Thanks,
Shane.
As far as I know and I read, you cannot set custom entity for Recepient. It can only be Account, contact or lead. But you can set Regarding for custom entity and track email communication.

Sitecore The layout for the requested document was not found

Getting below error while browsing CD site (Web DB) in sitecore.while browsing CMS site it's works fine.What could be the issue .We have restored the web db from master still facing same issue.
Error :
The layout for the requested document was not found
Most likely causes:
The resource you are looking for (or one of its dependencies) may have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
What you can try:
Go back to the previous page
Go to the start page
Additional Information:
Requested URL: /mysite/res/book
Requested Layout: {62A89386-861F-5210-9568-H8CADA118FFB}
Requested Device: Default
If the page you are trying to display exists, please check that an appropriate prefix has been added to the IgnoreUrlPrefixes setting in the web.config.
If the url works on your CM box and doesn't work on CD box, it looks like something is not published.
Try:
Login to your CM server and publish the whole site again with Republish everything option selected.
If 1. doesn't help, login to Sitecore Desktop, switch to the web database, navigate in Content Editor to the item you want to see. Check if the item is there and if presentation details are correct.
If item is NOT in web or layout is not in web database, switch back to master database and check if publishing restrictions are applied or if the item is in the final state of a workflow.
If the item and layouts are in the web database but the url still doesn't work, check your sites configuration in /sitecore/admin/showconfig.aspx whether your site is not restricted to some host names.

rss viewer webpart is missing in sharepoint 2013 how to activate it

rss viewer webpart is missing in sharepoint 2013 it is shown in default folder and when adding the rss viewer web part from default folder it shows the error 'An unexpected error occurred processing your request. Check the logs for details and correct the problem.'
The corresponding feature might not be enabled, so you should follow this path:
Under Site Settings, click Modify All Site Settings.
Under Site Collection Administration, click Site Collection Features.
Enable Office SharePoint Server Enterprise Site Collection features.
If the problem is not solved, you can try going to the central administration:
Under Central Administration, click on Operations.
Under Upgrade and Migration, select Enable Features On Existing Sites.
Select the appropriate checkbox, and click OK.

WSO2 Governance Registry UI customization

Folks,
I'd like to have something like the following in our service registry.
I'd like to add a field to the UI that when I click on it in the UI, it does a select from the database and creates a popup with the data returned from that database select.
is this possible?
For instance, I'd like to have a button on the UI page for a service that when clicked, goes to the database and gets all "METHODS" of the service (I would have previously populated customized database fields after analyzing the service definition, and this button would execute a customized select statement to pull the required data out of the db).
I am not entirely clear about what your requirements is but i think this might help take look at the doc for RXT[1] and see if you can solve your requirement with that :).
[1] http://docs.wso2.org/wiki/pages/viewpage.action?pageId=22185121
Thanks,
Pulasthi

Liferay web service

I use Liferay 6.1.1-ce-ga2 bundled with Tomcat server and Oracle 10g database.
My goal is to insert some content, as Journal Article, and display them in an Asset Publisher (with a structure and template, already working).
I used JournalArticleServiceSoap.addArticle(...) with the right fields (groupid, structureid, templateid, ...). The contents are "correctly" inserted in the database and I can see them inside web contents from administrator content panel. The contents have also "Approved" as status. This is done by setting:
serviceContext.setWorkflowAction(WorkflowConstants.ACTION_PUBLISH)
However, I can't see the inserted contents displayed with the other contents in the Asset Publisher, until I open it again for edition and click on publish button (even without changing nothing). Then the content is published as expected. The problem is the number of contents. It is about 600 so I can't to this action for each one.
I do not understand what is the matter and how to figure it out? In other words, what do I have to do to make the web-content inserted by web service display automatically in Asset Publisher?
Or, what does the "Publish" do exactly so I can try to reproduce programmatically with SOAP service (or SQL after insertion)?
Thank you in advance for your help.
I've also posted the same question in Liferay' forum: Problem to display JournalArticle inserted by SOAP web service
you can try to log the database accessing from Liferay and see what will be changed after you save article manualy. Herefor set the logging level of hibernate to info or debug.
are you setting serviceContext like this?
ServiceContext serviceContext = new ServiceContext();
serviceContext.setAddGuestPermissions(true);
serviceContext.setAddGroupPermissions(true);
serviceContext.setScopeGroupId(groupId);
serviceContext.setWorkflowAction(WorkflowConstants.ACTION_PUBLISH);
You must setting serviceContext Like This:
ServiceContext serviceContext = new ServiceContext();
//serviceContext.setAddGuestPermissions(true);
//serviceContext.setAddGroupPermissions(true);
serviceContext.setScopeGroupId(groupId);
serviceContext.setWorkflowAction(1);
serviceContext.setIndexingEnabled(true);
serviceContext.setIndexingEnabled(true); is Very Important.
The following code is not must requeired.
serviceContext.setAddGuestPermissions(true);
serviceContext.setAddGroupPermissions(true);