I wanted to insert data into the SharePoint list
I have used the below patch function in onselect property of submit button
Patch(
SMTP,
Defaults(SMTP),
{
'Name of the recepient': NameTxt.Text,
Address: AddressTxt.Text,
City: CityTxt.Text,
Pincode: Pincodetxt.Text,
Country: CountryTXT.Text,
'Designation of Receipient': DesignationOfRecepientTxt,
'Crop name': Dropdown1.Selected.Value,
Remarks: RemarksTxt.Text,
'Type of the material and or breading line': Dropdown1_1.Selected.Value
},
Form4.Updates
);
I am getting an error while clicking the submit button as
Network error when using patch function request for operation is invalid.
so please let me know the changes I need to do.
Thanks in Advance,
Usha.