Hello,
I am not sure if I am doing this the best way, or even if this way is possible, but has anyone tried this and if so can you help me figure out where I am going wrong.
on my edit customer screen I have created a new section (that opens up under a certain condition) that is meant to send data through to a table I created. The data I want it to send is the customerID(which i am vague on) and a date that the user selects. This is done by an action on a calender.
the table then should look like this:
customerID | Date
--------------|---------
1 | 12-15-15
1 | 12-18-15
4 | 2-15-16
1 | 3-15-16
or you know something kind of like that.
The date will just be a direct copy from what the user enters. No big deal there./
I think what I cant figure out is that there may be a hidden recordID on each entry in a table that I cant figure out how to tie together ?
How should I actually set up this table in Method?
currently i have:
a date field called BlackoutDate
and a customerID field i created which is a dropdown linked to the RecordID on the Customer table
when i try to enter a date is throws an error saying more or less that the value that i am trying to put into the customerID field is not a valid value on my dropdown list, so either my linked dropdown list is not doing the right thing, or I don't know where to link them when i set up the action on the edit customer screen, which is very possible.
This is how I am trying to do it:
But I don't know if I am looking for the recordID in the correct spot.
Anyone try anything like this before?