Hi @CircleMi ,
Do you want to use selected data in IT_Request to create a new item in IT_Acceptance?
If so, I suggest you know more about form.
Please notice these things:
1)to update which list is decided by the form's data source
2)whether to create a new item or update an existing record is decided by the form's more
3)you just need to use submitform() function to create a new item or update an existing record
4)if your form's mode is edit, you need to set the form's Item property to one item in your data source. Or else the form will display "no item to display", just as your screen shoot.
if your form's mode is new, you do not need to set the form's Item.
5)you have two solutions to change a form's mode:
set the form's DefaultMode:
FormMode.New /FormMode.Edit /FormMode.View
use a trigger to change the form's mode by using formula like this:
NewForm(formname) /EditForm(formname) /ViewForm(formname)
Let us back to see your issue.
Since you want to update IT_Acceptance, so please set the form's data source to :
IT_Acceptance
Since you want to create a new item, so please set the form's DefaultMode to :
FormMode.New
Since the form's mode is new, you do not need to set the form's Item property.
Since you want some fields display as the selected item data in IT_Request, so you need to set the datacards' Default.
For example:
set PO_num datacard's Default:
BrowseGallery1.Selected.PO_num
set Model datacard's Default:
BrowseGallery1.Selected.Model
set Quantity datacard's Default:
BrowseGallery1.Selected.Quantity
set the submit button's OnSelect:
SubmitForm(formname)
//please replace with your form's name
Since your form's mode is new, so yes, you will create a new item.
Best regards,