Alinea sol report module sugarcrm - sugarcrm

I am using Sugar CRM 6.5.12 and i have installed two packages SugarForge. SolCRM by Alinea Sol: Project Info from this link ...
1) Alinea Sol CommonBase v1.2.zip
2) Alinea Sol Reports v3.6.zip
and upload them through module loader.
When i create report then it shows no data​
​and following are screenshots . can you tell me where i am wrong and anything else to do: simple i want to display the account names or simple names , I am just testing this module so that i can use it for my crm . But is does not show any results ​

you can check the logs in /apps/sugarcrm/htdocs/sugarcrm.log
I had similar issue and found the relationships of my custom module weren't setup properly

Also try using a diffirent browser - mine does not work in google chrome but in firefox they generate!

Related

How to get All test cycle from ZAPI rest call

I am trying to use this API to manage my automation test cases in Jira-Zephyr.
I am trying to get all the test cycle from my project, So as per the ZAPI technical doc I used
http://localhost:8080/jira/rest/zapi/latest/cycle?projectId=10002&versionId=10100
But it is not working, It says that it is a dead link.
I googled for search all the issue from project, So I got the below one
http://localhost:8080/rest/api/2/search?jql=project=10002
and it is working fine for me.
So as per this link I changed the above link
It is also not working.
How I can Find out all the test cycle present in the project?
this works for me with a local install of Jira + zapi, zephry add-ons
http://localhost:8080/rest/zapi/latest/cycle?projectId={{projectId}}&versionId={{versionId}}
try like this, def clientTestID = new RESTClient("https://XXXXXXXXXX.net/rest/zapi/latest/zql/executeSearch?maxRecords=9999&zqlQuery=cycleId=XXXXX")
This will work for sure if headers are properly defined

disabled javascript in content type form: no javascript

I have a problem in my drupal installation..in the content type page i can't drag and drop lines and i see two columns :weight and parent :image1
The problem had application on the content add form like that: image2
If there any configuration to add or to remove or any help to provide i will be very grateful
Thanks
Sorry..
It seemed to be a server configuration problem.. i uploaded a 'virgin' drupal installation to my remote server ( the producton erver) and i installed without any supplement module, just the core modules with the 777 permission for all the files..but the same problem persist ..I'm suspecting the php version that i' m using (5.2.17 instead of 5.3.10)

adding service to addthis

I want to add my custom sharing service to an addthis widget.
According to the AddThis documentation the service must meet the specification of the oexchange format.
I've created everything and hosted it on my server. When trying to test it from the oexchange harness test, it fails.
There are two files generated from oexchnage
.well-known/host-meta
Target XRD File
I don't know about these two files. I generated them according the oexchange, but I'm still unable to test it with oexchange.
If anyone has been able to implement this, then please could you steer me in the right direction?
Thanks
Well i found the the one solution for the .xrd file and i has been test it successfully with the oexchange test harness but still not able to test the .wellknown/ host-meta .

How do I communicate between two modules in GWT

Hi I am currently facing communicating with two GWT modules.
1. enquiry.html
2. info.html
In enquiry.html i have search results on click of a hyperlink I need to open the info module. Its working fine in my development environment, but when I deploy in linux its causing issue.
Basically when the info.html is loading up, its not able to identify the info.nocache.js
Any help will be highly appreciated.
You can put parameters on the URL, like info.html?resultId=432001
Then, in your code, you can access resultId with
String resultId = com.google.gwt.user.client.Window.Location.getParameter("resultId");

dnn 5 module programming

I'm starting to get into dnn 5 module programming (using dnn for the very first time).
The issue is i can't seem to be able to use my new module. i programm it, then apparently y install it, but when i try to add it to a pane in the page, the page loads, but no module appears. i try to install it again, but a tag reads "it's allready installed".
i've followed instructions for doing this, for dnn 4, but there seems to be something different in the procedure to follow.
Here are the instructions i "adapted" to dnn 5:
http://blog.dmbcllc.com/2008/05/29/dotnetnuke-modules-registering-your-module/
I hope some one can tell me what i am doing wrong, or more likely, what should i change in the instructions followed.
Try this and if it fails, please post the module definition. (.dnn file)
I did my first dnn 5 module last week - I created the new module definition directly from the dnn host admin area and didn't add any controls. Once I added the controls, my module still didn't appear because all my controls had a "key" defined.
You need to make sure that 1 control in your module definition is added "without" a key - this is the default view (ascx) that will load for you.