Joining two or more tables at Interface level

Is it possible to combine two tables at interface level without using a view?Can we fetch the data with rules and join them thereafter?

Thanks is advance.

  Discussion posts and replies are publicly visible

Parents
  • Hi Digantas,
    Hope I got your requirement, We can achieve this by constructing a Temporary CDT rule, In that rule you need to configure the variable you need.
    Consider
    CDT 1 having A1, A2, A3, A4,C
    CDT 2 having B1, B2, B3, B4,C
    As per your requirement, will construct a Temporary CDT rule and pass CDT1 and CDT2 as parameter. Finally store the value in a local! variable. Then make use of it in a paging grid.
    {
    C:C
    C1:A1,
    C2:A2,
    C3:B1,
    C4:B4
    }
Reply
  • Hi Digantas,
    Hope I got your requirement, We can achieve this by constructing a Temporary CDT rule, In that rule you need to configure the variable you need.
    Consider
    CDT 1 having A1, A2, A3, A4,C
    CDT 2 having B1, B2, B3, B4,C
    As per your requirement, will construct a Temporary CDT rule and pass CDT1 and CDT2 as parameter. Finally store the value in a local! variable. Then make use of it in a paging grid.
    {
    C:C
    C1:A1,
    C2:A2,
    C3:B1,
    C4:B4
    }
Children