Ok, So i have spend 16 hrs trying to figure this out. I have read everything on the inetrnet it seems and still cant grasp how to save the image from a pen input to a sharpoint list,
here is my scenario.
I have an App that is meant to allow our technicians in the field to fill out a contract and have the customer sign it at which point the app captures the text inputs, stores them in a collection & sends to sharepoint. I am planning to use flow to render a PDF that has all the legal mumbo jumbo and text inputs on it as well as the signature captured in the app and then email this to the customer as well as store it in our system. I can not for the life of me figure out how to get the Pen input image to show up in sharepoint so that i can then include it on the PDF.
Anyone? Please help! i want to pull my hair out and then jump off a bridge. Below is what i have.
Collect(
Collection1,
{
Signatures: Signature,
Preventative: Preventitive_True_False.Text,
Curative: Curative_True_False.Text,
CustomerName: Customer_Name_Input_1.Text,
HomePhone: Home_Phone_Input.Text,
WorkPhone: Work_Phone_Input.Text,
MailingAddress: Mailing_Address_Input.Text,
MailingAddressCity: Mailing_Address_City_Input.Text,
MailingAddressState: Mailing_Address_State_Input.Text,
MailingAddressZip: Mailing_Address_Zip_Input.Text,
PropertyAddress: Property_Address_Input.Text,
PropertyAddressCity: Property_Address_City_Input.Text,
PropertyAddressState: Property_Address_State_Input.Text,
PropertyAddressZip: Property_Address_Zip_Input.Text,
DescriptionOfStructure: Description_of_Structure.Text,
CustomerEmail: Customer_Email_Input.Text,
SummaryOfCharges_A: SOC_A.Text,
SummaryOfCharges_B: SOC_B.Text,
SummaryOfCharges_D: SOC_D.Text,
SummaryOfCharges_C_D: SUM_C_and_D.Text,
MonthlyPayemnts_A: SOC_MP_A.Text,
MonthlyPayemnts_B: SOC_MP_B.Text,
MonthlyPayemnts_A_B: SOC_MP_Sum_A_and_B.Text,
Annual_Renewal: Annual_Renewal_Term_Fee.Text,
Transfer_Fee: Ownership_Transfer_Fee.Text
}
);
ForAll(
Collection1,
Patch(
SubTermiteBait,
Defaults(SubTermiteBait),
{
Preventative: Preventative,
Curative: Curative,
CustomerName: CustomerName,
HomePhone: WorkPhone,
WorkPhone: WorkPhone,
MailingAddress: MailingAddress,
MailingAddressCity: MailingAddressCity,
MailingAddressState: MailingAddressState,
MailingAddressZip: MailingAddressZip,
PropertyAddress: PropertyAddress,
PropertyAddressCity: PropertyAddressCity,
PropertyAddressState: PropertyAddressState,
PropertyAddressZip: PropertyAddressZip,
DescriptionOfStructure: DescriptionOfStructure,
CustomerEmail: CustomerEmail,
SummaryOfCharges_A: SummaryOfCharges_A,
SummaryOfCharges_B: SummaryOfCharges_B,
SummaryOfCharges_D: SummaryOfCharges_D,
SummaryOfCharges_C_D: SummaryOfCharges_C_D,
MonthlyPayemnts_A: MonthlyPayemnts_A,
MonthlyPayemnts_B: MonthlyPayemnts_B,
MonthlyPayemnts_A_B: MonthlyPayemnts_A_B,
Annual_Renewal: Annual_Renewal,
Transfer_Fee: Transfer_Fee,
Signatures: Signature
}
)
);
Clear(Collection1)