Oracle Apps http://khwaja.info/blogs/index.php?blog=2 en-US http://backend.userland.com/rss092 Employer Tax (US Legislation) <p>Seting up Employer Tax Information includes:</p> <p>1. Entering Federal, State and Local tax information for GRE<br /> 2. Setting up Transmitter information for GRE<br /> 3. Setting up Multiple Worksite Reporting</p> <p>Employer Liabilities for federal taxes are:<br /> &#8211; Social Security (FICA-OASDI)<br /> &#8211; Medicare (FICA-HI)<br /> &#8211; Federal Unemployment Tax Act (FUTA)</p> <p>Employer Liabilities for state taxes are:<br /> &#8211; State Unemployment Insurance (SUI)<br /> &#8211; State Disability Insurance (SDI)</p> <p>For US legislation, Vertex maintains the <br /> tax table information and assist in the<br /> calculation of specific employer and employee taxes</p> <p>When you set up your enterprise work structures<br /> You must enter federal, state and local tax details for<br /> each GRE/Legal Entity<br /> &#8226; If you define new tax categories when you set up<br /> compensation types of supplemental or imputed<br /> earnings, or pre-tax deductions<br /> &#8211; You must enter taxability rules for these categories at<br /> the federal, state and local levels</p> <p>Setting up Transimitter Information for GRE</p> <p>Several reports must be submitted to federal or state agencies quarterly or yearly<br /> &#8211; Submission is often made through magnetic media and requires &#8216;Transmitter&#8217; details<br /> &#8211; Enter GRE transmitter information in the Organization window<br /> &#8226; Set up Federal level Transmitter details for Multiple Work Site Reports (BLS-3020), W-2&#8217;s <br /> and Retirement Plan Distribution (1099-R)<br /> &#8226; Set up State level Transmitter details for State Quarterly Wage Listings (SQWL)</p> <p>Multiple Worksite Report:</p> <p>Employers with multiple worksites must file quarterly employment and wage reports<br /> &#8226; This information is used by the Bureau of Labor Statistics to analyze <br /> U.S. employment data<br /> &#8226; The MWS Report is submitted on magnetic media<br /> &#8226; Only one GRE submits the MWS Report to the Bureau of Labor Statistics<br /> regardless of the number of locations in multiple states</p> <p>This reporting GRE reports the wages and locations of employees in all <br /> locations across all states and other GRE&#8217;s<br /> &#8211; Use the Reporting Establishment classification to identify this GRE<br /> &#8211; Enter MWS Transmitter details for this GRE </p> <p>Taxibility Rules for Earnings and Deduction:</p> <p>We have predefined Taxibility Rules for the correct taxation of regular and overtime<br /> earnings.<br /> &#8226; The Earnings classification and Regular category are always subject to federal and state taxes<br /> &#8226; Categories associated with Supplemental and imputed earnings classifications may be subject to<br /> different taxes at the federal, state and local tax levels</p> <p>We can define additional Tax categories with different tax rules:<br /> Define additional tax categories using the lookup types:<br /> &#8211; US_SUPPLEMENTAL_EARNINGS<br /> &#8211; US_IMPUTED_EARNINGS</p> <p>Eentering and calculating FUTA credits</p> <p>FUTA or Federal Unemployment Tax is an employer liability <br /> that must be reported annually on form 940<br /> &#8226; Calculating FUTA Credits<br /> &#8211; An employer&#8217;s FUTA tax rate can be reduced through credits it can <br /> take based on the amount and timeliness of state unemployment taxes it pays</p> <p>Vertex Updates:<br /> The Vertex is the vendor which on regular intervals provides updates to the various tax tables for<br /> the US legislation. For correct tax calculations the application must be up to date with the Vertex Update</p> http://khwaja.info/blogs/index.php?blog=2&title=employer_tax_us_legislation&more=1&c=1&tb=1&pb=1 Automatic Website Login Script <p>VB Script to automatically login into a website:</p> <p>Create two VB-script</p> <p>1. citrixlogin.vbs</p> <p>dim Shell<br /> set Shell = CreateObject("Wscript.Shell")<br /> Shell.run "http://www.xyz.com/auth/login.aspx"<br /> Wscript.sleep(5000)<br /> Shell.sendkeys ("khwaja")<br /> Shell.sendkeys chr(9)<br /> Wscript.sleep(2000)<br /> Shell.sendkeys ("danger")<br /> Shell.sendkeys "{Enter}"<br /> Wscript.quit</p> <p>2. citrixshort.vbs</p> <p>dim Shell<br /> set Shell = CreateObject("Wscript.Shell")<br /> str_dsk_top = shell.SpecialFolders("Desktop")<br /> set shortcut = shell.CreateShortcut(str_dsk_top &amp; "\citrix.lnk")<br /> shortcut.TargetPath = "D:\Documents and Settings\khwaja.hassan\My Documents\Login Scripts\citrixlogin.vbs"<br /> shortcut.Hotkey = "CTRL+SHIFT+L"<br /> shortcut.save</p> <p>Save the two scripts in a Folder of your choice. In my case I saved it in<br /> D:\Documents and Settings\khwaja.hassan\My Documents\Login Scripts</p> <p>Now go to command prompt and then use the below command:</p> <p>Cscript citrixshort.vbs</p> <p>This will create a shortcut for the citrixlogin.vbs script on Desktop and <br /> assign the HotKey to the vbscript, "citrixlogin.vbs" as mentioned in the<br /> citrixshort.vbs</p> <p>Now if you press "CTRL+SHIFT+L" you will see the internet explorer launching and then <br /> the url that you have mentioned in the citrixlogin script, will open and automatically<br /> log you in by entering the user name and password on the login page.</p> http://khwaja.info/blogs/index.php?blog=2&title=automatic_website_login_script_1&more=1&c=1&tb=1&pb=1 Concurrent Request Status <p>Query to find concurrent requests&#8217; status for a given request id.</p> <p>select fcr.request_id<br /> ,decode(fcr.phase_code,&#8217;P',decode(fcr.hold_flag,&#8217;Y',&#8217;Inactive&#8217;,fl_p.meaning),fl_p.meaning) phase<br /> ,decode(fcr.phase_code,&#8217;P',decode(fcr.hold_flag,&#8217;Y',&#8217;On Hold&#8217;,decode(sign(fcr.requested_start_date - sysdate),1,&#8217;Scheduled&#8217;,fl_s.meaning)),fl_s.meaning) status<br /> from fnd_concurrent_requests fcr<br /> ,fnd_lookups fl_p<br /> ,fnd_lookups fl_s<br /> where 1=1<br /> and fcr.phase_code = fl_p.lookup_code<br /> and fl_p.lookup_type = &#8216;CP_PHASE_CODE&#8217;<br /> and fcr.status_code = fl_s.lookup_code<br /> and fl_s.lookup_type = &#8216;CP_STATUS_CODE&#8217;<br /> and fcr.request_id = &amp;request_id<br /> order by fcr.request_id desc;</p> http://khwaja.info/blogs/index.php?blog=2&title=concurrent_request_status&more=1&c=1&tb=1&pb=1