Missing getTaskInfos() method in worker control

In my data palette, I added a worker control to a JPF file. I can see the getTaskInfo() method but it is missing the getTaskInfos() method.
Why can't I see the getTaskInfos()?
I just downloaded the latest version of the platform a few weeks ago, so I shouldn't have outdated jars.
The quandry is that in the e2ePortal example. The worker control has the getTaskInfos() method. What is the example doing that I'm not?

Yes, I know it because I wanted to add this method manually
and I couldn't. Does somebody know what is the reason for
such limitation ?
Regards
Jan Mrzyglod
"Sompol Kiatkamolchai" <[email protected]> wrote:
>
I think it cannot. because there is no task-complete property in TaskControl
like
in TaskWorkerControl. but task-abort appear in both controls.
sompol
"Jan Mrzyglod" <[email protected]> wrote:
Hi,
Is that possible to call completeTask() method but
from task control (not from worker control) ?
There is abbort() method there, so is'n it possible
to call complete() method ?
Regards
Jan Mrzyglod

Similar Messages

  • Implementation of static methods in Custom Controls

    I'm using Custom Java Controls to implement business objects in a workshop web application.
    I've designed a number of static methods into the object model for logically static operations (i.e. operations related to the Business object but not requiring an instance).
    Since workshop generates the control interface as a java interface, it is not possible to declare static methods on the control interface. I have tested implementing the interface as an abstract class and setting @editor-info:code-gen control-interface="false" on the control. This seems to work, but then we lose code generation.
    Other options include:
    - Put the static method on the Impl and call directly (don't like this, breaks encapsulation)
    - Make it non-static (don't like this, prevents compiler checks for refs to non-static members)
    Has anyone found an elegant way to do this in workshop without losing code gen features? Any ideas welcome...
    TIA
    Jim

    Please guys someone tell me the answer for this question. I guess its a valid question, though I feel that the answer to this question must be quiet easy since somewhere the methods must have been getting implemented.
    Please let me know who does that and how and when!!!
    Hoping for an explanation to this now

  • Need help getting Main method to work...

    Hello everyone, I have a problem, I have a GUI that I need to run (it compiles fine, but will not run.) I am very new to Java and programing in general so go easy on me. I think I am just missing something simple here. I am going to post the basic code and see if you all can help...the issue is in written in red to help you identify my problem...
    public class LagersGUI extends JFrame implements ActionListener,Serializable
    {color:#0000ff}private {color}JTextArea {color:#339966}textArea{color};
    {color:#0000ff}private {color}JButton {color:#339966}start,
    next,
    previous,
    last;{color}
    JLabel {color:#339966}imageLabel{color};
    {color:#0000ff}private static{color} LagersAddInfo {color:#339966}inv{color} = {color:#0000ff}new {color}LagersAddInfo();
    {color:#808080} /**
    * @param arg0
    * @throws HeadlessException
    */{color}
    {color:#0000ff}public {color}LagersGUI( String arg0 ) {color:#0000ff}throws {color}HeadlessException
    {color:#0000ff}super{color}( {color:#ff9900}"Inventory GUI" {color});
    {color:#339966}textArea{color} = {color:#0000ff}new {color}JTextArea( 800,800 );
    JScrollPane scrollPane = new JScrollPane( {color:#339966}textArea{color} );
    textArea.setEditable( {color:#0000ff}false {color});
    scrollPane.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_ALWAYS );
    scrollPane.setPreferredSize( new Dimension( 600, 100 ) );
    JPanel cp = new JPanel();
    cp.setSize( 400, 100 );
    cp.setLayout( new BorderLayout() );
    cp.add( scrollPane,BorderLayout.{color:#339966}CENTER{color} );
    JPanel buttonPanel = new JPanel();
    JPanel buttonPanel1 = new JPanel();
    {color:#339966}start{color} = new JButton( {color:#ff9900}"Start"{color} );
    {color:#339966}start{color}.addActionListener( {color:#0000ff}this {color});
    {color:#339966} next{color} = new JButton( {color:#ff9900}"Next" {color});
    {color:#339966} next{color}.addActionListener( {color:#0000ff}this {color});
    {color:#339966}previous{color} = new JButton( {color:#ff9900}"Previous"{color} );
    {color:#339966} previous{color}.addActionListener( {color:#0000ff}this {color});
    {color:#339966} last{color} = new JButton({color:#ff9900} "Last"{color} );
    {color:#339966} last{color}.addActionListener( {color:#0000ff}this {color});
    buttonPanel.add( {color:#339966}start {color});
    buttonPanel.add( {color:#339966}next {color});
    buttonPanel.add( {color:#339966}previous {color});
    buttonPanel.add( {color:#339966}last {color});
    cp.add( buttonPanel,BorderLayout.{color:#339966}SOUTH {color});
    cp.add( buttonPanel1,BorderLayout.{color:#339966}NORTH {color});{color:#999999}///NewInventory_Test/logo.gif{color}
    java.net.URL u = {color:#0000ff}this{color}.getClass().getClassLoader().getResource({color:#ff9900}"\\NewInventory_Test\\logo.gif"{color});
    ImageIcon icon = {color:#0000ff}new {color}ImageIcon(u);
    {color:#339966}imageLabel{color} = new JLabel( {color:#ff9900}"Inventory View"{color}, icon, JLabel.{color:#339966}CENTER {color});
    cp.add({color:#339966} imageLabel{color},BorderLayout.{color:#339966}WEST{color} );
    {color:#0000ff}this{color}.setContentPane( cp );
    {color:#0000ff}this{color}.setContentPane( cp );
    {color:#0000ff}this{color}.setTitle( "Inventory Program IT 215" );
    {color:#0000ff}this{color}.setDefaultCloseOperation( JFrame.{color:#339966}EXIT_ON_CLOSE{color} );
    {color:#0000ff} this{color}.{color:#339966}textArea{color}.setText({color:#339966}inv{color}.getStart());
    {color:#0000ff} this{color}.setSize(200, 200);
    {color:#0000ff}this{color}.pack();
    {color:#0000ff}this{color}.setVisible( {color:#0000ff}true {color});
    @Override
    {color:#0000ff}public void{color} actionPerformed( ActionEvent e )
    // TODO Auto-generated method stub
    {color:#0000ff} if {color}( e.getActionCommand().equals({color:#ff9900} "Start"{color} ) )
    textArea.setText( {color:#339966}inv{color}.getStart() );
    {color:#0000ff}if {color}( e.getActionCommand().equals( {color:#ff9900}"Next" {color}) )
    textArea.setText({color:#339966}inv{color}.getNext());
    {color:#0000ff}if{color} ( e.getActionCommand().equals( {color:#ff9900}"Previous" {color}) )
    textArea.setText( {color:#339966}inv{color}.getPrevious() );
    {color:#0000ff} if{color} ( e.getActionCommand().equals( {color:#ff9900}"Last"{color} ) )
    textArea.setText({color:#339966}inv{color}.getLast());
    {color:#0000ff}public static {color}LagersAddInfo getInv()
    {color:#0000ff}return{color:#339966} {color}{color}{color:#339966}inv{color};
    {color:#0000ff}public static void{color} setInv( LagersAddInfo inv )
    LagersGUI.{color:#339966}inv {color}= inv;
    {color:#808080} /**
    * @param args
    */{color}
    {color:#0000ff}public static void {color}main( String[] args )
    LagersGUI {color:#ff0000}_inventory_ {color}= {color:#0000ff}new {color}LagersGUI( {color:#ff9900}"Inventory"{color} );{color:#ff0000}//** here's the part I'm having trouble with...inventory is an * unused variable. What other way could I get {color:#000000}main{color} */ method to work?{color}
    }

    This forum can format your code for you and make it easier to read. Simply click the CODE button and two tags will appear. Then paste your code in between the tags. Important, copy code form your source not first post.                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Help! MBeanCreationException: Unable to create bean...missing create method

    I am trying to configure an authentication provider with ant using the wlconfig task. This has been working fine until recently and I have no idea what could be wrong. The ant script has not changed and I'm not sure what information to post to be more useful. Hopefully someone has had this problem or can point me in the right direction.
    Below is the target I'm trying to run. I fails with the following exception. I am able to configure the provider manually through the console, however, but this is not an option for our deployments:
    Caused by: weblogic.management.MBeanCreationException: Unable to create new bean of type com.xxx.MyAuthenticator for myDomain:Name=myDomain,Type=Domain:missing create method
    Caused by: java.lang.NoSuchMethodException: MyAuthenticator(java.lang.String,)
         <target name="configure-auth-provider">
              <echo message="Configuring Security Auth Provider..."/>
              <taskdef name="wlconfig" classname="weblogic.ant.taskdefs.management.WLConfig" classpath="${weblogic.jar}"/>
              <wlconfig url="t3://${weblogic.host}:${weblogic.listen.port}" username="${weblogic.username}" password="${weblogic.password}">
                   <create type="com.xxx.MyAuthenticator" domain="Security" name="MyAuthenticator" property="MyAuthenticator">
                        <set attribute="ControlFlag" value="OPTIONAL"/>
                   </create>
                   <query type="weblogic.management.security.Realm" domain="Security" name="MyCustomRealm">
                        <set attribute="AuthenticationProviders" value="MyAuthenticator"/>
                   </query>
              </wlconfig>
              <echo message="Security Auth Provider configured Successfully."/>
         </target>

    Hi Balaji,
    LSMW using IDOC is similar to using flat file method. Here you are getting data from IDOC container and mapping data with Idoc segments insted of flatfile column.
    Hope this is what you are looking for. If helpful then don’t forget to reward me for that
    Darshan

  • My DVR security sofware that I access remotely uses a "dvr .ocx" file....when I try it in Firefox , either the latest non beta (3.6.1.5) or the new beta version (4.0 rc) it will NOT work as it says the plugin is missing... it works in IE 8,but not IE9...

    My machine is Top of the range (my Company builds them so it had better be :) )
    Amd 1100t , 8gb ram , Windows 7 64 bit etc, etc...
    The is not a hardware problem , but a software problem with FF...Any help would be appreciated as I hate using IE 8 for anything at all :( but I have to keep it on my machines just to run my remote security cameras at my Computer shop ???
    Original question...as question length is limited ...not very bright that limit by the way :(
    "My DVR security sofware that I access remotely uses a "dvr .ocx" file....when I try it in Firefox , either the latest non beta (3.6.1.5) or the new beta version (4.0 rc) it will NOT work as it says the plugin is missing... it works in IE 8 (unfortunately) but not IE9...
    As I own a Computer company I am fairly computer literate but cannot find a plugin that allows this to work in Firefox.... but I would have expected it to work in the new Firefox :(
    All the best, Brett :)

    The longer this thread continues, the more ancillary comments you throw in that aren't directly pertinent to your problem with your DVR software not working with Firefox 4.0. Sorry, I don't intend to continue with this discussion.
    I do agree that ''something'' needs to be done better with regards to plugins for Firefox, but I do disagree with you as to whose responsibility that ''something'' is.

  • Facing problem in creating socket in a method from an already deployed application exe while same method is working from another exe from same environment from same location.

    Dll Created In: - MFC VC
    6.0
    Application Exe Developed In:
    - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit
    / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component which
    has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting Error
    code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming on
    client side so what we did, we created a driver in C# which invokes same method from same environment(on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest: -
    We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not working,
    actually  it is not executing Create () method,
    I will give snippet of the code for understanding the problem because we are not finding any kind solution for it.
    Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
    DWORD errorCode = GetLastError();
    CString errorMessage ;
    errorMessage.Format("%lu",errorCode);
    ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
    return  IS_ERR_WINDOWS;
    Note: -
    CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
    ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
    if(!Create())
    ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
     n_Err = GetLastError();
     ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
    return NET_INIT;
    ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
    if(!AsyncSelect(0))
    n_Err = GetLastError();
    return NET_INIT;
    if(!Connect(strIP,n_Port))
    n_Err = GetLastError();
    ErrorLog(n_Err,0,"ConnectTS","");
    return SERVER_NOT_CONNECTED;
    Code description: -
    From
    int GETImage_MT() method we call Initialize() method and pass client machine IP and Port and there we call
    ConnectTS() method, In this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System 
    0
    Note: - According to logs, problem is coming in Create method().
    Here 0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll
    from different exe, it is working fine and we are facing any kind of problem. While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

    Pointer variable was already initialized; I have mention in code; kindly assist us.
    Dll Created In: - MFC VC 6.0
    Application Exe Developed In: - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component
    which has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting
    Error code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming
    on client side so what we did, we created a driver in C# which invokes same method from same environment (on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest:
    - We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not
    working, actually it is not executing Create () method, I will give snippet of the code for understanding
    the problem because we are not finding any kind solution for it. Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
                       DWORD errorCode = GetLastError();
                       CString errorMessage ;
                       errorMessage.Format("%lu",errorCode);
                       ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
                       return  IS_ERR_WINDOWS;
    Note: - CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
              ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
              if(!Create())
                       ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
              n_Err = GetLastError();
              ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
                      return NET_INIT;
              ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
              if(!AsyncSelect(0))
                       n_Err = GetLastError();
                       return NET_INIT;
              if(!Connect(strIP,n_Port))
                       n_Err = GetLastError();
                       ErrorLog(n_Err,0,"ConnectTS","");
                       return SERVER_NOT_CONNECTED;
    Code description: - From int GETImage_MT() method
    we call Initialize() method and pass client machine IP and Port and there we call ConnectTS() method, In
    this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System  0
    Note: - According to logs, problem is coming in Create method(). Here
    0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll from different exe, it is working fine and we are facing any kind of problem.
    While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

  • How do i restore missing files for i work 09 as it is asking me to reinstall but cant find the disk?

    how do i restore missing files for i work 09 as it is asking me to reinstall but cant find the disk?

    Hello Jessica472,
    It sounds like you need to recover some missing files but do not have access to the iWork '09 disc you used to install it. If you have a Time Machine backup and know what files you need, you can use the "Restoring specific files or folders" section of the following article to restore them:
    Mac Basics: Time Machine backs up your Mac
    If you do not have Time Machine, you will need the disc to reinstall the software suite.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • SignatureValidate() method not working in acrobat reader 5

    Hi All,
    Will the method signatureValidate() work in acrobat reader 5. the same pdf validation which is working in acrobat reader versions >= 7 and not working in version 5. Kindly let me know if there are any alternative methods available to detect the digital signature field changes in lower versions. Urgent help required on this.
    thanks in advance.

    Did you ever figure this out? I am also having problems with the "No Hand" javascript which turns off the (not very helpful) page-forward hand icon (a hand symbol with a down arrow) which confuses our users when in fullscreen mode. We create interactive PDFs and everything worked fine up to Acrobat X/Reader X. Now in XI it doesn't allow the internal link icon (pointing finger) nor weblink icon (pointing finger with W) to appear. It just remains a plain o’ hand icon no matter what you mouse over even though there are links present.

  • Videos with avi format do not open under Lion and receive "missing codec" message.  Worked fine prior to Lion installation.

    Videos with avi format do not open under Lion and receive "missing codec" message.  Worked fine prior to Lion installation.

    http://perian.org
    You may also need to install QuickTime Player 7.6.6 to open the files.

  • Missing definitions for block storage control

    Hey guys,
    I am trying to transfer my material from a temporary storage bin in storage type 001 to a bin i created in storage type 004. When I go into transaction lt04 and try to do the transfer i get the following message.
    <i>Missing definitions for block storage control (B1 001 1)
    Message no. L3082
    Diagnosis
    Certain information on block storage control is missing in your system definition.
    There is no definition for the sectioning of the storage bins in block storage according to storage bin type, storage unit type and block code.
    Procedure
    Contact your system administrator about this error. Note down the parameters in the error message and the situation that caused the error.</i>
    I have setup the storage bin types and storage unit types. I do not know what the block code is however and I do not really understand what is being asked of me. Any help would be greatly appreciated. Thanks in advance

    Hi Fernando,
    I had the same problem, everything was correct but the system showed the same error. I changed the material data in transaction MM03, View warehouse Management 1, i inserted values the field "Bulk storage indicator" and the field "Allow addition to existing stock".  Other change was in the Storage Bin in transaction LS02N, the storage Bin type should be the same as Storage Unit Type defined in SPRO (Define Strategy for Bulk Storage)
    Best regards,
    Alejandro

  • Ui:hyperlink and ui:button "action" methods stopped working in IE

    Hi
    I'm developing my application for few months, but few days ago all ui:hyperlink and button action methods stopped working in IE. They are not invoked at all... No javascript errors, everything works fine in Firefox. Can anybody tell me where to look as I'm sitting 6h in front of screen and cannot find anything wrong...
    The only thing I have changed was adding a filter which changes encoding to UTF-8. Class below:
    * CharsetFilter.java
    * Created on 17 maj 2007, 11:18
    package tools.filter;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    * @author  Michal
    * @version
    public class CharsetFilter implements Filter {
        public CharsetFilter() {
        private String encoding;
        public void init(FilterConfig config) throws ServletException {
            encoding = config.getInitParameter("requestEncoding");
            if( encoding==null )
              encoding="UTF-8";
        public void doFilter(ServletRequest request, ServletResponse response, FilterChain next)
             throws IOException, ServletException
    //          request.setCharacterEncoding(encoding);
              next.doFilter(request, response);
         * Destroy method for this filter
        public void destroy() {
    }

    anyways, it can't be a problem becasue new application is facing the same problem and there's no filter. I'm using tomcat 5.5.18 on jboss 4.0.5.

  • Ui:hyperlink action methods stopped working in IE

    Hi
    I'm developing my application for few months, but few days ago all ui:hyperlink action methods stopped working in IE. They are not invoked at all... No javascript errors, everything works fine in Firefox. Can anybody tell me where to look as I'm sitting 6h in front of screen and cannot find anything wrong...

    anyways, it can't be a problem becasue new application is facing the same problem and there's no filter. I'm using tomcat 5.5.18 on jboss 4.0.5.

  • HT2500 my mail account is crashing again and again. I've closed and reopened mail, and the computer, and nothing seems to work. I'm not missing any updates. Working on macpro, version osX 10.7.4

    my mail account is crashing again and again. I've closed and reopened mail, and the computer, and nothing seems to work. I'm not missing any updates. Working on macpro, version osX 10.7.4

    Hello:
    Try rebuilding the mailbox (it takes awhile).
    Barry

  • Implementation missing for method "%_ONLAYOUT". "%_ONLAYOUT".

    Hi,
    After transport, getting an a dump while executing BSP applicaiton in QA.
    After looking at the dump I understand its because of syntax error in CL_O23Y5C5WOKYR0QODKI9XCZJLYKX.
    Error: Implementation missing for method "%_ONLAYOUT".
    I am not sure when this object is generated, while developing the BSP application. [I found this class/interface in DEV, QA environment; But there is no entry for this class in any of the transports]. 
    To resolve the issue, Do I need to re-transport? If yes, which componant should be transported again.
    Hints Please. I have to close this as early as possible.
    Thanks,
    Pramod.

    Thanks for all your inputs.
    Somehow the problem is resolved after activating the class.
    btw, Class which I refered in my posting is related to a View in BSP application that we have devloped.
    Regards,
    reddy

  • Error : Implementation missing for method 'Constructor'

    Hi all,
    I have a class(Class Z_CL_A)  with attribute 'G_myattribute' and with
    1. constructor importing 'L_myattribute'.
    2. method 'my_method' exporting table 'EXP_mytable'  type 'mytable_type'
    There are no syntax errors in 1 & 2.But when I try to activate the class,it says 'implementation missing for method "Constructor".
    Here is my class:
    class Z_CL_A definition
      public
      create public .
    " public components of class Z_CL_A
    " do not include other source files here!!!
    public section.
      data G_myattribute type myattribute_type .
      methods CONSTRUCTOR
        importing
          L_myattribute type myattribute_type .
      methods MY_METHOD
        exporting
          !EXP_mytable type mytable_type .
    Please let me know what is missing in the class
    Thanks
    Kukku

    You have defined a class with variables and methods but what about implementation. Every class should have a definition and an implementation part.
    class Z_CL_A implementation
    methods CONSTRUCTOR
    importing L_myattribute type myattribute_type .
    *Put your code here.*
    end method.
    methods MY_METHOD
    exporting !EXP_mytable type mytable_type .
    *Put your code here.*
    End method.
    Edited by: Naren K Someneni on Jul 16, 2008 3:52 PM

Maybe you are looking for

  • Interest calculation on Capital expenditure Internal Order

    Hello, We have an requirement that if capital internal Order is more that $ 250,000 and project runs more than 90 days, then interest should calculate on balance amount. I know that SAP does calculate interest on PS system. But I am quite doubt on ca

  • JavaFX and JDK 1.7.x? (x=latest minor build as of 5/13)

    Good morning. I was playing around with building a standalone GUI app last night and wanted to test drive JavaFX 2.0 as the tool to build the UI. After reading through the documentation on the download site, I downloaded the JDK version 1.7.x (64 bit

  • Help with Skype on my Kindle

    I just payed for this on my kindle how do I use it to call? It seems like I don't have an account at all

  • Pencast Pdf file audio doesn't work

    I have to download lectures from my professor for class and she has a Pencast pdf file with audio but it does not work on my computer. I have tried opening it up on Safari and Chrome but neither have worked. I have downloaded the most recent version

  • OBIEE-can we link two dimension tables belonging to different fact tables?

    Hi , I have just started with OBIEE concepts....need your views on this issue: Fact 1 -> Dim 1, Dim2,Dim3 and so on.. Fact 2 -> Dim a, Dim b,Dimc and so on... If I link Dim1 and Dim a with a valid key ,would that distort the star schemas to slowflake