• I guess your question is simply to fetch the result of a query in the report based on some set of input parameters.

    I that case, first define two parameters for example @BusinessGrpId and @CostCenter and have the default values as 81 and 152800 respectively.

    create a dataset with a query

    Select Company_Code, Responsibility

    from table

    where BUSINESS_GROUP_ID = ? and

    COST_CENTER_CODE = ?

    Then in the data set parameters assign the both question mark with @BusinessGrpId and @CostCenter parameters value respectively.

    Use a table in the report design pane to display the result set.

    Hope this helps you in closing the discussion.