First time poster so be gentle please.
I have a requirement for a user to select a value in a drop down that is loaded from a DB. That part is done, easy peasy with a Database Custom field. That value needs to be input to SQL for another DB Customer Field. (Child doesn't work due to it being in a completely different DB. I am trying to just use the one but the original is the authoritative source). Is this possible?
I can answer the first part of your question. Yes, you can have the second field to be dependent on what value is picked in the first one without using a child. That is how I am using it. I have two fields, product and product version, and use the value in product as part of my SQL for product version.
Thank you Mikael. Any direction you have would be greatly appreciated. I have a DBCF with SQL that populated a drop down. The selection on that dropdown needs to be part of a where clause on another DBCF. How do I reference it? I tried "where x = {customerfield_ID}" and that didn't work. Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is what my where clause looks like:
WHERE
P."Name" = {customfield_11950}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Btw, the "" around Name has to do with PostgreSQL, we migrated from mySQL and PostgreSQL does recognize my tables and columns without the "".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Much appreciated Mikael! Now I wish I would have split out my questions on here so not everyone bypasses it thinking it was all solved. Thanks again sir! Cheers
I went ahead and changed the title so people wouldn't be confused - thanks again
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.