Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table Handling

Former Member
0 Likes
401

Hi,

We specify the logical database. And we want a field that is not present in any of the tables defaulted in logical database. How can we want to add this additional field from a different table?

Thanks,

Ashish.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
360

Hi,

Presume you have a

logical database

table 1

table 2

table 3

Define the required field as additional field say fld of table 1, table 2 or table 3

and then in the code section define.

Perform get_f1d(zxxxxxxx) using f1d.

Form zxxxxxxx could be like;

Form get_f1d using f.

Select * from where 'conditions'

f = table4 - f1d.

Reward if helpful...

Cheers,

Madhavi.

2 REPLIES 2
Read only

Former Member
0 Likes
361

Hi,

Presume you have a

logical database

table 1

table 2

table 3

Define the required field as additional field say fld of table 1, table 2 or table 3

and then in the code section define.

Perform get_f1d(zxxxxxxx) using f1d.

Form zxxxxxxx could be like;

Form get_f1d using f.

Select * from where 'conditions'

f = table4 - f1d.

Reward if helpful...

Cheers,

Madhavi.

Read only

venkat_o
Active Contributor
0 Likes
360

Hi Ashish, If the field is not present in LDB nodes , just define the field in the program and use SELECT query to get the field value from the table. Regards, Venkat.O