




全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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广东韶关仁化县招聘中小学教师30人(编制)考前自测高频考点模拟试题及参考答案详解一套
- 2025年河北唐山幼儿师范高等专科学校选聘工作人员35人考前自测高频考点模拟试题含答案详解
- 2025年临沂高新区教育系统部分事业单位公开招聘教师(6名)模拟试卷及完整答案详解
- 2025贵州黔晨综合发展有限公司招聘观光车驾驶员及高压电工人员15人模拟试卷及答案详解(典优)
- 2025年洛阳宜阳县选聘县属国有集团公司部长10名模拟试卷及1套完整答案详解
- 2025河北雄安新区新建片区学校面向社会选聘教职人员102人模拟试卷及答案详解(全优)
- 2025年马鞍山市消防救援局招聘政府专职消防员38人考前自测高频考点模拟试题及答案详解(各地真题)
- 2025年哈尔滨市道里区爱建社区卫生服务中心招聘5人考前自测高频考点模拟试题有答案详解
- 2020-2025年一级造价师之工程造价案例分析(水利)题库与答案
- 妇科肿瘤影像学课件
- 客户开发情况汇报
- 全国一等奖统编版语文三年级上册《小狗学叫》公开课课件
- 地震安全培训课件
- 中国能源数据报告2025
- 育龄妇女生殖健康知识
- 矿区员工车辆管理制度
- 个体诊所感染管理制度
- DB32/T 4430-2022极端强降雨事件判定
- 四川分行成都海椒市支行建设方案汇报
评论
0/150
提交评论