coding2006
03-10-2006, 11:55 AM
i just wrote a query but i need to add some more fields, my logic is sort of screwy when i add the new fields:
here is the query
*****************************************************
Select NULL 'PHID', p_id 'AwardID', rtrim(recipients.lastname) + ', ' + rtrim(recipients.firstname) 'RecipientName', recipients.u_ssn 'RecipientSSN',
p_points 'Award', p_category 'ProgramName',rtrim(initiators.lastname) + ', ' + rtrim(initiators.firstname) 'InitiatorName', initiators.u_ssn 'InitiatorSSN',
rtrim(budgetholder.lastname) + ', ' + rtrim(budgetholder.firstname) 'BudgetHolderName', budgetholder.u_ssn 'BudgetHolderSSN',
p_commentary 'Criteria', pe_emailbody 'Comments', p_status 'status',pas_description 'statusdescription',p_pointsdate 'pointsdate', p_pointsperiod 'period',
rtrim(modifiedby.lastname) + ', ' + rtrim(modifiedby.firstname) 'LastModifiedByName', modifiedby.u_ssn 'LastModifiedBySSN',p_dateadded 'dateadded'
from points
join abbott.dbo.users recipients on p_userid=recipients.u_id
join abbott.dbo.users initiators on p_origin=initiators.u_id
join abbott.dbo.users budgetholder on p_origincode=budgetholder.u_id
join abbott.dbo.users modifiedby on p_modifiedby=modifiedby.u_id
join pointsemail on p_id=pe_p_id
left join (select distinct pas_bdr_id, pas_statusid, pas_description from pointapprovalscheme) pointapprovalscheme on p_status=pas_statusID and p_pointsperiod=pas_bdr_id
where p_clientid='6' and p_status>0
union
Select pid 'PHID',ph_id 'AwardID', rtrim(recipients.lastname) + ', ' + rtrim(recipients.firstname) 'RecipientName', recipients.u_ssn 'RecipientSSN',
ph_points 'Award', ph_category 'ProgramName',rtrim(initiators.lastname) + ', ' + rtrim(initiators.firstname) 'InitiatorName', initiators.u_ssn 'InitiatorSSN',
rtrim(budgetholder.lastname) + ', ' + rtrim(budgetholder.firstname) 'BudgetHolderName', budgetholder.u_ssn 'BudgetHolderSSN',
ph_commentary 'Criteria', pe_emailbody 'Comments', ph_status 'status',pas_description 'statusdescription',ph_pointsdate 'pointsdate', ph_pointsperiod 'period',
rtrim(modifiedby.lastname) + ', ' + rtrim(modifiedby.firstname) 'LastModifiedByName', modifiedby.u_ssn 'LastModifiedBySSN',ph_dateadded 'dateadded'
from pointshistory
join abbott.dbo.users recipients on ph_userid=recipients.u_id
join abbott.dbo.users initiators on ph_origin=initiators.u_id
join abbott.dbo.users budgetholder on ph_origincode=budgetholder.u_id
join abbott.dbo.users modifiedby on ph_modifiedby=modifiedby.u_id
join pointsemail on ph_id=pe_p_id
left join (select distinct pas_bdr_id, pas_statusid, pas_description from pointapprovalscheme) pointapprovalscheme on ph_status=pas_statusID and ph_pointsperiod=pas_bdr_id
where ph_clientid='6' and ph_status>0
order by awarded
************************************************
here are the new fields to be added:
*******************************************
awardID awardee_u_ID awardee_LASTNAME awardee_FIRSTNAME awardee_RptsTo awardee_MI awardee_u_SSN awardee_TER_TYPE_CAT awardee_TERRITORY_NO awardee_REGION awardee_DISTRICT awarder_u_ID awarder_LASTNAME awarder_FIRSTNAME awarder_MI awarder_u_SSN awarder_TER_TYPE_CAT awarder_TERRITORY_NO awarder_REGION awarder_DISTRICT awarder_RptsTo budgetholder_u_ID budgetholder_LASTNAME budgetholder_FIRSTNAME budgetholder_MI budgetholder_u_SSN budgetholder_TER_TYPE_CAT budgetholder_TERRITORY_NO budgetholder_REGION budgetholder_DISTRICT approver_u_ID approver_LASTNAME approver_FIRSTNAME approver_MI approver_u_SSN approver_TER_TYPE_CAT approver_TERRITORY_NO approver_REGION approver_DISTRICT approver_EMAILID ph_ProgramID ph_id ph_Points ph_Status ph_PointsDate ph_DateAdded ph_Category ph_AwardCriteria Cash ph_PointsPeriod pe_emailbody pas_Description DaysSinceLastStatus LastChangeDate ApproverLastLogin Pending ProgramName CurrentRecord ClarityTransactionID Spiff Year Awarded
*****************************************
any help would be appreciated
here is the query
*****************************************************
Select NULL 'PHID', p_id 'AwardID', rtrim(recipients.lastname) + ', ' + rtrim(recipients.firstname) 'RecipientName', recipients.u_ssn 'RecipientSSN',
p_points 'Award', p_category 'ProgramName',rtrim(initiators.lastname) + ', ' + rtrim(initiators.firstname) 'InitiatorName', initiators.u_ssn 'InitiatorSSN',
rtrim(budgetholder.lastname) + ', ' + rtrim(budgetholder.firstname) 'BudgetHolderName', budgetholder.u_ssn 'BudgetHolderSSN',
p_commentary 'Criteria', pe_emailbody 'Comments', p_status 'status',pas_description 'statusdescription',p_pointsdate 'pointsdate', p_pointsperiod 'period',
rtrim(modifiedby.lastname) + ', ' + rtrim(modifiedby.firstname) 'LastModifiedByName', modifiedby.u_ssn 'LastModifiedBySSN',p_dateadded 'dateadded'
from points
join abbott.dbo.users recipients on p_userid=recipients.u_id
join abbott.dbo.users initiators on p_origin=initiators.u_id
join abbott.dbo.users budgetholder on p_origincode=budgetholder.u_id
join abbott.dbo.users modifiedby on p_modifiedby=modifiedby.u_id
join pointsemail on p_id=pe_p_id
left join (select distinct pas_bdr_id, pas_statusid, pas_description from pointapprovalscheme) pointapprovalscheme on p_status=pas_statusID and p_pointsperiod=pas_bdr_id
where p_clientid='6' and p_status>0
union
Select pid 'PHID',ph_id 'AwardID', rtrim(recipients.lastname) + ', ' + rtrim(recipients.firstname) 'RecipientName', recipients.u_ssn 'RecipientSSN',
ph_points 'Award', ph_category 'ProgramName',rtrim(initiators.lastname) + ', ' + rtrim(initiators.firstname) 'InitiatorName', initiators.u_ssn 'InitiatorSSN',
rtrim(budgetholder.lastname) + ', ' + rtrim(budgetholder.firstname) 'BudgetHolderName', budgetholder.u_ssn 'BudgetHolderSSN',
ph_commentary 'Criteria', pe_emailbody 'Comments', ph_status 'status',pas_description 'statusdescription',ph_pointsdate 'pointsdate', ph_pointsperiod 'period',
rtrim(modifiedby.lastname) + ', ' + rtrim(modifiedby.firstname) 'LastModifiedByName', modifiedby.u_ssn 'LastModifiedBySSN',ph_dateadded 'dateadded'
from pointshistory
join abbott.dbo.users recipients on ph_userid=recipients.u_id
join abbott.dbo.users initiators on ph_origin=initiators.u_id
join abbott.dbo.users budgetholder on ph_origincode=budgetholder.u_id
join abbott.dbo.users modifiedby on ph_modifiedby=modifiedby.u_id
join pointsemail on ph_id=pe_p_id
left join (select distinct pas_bdr_id, pas_statusid, pas_description from pointapprovalscheme) pointapprovalscheme on ph_status=pas_statusID and ph_pointsperiod=pas_bdr_id
where ph_clientid='6' and ph_status>0
order by awarded
************************************************
here are the new fields to be added:
*******************************************
awardID awardee_u_ID awardee_LASTNAME awardee_FIRSTNAME awardee_RptsTo awardee_MI awardee_u_SSN awardee_TER_TYPE_CAT awardee_TERRITORY_NO awardee_REGION awardee_DISTRICT awarder_u_ID awarder_LASTNAME awarder_FIRSTNAME awarder_MI awarder_u_SSN awarder_TER_TYPE_CAT awarder_TERRITORY_NO awarder_REGION awarder_DISTRICT awarder_RptsTo budgetholder_u_ID budgetholder_LASTNAME budgetholder_FIRSTNAME budgetholder_MI budgetholder_u_SSN budgetholder_TER_TYPE_CAT budgetholder_TERRITORY_NO budgetholder_REGION budgetholder_DISTRICT approver_u_ID approver_LASTNAME approver_FIRSTNAME approver_MI approver_u_SSN approver_TER_TYPE_CAT approver_TERRITORY_NO approver_REGION approver_DISTRICT approver_EMAILID ph_ProgramID ph_id ph_Points ph_Status ph_PointsDate ph_DateAdded ph_Category ph_AwardCriteria Cash ph_PointsPeriod pe_emailbody pas_Description DaysSinceLastStatus LastChangeDate ApproverLastLogin Pending ProgramName CurrentRecord ClarityTransactionID Spiff Year Awarded
*****************************************
any help would be appreciated