Problem in returns

Dears,
i got one issue now.
when i wanna to handle one sales order type of Returns Order ( sample of charges) .
then my screen show some message " copying from sales document type ZORA to ZRE1  isn't support "
how can i do?
PLZ let me know what you think
thanks,
ML

Hi,
As I understood, you are trying to create a sales order (Doc type - ZRE1) with reference to another sales document (Doc type -ZORA)
But that error comes, b'se you haven't maintained relevant copy controls from the sales doc type ZORA to  ZRE1.
Therefore first you need to set this thing in the SPRO.
Go to Tx VTAA
Then Create a new copy control from ZORA to ZRE1 to relevant item category and schedule line category.
For example check the Copy control from order type QT to OR (Quotation to Order) and get an idea before you proceed.
Once that copy control is done, try to create a new ZRE1 order and see.
Best regards,
Anupa

Similar Messages

  • A problem with return order with free goods

    Hello
    I am working on ECC 6.0
    I am facing a problem with the return order the case is I created an order of 1000 pc with inclusive free goods (w/o item generation) condition record that for every 10 pc over the 100 the customer will take  1 free pc
    1 pc = 10 $
    100 pcs = 900 $
    120 = 1080 $
    the problem when I am creating a return order with 30 pcs the system  calculate the price as if there are free goods the system returns the 30 pcs with 270 $ instead of 180 $ and it should not calculate the free goods because the remaining items are 90 pcs that should not take a free goods discount
    Regards
    Jacopo Francios

    hi ,
    Such scenerios can be tackled by different pricing procedure in return scenerio.
    See Pricing procedure Depends on sales area + customer pricing procedure + Document pricing procedure .
    So for Return document type please maintain different pricing than the normal scenerio this will solve ur problem.
    This is generally done also for tackling such scenerios.
    Thanks & Regards

  • Problem with return true and if statement

    I'm making a
    ship shooter
    game and I have a problem with the collision detection for the
    corners of the stage. When you hold down two of the arrows to move
    the ship into the corners of the screen, the ship will go past it.
    The function bellow is what I'm using to detect this collision. The
    reason I'm using a function is because it's used for the ship and
    for all the balls from the cannons (as shown in the last two lines
    of the attached code). This is the reason I need the return true,
    so the if statement can be evaluated to true and then unload the
    movieclip of the cannon ball. When I remove the return true, the
    collision works fine, but obviously my cannon balls all get stuck
    on the edges.
    Any ideas?

    Well the function is called every frame, for the ship and for
    every cannon ball that's on the screen. So it could be called about
    4 times or so per frame. The problem is that ship goes through the
    corners of the stage (btw, the green background is the stage area)
    when you go in a diagonal direction.
    Just curious...what's the unnecessary code you're talking
    about?

  • Problem with return link from html page back to css page

    Here is the site..almost ready for publication
    http://www.matriley.com/glensite/index.html
    1) Go to properties for sale
    2)Choose a suberb
    3)click on a property with a video
    4) watch the crazy video if you like
    5) Click go back to properties
    ^) Yes the page is there but the property page is now
    inactive...why?
    8)The whole thing works fine on Firefox but we do have this
    Glitch on IE
    PLEAASSE Can someone help
    Regards Matthew [email protected]
    Everything works well but for the problem return link to the
    properties page after you have gone to the video.The property page
    becomes inactive

    Your page is a monster -
    Empty Cache
    10.6K 1 HTML/Text
    1.5K 1 Stylesheet File
    985.4K 25 Images
    997.7K Total size
    27 HTTP requests
    25 images with aggregate weight of ~1MB is much too large,
    you know?
    Anyhow, I cannot reproduce your problem in IE7. Are you
    referring to IE6,
    instead?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "fredbillmatt" <[email protected]> wrote in
    message
    news:fv0m9k$a7a$[email protected]..
    > Here is the site..almost ready for publication
    >
    http://www.matriley.com/glensite/index.html
    >
    > 1) Go to properties for sale
    > 2)Choose a suberb
    > 3)click on a property with a video
    > 4) watch the crazy video if you like
    > 5) Click go back to properties
    > ^) Yes the page is there but the property page is now
    inactive...why?
    > 8)The whole thing works fine on Firefox but we do have
    this Glitch on IE
    > PLEAASSE Can someone help
    > Regards Matthew [email protected]
    > Everything works well but for the problem return link to
    the properties
    > page
    > after you have gone to the video.The property page
    becomes inactive
    >

  • Problem with return value of stored function

    Hi,
    I've made a stored function that insert a new row in a table and return the primary key (see at the end of the message the function script).
    In VS 2005 with Visual basic, using the designer, I've created a dataset containing a tableAdapter to be able to use the Pl/SQL function.
    My problem is I can't get the proper return value. The VB code below works without error except that I get 0 as value.
    What's wrong?
    Cheers,
    Sebastien
    VB code
    Dim myAddSession As New ICISDataSetTableAdapters.AddSessionTableAdapter
    Dim intSessionId As Integer
    intSessionId = myAddSession.ADD_SESSION(tbxUsername.Text, _
    tempFolder.Substring(tempFolder.LastIndexOf("\") + 1), _
    "toto", Environment.GetEnvironmentVariable("COMPUTERNAME"), _
    myLevelAccess.icisUserId, myLevelAccess.levelId)
    The debugger tells me that the ADD_SESSION function return value is Object.
    add_session PL/SQL script:
    CREATE OR REPLACE FUNCTION ICISSEC.add_session (
    orausername IN icis_session.ora_user_name%TYPE,
    ctxsessionid IN icis_session.ctx_session_id%TYPE,
    ctxsessionname IN icis_session.ctx_session_name%TYPE,
    ctxservername IN icis_session.ctx_server_name%TYPE,
    icisuserid IN icis_session.icis_user_id%TYPE,
    startlevelid IN icis_session.start_lvl_id%TYPE
    RETURN icis_session.ICIS_SESSION_ID%TYPE
    IS
    tmpvar icis_session.ICIS_SESSION_ID%TYPE;
    BEGIN
    INSERT INTO icis_session
    (ora_user_name, ctx_session_id, ctx_server_name,
    icis_user_id, start_lvl_id, ctx_session_name
    VALUES (orausername, ctxsessionid, ctxservername,
    icisuserid, startlevelid, ctxsessionname
    RETURNING icis_session_id
    INTO tmpvar;
    COMMIT;
    RETURN tmpvar;
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END add_session;

    naama wrote:
    that if a value is null to convert it to 0 ? . i mean in the part of the declaration of parameter
    Nope, can't do that in the signature. You'll need to handle that by validating the passed parameters at the start of the function.
    It's simple enough. In your case you might just as well test for NULL and fail the function like this:
        FUNCTION date_post_message(
                user_lock_in IN NUMBER,
                form_type_in IN NUMBER DEFAULT 0 ,
                date_in      IN DATE)
            RETURN BOOLEAN
        IS
            v_num NUMBER(1);
        BEGIN
            dbms_output.put_line('Value of parameters : user_lock_in : '||user_lock_in || ' : form_type_in : '||form_type_in||' : date_in : '||date_in );
            IF user_lock_in = 1 THEN
                RETURN FALSE;
            END IF;
            IF form_type_in IS NULL THEN
                RETURN FALSE;
            ELSIF form_type_in NOT IN (1,2) THEN
                RETURN FALSE;
            END IF;
            RETURN TRUE;
        EXCEPTION
        WHEN NO_DATA_FOUND THEN
            RETURN FALSE;
        END;In other use cases I would declare a local variable and process it like this:
            IF form_type_in IS NULL THEN
                l_form_type := 0;
            ELSE
                 l_form_type := form_type_in;
            END IF;Obviously the code should use the local variable rather than the parameter.
    Validating the values passed in parameters at the start of a function is good practice. If you really want to go to town, read about Design By Contract.
    Cheers, APC
    Edited by: APC on Nov 9, 2011 1:36 PM
    Added example, as requested by OP

  • Problem in returning internal table from FM in ABAP Objects

    Hi All,
    I have to return an internal table from one of the FM i created in the controller class (_IMPL) of a view.
    The problem here is, the internal table i m getting here
    is of type to a structure!.
    but i have to return it as type ref to DATA, which cant be assigned directly.
    Now, my question is.. How can i convert ..
    internal table type structure
    to
    internal table type ref to DATA.
    Thanks and Regards,
    sudeep v d.

    Hi Sudeep.
    Can you see if something like this works for you?
    DATA: dref type ref to DATA.
    FIELD-SYMBOL: <fs> type ANY.
    LOOP AT <internaltable> INTO <structure>
    ASSIGN "<component_name>" component of <structure> TO <fs>
    CREATE DATA dref type <structure>.
    dref->* = <fs>.
    ENDLOOP.

  • Scenario Help - Problem in Return Flow from RFC

    Dear Expert,
            I am new to the XI development. we are on XI 7.0PI. In one of our scenario
    we are pulling some info. from Sql database & post some documents in SAP via RFC. in this case RFC returns me the Document No. & some status from SAP which i am suppose to update back the same table row from where i have fetched this information. But the problem is the RFC does not return the Key value which i need to update the SQL table back.
          How can i solve this problem without using BPM. I cannot change the RFC since it is not in my hand. ( So that RFC can take the Key Field of SQL & return the same back which i can use in my reverse Mapping. )
    Any Global container which can hold this data from Forward Map which i can use in Reverse Map to update this SQL table.??
    Pl. Help... Waiting for the reply.
    Regards,
    Umesh

    Hi Sudheer,
    From SAP Help,
    This object enables you to cache the values that you want to read again when you next call any user-defined function in the <b>same message mapping</b>.
    In this case, the mapping programs are different. So there is no way (to my knowledge) of using GC to solve this issue. If the issue has to be solved from XI, my soln would be opting for a lookup in request and response mapping. In request mapping store the keyfield value and in response mapping, retrieve the same. Ofcourse this is <b>not</b> a much recommended way by SAP.
    A cleaner soln would be to develop a wrapper RFC (if the original RFC can not be changed) that returns the keyfield value along with the status.
    Regards,
    Jai Shankar

  • Problem in returning the object + reflection + hashMap + list

    Hi All,
    i am very new to java forums...
    i'm sorry to disturb you all.. i don't exaclty know how to raise a question in forums..
    Here my query is ::::
    i have xlsReader file,which will read the data from the xls file.
    after reading it,i am adding the contents of the xls sheet in to a Arraylist.
    then i've put the list contents in to an object array,
    then i'm invoking the getter and setter method of the javabean class.
    and i'm returning object,but object contains only the last data of the list,instead of whole contents in that object.
    the code is here,where am returnung the object.
    kindly do reply...
    Thanks in advance...:)
    public static Object setDynamicValue ( Method setter2, List columnData, Object obj2 , Method getter2 )
    Object val2=null;
    try {
    for ( int i = 0 ; i < columnData.size() ; i++ ) {
    Object obj[] =( Object [] )columnData.get(i);
    for ( int j = 0; j < obj.length; j++) {
    // System.out.println("column Data:pppp: :"+obj[j].toString());
    setter2.invoke(obj2, new Object[] {obj[j].toString() });
    val2 = getter2.invoke(obj2, new Object[0]);
    //System.out.println("output:::"+val2.toString());
    // return val2;
    System.out.println("#########################");
    }catch (IllegalAccessException e) {
    System.out.println("IllegalAccessException came :::"+e);
    } catch (IllegalArgumentException e) {
    // TODO Auto-generated catch block
    System.out.println("IllegalArgumentException came :::"+e);
    e.printStackTrace();
    } catch (InvocationTargetException e) {
    System.out.println("InvocationTargetException came :::"+e);
    // TODO Auto-generated catch block
    e.printStackTrace();
    return val2;
    here,we are returning the object val2 , but its printing only the last data of the list
    Object o1 = setDynamicValue ( setter2, columnName ,columnData, obj2,getter2 );
    System.out.println("lastvalue of the list :"+o1);
    thanks...
    plz reply..

    You are getting only the last data of the list because you does not have any mechanism to hold other values.
    Check inf your code your the following code in the inner for loop (loop with index j)
    val2 = getter2.invoke(obj2, new Object[0]);
    Even if you are capturing some value into val2, it gets replaced next time the body of for loop runs. This way you are getting only the last data.
    If you want to capture all values use arraylist. Keep adding all values to arraylist and return it. While printing iterate over arraylist and print values.
    This is not a problem related to reflection or hashMap. Just the logic you have written is incorrect.

  • Problem with return statement...

    hey guys!
    i'm new to this forum so don't be angry if i post or do something wrong :) anyway, my problem:
    i have a litle method that checks if a file exist and if it exist i want it to return true.
    the real problem is that when a if&else statement checks if the method is true or false
    it dont care if the method has returned false it just thinks it's true.
    well it's kind of hard to explain so just take a look at the code, output and then u will understand :)
    import java.io.*;
    public class task1_11 {
    public static void main(String[] args) {
        System.out.println("does file exist?");
        boolean o= check();
        if(o=false){
               System.out.println("File didn't exist");
             System.out.println("discard sending info...");
        else if (o=true){
              System.out.println("ok");
             System.out.println("Sendning information...");
             ListMovies LM = new ListMovies();
             LM.loanMovie();
             LM.go();
        else{
    public static boolean check(){
            File fi = new File("D:\\out2.txt");
    if (fi.exists()){
    System.out.println("file exist");
    System.out.println("returning true");
    return true;
    else {
    System.out.println("file don't exist");
      System.out.println("returning false");
        return false;
    }when i run this code the output is:
    does file exist?+
    file don't exist+
    returning false+
    ok+
    Sendning information...+

    I guess it should be like this:
    import java.io.*;
    public class task1_11 {
    public static void main(String[] args) {
        System.out.println("does file exist?");
        boolean o= check();
    // '=' is for assignment, '==' is for comparison
        if(o==false){
               System.out.println("File didn't exist");
             System.out.println("discard sending info...");
        else if (o==true){
              System.out.println("ok");
             System.out.println("Sendning information...");
             ListMovies LM = new ListMovies();
             LM.loanMovie();
             LM.go();
        else{
    public static boolean check(){
            File fi = new File("D:\\out2.txt");
    if (fi.exists()){
    System.out.println("file exist");
    System.out.println("returning true");
    return true;
    else {
    System.out.println("file don't exist");
      System.out.println("returning false");
        return false;
    }

  • Brightness control problem after returning from Stand By - T500

    Hi,
    I have a Lenovo ThinkPad T500 under Windows XP SP2.
    In Power Manager, I have created a custom power management scheme and set the brightness to 80%. This works fine when I boot up the machine, but when I return from Stand By mode (sleep) the machine automatically sets the brightness to 100%. I will then have to use to brightness control buttons to set it back to 80%. This is very annoying and obviously a bug.
    I have the latest BIOS and Power Manager version installed.
    Can someone offer a solution please?

    I found your post after searching as I hae the exact problem you describe - I turn off the screen using Fn F3 and later when I wake the display the brightness jumps to 100% and I cannot get it to turn down to any level. It's stuck at 100%. Yup, just tried closing-n-opening the lid the screen goes to my previously set brightness level.
    my drivers are current as at 2010-03-26 (today)
    Running a downgraded XP W500 model...
    a bug for sure!
    Rick
    W500 4058-CTO WinXP

  • Problem Scanning & Returning to end ( Ascending ) order of iphoto 6 Library

    My iphoto library is set to View/by film roll/Ascending so I am always viewing the latest roll of film when I open up iphoto 6 or download from a camera.
    This used to happen when I scanned images too. NOW iphoto returns to the beginning of the iphoto library instead of the end where I have to scroll to the end of the iphoto library to see the new roll of scanned images. This did not used to happen. This is annoying.
    Is this because iphoto is reaching some limitation or ??????
    Is there a fix or adjustment that will reset the library to return to the end and show me the new film roll each time I do a scan ?
    I boutght the iphoto8 but have not installed it yet as I see a number of issues at stake. I do have everything backed up via a LaCie 500gig and SuperDuper! software.

    Bic,
    Are you scanning directly into the iPhoto Library folder? If so, then try scanning to a Desktop folder, and dragging that into the iPhoto window when you finish the scans.
    Have you tried deleting the iPhoto pref file? Close iPhoto first. Look in Home/ Library/ Preferences and remove com.apple.iPhoto.plist. You'll have to reset the preferences back to your liking, but other than that there's no harm done. A bad pref file can cause a number of unrelated, weird problems.
    Regards.

  • The problem of return value from a method

    Hi everyone:
    I want return a value from following method. The basic idea is that I want use Num as a parameter to get a value from a field, therefore I can input this value into another database for the display purpose by using other classes. However I got error message when I compiled it.
    "method does not return a value"
    I know it is a problem, but how I can fix it? I need your help. Thanks in advance.
    Dawei
    Method:
    public int Read(int Num) {
    try{
    String qr1 = "select Record form Buffer where Record="+Num+"";
    ResultSet rs = statement.executeQuery(qr1);
    while (!rs.next()){
              int result=rs.getInt(1);
    return(result);
         catch (SQLException e){
                   System.err.println("Error in inserting into database " + e);
                        System.exit(1);
    return 1;

    "select Record form Buffer ...Hopefully "form" is actually "from" in your code.
    You have three points of exit from your routine, and only two return value statements.
    1 -Return inside the while loop has a value.
    2- Return inside the exception block (not sure that '1' would be a valid number)
    3- The very end of the method, just before the last '}' does not have a return statement.
    By the way, this question has nothing to do with JDBC, so another forum might be a better place to post it.

  • C Function - SSF_ABAP_SERVICE - Problem in return code.

    Hi all,
    We are actually executing a custom program with standard FM - CCARD_DEVELOPE which does a decryption of credit card number. This FM inturn calls another FM SSF_KRN_DEVELOPE which inturn calls C function SSF_ABAP_SERVICE.
    It is working fine in Development server. But it is not working in quality.
    Please find the C function below.
    In Dev, for CRC(return code) we are getting '0'. So it is working fine. But in Quality, we are getting CRC ='9'. Because of this, decryption is not happening. Please let me know, what could be the problem, if it could be because of SAP authorization or any third party software to be installed for validation or anything else.
    call C function 'SSFDEVELOPE'
    CALL 'SSF_ABAP_SERVICE'
    ID 'OPCODE' FIELD SSF_OPCODES-DEVELOPE
    ID 'SECTOOLKIT' FIELD SSFTOOLKIT
    ID 'STRFORMAT' FIELD STR_FORMAT
    ID 'STRFORMATL' FIELD STR_FORMAT_L
    ID 'BOUTDEC' FIELD B_OUTDEC
    ID 'IOSPEC' FIELD IO_SPEC
    ID 'OSTRENVELOPEDDATAL' FIELD OSTR_ENVELOPED_DATA_L
    ID 'OSTROUTPUTDATAL' FIELD OSTR_OUTPUT_DATA_L
    ID 'CRC' FIELD CRC
    ID 'OSTRENVELOPEDDATA' FIELD OSTR_ENVELOPED_DATA-SYS
    ID 'RECIPIENT' FIELD RCPTAB-SYS
    ID 'OSTROUTPUTDATA' FIELD OSTR_OUTPUT_DATA-SYS

    Hi Balaji!
    It can't be something in the source code - that is the part which is identical in both systems (but please check your program version).
    What's different is the surrounding. In theory it could be wrong master data ('credit card not found'), but this is unlikely for this function.
    But you need also some connection settings - here something wasn't defined for quality system. Have a look in SM59 (and according, don't ask me for details), if connections settings are alright.
    Regards,
    Christian

  • Problem in return delivery -mto

    WHILE DOING RETURN DELIVERY for MTO the follwoing error is triggering..
    " Create delivery not allowed(SYS status cost object VB0060046010)"
    pLEASE GUIDE HOW TO SOLVE THIS PROBLEM.

    Hi,
    Please go through the below thread and post your feedback if the problem is resolved.
    "Create delivery" not allowed (Sys. status Cost, object VB0060000018000010
    Regards,
    Krishna O

  • Problem with return cardinality of my Entity-Bean

    Hi all,
    i'm using Sun Java Studio Enterprise 8.1 and i try to create a EJB CMP Entity-Bean, it's name is Customer. But i become an error during the deploy. By the method findByName(String name) i selected as return cardinality "Many" and become below error. If i select "One" as return cardinality then is this error away.
    What is here wrong? Every time when i create an EntityBean i become this error, but just by "Many" return cardinality. Can anyone help me to solve this problem?
    thanks
    Bean : CustomerBean
    Method : public abstract Collection findByName(String) throws FinderException
    Section: 10.5.6
    Warning: Every finder method except findByPrimaryKey(key) must be associated with a query element in the deployment descriptor.
    01:06:32,031 ERROR [MainDeployer] Could not create deployment: file:/C:/jboss-4.0.3SP1/server/default/tmp/deploy/tmp26541bank.ear-co
    ntents/Bank-ejb.jar
    org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see above for error messages.
    at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:575)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
    at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
    at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
    at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:80)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
    at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
    at $Proxy24.create(Unknown Source)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:935)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:925)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:789)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:753)
    at sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
    at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
    at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
    at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
    at $Proxy9.deploy(Unknown Source)
    at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:319)
    at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:489)
    at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:192)
    at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:203)
    at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:182)
    01:07:17,406 INFO [EJBDeployer] Undeploying: file:/C:/jboss-4.0.3SP1/server/default/tmp/deploy/tmp26541bank.ear-contents/Bank-ejb.j
    ar

    As you have noted, for 'One' cardinality findByPrimaryKey is sufficient since a primary key is used to locate unique records. But for 'many' cardinality, the system needs to know how to locate a collection of records and hence the need for findAll in the specification.
    Regarding EJB 3.0, i suggest that you use NetBeans.
    Note: Java Studio Enterprise 8.1 is itself built on top of NetBeans version 5.0. NetBeans is an ide developed as opensource at www.netbeans.org; it is extensible ide and so add-on modules can be developed to run on top of netbeans. And that is what JSE8.1 does; JSE 8.1 is NetBeans 5.0 plus several add-on modules (like UML etc).
    The latest stable version of NetBeans is 5.5.1 and NetBeans 6.0 is currently under development with milestone 10 being the latest release.
    Home page: www.netbeans.org
    Download: http://www.netbeans.info/downloads/index.php (From the main page, you can also download several packs which are addons that provide various functionality).
    Docs: http://www.netbeans.org/kb/index.html
    Docs on EE apps: http://www.netbeans.org/kb/trails/java-ee.html
    Further community resources (mailing lists, issue tracking etc) : http://www.netbeans.org/community/index.html
    wiki.netbeans.org
    NetBeans download is free. And since it is developed as an opensource project, the source is freely available under CDDL license (http://www.netbeans.org/about/legal/license.html)

  • Problems with Return Key (only in certain apps)

    Hi. As of this morning, my return key is having a particular problem. When I am given a choice, after quitting Word before saving a file for example, and the default choice is highlighted, when I hit the return key nothing happens. It's as if the app doesn't recognize the stroke at all. However, the return key works fine in its other normal functions.
    This problem is happening across the board, whenever I'm prompted by a program to make a choice. Any clue what might be causing this?
    Thanks.
    Austin T.

    Hi Austin,
    I would run Disk Utility -> Repair Permissions.
    See if that helps.

Maybe you are looking for

  • Unknown error [107]

    JpHi, On cs3, I amtryoing tocreate a pattern brush with a symbol, or an after expanding the symbol. I can make the swatche. But when after creating an empty brush I try to refer to the swatche I ha a promt: unknown error [107] Thanks

  • How to learn Netweaver

    Hi All, Presently i am working in mySAPECC5.0 do we need another server for XI or can we install in Same server. I am new to Netweaver and I want to learn, please give me suggestions.

  • Cannot remote log into MacBook

    Hola! So I have an iMac and a Retina Laptop both running the latest Mavericks install and both on the same wireless network. I frequently log back and forth into each of the machines in order to copy work off of them... Today, I tried to log into my

  • How to convert an html/css website into muse

    How to convert an html/css website into muse.

  • Manually changing of Cheque status to "printed"

    Dear Forum Members, Is it possible to change the status of cheque to printed even if it is not printed from SAP? If Yes, please let me know how it is possible ? ( this is because on behalf of my client their bankers themselves will prepare the cheque