Reg. METHOD redefnition

Hi,
I tried to inherit a subclass from super class. In se38, i created supercalss and subclasses as local classes. Here in subclass, the system was expecting the keyword REDEFINITION while resuing the same method in the subclass.
But when i do the same thing in SE24 for creating a Global Class, the system was not asking to redefine the method.
Can anyone tell me what could the difference?
Regards,
Prabu

Hi Marcin,
Thanks for your response.
I still have the same doubt.
See the following code, i ahve used the only method DISPLAY in both superclass and subclass. Here if i remove the keyword REDEFINITION from the subclass. I am getting the error as " method DISPLAY as already been declared "
class lc_superclass DEFINITION.
  PUBLIC SECTION.
  METHODS : display.
ENDCLASS.
CLASS lc_superclass IMPLEMENTATION.
  METHOD display.
  ENDMETHOD.
ENDCLASS.
CLASS lc_subclass DEFINITION INHERITING FROM lc_superclass.
  PUBLIC SECTION.
  METHODS : display REDEFINITION.
ENDCLASS.
CLASS lc_subclass IMPLEMENTATION.
  METHOD display.
  ENDMETHOD.
ENDCLASS.
Can you please correct if i am wrong.
Regards,
Prabu

Similar Messages

  • Reg: Method to get the apache port details ?

    Team,
    We are developing OAF custom page with inline report.
    From this inline report , we have a requirement to navigate to another OAF page.
    For navigating to another OAF page we need to mention the total hyperlink, we are able to get the host name details but could not get the port details.
    Ex : Host Name: dev1.xxtempel.com
    Please provide your thoughts.
    Regards
    Sridhar

    I don't think dynamically we can obtain the port number , how ever you can frame the URL using java concurrent program .
    --Keerthi                                                                                                                                                                                                                                                                                   

  • The method is undefined for the type

    HI I have a javabean class:
    package database;
    import java.util.*;
    import java.io.*;
    public class CompanyFormBean implements Serializable{
      private String companyparentid;          
      private String companyname;               
      private Hashtable errors;
      //private String notify;
    public boolean validate() {
        boolean allOk=true;
        if (companyname.equals("")) {
          errors.put("companyname","Please enter your Company Name.");
          companyname="";
          allOk=false;
        return allOk;
      public String getErrorMsg(String s) {
        String errorMsg =(String)errors.get(s.trim());
        return (errorMsg == null) ? "":errorMsg;
    // public CompanyFormBean(){}
      public CompanyFormBean() {
        companyparentid          = "";
        companyname               = "";
        errors = new Hashtable();
      public String getCompanyparentid() {
        return companyparentid;
      public String getCompanyname() {
        return companyname;
      public void setCompanyparentid(String fcompanyparentid) {
        companyparentid = fcompanyparentid;
      public void setCompanyname(String fcompanyname) {
        companyname = fcompanyname;
      public void setErrors(String key, String msg) {
        errors.put(key,msg);
    }after the form is submitted I try to display the values
    <%@ page import="database.CompanyFormBean" %>
    <jsp:useBean id="formHandler" class="database.CompanyFormBean" scope="session"/>
    <html>
    <head>
    <title></title>
    <meta name="Generator" content="EditPlus">
    <meta name="Author: Irene Nessa" content="">
    <meta name="Keywords" content="">
    <meta name="Description: creates a new member account" content="">
    </head>
    <body>
    <form name="reg" method="post" action="ProcessMemberRegistration.jsp" onsubmit='return formValidator()'>
    <table>
         <tr>
         <td>Create A New Account</td>
         </tr>
         <tr>
              <td>Existing Company</td>
              <td>
                   <input type="text" name="companyparentid" value='<%=formHandler.getCompanyparentid()%>'>
                   <!-- <select name="campanyparentid" onchange="setcompany(this)">
                        <option>Better Homes</option>
                        <option>Emaar</option>
                   </select>
                   <font size="" color="#FF0033"><b><i>OR</i></b></font>-->
              </td>
         </tr>
         <tr>
              <td>Company Name *</td>
              <td><input type="text" name="companyname" value='<%=formHandler.getCompanyname()%>'>
              </td>
         </tr>
    </table>
    <br>
         <br>
         <input type="reset">  <input type="submit" value='Check Form' />
    </form>
    </body>
    </html>But I keep getting the following errors:*The method getCompanyparentid() is undefined for the type CompanyFormBean* But it defind and the bean class complies. Any idea what am doing wrong.
    thanks.

    I actually got the same error in the same situation the following is my error and Stacktrace. I was trying to using AJAX to retrieve the message from DB and display it in a text area when user click a radio button. It works well untill I add a new method getMessage(String), please help!
    Mar 2, 2009 10:01:03 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 22 in the jsp file: /getmessage.jsp
    The method getMessage(String) is undefined for the type Item
    19: <jsp:setProperty name="items" property="categoryId" value="<%=catid%>" />
    20: <jsp:setProperty name="items" property="effectiveIndicator" value="C" />
    21: <%
    22: String msg = items.getMessage(id);
    23: String decodedmsg = new String(msg.getBytes("iso-8859-1"), "Big5");
    24: System.out.print("MSG: " + msg);
    25: System.out.print("Deco-MSG: " + decodedmsg);
    An error occurred at line: 26 in the jsp file: /getmessage.jsp
    The method write(String) is undefined for the type HttpServletResponse
    23: String decodedmsg = new String(msg.getBytes("iso-8859-1"), "Big5");
    24: System.out.print("MSG: " + msg);
    25: System.out.print("Deco-MSG: " + decodedmsg);
    26: response.write(decodedmsg);
    27: %>
    Stacktrace:
    at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:85)
    at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
    at org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:415)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:308)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:273)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:566)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:308)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:517)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:216)
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
    at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:283)
    at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:767)
    at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:697)
    at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:889)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:686)
    at java.lang.Thread.run(Thread.java:619)

  • Acrobat Reader X Disable Protection mode

    Hi All,
    i need some help with this freaky Acrobat Reader X version.
    We have currently  ~1000 computers with different old versions of AR (form 6 to 9)
    We need to upgrade to 10.0.1 version all PC's
    Will use SCCM for distributing the package.
    OK... everything here seems good but ... a lot of problems and erros appear.
    First we've installed on test group of 10 pc's the AR 10.0.0
    all users start complainig that they can't open the pdf's from our file servers.
    Solution - bring the patch 10.0.1
    After that all users start complaining that they can't print - Windows Error - Acrobat need to be closed !
    Solution - Protection mode disabled.
    My questions :
    1. How can I distribute both the Package of Acrobat and the update together with SCCM
    All my tries and reaings failed !!!
    i've try different methods and no success
    msiexec /i /q \\server\d$\Workstation Baseline\AcrobatReaderX\AcroRead.msi TRANSFORMS="AcroRead.mst" PATCH=\\server\d$\Workstation Baseline\AcrobatReaderX\adbeRdrUpd1001_Tier1.msp
    this do not work for me This is in SCCM program
    2. How can i disable through Adobe Wizard the Protection Mode ?
    I know how to do it manually but is not acceptable this way - i can't communicate with 1000 users to do this manually
    I know how to disable it from registry with GPO , but i can't disable it before installation, also i can't disable it on all PC's after installation, because it will take several days to complete for all pc's and this "hole" of some days will stop the work of our end-users.
    Any fresh ideia is wellcome. Also any help
    Thanks

    hey,
    had similar issues with protection mode.
    found we can do it 2 ways, 1. via registry entry, or 2. via an ADM.
    sorry cannot remember the referenced posts for the fixes below...
    we use the adm so that users cannot change it, and so that updates dont reset it.
    note that the adm has only a few settings, and i dont know the code for any other settings.
    1. - REG method:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Acrobat Reader\10.0\FeatureLockDown]
    "bProtectedMode"=dword:00000000
    REM: Above line Disables Protected Mode on startup
    2. - ADM Template method
    please note, just copy and paste into a text file and rename as .adm.
    remember that on the last section of the code below, change the "YOUR HEADER HERE" bit to what you want to use to find it in the GPO manager once you add the template.
    CLASS USER
    CATEGORY !!YOUR_COMPANY_NAME_GOES_HEREHeader
    CATEGORY "Adobe Reader 10"
    CATEGORY "Preferences"
    CATEGORY "General"
    CATEGORY "Application Startup"
    POLICY "Show splash screen"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Originals"
    EXPLAIN !!ExplainNosplash
    VALUENAME "bDisplayedSplash"
    VALUEON NUMERIC 0
    VALUEOFF NUMERIC 1
    END POLICY
    POLICY "Enable Protected Mode at startup"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Privileged"
    EXPLAIN !!ExplainProtectedMode
    VALUENAME "bProtectedMode"
    VALUEON NUMERIC 1
    VALUEOFF NUMERIC 0
    END POLICY
    END CATEGORY
    END CATEGORY
    CATEGORY "Identity"
    POLICY "Organization Name"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Identity"
    EXPLAIN !!ExplainOrgName
    PART "Organization Name." EDITTEXT
    VALUENAME "tCorporation"
    END PART
    END POLICY
    END CATEGORY
    CATEGORY "Internet"
    CATEGORY "Internet Options"
    POLICY "Connection speed"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\AVGeneral"
    EXPLAIN !!ExplainConnection
    PART "Connection speed." DROPDOWNLIST REQUIRED
    VALUENAME "iConnectionSpeed"
    ITEMLIST
    NAME "56kbps" VALUE NUMERIC 56000
    NAME "LAN" VALUE NUMERIC 10000000 DEFAULT
    END ITEMLIST
    END PART
    END POLICY
    END CATEGORY
    END CATEGORY
    CATEGORY "Spelling"
    CATEGORY "Dictionaries"
    POLICY "Dictionaries"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling"
    EXPLAIN !!ExplainDictionary
    PART "Default Dictionary" DROPDOWNLIST
    VALUENAME "tDictionaryName"
    ITEMLIST
    NAME "English (United Kingdom)" VALUE "English (United Kingdom)"
    ACTIONLIST
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling"
    VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 7
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling\cDictionaryOrder"
    VALUENAME "t0" VALUE "English (United Kingdom)"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling\cDictionaryOrderID"
    VALUENAME "i0" VALUE NUMERIC 7
    END ACTIONLIST
    NAME "English (United States)" VALUE "English (United States)"
    ACTIONLIST
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling"
    VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 2
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling\cDictionaryOrder"
    VALUENAME "t0" VALUE "English (United States)"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Spelling\cDictionaryOrderID"
    VALUENAME "i0" VALUE NUMERIC 2
    END ACTIONLIST
    END ITEMLIST
    END PART
    END POLICY
    END CATEGORY
    END CATEGORY
    CATEGORY "Units"
    POLICY "Page Units"
    KEYNAME "Software\Adobe\Acrobat Reader\10.0\Originals"
    EXPLAIN !!ExplainPageUnits
    PART "Page unit" DROPDOWNLIST REQUIRED
    VALUENAME "iPageUnits"
    ITEMLIST
    NAME "Points" VALUE NUMERIC 0
    NAME "Inches" VALUE NUMERIC 1
    NAME "Millimeters" VALUE NUMERIC 2 DEFAULT
    NAME "Centimeters" VALUE NUMERIC 3
    NAME "Picas" VALUE NUMERIC 4
    END ITEMLIST
    END PART
    END POLICY
    END CATEGORY
    END CATEGORY
    END CATEGORY
    CATEGORY "Adobe Acrobat 10"
    CATEGORY "Preferences"
    CATEGORY "General"
    CATEGORY "Application Startup"
    POLICY "Show splash screen"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Originals"
    EXPLAIN !!ExplainNosplash
    VALUENAME "bDisplayedSplash"
    VALUEON NUMERIC 0
    VALUEOFF NUMERIC 1
    END POLICY
    END CATEGORY
    END CATEGORY
    CATEGORY "Identity"
    POLICY "Organization Name"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Identity"
    EXPLAIN !!ExplainOrgName
    PART "Organization Name." EDITTEXT
    VALUENAME "tCorporation"
    END PART
    END POLICY
    END CATEGORY
    CATEGORY "Internet"
    CATEGORY "Internet Options"
    POLICY "Connection speed"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\AVGeneral"
    EXPLAIN !!ExplainConnection
    PART "Connection speed." DROPDOWNLIST REQUIRED
    VALUENAME "iConnectionSpeed"
    ITEMLIST
    NAME "56kbps" VALUE NUMERIC 56000
    NAME "LAN" VALUE NUMERIC 10000000 DEFAULT
    END ITEMLIST
    END PART
    END POLICY
    END CATEGORY
    END CATEGORY
    CATEGORY "Spelling"
    CATEGORY "Dictionaries"
    POLICY "Dictionaries"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling"
    EXPLAIN !!ExplainDictionary
    PART "Default Dictionary" DROPDOWNLIST
    VALUENAME "tDictionaryName"
    ITEMLIST
    NAME "English (United Kingdom)" VALUE "English (United Kingdom)"
    ACTIONLIST
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling"
    VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 7
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling\cDictionaryOrder"
    VALUENAME "t0" VALUE "English (United Kingdom)"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling\cDictionaryOrderID"
    VALUENAME "i0" VALUE NUMERIC 7
    END ACTIONLIST
    NAME "English (United States)" VALUE "English (United States)"
    ACTIONLIST
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling"
    VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 2
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling\cDictionaryOrder"
    VALUENAME "t0" VALUE "English (United States)"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Spelling\cDictionaryOrderID"
    VALUENAME "i0" VALUE NUMERIC 2
    END ACTIONLIST
    END ITEMLIST
    END PART
    END POLICY
    END CATEGORY
    END CATEGORY
    CATEGORY "Units"
    POLICY "Page Units"
    KEYNAME "Software\Adobe\Adobe Acrobat\10.0\Originals"
    EXPLAIN !!ExplainPageUnits
    PART "Page unit" DROPDOWNLIST REQUIRED
    VALUENAME "iPageUnits"
    ITEMLIST
    NAME "Points" VALUE NUMERIC 0
    NAME "Inches" VALUE NUMERIC 1
    NAME "Millimeters" VALUE NUMERIC 2 DEFAULT
    NAME "Centimeters" VALUE NUMERIC 3
    NAME "Picas" VALUE NUMERIC 4
    END ITEMLIST
    END PART
    END POLICY
    END CATEGORY
    END CATEGORY
    END CATEGORY
    END CATEGORY
    [strings]
    YOUR_COMPANY_NAME_GOES_HEREHeader=YOUR HEADER HERE
    ExplainNosplash="When disabled, the program will not display a splashscreen on startup.\n\nWhen enabled, the splashscreen will be displayed."
    ExplainProtectedMode="When disabled, the program will not run in Protected Mode.\n\nWhen enabled, Protected Mode will run, and may cause compatibility errors.\n\nSee http://kb2.adobe.com/cps/860/cpsid_86063.html for more details."
    ExplainOrgName="Enter the organization name by typing it in."
    ExplainConnection="To specify LAN, set the connection speed to 10000000."
    ExplainPageUnits="Set the page unit from the drop-down list.\n\nThe default is millimeters."
    ExplainDictionary="Used to specify the default dictionary to spell checking."

  • ADF UIX Partial page rendering

    Hi
    I am facing a mysterious problem with partial page rendering in ADF UIX.
    My page contains a <header> H1 and inside this there are two headers(H2 and H3).
    The partial page rendering is in the header H2 and is working fine.
    When i remove the below header H3 the partial page rendering ceases to work and get stuck.
    Pasting the full code below. Please suggest.
    <?xml version="1.0" encoding="windows-1252"?>
    <!-- $Header: registration.uix 115.4.51.4 2009/12/14 13:10:05 kcthirum noship $ -->
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:myTemplate="http://xmlns.oracle.com/xhub"
    xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j"
    xmlns:data="http://xmlns.oracle.com/cabo/marlin" expressionLanguage="el">
    <!--This UIX page is used as a tutorial page for new developers, which is why it has a lot of comments-->
    <!--This section describes the ApplicationModule used by this page, and any View Objects that are used to display UI components or are used in any of the event handlers-->
    <bc4j:registryDef>
    <!-- XhubRegAM is the application module used by the entire Registration flow. defFullName is just the class. configName is the Configuration, which always has the pattern <AM name>Local -->
    <bc4j:rootAppModuleDef name="XhubRegAM"
    defFullName="oracle.apps.snw.tpadmin.server.XhubRegAM"
    configName="XhubRegAMLocal" releaseMode="stateful">
    <bc4j:viewObjectDef name="TpProfilesRegVO" rangeSize="1" autoCreate="false"/>
    <bc4j:viewObjectDef name="UsersRegVO" rangeSize="1" autoCreate="false"/>
    <!--IdentifierDomainsView drives the dropdown list of Identifier Types-->
    <bc4j:viewObjectDef name="IdentifierDomainsView" rangeSize="20"/>
    <!--XhubTerritoriesTlView drives the dropdown list of Countries-->
    <bc4j:viewObjectDef name="XhubTerritoriesTlView" rangeSize="300"/>
    </bc4j:rootAppModuleDef>
    </bc4j:registryDef>
    <!--We import the template file xhub.uit, which has code to display the tabs, subtabs, global buttons, etc., appropriately-->
    <templates xmlns="http://xmlns.oracle.com/uix/ui">
    <templateImport source="xhubtpadmin.uit"/>
    </templates>
    <content>
    <!--in this section we define all of the methods and ResourceBundle classes that we want to reference as data sources in our page-->
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!--We use the TextProvider class to display ANY text to the user. All text is controlled in the database and cached on the middle tier. This allows for translation and for customization of text-->
    <data name="textSource">
    <bundle class="oracle.apps.snw.uicommon.TextProvider"/>
    </data>
    <!--This method provides information about the hub-->
    <data name="adminInfo">
    <method class="oracle.apps.snw.tpadmin.webui.AdminInfo"
    method="getAdminInfo"/>
    </data>
    </provider>
    <contents>
    <document>
    <!--This section defines the html metadata, usually just the page title-->
    <metaContainer>
    <head title="${textSource.REGISTRATION}"/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <!--This next tag indicates that everything inside of it should be encapsulated in the "rootChild" node of the template page-->
    <myTemplate:xhubTpAdminPageLayout selectedTab="1">
    <contents>
    <!-- this will contain any validation errors after form submission -->
    <messageBox automatic="true"/>
    <!--The form tag is necessary for any kind of form handling. This particular form performs some javascript validation before submitting-->
    <form name="reg" method="POST">
    <contents>
    <!--The javascript that is executed on form submission-->
    <!-- we cannot implicitly determine that events will be triggered because submit buttons are outside the form scope, so add the placeholder explicitly -->
    <formParameter name="event"/>
    <!-- define the bc4j scope of all child elements-->
    <bc4j:rootAppModuleScope name="XhubRegAM">
    <contents>
    <!-- a top-level header -->
    <header text="${textSource.REGISTRATION}">
    <contents>
    <!-- always used OraInstructionText, not <tip>, for explanation messages-->
    <styledText styleClass="OraInstructionText"
    text="${textSource.REG_PAGE_EXPLAIN}"/>
    <!-- a second-level header -->
    <header text="${textSource.REG_COMPANY_INFO}">
    <contents>
    <stackLayout>
    <contents>
    <!-- the labeledFieldLayout is the correct layout for vertically-stacked labeled fields-->
    <labeledFieldLayout id="TpPartialDetails" width="80%"
    labelWidth="40%">
    <contents>
    <messageChoice name="OracleAppsCustFlag"
    prompt="Oracle Apps Customer"
    required="yes" statePreserved="true"
    selectedValue="${ui:defaulting(uix.pageProp.OracleAppsCustFlag, 'select')}">
    <primaryClientAction>
    <firePartialAction event="buyorsup"
    targets="TpPartialDetails"
    formSubmitted="true"
    unvalidated="true"/>
    </primaryClientAction>
    <contents>
    <option text="-select-" value=""/>
    <option text="${textSource.YES}" value="Y"/>
    <option text="${textSource.NO}" value="N"/>
    </contents>
    </messageChoice>
    <messageTextInput prompt="${textSource.ORACLE_CSI_Q}"
    name="OracleCsi"
    text="${uix.pageProp.OracleCsi}"
    rendered="${ui:defaulting(uix.pageProp.OracleCsiRender, 'false')}"/>
    <messageTextInput prompt="${textSource.YOUR_TP_NAME}"
    name="TpName"
    tip="${textSource.YOUR_TP_NAME_TIP}"
    required="no"
    text="${uix.pageProp.TpName}"
    rendered="${ui:defaulting(uix.pageProp.TradeswithTPRender, 'false')}"/>
    <messageTextInput prompt="${textSource.YOUR_TP_ALIAS}"
    name="TpAlias"
    tip="${textSource.YOUR_TP_ALIAS_TIP}"
    required="no"
    text="${uix.pageProp.TpAlias}"
    rendered="${ui:defaulting(uix.pageProp.TradeswithTPAliasRender, 'false')}"/>
    </contents>
    </labeledFieldLayout>
    </contents>
    </stackLayout>
    </contents>
    </header>
    <!--level-2 header-->
    <header text="${textSource.TP_DEFAULT_CONTACT_INFO}">
    <contents>
    <labeledFieldLayout width="80%" labelWidth="40%">
    <contents>
    <!--all of these fields default to the corresponding ctrl:page value if the user has entered a value. These values are set up in the register() handler-->
    <messageTextInput prompt="${textSource.PASSWORD_PROMPT}"
    name="Password" id="Password"
    required="yes" secret="true"
    maximumLength="32"
    text="${uix.pageProp.Password}"/>
    <messageTextInput prompt="${textSource.PASSWORD_CONFIRM_PROMPT}"
    name="PasswordConfirm"
    id="PasswordConfirm" required="yes"
    secret="true" maximumLength="32"
    text="${uix.pageProp.PasswordConfirm}"/>
    </contents>
    </labeledFieldLayout>
    </contents>
    </header>
    </contents>
    </header>
    </contents>
    </bc4j:rootAppModuleScope>
    <spacer height="10"/>
    <!--message indicating how we indicate required fields-->
    <inlineMessage required="yes"
    prompt="${textSource.REQUIRED_FIELD}"/>
    </contents>
    </form>
    </contents>
    <!--the contents of this tag will appear below the page-->
    </myTemplate:xhubTpAdminPageLayout>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    <!--event handlers-->
    <handlers>
    <!--This event is called by pressing the submit button-->
    <event name="continue">
    <bc4j:findRootAppModule name="XhubRegAM">
    <method class="oracle.apps.snw.tpadmin.webui.RegistrationHandlers"
    method="register"/>
    </bc4j:findRootAppModule>
    </event>
    <!--This event is called by pressing the Cancel button-->
    <event name="cancel">
    <!-- finding the ApplicationModule causes it to be checked out from the ApplicationPool. It is released after rendering completes. -->
    <bc4j:findRootAppModule name="XhubRegAM">
    <!-- rollback the current transaction -->
    <bc4j:rollback/>
    <!-- forward to the summary page -->
    <go name="main"/>
    </bc4j:findRootAppModule>
    </event>
    <!--the * event is called whenever the page is accessed and no other event is called-->
    <event name="buyorsup">
    <bc4j:findRootAppModule name="XhubRegAM">
    <!--This method sets the context of the page, namely the scope of the country dropdown view object-->
    <method class="oracle.apps.snw.tpadmin.webui.RegistrationHandlers"
    method="isBuyerorSupplier"/>
    </bc4j:findRootAppModule>
    </event>
    <event name="*">
    <bc4j:findRootAppModule name="XhubRegAM">
    <!--This method sets the context of the page, namely the scope of the country dropdown view object-->
    <method class="oracle.apps.snw.tpadmin.webui.RegistrationHandlers"
    method="setContext"/>
    </bc4j:findRootAppModule>
    </event>
    </handlers>
    </page>
    Please suggest if you know of any documentation on ADF UIX partial page rendering.
    ADF UIX has very little documentation online and finding it hard to debug this issue.
    It ll be of great help.
    Thanks
    Kamal

    Hi Jason,
    As of EA9, all rendered components support a partialTriggers attribute. This attribute takes a list of master component IDs. If any of the master components are updated via a partial event, the dependent component will be rerendered in the partial update.
    If you are on an earlier release, you should upgrade.
    Thanks,
    Jeanne

  • Missing task manager

    When I press Ctrl +  Shift + Esc to enter the task manager it does
    not open the task manager window. I miss the  taskmgr.exe  file
    from that path HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image
    File Execution Options\
    What should I do?

    is there any error message "Task Manager has been disable by your administrator" , maybe this caused by virus, but we can do it manually after make sure PC no viruses
    Method 1 :
     - Click Start,
     - Run
     - type :
     REG add HKCUSoftwareMicrosoftWindowsCurrentVersionPolicies System /v DisableTaskMgr /t REG_DWORD /d 0 /f
    Method 2 :
     download and run this REG fix and double-click it.
    http://windowsxp.mvps.org/reg/EnableTM.reg
    Method 3 :
     - Click Start
     - Run
     - type Regedit.exe
     - find :
     HKEY_CURRENT_USER Software Microsoft Windows CurrentVersion Policies System
     - at the right panel, delete value DisableTaskMgr
     - Close Regedit.exe
    Method 4:
     using Group Policy Editor - for Windows XP Professional (maybe worked with Windows 7)
     - Click Start
     - Run
     - type gpedit.msc and click OK.
     Find : User Configuration / Administrative Templates / System / Ctrl+Alt+Delete Options / Remove Task Manager
     - Double-click Remove Task Manager
     - Set the policy to Not Configured

  • Overloading functions and procedures

    Let's imagine I have the following types :
    create type T1 as object (...) ;
    create type T2 under T2 (...) ;
    Is it possible to define differents implementations of the same function, for instance :
    create function F (t IN T1) begin ... end ;
    create function F (t IN T2) begin ... end ;
    It is one of the main features coming from the object technology, but it seems that Oracle9i doesn't implement it...

    Regis,
    Method loading IS supported in Oracle9i. Please check out the documentation at http://206.204.21.139/otndoc/oracle9i/901_doc/appdev.901/a88878/adobjbas.htm#464358.
    Regards,
    Geoff
    Let's imagine I have the following types :
    create type T1 as object (...) ;
    create type T2 under T2 (...) ;
    Is it possible to define differents implementations of the same function, for instance :
    create function F (t IN T1) begin ... end ;
    create function F (t IN T2) begin ... end ;
    It is one of the main features coming from the object technology, but it seems that Oracle9i doesn't implement it...

  • Forever taking synchronization

    Hi here,
    I have one short and important question. I did copy all my apps from iPhone to computer to new installed iTunes. Did not use this before. I have old 3G 8 GB one, but cuz started to have problems as my all undefault apps stopped working and crashing even before opening, I got advice to installs one app no matter as much which through iTunes, and then restart, which should fix it, but I decided also reorganized all apps and delete some, so I did as I told, copied all to iTunes, rearranged, and marked only apps i want now. Then started syncing, but it is sincing 5 hours and still is not even 30% done of backup, which is only 1st step.
    Is normal it takes so much, if I have only 5,5 GB data taking memory? What does ppl with 32 giga data backup? taking a week? Pls tell me if all is normal or unnormal. I am truly afraid, my iphone is for trash. My iOS is just 3.4 or something as that, but without ending this process i cant upgrade. Already am afraid from upgrading though.

    I wanted to mention in case it is important to anyone else, that switching from the RAID on mode to Auto/ATA using the mergeide.reg method described in the thread below fixed all my outstanding iTunes problems (in particular the synchronization issue).
    http://www.dellcommunity.com/supportforums/board/message?board.id=xpsdeskhddr&message.id=4506
    As a caution, Mircrosoft doesn't support this method. It is more of a use at your own risk kind of thing, and it takes a modicum of technical competence to follow the instructions.
    I want to apologize if I have implied in the thread or other posts that Apple needs to get its act together. My current opinion after getting such a dramatic improvement from changing a BIOS setting is that most if not all my issues have been a result of a conflict between Vista and a commonly used RAID controller.
    --dsdreamer
    Dell XPS Intel Core 2 Duo   Other OS   Windows Vista

  • Reg : BDC issue while updating infotype 40 inside BADI class method

    Hi Friends,
         Actually in my badi class, there is a method where i need to save the infotype fields including comment fields.. So with BDC recording i recorded screen fields and passing the pernr internal table values to recorded pernr values.. by doing this im getting error and so BDC is not upadting the data.. moreover if i pass directly pernr number within single quotes, BDC is working fine and data is getting updated..
    bdc_field        'RP50G-PERNR'   pernr.  --> Error Message while calling transaction through BDC
    bdc_field        'RP50G-PERNR'   '00001234'  ---> updating successfully..
    1. Tell me whether the issue is with BADI or wat ? means we cant able to use BDC inside badi ?
    2. I also tried changing my internal table value of pernr to type 'C' of length 8.. eventhough its showing error..
    Please tell me what i need to do .... ?

    Hi  Dilek Ersoz Adak ,
      I also tried with that, but getting same error..  Below is my error im getting while updating BDC through call transaction,
    1     PA30     SAPMP50A     1000     E     K     PBAS_SERVICE     001     HRADMIN     EPPRELE 00000121     HRAdministrator          CTU     RP50G-PERNR
              Person is treated already by the HR Administrator

  • Reg msg "Payment method(s) are not allowed for this program".

    Hi...
    I am copying a standard program RFFOES_T (Print program for bank transfer) into a custom program. When i try to execute the custom program it gives me a msg saying
    "Payment method(s) are not allowed for this program".
    Can you please Provide a solution for this problem.
    Regards,
    Indira.

    Indira,
    1.RFFOES_T is using Logical database PYF.Seems you have copied it as it is without changing the attributes of the program.
    2.As it is using logical database PYF  it needs to be tagged to the respective payment methods in FBZP settings as below
    FBZP
    >>Payment methods in Country
    >> in the next screen click on position and give the company code and payment method
    >> in the next screen select the corresponding payment method and click on the details(ctrlshiftf2) ie magnifying glass icon
    >>in the next screen  within  Payment Medium you will get to see two radio buttons as Payment medium workbench(uses DMEE tree structure)  and payment medium programs (uses the standard prog).Here in Payment medium Program either the standard prog or your zprogram should be tagged otherwise you will get the error message as you mentioned.
    3.Once you tag the program in the FBZP setting to the respective payment methods,after the payment run you will be able to run the program.
    4.If you don't want the program to be linked to FBZP settings then as far as my knowledge is concerned you need to avoid using logical database PYF and change the entire code using the regular database tables like reguh,regup,bkpf,bseg etc.(I think this should be the best approach)
    Thanks,
    K.Kiran.

  • Reg: Order in which view and controller methods executed

    Hi,
    I want to know in which order the following methods get executed in the intial stage of application.
    View wdinit()
    wddomodify()
    controller wdinit()
    and when a we press a button or something what is the order in which the following methods get executed.
    Action of corresponding button
    wddomodify()
    Thanks in advance.

    Hi Armin,
    Thanks for the reply.
    Just to make sure, Do u mean the on start of application the order is Controller Init(),View init()
    on some action the order is actionhandler, wddomodify().
    Thanks in advance.

  • APP- DTAUS0 method output- reg

    Hi,
    I am in configuration for a German Company, the requirement is, SAP has provided country specific payment methods like DTAUS0 for Germany, BACS for Great Britan and so,
    To configure DTAUS0 method for German company, the bank requires the output in text (string) format,
    I need help to configure APP payment through DTAUS0 (Data Medium exchange DME file ) method so that the SAP system of company can directly connect to BANK system for making payments.
    Kindly provide details how to configure the same.
    Thanks & regards,
    S. Habib Pasha.

    Habib
    You have already asked this question...
    Try this link:
    http://help.sap.com/bp_bblibrary/500/documentation/N70_BPP_03_EN_DE.doc
    Starts Page 8

  • Reg. oops...implementation of abstract method in se24...have ur ponts..

    Hi all,
    In SE24 i made an abstract class & made a method abstract successfully.
    Now i made another class that inherited my abstract class, it is showing my abstract method there.
    Now when i want to give implementation to that method, but when i double click on that system is showing "method is abstract & has not yet redefined".
    Pleas let me know..how i implement it..
    Thanx in advance..
    <b>Have ur point.s</b>

    Hi
    Inheritance Inheritance defines the implementation relationship between classes, in which one class (the subclass) shares the structure and the behavior defined in one or more other classes (superclasses). Note: ABAP Objects only allows single inheritance.
    Inheritance is a relationship, in which one class (the subclass) inherits all the main characteristics of another class (the superclass). The subclass can also add new components (attributes, methods, and so on) and replace inherited methods with its own implementations.
    <b>Single Inheritance</b>
    ABAP Objects only has single inheritance.
    A class may only have one direct superclass, but it can have more than one direct subclass. The empty class OBJECT is the root node of every inheritance tree in ABAP Objects.
    <b>Relationship between Superclasses and Subclasses</b>
    Common components only exists in  the superclass
            new components in the supercalss are automatically available in subclass
            amount of new coding is reduced ( programing by difference)
    Subclass are extremely dependent on superclases
           white box reuse – subclass must possess detailed knowledge of the implementation of the superclass
    <b>Inheritance: Syntax</b>
           Normally the only other entry required for subclasses is what has changed in relation to the direct superclass. Only additions are permitted in ABAP Objects, that  is, in a subclass you can "never take something away from a superclass". All components from the superclass are automatically present in the subclass.
    <b>Class name defination.
        public section.
             methods. First name importing some type some type
                                            returning value(value) type some type.
       private section
              data : make type string..
    Endclass.
    Class name1 definition inheriting name
    public section
           method. : get  returning value ( value) type get.
    Priavte section.
       data : max type some type
    endclass</b>
    <b> Redefining methods</b>
    The REDEFINITION statement for the inherited method must be in the same SECTION as the definition of the original method.
    If you redefine a method, you do not need to enter its interface again in the subclass, but only the name of the method.
    In the case of redefined methods, changing the interface (overloading) is not permitted; exception: Overloading is possible with the constructor.
    Within the redefined method, you can access components of the direct superclass using the SUPER reference.
    The pseudo-reference super can only be used in redefined methods.
    reward if usefull

  • Reg: Contructor and methods

    Hi all
    i am new to abap objects and i am going thro' the sap materials and i am facing some probelm in understanding the constructor part which is also  a type of method..can any one please let me know what is the difference between methods and constructors..
    Your explanations are greatly welcome instead of links.
    Thanks

    Hi,
    actualy constructor is a special method in OOABAP which is used for initialisation and it is always named as constructor.
    Constructors are of 2 type 1. CLASS or Static Constructor
                                    and 2 . Method Constructor.
    Check the following code for the use and effect of both types of constructors
    REPORT  demo_constructor_ANIRBAN.
          CLASS cl1 DEFINITION
    CLASS cl1 DEFINITION.
      PUBLIC SECTION.
        METHODS:
          add,
          constructor IMPORTING v1 TYPE i
                                v2 TYPE i,
          display.
        CLASS-METHODS:
         class_constructor.
      PRIVATE SECTION.
        DATA:
        w_var1   TYPE i,
        w_var2   TYPE i,
        w_var3   TYPE i,
        w_result TYPE i.
    ENDCLASS.                    "cl1 DEFINITION
          CLASS cl1 IMPLEMENTATION
    CLASS cl1 IMPLEMENTATION.
      METHOD constructor.
        w_var1 = v1.
        w_var2 = v2.
      ENDMETHOD.                    "constructor
      METHOD class_constructor.
        WRITE:
        / 'Tihs is a class or static constructor.'.
      ENDMETHOD.                    "class_constructor
      METHOD add.
        w_result = w_var1 + w_var2.
      ENDMETHOD.                    "add
      METHOD display.
        WRITE:
        /'The result is =  ',w_result.
      ENDMETHOD.                    "display
    endclass.
    " Main program----
    data:
      ref1 type ref to cl1.
    parameters:
      w_var1 type i,
      w_var2 type i.
      start-of-selection.
      create object ref1 exporting v1 = w_var1
                                  v2 = w_var2.
       ref1->add( ).
       ref1->d isplay( ).

  • Reg classes and methods

    hi all
    how to find the use or purpose  of CL_RECA_DDIC_DOMA  and the methods declared in it.

    Hi,
    actualy constructor is a special method in OOABAP which is used for initialisation and it is always named as constructor.
    Constructors are of 2 type 1. CLASS or Static Constructor
                                    and 2 . Method Constructor.
    Check the following code for the use and effect of both types of constructors
    REPORT  demo_constructor_ANIRBAN.
          CLASS cl1 DEFINITION
    CLASS cl1 DEFINITION.
      PUBLIC SECTION.
        METHODS:
          add,
          constructor IMPORTING v1 TYPE i
                                v2 TYPE i,
          display.
        CLASS-METHODS:
         class_constructor.
      PRIVATE SECTION.
        DATA:
        w_var1   TYPE i,
        w_var2   TYPE i,
        w_var3   TYPE i,
        w_result TYPE i.
    ENDCLASS.                    "cl1 DEFINITION
          CLASS cl1 IMPLEMENTATION
    CLASS cl1 IMPLEMENTATION.
      METHOD constructor.
        w_var1 = v1.
        w_var2 = v2.
      ENDMETHOD.                    "constructor
      METHOD class_constructor.
        WRITE:
        / 'Tihs is a class or static constructor.'.
      ENDMETHOD.                    "class_constructor
      METHOD add.
        w_result = w_var1 + w_var2.
      ENDMETHOD.                    "add
      METHOD display.
        WRITE:
        /'The result is =  ',w_result.
      ENDMETHOD.                    "display
    endclass.
    " Main program----
    data:
      ref1 type ref to cl1.
    parameters:
      w_var1 type i,
      w_var2 type i.
      start-of-selection.
      create object ref1 exporting v1 = w_var1
                                  v2 = w_var2.
       ref1->add( ).
       ref1->d isplay( ).

Maybe you are looking for

  • Add a new attribute for user provisioining on SAP R3

    Hi, I want to add a new attribute for user provisioining on SAP R3. - I have added new attribute in Process form and Resource form - I think i need to add this attribute in lookup definition of SAP attributes also need to do mapping but i am not find

  • How to Submit a Report?

    Usually when a program quits on its own a prompt will come up saying such and such quit. Cancel or Submit a Report of the problem. Is there a way to go straight to the Submit a report screen on the computer? I am having issues with my iChat connectin

  • Changing the color of the link to the current page

    How can I change the link on the current page to display a different color until the user redirects to another page. I am wanting to keep all my links visible and simply change the color of the link that the user is on. I think I am going to use the

  • Displaying Images In Dreamweaver

    when I view an page in either SPLIT or DESIGN view using Dreamweaver 8 it does not display the actual images or embedded video instead it shows the outline of the image as a grey box. I know it can be done but cannot find the option to display. How c

  • [SOLVED] Unable to upgrade libmysqlclient - Corrupted

    I cannot upgrade my libmysqlcient (5.5.10-2) to 5.5.11-1. sudo pacman -Sy libmysqlclient :: Synchronizing package databases... testing is up to date multilib-testing is up to date core is up to date extra is up to date community is up to date archlin