Drop Down values - Records

Hi readers,

I would like to know if this is possible, i have a interface where it has a drop down which should have list of values from record types.

example: 

In the below table when entering data into Table-A it would be in a normal way; But when entering data into Table-B we need to enter ID_A as well right, So i am thinking to keep a dropdown in this place, where i can keep the list values present in  ID_A Table-A

Table-A is as below

ID_A(PK) Job_Role Company_Name
1 DBA ABC.ltd
2 SysAdmin ABC.ltd
3 HR ABC.ltd

Table - B is as below

Member_ID Name Phone_Number ID_A(FK)
1 SSR 1234567890 1
2 RC 0987654321 1
3 NTR 6789054321 2
4 RRR 1234567098 2
5 MB 0984562348 3

  Discussion posts and replies are publicly visible

Parents Reply
  • I am able to query the database table and get the data as required, but when trying to do with by querying record type i am getting this cluster_Id also tried index or property functions as well its not working Disappointed

    Query code: Output of this is the snip in above comment

    a!queryRecordType(
    recordType: 'recordType!IV Cluster',
    fields: {
    'recordType!IV Cluster.fields.Cluster_ID'
    },
    pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 100)
    ).data

Children