Hi guys,
Is it possible to create a view which consist of multiple table and in one of the column, we have the table name or id of the source ?
For example, I created a view, consist of Table A, B, C. Probably I just need their recId, so I just add 1 field for Recid.
And then add a display method that identify first where is this Recid coming from ? I probably need the TableId and the table name, then add this method as the 2nd column of the view.
So basically it will have these 2 column in the view :
| SourceTable |
RefRecid |
|
Table A
|
1234231 |
| Table B |
2222232 |
| Table A |
1232131 |
If possible, what would be the code for the display method ? Or is there any other approach ?
Kindly advice,
Wong