Skip to main content

Community

Connector Improvement: Workday Financial Management Purchase Supplier Item and Supplier Table Join Results in Zero Purchase Items Mapped to a Supplier

Answered

Please sign in to leave a comment.

Comments

3 comments

  • Official comment

    Hi Bryan, 

    Are you seeing data in only one of the tables or both? I verified on my instance that the data is populating and joining as expected. I would reach out to Workday support to verify why you are unable to join the data. 

    Frank

    Yes, there is data in both tables (the supplier id fields contain guid values).  The two queries below both return 0 records (the second one is my attempt at a workaround).

     

    SELECT *

    FROM shca_source_Data.workday_financial_management_shc.purchase_supplier_item psi

    INNER JOIN shca_source_data.workday_financial_management_shc.supplier s

        ON psi.supplier_id = s.id

     

     

     SELECT *

    FROM shca_source_Data.workday_financial_management_shc.purchase_supplier_item psi

    INNER JOIN shca_source_data.workday_financial_management_shc.supplier_item si

        ON psi.supplier_item_id = si.id

    INNER JOIN shca_source_data.workday_financial_management_shc.supplier s

        ON si.supplier_id = s.id

    Hi Bryan, 

    I checked your first query on our test instance and saw that we were getting matches on all records in our tables. Are you seeing any values in for supplier_id in your purchase_supplier_item table? 

    Frank