dcrsmith
10/29/2020, 7:53 PMtdietrich
10/29/2020, 8:21 PMtdietrich
10/29/2020, 8:21 PMSELECT
Item.ID,
Item.custitem_ms_test,
Customer.CompanyName
FROM
Item
INNER JOIN MAP_Item_CustItem_MS_Test AS Map1 ON
( Map1.MapOne = Item.ID )
INNER JOIN Customer ON
( Customer.ID = Map1.MapTwo )
WHERE
Item.ID = 18
tdietrich
10/29/2020, 8:23 PMtdietrich
10/29/2020, 8:23 PMtdietrich
10/29/2020, 8:23 PMdcrsmith
10/29/2020, 8:23 PMdcrsmith
10/29/2020, 8:38 PMtdietrich
10/29/2020, 9:27 PMdcrsmith
10/29/2020, 10:01 PMcustrecord_mentions
the source is entity. The custom record is customrecord_messages
tdietrich
10/29/2020, 10:10 PMSELECT
*
FROM
CustomRecord_Messages
INNER JOIN MAP_CustRecord_Mentions AS Map1 ON
( Map1.MapOne = CustomRecord_Messages.ID )
INNER JOIN Entity ON
( Entity.ID = Map1.MapTwo )
dcrsmith
10/29/2020, 10:21 PMdcrsmith
10/29/2020, 10:21 PMtdietrich
10/29/2020, 10:22 PMdcrsmith
10/29/2020, 10:23 PMdcrsmith
10/29/2020, 10:25 PMdcrsmith
10/29/2020, 10:29 PMtdietrich
10/29/2020, 10:30 PMdcrsmith
10/29/2020, 10:32 PMmap_<customrecord>_<customfield>
tdietrich
10/29/2020, 10:34 PMtdietrich
10/29/2020, 10:34 PMdcrsmith
10/29/2020, 10:35 PMtdietrich
10/29/2020, 10:36 PMtdietrich
10/29/2020, 10:36 PMdcrsmith
10/29/2020, 10:37 PMtdietrich
10/29/2020, 10:38 PMdcrsmith
10/29/2020, 10:53 PMtdietrich
10/29/2020, 11:02 PMtdietrich
10/29/2020, 11:03 PMdcrsmith
10/29/2020, 11:03 PMselect top N
but that didn't work in this case for some reason.michoel
10/30/2020, 7:40 AMWHERE ROWNUM < N
dcrsmith
11/03/2020, 5:31 PM