SlideShare a Scribd company logo
1 of 32
Download to read offline
Title
                        http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                Email : ashish1234u@gmail.com
                                      ADI Set Up Steps

The Basic Mandatory step before starting with the ADI Set Up is to enable Security settings in
Internet Explorer, Word, Excel as follows:-

   (a) Word:-
       (i)Tools->Macro->Security->Security Level tab->check low button
       (ii)Tools->Macro->Security->Trusted Publishers tab->check Trust            Access to Visual
   Basic Project checkbox also.

   (b) Excel:-
       Same as above

   (c) Internet Explorer:-
       (i) Tools->Internet Options-> Security-> Custom Level-> Initialize and script ActiveX
       controls not marked as safe-> Prompt
       (ii) Tools->Internet Options-> Security-> Custom Level-> Automatic prompting for file
       downloads-> enable
       (iii) Tools->Internet Options-> Security-> Custom Level-> Use Pop-up Blocker-> Disable



       Requirement:

          1. Need to download all the applicant details who does not have SIT values using
             Oracle WEBADI for specific business group

          2. Need to insert SIT values for the applicants data which is downloaded

          3. Need to upload the applicant’s data to which changes have been done.

          4. Need to check weather the data is updated or not from the front end.




   1) Create a new view to retrieve data for the applicants

                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                Email : ashish1234u@gmail.com
Title
                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                          Email : ashish1234u@gmail.com
       Who does not contain SIT VALUES?

CREATE OR REPLACE VIEW XXGENAPPSITDETAILS_V
AS
SELECT DISTINCT papf.first_name Applicant_First_Name,
  papf.last_name Applicant_Last_Name,
  papf.applicant_number,
  pav.name vacnacy_name,
  NULL person_analysis_id,
  NULL CEDS_Attended,
  NULL CEDS_Writing_Score,
  NULL CEDS_Reading_Score,
  NULL CEDS_Listening_Score,
  NULL CEDS_Free_Speach_Score,
  NULL HAWK_Attended,
  NULL object_version_number
FROM per_all_people_f papf,
    per_all_assignments_f paaf,
    per_all_vacancies pav,
  APPS.per_person_types ppt,
  PER_PERSON_TYPE_USAGES_F pptuf
WHERE papf.business_group_id = ppt.business_group_id
and papf.business_group_id = paaf.business_group_id
and papf.person_id = paaf.person_id
and paaf.vacancy_id = pav.vacancy_id
and pav.business_group_id = paaf.business_group_id
AND papf.business_group_id IN
  (SELECT business_group_id
  FROM per_business_groups
  WHERE name = 'Genpact Guatemala'
  )
AND pptuf.person_id = papf.person_id
and pptuf.person_type_id = ppt.person_type_id
AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT')
AND sysdate BETWEEN papf.effective_start_date AND papf.effective_end_date
AND (papf.person_id,pav.name)
NOT in
(SELECT papf.person_id,
     pac.SEGMENT1 Vacancy_Number
  FROM
  apps.per_person_analyses ppa,
  apps.per_analysis_criteria pac,
  per_all_people_f papf,
  APPS.per_person_types PPT ,
  per_person_type_usages_f pptuf,
  fnd_id_flex_structures FIFS,
  per_business_groups bg
WHERE ppa.business_group_id= bg.business_group_id
AND bg.NAME = 'Genpact Guatemala'
AND pptuf.person_id        = papf.person_id
AND ppt.person_type_id = pptuf.person_type_id
AND fifs.id_flex_num = PPA.ID_FLEX_NUM
AND FIFS.id_flex_structure_code = 'XX_CEDS_GUATEMALA'
AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT')
and papf.person_id=ppa.person_id
and ppa.analysis_criteria_id=pac.analysis_criteria_id
and sysdate BETWEEN papf.effective_start_date and papf.effective_end_date
AND TRUNC(sysdate) BETWEEN pptuf.EFFECTIVE_START_DATE AND pptuf.EFFECTIVE_END_DATE
)
minus
SELECT DISTINCT papf.first_name Applicant_First_Name,

                                http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                          Email : ashish1234u@gmail.com
Title
                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                          Email : ashish1234u@gmail.com
  papf.last_name Applicant_Last_Name,
  papf.applicant_number,
  pav.name vacnacy_name,
  NULL person_analysis_id,
  NULL CEDS_Attended,
  NULL CEDS_Writing_Score,
  NULL CEDS_Reading_Score,
  NULL CEDS_Listening_Score,
  NULL CEDS_Free_Speach_Score,
  NULL HAWK_Attended,
  NULL object_version_number
FROM per_all_people_f papf,
    per_all_assignments_f paaf,
    per_all_vacancies pav,
  APPS.per_person_types ppt,
  PER_PERSON_TYPE_USAGES_F pptuf
WHERE papf.business_group_id = ppt.business_group_id
and papf.business_group_id = paaf.business_group_id
and papf.person_id = paaf.person_id
and paaf.vacancy_id = pav.vacancy_id
and pav.business_group_id = paaf.business_group_id
AND papf.business_group_id IN
  (SELECT business_group_id
  FROM per_business_groups
  WHERE name = 'Genpact Guatemala'
  )
AND pptuf.person_id = papf.person_id
and pptuf.person_type_id = ppt.person_type_id
AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT')
AND sysdate BETWEEN papf.effective_start_date AND papf.effective_end_date
AND (papf.person_id,pav.name)
 in
(SELECT papf.person_id,
     pac.SEGMENT1 Vacancy_Number
  FROM
  apps.per_person_analyses ppa,
  apps.per_analysis_criteria pac,
  per_all_people_f papf,
  APPS.per_person_types PPT ,
  per_person_type_usages_f pptuf,
  fnd_id_flex_structures FIFS,
  per_business_groups bg
WHERE ppa.business_group_id= bg.business_group_id
AND bg.NAME = 'Genpact Guatemala'
AND pptuf.person_id        = papf.person_id
AND ppt.person_type_id = pptuf.person_type_id
AND fifs.id_flex_num = PPA.ID_FLEX_NUM
AND FIFS.id_flex_structure_code = 'XX_CEDS_GUATEMALA'
AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT')
and papf.person_id=ppa.person_id
and ppa.analysis_criteria_id=pac.analysis_criteria_id
and sysdate BETWEEN papf.effective_start_date and papf.effective_end_date
AND TRUNC(sysdate) BETWEEN pptuf.EFFECTIVE_START_DATE AND pptuf.EFFECTIVE_END_DATE
)




                                http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                          Email : ashish1234u@gmail.com
Title
                                http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                               Email : ashish1234u@gmail.com


Concepts

Integrator – This is the definition that stores the information about the action the user wishes to perform. For example,
downloading specific data to a spreadsheet for viewing or to modify and upload back to the database. For ADE users, this
equated to the Style.

API – Application Programming Interface. This is the pl/sql interface by which data is validated and uploaded into Oracle HRMS.
You would associate an api with an integrator if it was intended to either create new data in the application or update data that
had been previously downloaded. See Oracle HRMS Configuring,Reporting and System Administration manual for a list of
supported apis.

View – A view is an object by which you can query data on a table or tables. If the action you are intending to perform involves
downloading data, you must associate a view with the integrator. If you are using Create style APIs, you do not require a view.
You can elect to use a seeded view, for example, PER_PEOPLE_V, to use with your integrator. However, if the integrator is for
updating data, then it is recommended that you create your own views and remember to include the
OBJECT_VERSION_NUMBER, and any other In/Out parameters used by your chosen API.

One thing to beware of is the use of Aliases in views if you are downloading from a form. For example,if you use an alias for
Applicant_Name called Starter, and then use a restrictive query in the form on Applicant Name before running the integrator in
Web ADI, you will get the following error in the BNE log.

BneBaseSQL.executeBneQuery: Exception while running query. Error Code: 904, Message: ORA-00904:
"APPLICANT_NAME": invalid identifier

The column APPLICANT_NAME has been overwritten by the alias in the definition loaded into the BNE tables.

Layout – This is where the user selects the columns to be displayed in the spreadsheet or Word document from the API and/or
View used by the integrator. An integrator can have more than one layout defined for it. You can choose which one to use when
you create your document.

Mapping – the mapping definition links the data source to the api columns. If no view is specified against the integrator or no
text file used to load data, then no mapping is needed. When the data source is a view, the mapping is created automatically,
however if a text file is being used then a mapping needs to be manually defined to associate each column in the file (source) to
the relevant api parameter (target). See example c) in section, A Step by Step Guide to Creating HRMS Integrators.




īƒ  Login to Oracle Apps
                                  http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                               Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
īƒ  Select Oracle WEB ADI Responsibility




īƒ  Click on Create Document
īƒ  Select Excel 2003 option from the viewer




īƒ  Click on Next button




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com




īƒ  Select Integrator “HR Integrator Setup”
īƒ  Click on Next button




-īƒ  Select Layout as “Integrator Setup”
īƒ  Click on Next button




                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com
Title
                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com




īƒ  Select Content as „None”
īƒ  Click on Next button




īƒ  Click on create document button




                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com
Title
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com




-īƒ  click on open




Detail information for column heading in the above Template
   1.    Upl                   - ignore
   2.    Metadata Type         - select List of Values from Oracle menu
   3.                            or right click on mouse.Choose UPDATE
   4.    Application Short Name- Choose your Application Short Name
   5.                            (see Getting Started)
   6.    Integrator User Name - Enter a name for your integrator
   7.                            (eg Update Asg Details)
   8.    View Name             - Create your own view, but must include
   9.                            object_version_number from

                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
   10.                                per_all_assignments_f. See Getting
   11.                                Started.
   12.   Form Name                -   GENERAL
   13.   API Package Name         -   HR_ASSIGNMENT_API
   14.   API Procedure Name       -   UPDATE_EMP_ASG_CRITERIA
   15.   Interface User Name      -   Enter a unique name
   16.   Interface Param List     -   Enter a unique name
   17.   API Type                 -   select List of Values from Oracle menu
   18.                                or right click on mouse.Choose PROCEDURE
   19.   API Return Type          -   ignore



Metadata Type             : UPDATE
Application Short name : PER
Intergrator User name     : XXTEST_SITAPP
View name                  : XXGENAPPSITDETAILS_V
Form Name                  : GENERAL
API Package Name           : XX_GENGUATAPPLSIT_PKG
API Procedure Name         : XX_GENGUATAPPLSIT_PRC
Interface User Name        : XXTEST_SITAPP
Interface Parameter List Name : XXTEST_SITAPP
API Type                       : PROCEDURE

Note : Interface User Name and Interface Parameter List Name should
       be same as Integrator name




īƒ  goto menu Oracleīƒ upload




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com




īƒ  If upload is successful it will show in green colour which as shown below




īƒ  Goto home page of Oracle Webadi responsibility




                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com
Title
                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com




-īƒ  Click on Create Documnet




īƒ  Select excel 2003 option




                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
īƒ  Select HR Maintain Integrator Form Function Association
īƒ  Click on Next button




īƒ  Select Form Function Associations option
īƒ  Click on Next button




īƒ  Select Form Function Associations option
īƒ  Click on Next button




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com




   īƒ  Give Application Short name (#App_short_name)
   īƒ  Give Integrator Short name (#integrator_name)
   īƒ  Click on Next continue




īƒ  Click on Create document button




                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com


īƒ  Form Function Template




(3) Define a Form Function like




Function : XXTEST_SITAPP_WEBADI
User Function name : XXTEST_SITAPP_WEBADI




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com




Properties : SSWA Servlet Function




Web HTML: oracle.apps.bne.webui.BneApplicationService




Note: SELECT Integrator_code
      FROM BNE_INTEGRATORS_TL
      WHERE user_name LIKE „XXTEST_SITAPP‟ (< Integrator Name >)

Parameters: bne: page=BneCreateDoc&bne: integrator=800 :< Integrator_code>

Parameters: bne: page=BneCreateDoc&bne: integrator=800:GENERAL_1420_INTG




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                        http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                Email : ashish1234u@gmail.com



īƒ  System Administrator īƒ  Requestsīƒ Define
īƒ  Query Oracle Web Adi responsibility




īƒ  Copy Menu Name




                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com




īƒ  Query Menu Name




īƒ  Add the defined function name (#function_name) to menu

īƒ  Goback to Form Function template (#Form_Function)




Integrator Application Shot name: PER

Integrator User name: XXTEST_SITAPP

Form Function: XXTEST_SITAPP_WEBADI




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com




īƒ  Goto menu Oracleīƒ  Upload




īƒ  Goto Oracle Web Adi Responsibility home page

īƒ  Select Define Layout




                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com




īƒ  Select the Defined Integrator Name




īƒ  Click go

īƒ  Provide suitable layout name and unique layout key




īƒ  Click Continue


                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com




īƒ  Select all the fields which need to populate in the layout.
īƒ  Select the fields which are defined in the Procedure parameters.




īƒ  Goto Oracle Web Adi Responsibility home page

īƒ  Select Define Mapping



                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com
Title
                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com




Click go

īƒ  Define Mapping




īƒ  Provide mapping name and number of fields to be mapped




                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com




īƒ  Here mapping is done for defined view columns and procedure parameters




īƒ  Click on Lookup and Click on apply button



                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com




īƒ  Goto īƒ  System Administration īƒ  Requestsīƒ  Responsibility
īƒ  Query the responsibility to which webadi template to be attached

īƒ  Query genpact Guatemala irec hiring team




                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com
Title
                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com


īƒ  copy the menu name.




īƒ  Add the function to menu




īƒ  Goto Genpact Guatemala Irec Hiring Team Responsibility




īƒ  Click Genpact Guatemala Web Adi


                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com
Title
                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com




īƒ  Select Excel 2003
īƒ  Click Next




īƒ  Select the mapping name which we have defined




īƒ  Click Continue
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                  Email : ashish1234u@gmail.com
Title
                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com




īƒ  Click Create Document




īƒ  Click Open
īƒ  Here it displays all the applicant details who does not have SIT values

                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com
Title
                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com




īƒ  Before inserting SIT values for a specific applicant




                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                     Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com




īƒ  Applicant does not contain SIT values




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com
īƒ  Insert SIT values to the applicant “Sambit Swain”




CEDSATTENDED1 = „Y‟
CEDSWRITINGSCORE1 = 2
CEDSREADINGSCORE1 = 2
CEDSLISTININGSCORE = 4
CEDSFREESPEACHSCORE = 5
HAWKATTENDED = „Y‟




                              http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com
Title
                        http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                Email : ashish1234u@gmail.com



īƒ  goto menu īƒ  Oracleīƒ Upload
īƒ  Select Flagged rows option




                          http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                Email : ashish1234u@gmail.com
Title
                           http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
īƒ  click close




īƒ  Check after uploading SIT values




                             http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                   Email : ashish1234u@gmail.com
Title
                            http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com




īƒ  Here SIT values for the applicant is updated.




                               http://oracleapps-atechniciansview.blogspot.com/

Author : Ashish Harbhajanka                                                    Email : ashish1234u@gmail.com

More Related Content

What's hot

Oracle Self Service HR Document
Oracle Self Service HR DocumentOracle Self Service HR Document
Oracle Self Service HR DocumentHussain Abbas
 
Payroll process in oracle hrms
Payroll process in oracle hrmsPayroll process in oracle hrms
Payroll process in oracle hrmsFaisal Anwar
 
Oracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manualOracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manualFeras Ahmad
 
Oracle ebs otl setup document
Oracle ebs otl setup documentOracle ebs otl setup document
Oracle ebs otl setup documentFeras Ahmad
 
Oracle EBS Self service from A to Z
Oracle EBS Self service from A to ZOracle EBS Self service from A to Z
Oracle EBS Self service from A to ZFeras Ahmad
 
Fast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packagesFast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packagesFeras Ahmad
 
Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...Abdul Rahman Fouad Thabit
 
Oracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewOracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewChris Martin
 
Calendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementCalendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementFeras Ahmad
 
How to create payslip through self service
How to create payslip through self serviceHow to create payslip through self service
How to create payslip through self serviceFeras Ahmad
 
PO Position Hierarchy in R12
PO Position Hierarchy in R12PO Position Hierarchy in R12
PO Position Hierarchy in R12parinay jain
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Ahmed Elshayeb
 
Training Guide Oracle EBS R12 Performance Management
Training Guide Oracle EBS R12 Performance ManagementTraining Guide Oracle EBS R12 Performance Management
Training Guide Oracle EBS R12 Performance ManagementFeras Ahmad
 
Oracle HRMS Fast Formula
Oracle HRMS Fast FormulaOracle HRMS Fast Formula
Oracle HRMS Fast Formularunjithrocking
 
Setup Oracle EBS R12 Performance Management
Setup Oracle EBS R12 Performance ManagementSetup Oracle EBS R12 Performance Management
Setup Oracle EBS R12 Performance ManagementFeras Ahmad
 

What's hot (20)

Oracle Self Service HR Document
Oracle Self Service HR DocumentOracle Self Service HR Document
Oracle Self Service HR Document
 
Payroll process in oracle hrms
Payroll process in oracle hrmsPayroll process in oracle hrms
Payroll process in oracle hrms
 
Oracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manualOracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manual
 
Oracle ebs otl setup document
Oracle ebs otl setup documentOracle ebs otl setup document
Oracle ebs otl setup document
 
Uae absence whitepaper
Uae absence whitepaperUae absence whitepaper
Uae absence whitepaper
 
Oracle EBS Self service from A to Z
Oracle EBS Self service from A to ZOracle EBS Self service from A to Z
Oracle EBS Self service from A to Z
 
Fast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packagesFast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packages
 
Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...
 
Oracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewOracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table Overview
 
Oracle R12 Purchasing setup
Oracle R12 Purchasing setupOracle R12 Purchasing setup
Oracle R12 Purchasing setup
 
Calendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementCalendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence management
 
How to create payslip through self service
How to create payslip through self serviceHow to create payslip through self service
How to create payslip through self service
 
E-Business Tax Purchasing Whitepaper
E-Business Tax Purchasing WhitepaperE-Business Tax Purchasing Whitepaper
E-Business Tax Purchasing Whitepaper
 
PO Position Hierarchy in R12
PO Position Hierarchy in R12PO Position Hierarchy in R12
PO Position Hierarchy in R12
 
32 payroll setup_part_32_(skylark_group_pvt_ltd)
32 payroll setup_part_32_(skylark_group_pvt_ltd)32 payroll setup_part_32_(skylark_group_pvt_ltd)
32 payroll setup_part_32_(skylark_group_pvt_ltd)
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...
 
Training Guide Oracle EBS R12 Performance Management
Training Guide Oracle EBS R12 Performance ManagementTraining Guide Oracle EBS R12 Performance Management
Training Guide Oracle EBS R12 Performance Management
 
Oracle HRMS Fast Formula
Oracle HRMS Fast FormulaOracle HRMS Fast Formula
Oracle HRMS Fast Formula
 
Setup Oracle EBS R12 Performance Management
Setup Oracle EBS R12 Performance ManagementSetup Oracle EBS R12 Performance Management
Setup Oracle EBS R12 Performance Management
 
Oracle HRMS Document R12.
Oracle HRMS Document R12.Oracle HRMS Document R12.
Oracle HRMS Document R12.
 

Viewers also liked

Oracle Web Adi For upload item master
Oracle Web Adi For upload item masterOracle Web Adi For upload item master
Oracle Web Adi For upload item masterAhmed Elshayeb
 
Web Adi Success Story
Web Adi Success StoryWeb Adi Success Story
Web Adi Success Storyseanwfielding
 
Oracle Advance Pricing Demo
Oracle Advance Pricing DemoOracle Advance Pricing Demo
Oracle Advance Pricing Demogaurav.upmanyu
 
Web adi webcast_v3
Web adi webcast_v3Web adi webcast_v3
Web adi webcast_v3Bala Nagella
 
Instructions MINOX MD 50 Series | Optics Trade
Instructions MINOX MD 50 Series | Optics TradeInstructions MINOX MD 50 Series | Optics Trade
Instructions MINOX MD 50 Series | Optics TradeOptics-Trade
 
Customize the login homepage For Oracle EBS R12
Customize the login homepage For Oracle EBS R12Customize the login homepage For Oracle EBS R12
Customize the login homepage For Oracle EBS R12Ahmed Elshayeb
 
Hrms for beginners
Hrms for beginnersHrms for beginners
Hrms for beginnerssravan46
 
Oracle Advanced Pricing (Creating a discount modifier using qualifiers)
Oracle Advanced Pricing (Creating a discount modifier using qualifiers)Oracle Advanced Pricing (Creating a discount modifier using qualifiers)
Oracle Advanced Pricing (Creating a discount modifier using qualifiers)Ahmed Elshayeb
 
R12 india localization guide
R12 india localization guideR12 india localization guide
R12 india localization guidekingshuk_goswami
 
R12.2.4 india localization setup
R12.2.4 india localization setupR12.2.4 india localization setup
R12.2.4 india localization setupKrithivasan Nagarajan
 
105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-apps105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-appsShivakumar Karajagi
 

Viewers also liked (12)

Oracle Web Adi For upload item master
Oracle Web Adi For upload item masterOracle Web Adi For upload item master
Oracle Web Adi For upload item master
 
Web Adi Success Story
Web Adi Success StoryWeb Adi Success Story
Web Adi Success Story
 
Oracle Advance Pricing Demo
Oracle Advance Pricing DemoOracle Advance Pricing Demo
Oracle Advance Pricing Demo
 
Web adi webcast_v3
Web adi webcast_v3Web adi webcast_v3
Web adi webcast_v3
 
2 model eer
2 model eer2 model eer
2 model eer
 
Instructions MINOX MD 50 Series | Optics Trade
Instructions MINOX MD 50 Series | Optics TradeInstructions MINOX MD 50 Series | Optics Trade
Instructions MINOX MD 50 Series | Optics Trade
 
Customize the login homepage For Oracle EBS R12
Customize the login homepage For Oracle EBS R12Customize the login homepage For Oracle EBS R12
Customize the login homepage For Oracle EBS R12
 
Hrms for beginners
Hrms for beginnersHrms for beginners
Hrms for beginners
 
Oracle Advanced Pricing (Creating a discount modifier using qualifiers)
Oracle Advanced Pricing (Creating a discount modifier using qualifiers)Oracle Advanced Pricing (Creating a discount modifier using qualifiers)
Oracle Advanced Pricing (Creating a discount modifier using qualifiers)
 
R12 india localization guide
R12 india localization guideR12 india localization guide
R12 india localization guide
 
R12.2.4 india localization setup
R12.2.4 india localization setupR12.2.4 india localization setup
R12.2.4 india localization setup
 
105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-apps105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-apps
 

Similar to Webadi -a_sample_implementation

Working With Sharepoint 2013 Apps Development
Working With Sharepoint 2013 Apps DevelopmentWorking With Sharepoint 2013 Apps Development
Working With Sharepoint 2013 Apps DevelopmentPankaj Srivastava
 
Data Seeding via Parameterized API Requests
Data Seeding via Parameterized API RequestsData Seeding via Parameterized API Requests
Data Seeding via Parameterized API RequestsRapidValue
 
Student result management system project using angular.pdf
Student result management system project using angular.pdfStudent result management system project using angular.pdf
Student result management system project using angular.pdfAbhilashBanki1
 
Introduction on sap security
Introduction on sap securityIntroduction on sap security
Introduction on sap securityyektek
 
Sql storeprocedure
Sql storeprocedureSql storeprocedure
Sql storeprocedureftz 420
 
Developing RIA Web Applications with Oracle ADF.pdf
Developing RIA Web Applications with Oracle ADF.pdfDeveloping RIA Web Applications with Oracle ADF.pdf
Developing RIA Web Applications with Oracle ADF.pdfsheriframadan18
 
Laravel 8 export data as excel file with example
Laravel 8 export data as excel file with exampleLaravel 8 export data as excel file with example
Laravel 8 export data as excel file with exampleKaty Slemon
 
CiviCRM API v3
CiviCRM API v3CiviCRM API v3
CiviCRM API v3Xavier dutoit
 
Apache Aries Blog Sample
Apache Aries Blog SampleApache Aries Blog Sample
Apache Aries Blog SampleSkills Matter
 
How To Manage API Request with AXIOS on a React Native App
How To Manage API Request with AXIOS on a React Native AppHow To Manage API Request with AXIOS on a React Native App
How To Manage API Request with AXIOS on a React Native AppAndolasoft Inc
 
Exploring Symfony's Code
Exploring Symfony's CodeExploring Symfony's Code
Exploring Symfony's CodeWildan Maulana
 
Retail products - machine learning recommendation engine
Retail products   - machine learning recommendation engineRetail products   - machine learning recommendation engine
Retail products - machine learning recommendation enginehkbhadraa
 
Search APIs & Universal Links
Search APIs & Universal LinksSearch APIs & Universal Links
Search APIs & Universal LinksYusuke Kita
 
Salesforce Spring 14 Release Developer Overview
Salesforce Spring 14 Release Developer OverviewSalesforce Spring 14 Release Developer Overview
Salesforce Spring 14 Release Developer OverviewRoy Gilad
 
How to Create Login and Registration API in PHP.pdf
How to Create Login and Registration API in PHP.pdfHow to Create Login and Registration API in PHP.pdf
How to Create Login and Registration API in PHP.pdfAppweb Coders
 
Oracle Concurrent Program Setup document
Oracle Concurrent Program Setup  documentOracle Concurrent Program Setup  document
Oracle Concurrent Program Setup documentvenkatesh gurusamy
 

Similar to Webadi -a_sample_implementation (20)

Working With Sharepoint 2013 Apps Development
Working With Sharepoint 2013 Apps DevelopmentWorking With Sharepoint 2013 Apps Development
Working With Sharepoint 2013 Apps Development
 
Data Seeding via Parameterized API Requests
Data Seeding via Parameterized API RequestsData Seeding via Parameterized API Requests
Data Seeding via Parameterized API Requests
 
Student result management system project using angular.pdf
Student result management system project using angular.pdfStudent result management system project using angular.pdf
Student result management system project using angular.pdf
 
Introduction on sap security
Introduction on sap securityIntroduction on sap security
Introduction on sap security
 
Php frameworks
Php frameworksPhp frameworks
Php frameworks
 
Sql storeprocedure
Sql storeprocedureSql storeprocedure
Sql storeprocedure
 
Developing RIA Web Applications with Oracle ADF.pdf
Developing RIA Web Applications with Oracle ADF.pdfDeveloping RIA Web Applications with Oracle ADF.pdf
Developing RIA Web Applications with Oracle ADF.pdf
 
Sathya K
Sathya KSathya K
Sathya K
 
Laravel 8 export data as excel file with example
Laravel 8 export data as excel file with exampleLaravel 8 export data as excel file with example
Laravel 8 export data as excel file with example
 
CiviCRM API v3
CiviCRM API v3CiviCRM API v3
CiviCRM API v3
 
Apache Aries Blog Sample
Apache Aries Blog SampleApache Aries Blog Sample
Apache Aries Blog Sample
 
How To Manage API Request with AXIOS on a React Native App
How To Manage API Request with AXIOS on a React Native AppHow To Manage API Request with AXIOS on a React Native App
How To Manage API Request with AXIOS on a React Native App
 
Exploring Symfony's Code
Exploring Symfony's CodeExploring Symfony's Code
Exploring Symfony's Code
 
Retail products - machine learning recommendation engine
Retail products   - machine learning recommendation engineRetail products   - machine learning recommendation engine
Retail products - machine learning recommendation engine
 
Search APIs & Universal Links
Search APIs & Universal LinksSearch APIs & Universal Links
Search APIs & Universal Links
 
Salesforce Spring 14 Release Developer Overview
Salesforce Spring 14 Release Developer OverviewSalesforce Spring 14 Release Developer Overview
Salesforce Spring 14 Release Developer Overview
 
Old WP REST API, New Tricks
Old WP REST API, New TricksOld WP REST API, New Tricks
Old WP REST API, New Tricks
 
How to Create Login and Registration API in PHP.pdf
How to Create Login and Registration API in PHP.pdfHow to Create Login and Registration API in PHP.pdf
How to Create Login and Registration API in PHP.pdf
 
What is sap security
What is sap securityWhat is sap security
What is sap security
 
Oracle Concurrent Program Setup document
Oracle Concurrent Program Setup  documentOracle Concurrent Program Setup  document
Oracle Concurrent Program Setup document
 

Recently uploaded

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel AraÃējo
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Recently uploaded (20)

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

Webadi -a_sample_implementation

  • 1. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com ADI Set Up Steps The Basic Mandatory step before starting with the ADI Set Up is to enable Security settings in Internet Explorer, Word, Excel as follows:- (a) Word:- (i)Tools->Macro->Security->Security Level tab->check low button (ii)Tools->Macro->Security->Trusted Publishers tab->check Trust Access to Visual Basic Project checkbox also. (b) Excel:- Same as above (c) Internet Explorer:- (i) Tools->Internet Options-> Security-> Custom Level-> Initialize and script ActiveX controls not marked as safe-> Prompt (ii) Tools->Internet Options-> Security-> Custom Level-> Automatic prompting for file downloads-> enable (iii) Tools->Internet Options-> Security-> Custom Level-> Use Pop-up Blocker-> Disable Requirement: 1. Need to download all the applicant details who does not have SIT values using Oracle WEBADI for specific business group 2. Need to insert SIT values for the applicants data which is downloaded 3. Need to upload the applicant’s data to which changes have been done. 4. Need to check weather the data is updated or not from the front end. 1) Create a new view to retrieve data for the applicants http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 2. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com Who does not contain SIT VALUES? CREATE OR REPLACE VIEW XXGENAPPSITDETAILS_V AS SELECT DISTINCT papf.first_name Applicant_First_Name, papf.last_name Applicant_Last_Name, papf.applicant_number, pav.name vacnacy_name, NULL person_analysis_id, NULL CEDS_Attended, NULL CEDS_Writing_Score, NULL CEDS_Reading_Score, NULL CEDS_Listening_Score, NULL CEDS_Free_Speach_Score, NULL HAWK_Attended, NULL object_version_number FROM per_all_people_f papf, per_all_assignments_f paaf, per_all_vacancies pav, APPS.per_person_types ppt, PER_PERSON_TYPE_USAGES_F pptuf WHERE papf.business_group_id = ppt.business_group_id and papf.business_group_id = paaf.business_group_id and papf.person_id = paaf.person_id and paaf.vacancy_id = pav.vacancy_id and pav.business_group_id = paaf.business_group_id AND papf.business_group_id IN (SELECT business_group_id FROM per_business_groups WHERE name = 'Genpact Guatemala' ) AND pptuf.person_id = papf.person_id and pptuf.person_type_id = ppt.person_type_id AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT') AND sysdate BETWEEN papf.effective_start_date AND papf.effective_end_date AND (papf.person_id,pav.name) NOT in (SELECT papf.person_id, pac.SEGMENT1 Vacancy_Number FROM apps.per_person_analyses ppa, apps.per_analysis_criteria pac, per_all_people_f papf, APPS.per_person_types PPT , per_person_type_usages_f pptuf, fnd_id_flex_structures FIFS, per_business_groups bg WHERE ppa.business_group_id= bg.business_group_id AND bg.NAME = 'Genpact Guatemala' AND pptuf.person_id = papf.person_id AND ppt.person_type_id = pptuf.person_type_id AND fifs.id_flex_num = PPA.ID_FLEX_NUM AND FIFS.id_flex_structure_code = 'XX_CEDS_GUATEMALA' AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT') and papf.person_id=ppa.person_id and ppa.analysis_criteria_id=pac.analysis_criteria_id and sysdate BETWEEN papf.effective_start_date and papf.effective_end_date AND TRUNC(sysdate) BETWEEN pptuf.EFFECTIVE_START_DATE AND pptuf.EFFECTIVE_END_DATE ) minus SELECT DISTINCT papf.first_name Applicant_First_Name, http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 3. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com papf.last_name Applicant_Last_Name, papf.applicant_number, pav.name vacnacy_name, NULL person_analysis_id, NULL CEDS_Attended, NULL CEDS_Writing_Score, NULL CEDS_Reading_Score, NULL CEDS_Listening_Score, NULL CEDS_Free_Speach_Score, NULL HAWK_Attended, NULL object_version_number FROM per_all_people_f papf, per_all_assignments_f paaf, per_all_vacancies pav, APPS.per_person_types ppt, PER_PERSON_TYPE_USAGES_F pptuf WHERE papf.business_group_id = ppt.business_group_id and papf.business_group_id = paaf.business_group_id and papf.person_id = paaf.person_id and paaf.vacancy_id = pav.vacancy_id and pav.business_group_id = paaf.business_group_id AND papf.business_group_id IN (SELECT business_group_id FROM per_business_groups WHERE name = 'Genpact Guatemala' ) AND pptuf.person_id = papf.person_id and pptuf.person_type_id = ppt.person_type_id AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT') AND sysdate BETWEEN papf.effective_start_date AND papf.effective_end_date AND (papf.person_id,pav.name) in (SELECT papf.person_id, pac.SEGMENT1 Vacancy_Number FROM apps.per_person_analyses ppa, apps.per_analysis_criteria pac, per_all_people_f papf, APPS.per_person_types PPT , per_person_type_usages_f pptuf, fnd_id_flex_structures FIFS, per_business_groups bg WHERE ppa.business_group_id= bg.business_group_id AND bg.NAME = 'Genpact Guatemala' AND pptuf.person_id = papf.person_id AND ppt.person_type_id = pptuf.person_type_id AND fifs.id_flex_num = PPA.ID_FLEX_NUM AND FIFS.id_flex_structure_code = 'XX_CEDS_GUATEMALA' AND upper(PPT.USER_PERSON_TYPE) IN ('APPLICANT') and papf.person_id=ppa.person_id and ppa.analysis_criteria_id=pac.analysis_criteria_id and sysdate BETWEEN papf.effective_start_date and papf.effective_end_date AND TRUNC(sysdate) BETWEEN pptuf.EFFECTIVE_START_DATE AND pptuf.EFFECTIVE_END_DATE ) http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 4. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com Concepts Integrator – This is the definition that stores the information about the action the user wishes to perform. For example, downloading specific data to a spreadsheet for viewing or to modify and upload back to the database. For ADE users, this equated to the Style. API – Application Programming Interface. This is the pl/sql interface by which data is validated and uploaded into Oracle HRMS. You would associate an api with an integrator if it was intended to either create new data in the application or update data that had been previously downloaded. See Oracle HRMS Configuring,Reporting and System Administration manual for a list of supported apis. View – A view is an object by which you can query data on a table or tables. If the action you are intending to perform involves downloading data, you must associate a view with the integrator. If you are using Create style APIs, you do not require a view. You can elect to use a seeded view, for example, PER_PEOPLE_V, to use with your integrator. However, if the integrator is for updating data, then it is recommended that you create your own views and remember to include the OBJECT_VERSION_NUMBER, and any other In/Out parameters used by your chosen API. One thing to beware of is the use of Aliases in views if you are downloading from a form. For example,if you use an alias for Applicant_Name called Starter, and then use a restrictive query in the form on Applicant Name before running the integrator in Web ADI, you will get the following error in the BNE log. BneBaseSQL.executeBneQuery: Exception while running query. Error Code: 904, Message: ORA-00904: "APPLICANT_NAME": invalid identifier The column APPLICANT_NAME has been overwritten by the alias in the definition loaded into the BNE tables. Layout – This is where the user selects the columns to be displayed in the spreadsheet or Word document from the API and/or View used by the integrator. An integrator can have more than one layout defined for it. You can choose which one to use when you create your document. Mapping – the mapping definition links the data source to the api columns. If no view is specified against the integrator or no text file used to load data, then no mapping is needed. When the data source is a view, the mapping is created automatically, however if a text file is being used then a mapping needs to be manually defined to associate each column in the file (source) to the relevant api parameter (target). See example c) in section, A Step by Step Guide to Creating HRMS Integrators. īƒ  Login to Oracle Apps http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 5. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select Oracle WEB ADI Responsibility īƒ  Click on Create Document īƒ  Select Excel 2003 option from the viewer īƒ  Click on Next button http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 6. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select Integrator “HR Integrator Setup” īƒ  Click on Next button -īƒ  Select Layout as “Integrator Setup” īƒ  Click on Next button http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 7. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select Content as „None” īƒ  Click on Next button īƒ  Click on create document button http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 8. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com -īƒ  click on open Detail information for column heading in the above Template 1. Upl - ignore 2. Metadata Type - select List of Values from Oracle menu 3. or right click on mouse.Choose UPDATE 4. Application Short Name- Choose your Application Short Name 5. (see Getting Started) 6. Integrator User Name - Enter a name for your integrator 7. (eg Update Asg Details) 8. View Name - Create your own view, but must include 9. object_version_number from http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 9. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com 10. per_all_assignments_f. See Getting 11. Started. 12. Form Name - GENERAL 13. API Package Name - HR_ASSIGNMENT_API 14. API Procedure Name - UPDATE_EMP_ASG_CRITERIA 15. Interface User Name - Enter a unique name 16. Interface Param List - Enter a unique name 17. API Type - select List of Values from Oracle menu 18. or right click on mouse.Choose PROCEDURE 19. API Return Type - ignore Metadata Type : UPDATE Application Short name : PER Intergrator User name : XXTEST_SITAPP View name : XXGENAPPSITDETAILS_V Form Name : GENERAL API Package Name : XX_GENGUATAPPLSIT_PKG API Procedure Name : XX_GENGUATAPPLSIT_PRC Interface User Name : XXTEST_SITAPP Interface Parameter List Name : XXTEST_SITAPP API Type : PROCEDURE Note : Interface User Name and Interface Parameter List Name should be same as Integrator name īƒ  goto menu Oracleīƒ upload http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 10. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  If upload is successful it will show in green colour which as shown below īƒ  Goto home page of Oracle Webadi responsibility http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 11. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com -īƒ  Click on Create Documnet īƒ  Select excel 2003 option http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 12. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select HR Maintain Integrator Form Function Association īƒ  Click on Next button īƒ  Select Form Function Associations option īƒ  Click on Next button īƒ  Select Form Function Associations option īƒ  Click on Next button http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 13. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Give Application Short name (#App_short_name) īƒ  Give Integrator Short name (#integrator_name) īƒ  Click on Next continue īƒ  Click on Create document button http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 14. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Form Function Template (3) Define a Form Function like Function : XXTEST_SITAPP_WEBADI User Function name : XXTEST_SITAPP_WEBADI http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 15. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com Properties : SSWA Servlet Function Web HTML: oracle.apps.bne.webui.BneApplicationService Note: SELECT Integrator_code FROM BNE_INTEGRATORS_TL WHERE user_name LIKE „XXTEST_SITAPP‟ (< Integrator Name >) Parameters: bne: page=BneCreateDoc&bne: integrator=800 :< Integrator_code> Parameters: bne: page=BneCreateDoc&bne: integrator=800:GENERAL_1420_INTG http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 16. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  System Administrator īƒ  Requestsīƒ Define īƒ  Query Oracle Web Adi responsibility īƒ  Copy Menu Name http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 17. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Query Menu Name īƒ  Add the defined function name (#function_name) to menu īƒ  Goback to Form Function template (#Form_Function) Integrator Application Shot name: PER Integrator User name: XXTEST_SITAPP Form Function: XXTEST_SITAPP_WEBADI http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 18. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Goto menu Oracleīƒ  Upload īƒ  Goto Oracle Web Adi Responsibility home page īƒ  Select Define Layout http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 19. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select the Defined Integrator Name īƒ  Click go īƒ  Provide suitable layout name and unique layout key īƒ  Click Continue http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 20. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select all the fields which need to populate in the layout. īƒ  Select the fields which are defined in the Procedure parameters. īƒ  Goto Oracle Web Adi Responsibility home page īƒ  Select Define Mapping http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 21. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com Click go īƒ  Define Mapping īƒ  Provide mapping name and number of fields to be mapped http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 22. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Here mapping is done for defined view columns and procedure parameters īƒ  Click on Lookup and Click on apply button http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 23. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Goto īƒ  System Administration īƒ  Requestsīƒ  Responsibility īƒ  Query the responsibility to which webadi template to be attached īƒ  Query genpact Guatemala irec hiring team http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 24. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  copy the menu name. īƒ  Add the function to menu īƒ  Goto Genpact Guatemala Irec Hiring Team Responsibility īƒ  Click Genpact Guatemala Web Adi http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 25. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Select Excel 2003 īƒ  Click Next īƒ  Select the mapping name which we have defined īƒ  Click Continue http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 26. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Click Create Document īƒ  Click Open īƒ  Here it displays all the applicant details who does not have SIT values http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 27. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Before inserting SIT values for a specific applicant http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 28. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Applicant does not contain SIT values http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 29. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Insert SIT values to the applicant “Sambit Swain” CEDSATTENDED1 = „Y‟ CEDSWRITINGSCORE1 = 2 CEDSREADINGSCORE1 = 2 CEDSLISTININGSCORE = 4 CEDSFREESPEACHSCORE = 5 HAWKATTENDED = „Y‟ http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 30. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  goto menu īƒ  Oracleīƒ Upload īƒ  Select Flagged rows option http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 31. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  click close īƒ  Check after uploading SIT values http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com
  • 32. Title http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com īƒ  Here SIT values for the applicant is updated. http://oracleapps-atechniciansview.blogspot.com/ Author : Ashish Harbhajanka Email : ashish1234u@gmail.com