oracle-adf

ADF integration with EBS

送分小仙女□ 提交于 2020-01-22 17:01:12
问题 I have developed an application in Oracle adf and now I want to integrate this application with e-business suite. so please let me know anyone knows the process? 回答1: I got solution for how to integrate ADF page with EBS and also Session Management. This below link has usefull for me. http://mistech.pixnet.net/blog/post/365709524-adf-%E6%95%B4%E5%90%88%E6%96%BC-%28-integrate-%29-oracle-ebs-r12 Or do below step for more description. Step 01: Create java classes. Java Class:ConnectionProvide,

Validating Username and Password in ADF mobile application

蹲街弑〆低调 提交于 2020-01-21 14:35:08
问题 I am developing a simple login page in adf mobile application. following is the piece of code in login (amx) page right now. <amx:panelGroupLayout id="panelGroupLayout2"> <amx:inputText value="#{viewcontrollerBundle.USER_NAME}" label="#{viewcontrollerBundle.USER_NAME}" id="UserName" showRequired="true" required="true"/> <amx:inputText id="inputText2" required="true" showRequired="true" secret="true" label="#{viewcontrollerBundle.PASSWORD}"/> </amx:panelGroupLayout> Once the user enters the

af:inputFile is not calling valueChangeListener method

心不动则不痛 提交于 2020-01-16 14:24:13
问题 Summarize the problem I'm trying to upload an image to a blob in the database and have been following various blogs online to do so. Provide background including what you've already tried I've tried enclosing the input file on a form but I get the warning:- "Only one af:form is supported per page. This warning later escalates to a server exception error and I can't enter said page. Show some code <af:panelFormLayout id="pfl1"> <f:facet name="footer"/> <af:form id="f1" usesUpload="true"> <af

JDeveloper 12c doesnt show ADF mobile extension

試著忘記壹切 提交于 2020-01-15 16:40:58
问题 I am newbie in java programming world. I want to try ADF mobile. After reading some post saying upgrade or get latest JDeveloper, I decide to get JDeveloper12c from oracle website. My problem is, my JDeveloper 12c does not show any extension ADF mobile even though I followed the check update instruction. I have tried downloading adf mobile zip file but it does not support JDeveloper 12c. I do not know what to do now. 回答1: Use the version of JDev that does support ADF Mobile: here. You may

JDeveloper 12c doesnt show ADF mobile extension

非 Y 不嫁゛ 提交于 2020-01-15 16:36:54
问题 I am newbie in java programming world. I want to try ADF mobile. After reading some post saying upgrade or get latest JDeveloper, I decide to get JDeveloper12c from oracle website. My problem is, my JDeveloper 12c does not show any extension ADF mobile even though I followed the check update instruction. I have tried downloading adf mobile zip file but it does not support JDeveloper 12c. I do not know what to do now. 回答1: Use the version of JDev that does support ADF Mobile: here. You may

JDeveloper 12c doesnt show ADF mobile extension

微笑、不失礼 提交于 2020-01-15 16:34:29
问题 I am newbie in java programming world. I want to try ADF mobile. After reading some post saying upgrade or get latest JDeveloper, I decide to get JDeveloper12c from oracle website. My problem is, my JDeveloper 12c does not show any extension ADF mobile even though I followed the check update instruction. I have tried downloading adf mobile zip file but it does not support JDeveloper 12c. I do not know what to do now. 回答1: Use the version of JDev that does support ADF Mobile: here. You may

JDeveloper 12c doesnt show ADF mobile extension

喜夏-厌秋 提交于 2020-01-15 16:34:26
问题 I am newbie in java programming world. I want to try ADF mobile. After reading some post saying upgrade or get latest JDeveloper, I decide to get JDeveloper12c from oracle website. My problem is, my JDeveloper 12c does not show any extension ADF mobile even though I followed the check update instruction. I have tried downloading adf mobile zip file but it does not support JDeveloper 12c. I do not know what to do now. 回答1: Use the version of JDev that does support ADF Mobile: here. You may

Accessing an Object from other Method

情到浓时终转凉″ 提交于 2020-01-06 06:49:13
问题 I am trying to access view objects from Java method. These objects are not viewed in my page. so I cant use getter and setter methods. Is there a way I can retrieve data from these view objects using SQL queries? 回答1: Accessing view objects from the view layer is not a good practice.How ever if the required view object which you need to access is added to application module then you can access that from the model layer methods(VOImpl and VORowImpl) pertaining to the view object used in the

how to insert into multiple tables in adf?

≯℡__Kan透↙ 提交于 2020-01-06 05:57:31
问题 i have Table1 with 5 columns and corresponding viewObject1 ID Value1 Value2 Value3 Value4 Value5 and there was ADF Form where all those values would inserted manually with inputTexts but there is a complex enhance need to be done in this form which is : if selected RemoteSource Insted of manual mode (which was already Done) then : the 5 values will be retrieved from Another Table2 based on my selection of six Cascaded af:selectOneChoice , once selected , the InputText Will Populated with the

Test Upload File In Selenium

好久不见. 提交于 2020-01-05 09:24:08
问题 Currently i wish to run selenium for test excel upload. And my coding didn't working as expected. Just wondering how to resolve it. Every time i run the automated testing my code will be stop at this step:sendKeys("C:\Users\user\Desktop\JSPL Style Excel Upload.csv") without any error message show. Any suggestion? @Before public void setUp() throws Exception { driver = new FirefoxDriver(); baseUrl = "http://localhost:7101/"; driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS); }