OAF Invoking AOL Components

Message Single Exception throw new OAException(“FND”,”XXCUS_CPL_SUCC_MSG”,null,OAException.INFORMATION,null)  ; Bundled Exception if (pageContext.getParameter(“bundledExc”)!=null)         {           ArrayList excArrayList = new ArrayList();             OAException exp1 = new OAException(“FND”,”XXCUS_CPL_FIRST_MSG”, null, OAException.INFORMATION,null);             OAException exp2 = new OAException(“FND”,”XXCUS_CPL_SCND_MSG”, null, OAException.INFORMATION,null);            excArrayList.add(exp1) ;           excArrayList.add(exp2) ;           OAException.raiseBundledOAException(excArrayList);         } Lookup Valueset DFF KFF →Read more

OAF Different Ways of calling invoketMethod()

1.      Basic InvokeMethod without params                          OAApplicationModule am = pageContext.getApplicationModule(webBean);     am.invokeMethod(“initEmployeeDetailsVO”); 2.      Calling Invoke Method with String Param     Serializable params[]={strUserID};     am.invokeMethod(“initFormMasterVO”, params); 3.      Calling Invoke Method with different data types     if(pageContext.getParameter(“go”)!=null)       {         String fromDateStr = pageContext.getParameter(“fromDate”) ;         Date fromDate = stringToDate(fromDateStr);         String toDateStr  = pageContext.getParameter(“toDate”) ;         […] →Read more

OAF Methods for View Object

Removing the selected row a.      Using RowSetIterator //The below logic should be written in the AMImpl.java public void deleteStudentRows()  {      XxcusStudentDataEOVOImpl vo = getXxcusStudentDataEOVO1();      XxcusStudentDataEOVORowImpl row = null ;      RowSetIterator rowIter = vo.createRowSetIterator(“studentData”) ;      String empNo = null;      while(rowIter.hasNext())      {         row = (XxcusStudentDataEOVORowImpl)rowIter.next(); ///FETCH         System.out.println(“ID –>” + […] →Read more

OAF_Methods for View Object

Initialization of the VO 1.      Method to execute the VO without any bind parameter // Below code has to be written in the AMImpl.java and the VO name differs based on your project setup public void initOeOrdersVO()   {     OeOrderHeadersVOImpl vo = getOeOrderHeadersVO1();     vo.executeQuery();  //OPEN operation on cursor   } 2.      Method to […] →Read more

OAF Events Handling

1.      Button (SubmitButton) //In Below Code: “showDetails” refers to the ID of the submitButton Item   if(pageContext.getParameter(“showDetails”)!=null)            {              am.invokeMethod(“showStudentData”);            } 2.      PopList         //In the belowCode  “bgPopEvent”  refers to the fireAction Property of the link Item if(eventName!=null && “bgPopEvent”.equals(eventName))      {         OAMessageChoiceBean bgPopIDBean = (OAMessageChoiceBean)webBean.findIndexedChildRecursive(“bgPopID”);         String displayStr = bgPopIDBean.getSelectionText(pageContext) ; […] →Read more

Oracle Fusion FBDI for Item Import

URL : https://docs.oracle.com/en/cloud/saas/supply-chain-and-manufacturing/19d/oefsc/product-master-data-management.html#product-master-data-management Item FBDI template has 13 sheets, but we will enter details for the below  mentioned sheet, to just populate highlevel item details ESS Job to load zip file into Interface Tables Select the zip file, which got generated from FBDI template Click Submit, which generates the request id Import Process To Load […] →Read more

Oracle Fusion Item Creation

N: Product Management –> Product Information Management Product Information Management Page Let’s create the item from Using –> Create Item Page (Task) Enter the : Organization, Number of Items, Item Class, Item Template  Click on Ok Below screen is shown Click on + and add an image for item Check the item attributes, which are […] →Read more

UnixBook_For OracleERP

Basic Unix Commands   (Post1) ls — lists your files  ls -l — lists your files in ‘long format’, which contains lots of useful information, e.g. the exact size of the file, who owns the file and who has the right to look at it, and when it was last modified.  ls -a — lists all files, including the […] →Read more

Oracle Fusion Batch Loader File Formats (Mostly for Conversion) Purpose

FBDI – File based data import PBL – Payroll Batch Loader HDL – HCM Data Loader ADFDi – ADF Desktop Integration FBL – File based loader →Read more

How To Import Banks , Bank Branches and Bank Accounts In Fusion

Download Banks Spreadsheet N: Setup and Maintenance Click on Search Steps to Upload Bank, Branches & Accounts N: Setup and Maintenance  à Click on Search Search For Task: Upload Banks, Branches, and Accounts Select Data File and Click on Submit Validate the log: N: Scheduled Processes UCM/Process Details Entity UCM Import Process Interface Table Base Table […] →Read more