我构建了一个powerapps应用程序,并将其设置为连接到MySQL(连接到仓库的本地托管数据库)。经过研究,我正在寻找一种将新产品投入其中的方法。
我们处理容器,因此当容器(多余或更少的产品)出现错误时,他们可以对其进行记录,但它直接连接到数据库。
是否有一种方法可以让他们在不存在该容器中的新产品时进行日志记录?它不应该连接到数据库,但是应该将产品/数量输出到连接到onedrive(全部设置)的excel表中
我在这个问题上停留了很长时间
Patch(
Product,
Defaults(Product),
{
FirstName: FirstName,
LastName: LastName,
AuditDate: Value(Today()),
Order: Gallery2.Selected.order_id,
Carton: Gallery2.Selected.cntnr_id,
Zone: Gallery2.Selected.zone_num,
Date: Gallery2.Selected.shift_date,
Customer: DataCardValue9.Text,
'Product (Product)': Gallery2.Selected.sku,
Location: Gallery2.Selected.loc_alias,
OP: Gallery2.Selected.user_id,
QRequested: Gallery2.Selected.quantity,
Actual: Value(TextInput1_2.Text),
CartonType: Gallery2.Selected.cntnr_type
});
Set(TotalUnits, TotalUnits + Abs(Gallery2.Selected.quantity - TextInput1_2));
Reset(TextInput1_2);
Reset(TextInput2_2)
答案 0 :(得分:-1)
您需要创建一个带有表且已命名行的Excel文件。创建到您的OndeDrive的连接之后。我将为您提供一个满足您需求的视频的链接:Here
是Microsoft MVP Shane Young