




全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Spreadsheet BudgetingError Check QueriesRun Before Downloading Spreadsheet to Check Banner Data1) Find all active positions with zero budget and FTE 0Run:Selectnbrptot_posn, nbrplbd_acci_code, nbrplbd_fund_code, nbrplbd_orgn_code, nbrplbd_acct_code, nbrplbd_prog_code, nbrptot_fte, nbrptot_budget, nbrptot_expend, nbrptot_encumbFromnbbposn, nbrptot, nbrplbdWherenbbposn_status= A andnbbposn_coas_code=nbrptot_coas_code andnbbposn_posn=nbrptot_posn andnbrptot_coas_code=nbrplbd_coas_code andnbrptot_posn=nbrplbd_posn andnbrptot_fisc_code= nbrplbd_fisc_code andnbrplbd_fisc_code=2005 andnbrptot_budget = 0 and-(nbrptot_expend = 0 or nbrptot_expend is null) andnbrptot_fte0 andnbrplbd_fund_code like 4% andnbrptot_posn like 4% order by nbrptot_posn asc, nbrplbd_orgn_code ascFisc_code, fund_code, and posn are variables. Fund code and posn lines can be removed if you want to look at all positions for all funds.To correct these records, we look to see if there are any encumbrances or expenses associated with the position. If yes, we change the FTE to zero. If not, we change the FTE to zero and “freeze” the position. 2) Find all active positions with zero budget, with expenses zero or null. Run same query above with comment removed from nbrptot_expend line and added to nbrptot_fte line. Again, fund code and position lines are optional.Correct encumbrances to zero (our personnel dept. does this), and then “freeze” the positions.3) Find all active positions with zero FTE and budget 0. Run same query as above, changing nbrptot_budget and nbrptot_fte values. Fund code and position lines are optional.Investigate and correct FTE if needed. These may be positions used for overhead cost calculations that require negative budget. The system will not currently allow entry of a negative FTE, so no correction is available in that circumstance. 4) Active positions with inactive or terminated fund, org, or program components. For Inactive Funds run:select nbrplbd_posn POSN, nbrplbd_fund_code FUND, ftvfund_title TITLE, ftvfund_eff_date, ftvfund_term_datefrom nbrplbd, nbbposn, ftvfundwherenbrplbd_posn =nbbposn_posn and nbrplbd_fund_code =ftvfund_fund_code and-nbrplbd_fund_code like 4% andnbrplbd_fisc_code = 2005 andnbbposn_status = A and(ftvfund_term_date is not null orftvfund_status_ind = I) andftvfund_eff_date =sysdate or ftvfund_nchg_date is null)order by POSN, FUNDFor Inactive Salary Budget orgs run:select nbrptot_posn, nbrptot_orgn_code, ftvorgn_status_indfrom nbrptot, ftvorgn where ftvorgn_coas_code = nbrptot_coas_code andnbrptot_orgn_code = ftvorgn_orgn_code andnbrptot_status = A andnbrptot_fisc_code = 2005 and-ftvorgn_orgn_code like 4% and ftvorgn_status_ind = I andftvorgn_eff_date =sysdate or ftvorgn_nchg_date is null)For Inactive Labor Distribution orgs run:select nbrplbd_posn, nbrplbd_orgn_code, ftvorgn_status_indfrom nbrplbd, ftvorgn, nbbposn where ftvorgn_coas_code = nbrplbd_coas_code andnbrplbd_orgn_code = ftvorgn_orgn_code andnbrplbd_posn = nbbposn_posn andnbbposn_status = A andnbrplbd_fisc_code = 2005 and-ftvorgn_orgn_code like 4% and ftvorgn_status_ind = I andftvorgn_eff_date =sysdate or ftvorgn_nchg_date is null)For Inactive Programs run:select nbrplbd_posn, nbrplbd_prog_code, ftvprog_status_ind, ftvprog_prog_codefrom ftvprog, nbrplbd wherenbrplbd_coas_code = ftvprog_coas_code andnbrplbd_prog_code = ftvprog_prog_code andnbrplbd_fisc_code = 2005 andftvprog_status_ind = I andftvprog_eff_date =sysdate or ftvprog_nchg_date is null)Corrections to FOP elements need to be made in each incorrect position in NBAPBUD. Corrections to Salary Budget orgs may require an Org Transfer.5) Active positions where the Salary Budget Org does not match at least one org in the Position Labor Distribution lines. This situation creates NUMEROUS validation errors. Run a “make table” query using the following script:Selectnbrptot_posn, nbrptot_orgn_code, nbrplbd_acci_code, nbrplbd_fund_code, nbrplbd_orgn_code, nbrplbd_acct_code, nbrplbd_prog_code, nbrplbd_percent, nbrptot_fte, nbrptot_budget, nbrplbd_budget, nbbposn_statusFromnbrptot, nbrplbd, nbbposnWherenbrptot_status= A andnbrptot_coas_code=nbrplbd_coas_code andnbrptot_posn=nbrplbd_posn andnbrptot_fisc_code= nbrplbd_fisc_code andnbrptot_posn = nbbposn_posn andnbrptot_coas_code = nbbposn_coas_code andnbbposn_status = A andnbrplbd_fisc_code=2005 -nbrplbd_fund_code like 4% -nbrptot_posn like 4% order by nbrptot_posn asc, nbrplbd_orgn_code asc I then run a series of Access queries from the table to determine position records where nbrptot_orgn_code does not match at least one nbrplbd_orgn_code for the same position number. These are corrected with an org transfer when possible. If no org transfer is possible, we save the error report and correct the salary budget org on the downloaded spreadsheet before validation and uploading.6) Active positions with potential null values in labor distribution lines. These will generally show up with a zero percent on the labor distribution line, and nothing can be done to the line. These errors must be scripted out of the nbrplbd table. Run:select nbbposn_posn, nbrplbd_acci_code,nbrplbd_fund_code, nbrplbd_orgn_code, nbrplbd_prog_code, nbrplbd_acct_code, nbrplbd_budget, nbrplbd_percentfrom nbrplbd, nbbposnwhere -nbrplbd_posn like 4% and-nbrplbd_fund_code like 411201 andnbrplbd_fisc_code = 2005 andnbrplbd_posn=nbbposn_posn and nbbposn_status = A andnbrplbd_percent = 0 andnbrplbd_budget 0order by nbrplbd_acci_code asc7) Check for Positions entered as “Single” that should be “Pooled” or that have too many incumbents in them. (Only one incumbent should be in a “single” position. FTE errors will result if this is NOT the case). Run:selectnbbposn_posn, spriden_last_name, spriden_first_name, spriden_mifromspriden, nbrbjob, nbrptot, nbbposnwherenbrptot_posn = nbbposn_posn andnbrbjob_posn = nbrptot_posn andnbbposn_posn = nbrbjob_posn andnbrbjob_pidm = spriden_pidm andspriden_change_ind is null andnbrbjob_suff = 00 andnbrbjob_end_date is null and nbrptot_fisc_code = 2005 and nbbposn_status = A and nbrptot_status = A and nbbposn_type like Sorder by nbbposn_posn asc If using Access, build a “make table” query from this pass-through query, then run a “find duplicates” query using position number to show all of the positions with more than one incumbent. Correction is made by changing the position to “pooled” in form NBAPBUD or by making necessary corrections to JOBS records.We run most of these same error checks on the spreadsheet when we import it into Access to add indexes, and before we upload the data back into Banner. We find that the Spreadsheet Budgeting Validation Process catches most errors, but some can slip through the cracks (usually FOAPAL errors). Timing is an issue as well, as funds can terminate after error checks and validation has been done, but before data is uploaded into Banner. Then the data simply does not load, and is “missing” in Finance. All personnel should be made aware not to terminate or inactivate FOAPAL elements during this time period. Run on Spreadsheet after Importing as an Access Table1) Check Positions for excessive FTE.Run a “Totals Query” summing the FTE for each position from the table. Then run a “Select Query” off the “Totals Query” to display position records with FTE value 1. You can also just filter the “Totals Query”. Assuming your position titles are correct, you should be able to eliminate any pooled positions and be able to easily view single positions with too much FT
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年职业技能中式烹调师中式烹调师(初级)-中式烹调师(初级)参考题库含答案解析
- 2025年特种作业类危险化学品安全作业胺基化工艺作业-生产经营从业参考题库含答案解析
- 2025年麻醉临床信息系统项目提案报告模范
- 2025年特种作业类危险化学品安全作业氯碱电解工艺作业-加氢工艺作业参考题库含答案解析
- 鞋服购销合同
- 2025年特种作业类危险化学品安全作业化工自动化控制仪表作业-聚合工艺作业参考题库含答案解析
- 2025年特种作业类危险化学品安全作业光气及光气化工艺作业-氧化工艺作业参考题库含答案解析
- 2025年建筑工程类注册安全工程师安全生产专业实务(金属冶炼安全)-安全生产技术基础参考题库含答案解析
- 2025年建筑工程类注册安全工程师安全生产专业实务(道路运输安全)-安全生产专业实务(建筑施工安全)参考题库含答案解析
- 青山中考二模数学试卷
- 卷扬工安全知识培训内容课件
- 2025年度泸州老窖白酒线上线下全渠道销售代理协议
- 教职工开学安全知识培训课件
- 2025至2030年中国焦炉气制LNG市场竞争格局及行业投资前景预测报告
- 2025年公路交通水运三类人员试题及答案
- 2025年河北省初中学业水平考试历史试题(含答案)
- 2025年甘肃省公职招录考试(省情时政)历年参考题库含答案详解(5套)
- 期末必考题检测卷(三)(含答案)高一数学下学期人教A版必修第二册
- 2025年江苏公务员遴选考试公文写作试卷(附答案)
- 2025年度以新质生产力助推高质量发展等继续教育公需科目试题及答案
- 2025年技师安全考试题库
评论
0/150
提交评论