Not sure exactly what you mean. But if you use LINKTOFORM() or LINKTOFILTEREDVIEW() in a “execute a sequence of actions” then the action will terminate at this step. Any following actions wil lnot be completed.
I have a Master Table for all Items to be managed with a key field “SerialNo”. with below structure with few virtual columns.
SerialNo
LGGroup
Description
OEM
Length
Capacity
Size
TPInspDate
TPDueDate
CertificateNo
Certificate
Status
Condition
Comments
Photo
Modified By
Modified On
I have transaction table to record issuance and returns with below structure with few virtual columns. and two slices 1. Tbl_Issue and 2. Tbl_Return.
TranMasterID
IssueDate
Destination
Serialno
Condition
Doc No
Remarks
Issued By
Issued On
ReturnDate
RCondition
RDoc No
Damage Photo
RRemarks
Received By
Received On
I have form view to issue an item, which will fill from “TranMaterID” to “Issued on”.
I have an action to “Return” with LINKTOFILTEREDVIEW(“Tbl_Return_Detail”, ([SerialNo] = [_THISROW].[SerialNo]))
I want this action to execute “Return” which will update the existing row. and “Issue” action to create a new row in the TranMaster Table.
Is it possible? it is makes sense.. because the coordinator, once return the item, he may forget to issue the material to store immediately. I want system to take control to issue the material to store.
Neither of these two requirements involve the use navigating to views within the app. The LINKTO…() functions are used to navigate within the app. The LINKTO…() functions are therefore inappropriate for your stated needs.
For this, you’ll need to use an action of type Data: execute an action on a set of rows to invoke a second action of type Data: set the values of some columns in this row to update the desired column values of the row in the Tbl_Issue_Form table.
For this you’ll probably want to use an action of type Data: add a new row to another table using values from this row.
For this you’ll probably want to use an action of type Data: add a new row to another table using values from this row.
[/quote]
By using Data: add a new row to another table using values from this row, how I will get the below values without form as I need get this information from user.