What difference between join specification , join definition, join criteria and link specification?

Questions by ansumanpanda

Showing Answers 1 - 3 of 3 Answers

Hi,

Let us write SQL query to understand this:

select s.name,a.name                                 (1) 
from s_evt_act a,                                       (2)
s_srv_req  s                                               (3)
where                                                          (4) 
a.SRA_SR_ID=s.row_id                            (5)


now we look at the ActivityBC:
we can select fields from two or more tables :     see line  (1)
Base Tables:  s_evt_act                                                      (2)
Join definition:
          Join:                   Service request
          Table Name:       s_srv_req                                        (4)

          Join Spec:           a.SRA_SR_ID=s.row_id                (5)

in the same way: 

link will have 1:M relation.
so, link spec (PrimaryKey-ForiegnKey mapping) will have the relation between the two tables (between two BC's pointing fields bought from table level)

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions