SQL to Extract Tax Withholding Calculation card Details — Cloud Customer Connect
You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

SQL to Extract Tax Withholding Calculation card Details

edited Mar 5, 2023 2:58PM in Human Capital Management 1 comment

Summary:

SQL to Extract Tax Withholding Calculation card Details

Content (required):

If there is a requirement to pull the Tax Calculation Card Details on BIP Report, the below SQL will help you achieve that.


Version (include the version you are using, if applicable):


Code Snippet (add any code snippets that support your topic, if applicable):

SELECT

 PAPF.PERSON_NUMBER

 ,(

   Select

     HL1.MEANING

   From

     HR_LOOKUPS HL1

   Where

     HL1.LOOKUP_CODE = X.XVALUE

     And HL1.LOOKUP_TYPE = 'HRX_US_FEDERAL_FILING_STATUS'

 ) FILING_STATUS

 , Y.YVALUE MEDICARE_EXEMPT

 , Z.ZVALUE SOCIAL_SECURITY_EXEMPT

 , X.EFFECTIVE_START_DATE START_DATE

 , X.EFFECTIVE_END_DATE END_DATE

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!