hi, i have created an action button at the end of my order cycle to send an sms(external) to the customer.
how do i pre-populate this message with certain info. like invoice no. date etc…which are my column headers…i want this to pick the data from that particular row from which i am clicking on the action button.
You can read the data from that record just with the [ColumnName] in “Message” option. If you need more than just a column’s value, you can combine them like "Hi, this is the invoice date "&[InvoiceCreated]
Your expression is missing some & characters. There should be an & between every quoted value and column reference. So this:
“Hi, your Order for” &[Party] “has been dispatched vide Bill No.” &[Bill No.] “Truck no” &[Truck No.] “driver phone no” &[Driver Phone]
should be this:
“Hi, your Order for” &[Party] &“has been dispatched vide Bill No.” &[Bill No.] &“Truck no” &[Truck No.] &“driver phone no” &[Driver Phone]
You could instead use CONCATENATE() to get the same result:
CONCATENATE(
“Hi, your Order for”,
[Party],
“has been dispatched vide Bill No.”,
[Bill No.],
“Truck no”,
[Truck No.],
“driver phone no”,
[Driver Phone]
)