I have a crystal report which I created a data source link to from an ADO.NET connection. Within the dataset is a table called vendorPP. When I drag this field onto my report, and hit preview, no data shows. If I right click on the field and say browse field data, I can see the vendors email address that I would like to appear on the report. I am placing the field in a page header. I have checked the font color, and verified that field is not suppressed in any way. I can drag other Fields on there and they appear just fine. Anyone had a similar problem or know how to fix?
Thanks
I think the problem is your report structure. If you put the email field in the page header, it will only the show the first record in the table, which might be a blank record. Try grouping your report by the vendor name and then putting the email field in the group header. Now you should see the vendor name and corresponding email in the group header.
Hope that helps,
Chris
Related
I have a document that contains a grid (Among others).
One column in the grid has full hyperlinks leading to a ticketing system, i.e.
https://ticketsystem.internal.company.com/tickets/ticket1337
I want to enable users to click on the URL and open the ticket in a new browserwindow.
How do I do that?
I assume the url is an attribute form, if you right click on the column header you should be able to create the link (below the example in web, but it works similarly also in Developer).
The attribut needs to be formatted with HTML tags to be a clickable link, using to encapsule the URL-string.
This is done in the data model.
I created a registration form for a website and I included the Place Autocomplete Address Form provided by Google to fill the Country, Province and City fields.
It works perfectly. However, I use Google Analytics and I have seen that a certain number of users leave the process before completing the registration, as if something went wrong and couldn’t complete it.
The form itself is quite simple, so I checked it with some possible errors.
It has several requested fields, so the form reloads partially to display a popup asking you to add the information or data in each case. The fields filled out correctly keep de information. All but the ones filled out by the Google API, which simply disappear. And I am not talking about the information added to them, the fields themselves are missing, removed from the code.
Any suggestion?
I created a registration form.
Some fields (Country, Province and City) are filled by this API:
Place Autocomplete Address Form
The code I used is on that page.
If you fill out the form and make any mistake or fail to fill any requested field, for instance, adding different passwords in the Password and Re-write Password fields, the form realoads partially displaying a message requesting you to fill them properly.
By them, the fields to be filled by the Google API are gone, removed from the code.
The problem is that when the user filled the, in the example, password and re-write password fields properly, another message popups requesting to fill the country, province and city fields.
Is it clear enough now?
I have an infopath form which users use to fill details and approver approves. The approver section in form is displayed to only those whose ID is present in hidden field. This was working fine before but now even approvers could not see approver section. Recently I added an user in hidden field after which it worked fine for sometime. Now all approvers could not see the approver section itself.
Things to check:
if you are using multiple views in the form, make sure you are updating them as needed and not only updating one view and forgetting the others.
if you remove the lase user you added tonthe hidden input, does the issue go away? How are you inserting users in hidden input? Seperating them by some character?
try to display the id of the current user in the form and display the hidden input and make sure the id's really match or there is any difference
I have a group header which contains the column names for the data in the details section. I am trying to display the group header on every subsequent page since my data in the details section is too much.
I have tried enabling the "Repeat group header on each page option" but still no help. Also tried many other solutions posted on the web. Doesn't seem to help.
My report structure is similar to the below:
Report Header
Page Header
GH1
-GH1a
-GH1b
Details
-GF1b
-GF1a
Report Footer
Page Footer
I am trying to show the group header for GH1b. Any advice would be appreciated. Thanks in advance.
Group header will be displayed on change of every group..
Since your detail data is huge group header won't be carried to next page where there is no change in group.
One wayout would be place all columns of GH1b on the page header so that it appears on every page and write the code to supress the page header when group changes that is when GH1b appears.
Hope this solution helps.
I have a SQL Server Reporting Services report where one of the columns has user ids in email address format. When I export this report to PDF format and click on the user id it moves to Outlook.
I have read about disabling hyperlinks and used both:
(=IIFGlobals!RenderFormat.Name, "www.google.com",Nothing)
=IIf(Globals!RenderFormat.IsInteractive, "http://10.210.251.132/Reports/Pages/Folder.aspx", Nothing)
But neither is working. Is there any other way to do it?
If I understand your situation correctly, you have a report that displays some email addresses and when the report is rendered as a PDF document the email addresses appear as clickable links. When a user clicks one of the email address in the PDF document, the link launches Microsoft Outlook (to create a new email message).
Unfortunately I think this is a feature of PDF documents, or at least the PDFs generated by Reporting Services. The email address seems to be automatically identified as such and a link created in the document - I can't see any way to control this from within the report code.
The only thing I can suggest is to insert a space into the address to stop the PDF renderer identifying it and creating a link, e.g.
my.email#address.com > my.email # address.com