Skip to main content

Karkuvelraja Thangamariappan's Resume

Karkuvelraja Thangamariappan


Lead Engineer, DAMAC Properties, Dubai
Director – Training & Special ProjectsINOAUG
Email: tkarkuvelraja@gmail.com
Mobile: +971 582036853
Profile Summary

I am an Oracle Certified Professional (OCP) & Oracle ACE Pro with 8+ years of experience with Oracle APEX Applications, holding a bachelor's degree (B.E) in Electrical and Electronics Engineering (2014), has a wide range of expertise in the Oracle APEX, SQL, PL/SQL & Java environment.

Awarded Member of the Month twice by the OracleAPEX Community. I have held the OracleACE Award for three consecutive years.

In August 2014, I started my career working as an Oracle APEX & PL/SQL Developer. Experience in areas including SQL, PL/SQL, Oracle APEX (above 3.2), Java, Oracle BI publisher as well as Oracle 10g/11g/12c, including technical design, development, and documentation. Expertise in responsive web technologies, XML, XSL, HTML5, CSS3, JavaScript, and jQuery development, progressive enhancement and graceful degradation, as well as mobile web development.

I further participate actively in the Oracle community by publishing technical posts on my blog ORCLKING.

Leadership Activities

Accomplished Milestones

Oracle ACE Pro

  • Community Recognition by Oracle ACE Community (September, 2022)

Memberof the Month

  • Community Contribution Recognition by Oracle APEX Community (May, 2022)

OracleApplication Express 18: Developer Certified Professional (OCP)

  • In November 2021, Earned Oracle APEX Professional Credential

OracleAPEX Challenge Coin

  • Community Contribution Recognition by one of the Oracle APEX Evangelist (for my significant contributions to the Oracle APEX Community) – November, 2021

OracleApplication Express 18: Developer Certified Professional (OCP)

  • In November 2021, Earned Oracle APEX Professional Credential

Oracle ACE

  • Community Recognition by Oracle ACE Community (August, 2021)

Memberof the Month

  • Community Contribution Recognition by Oracle APEX Community (June, 2021)

Oracle ACE Associate

  • Community Recognition by Oracle ACE Community (September, 2020)

OracleApplication Express Developer Certified Expert (OCE)

  • In October 2017, Earned Oracle APEX Expert Credential

Oracle PL/SQL Developer Certified Associate (OCA)OracleAdvanced PL/SQL Developer Certified Professional (OCP)

  • In March 2017, Earned Oracle SQL & PL/SQL Associate Credential

Academic Rank of 33rd

  • Received the Academic Rank of 33rd at Anna University, Tamil Nadu, India for the Electrical and Electronics Engineering (EEE) stream during my undergraduate studies from 2010 to 2014

Best Outgoing Student (BOS)

  • Received the Prestigious Award at National Engineering College, Kovilpatti, Tamil Nadu, India for my excellence in curricular and extra-curricular activities during my undergraduate studies from 2010 to 2014

Educational Qualification

·       Bachelor of Engineering: Electrical and Electronics and Engineering

National EngineeringCollege, Kovilpatti, TamilNadu, India - Anna University

2010 – 2014

Technical Skills

Oracle Application Technologies

Oracle APEX (Above 3.2 Version)

Reporting Tool(s)

Jasper (IReport), Oracle BI Publisher (10g)

Testing Tool(s)

Postman – API Platform

IDE's

SQL Developer, Toad, IntelliJ IDEA, SQL Server Management Studio (SSMS)

Database

Oracle (10g, 11g & 12c), Azure DB

Languages

SQL, PL/SQL, Java

Web Technologies

XML, Xslt, HTML, CSS, JavaScript, jQuery

Work Experience (8+ Years)

DAMACProperties, Dubai, United Arab Emirates (Contract & Full Time)

o   Lead Engineer (Sep 2020 to till date)

o   Development Consultant (Jul 2018 to Aug 2020) - 2 Years 2 Months

Freelance

o   Development  Consultant (Oct 2017 to Jun 2018) – 9 Months

Doyen SystemsPrivate Limited, Chennai, Tamil Nadu, India (Full Time)

o   Associate Technical Consultant (Apr 2015 to Sep 2017) - 2 Years 6 Months

o   Trainee (Aug 2014 to Mar 2015) - 8 Months

o   Director – Training & Special Projects (Sep 2022 to till date)

o   Regional Leader - Chennai (Mar 2022 to Aug 2022) – 6 Months

o   Volunteer (Feb 2020 to Feb 2022) – 2 Years 1 Month

Oracle Community

o   Contributor (Aug 2014 to till date)

NationalCadet Corps (NCC)

o   Sergeant (May 2011 to Apr 2013) – 2 Years

Social Media


LinkedIn | Twitter | YouTube | Git-hub | Facebook | Instagram

Comments

Popular posts from this blog

Printing Page Numbers in RTF Template [Oracle BI Publisher]

Here I am giving an example to print the page numbers dynamically in the RTF (Rich Text Format) template. Step 1:  Go to page footer and copy and paste the below script. Page |  <?fo:page-number?>  of  <?fo:page-number-citation:xdofo:lastpage-joinseq?> <fo:page-number> :   This is the object, which is used to represent the current page-number. <?fo:page-number-citation:xdofo:lastpage-joinseq?> :  This is the syntax, which is used to represent the total number of pages. Step 2:  Load the XML and preview the result. Output: That's it. References: fo:page-number Printing Page Number Code in Oracle XMLP RTF Template

Friendly URL: Redirect to Different Page after Login in Oracle APEX 20.1

Oracle has updated apex.oracle.com to APEX 20.1 which includes among other features the new Friendly URL option. Here i am giving an example to redirect to different page after login in Oracle APEX 20.1 [Friendly URL Enabled] Step 1: Define home page for each user in emp master table as below Step 2: To enable Friendly URL Syntax, follow below steps, 1) On the Workspace home page, click the App Builder icon. 2) Select an application (The Application home page appears). 3) From Application home page, you can access the Definition page in TWO ways: Click the Edit Application Properties button. From Shared Components:              1) Click Shared Components .              2) Under Application Logic, click Application Definition Attributes . The Definition page appears. 4) Under Properties, configure the Friendly URL s attribute: Click Apply Changes to save your ch...

Open modal/inline dialog in Oracle APEX using JS

Analysis: From Oracle Apex 4.2,  Inline dialog can be opened as modal dialog/popup using JS. Open inline dialog region as modal dialog: Step 1: Create static region. Step 2:  Set Template => Inline Dialog. Step 3:  Assign the static id to the region. Fig 1: Set template and Static ID Step 4:  Create button or change one of the report column type to Link. (Action: Redirect URL). Step 5:  Put the below JS to open the region as modal dialog.                javascript:openModal('unitpricedetails');            Fig 2:  Open simple modal dialog Open inline dialog region as modal dialog and pass values to the items: Common Steps:  Step 1 to Step 4. Step 5:  To pass value to that region, create P1_UNIT_ID in the inline  dialog.       javascript:$s('P1_UNIT_ID','#UNIT_ID#');javascript:openModal('unitpricedetai...