Asked by:
Create PDf dynamically

Question
-
Hi,
I have put a button in purchase order named "Print PO". how can I perform print operation ..
Can somebody please help?Please give solution step by step if possible.Thursday, September 24, 2015 8:06 AM
All replies
-
Hi NikkiShah
Can you be more specific?
---------------------------------------------------
Create, Read, Edit, Convert & Print Word documents using free .NET Word component.
Thursday, September 24, 2015 8:44 AM -
Sure..
I am using HTMl Web resorce and I want to do print of purchase order(PO) when user click on "Print PO" option.
When user click on "Print PO" a page will open from that user can save as PDF..
Thursday, September 24, 2015 9:27 AM -
Did you check this: http://xrmmatrix.blogspot.in/2011/06/creating-report-as-pdf-attachment-in.html
Mahender
- Edited by HIMBAPModerator Saturday, September 26, 2015 7:27 AM
Saturday, September 26, 2015 7:25 AMModerator -
Thanks himbap..
Now,I want to perform this operation through admin side
like this...https://www.microsoft.com/en-us/dynamics/crm-customer-center/create-edit-or-copy-a-report-using-the-report-wizard.aspx
But i amnot able to design it properly i want to design like below.
How can i achieve ..
I tried this but not able to arrange this properly..
Saturday, September 26, 2015 7:39 AM -
hi,
I have a button "Run Report" and when user click on this i want to pass current record's ID.
How can i do using fetch xml query.
I have tried this as below image
But I amnot getting success..CAn anyone help..?
Wednesday, October 7, 2015 8:20 AM -
Hi,
I am unabltity.e to fetch data using link en
I want to fetch supplier address in purchase order entity.
Purchase order entity already contain supplierid ,though,i amnot able to access supplier address field in Report.
I am using microsoft dynamic crm online
Here is my query which i used to fetch supplier address field
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="new_purchaseorder" enableprefiltering="true" prefilterparametername="new_purchaseorderFilter">
<attribute name="new_name" />
<attribute name="new_status" />
<attribute name="new_parent_salesorder" />
<attribute name="new_ponumber" />
<attribute name="new_parent_supplierid" />
<attribute name="createdon" />
<attribute name="new_purchaseorderid" />
<attribute name="new_amount" />
<attribute name="createdby" />
<attribute name="new_salesorderid" />
<order attribute="new_name" descending="false" />
<filter type="and">
<condition attribute="new_purchaseorderid" operator="eq" value="@POID" />
</filter>
</entity>
<link-entity name="new_supplier" from="new_supplierid" to="new_parent_supplierid" alias="ab">
<attribute name="new_suppliername" />
<attribute name="new_street1" />
<attribute name="new_street2" />
<attribute name="new_street3" />
<attribute name="new_city" />
<filter type="and">
<condition attribute="new_supplierid" operator="like" value="new_parent_supplierid" />
</filter>
</link-entity>
</fetch>Monday, October 12, 2015 8:41 AM