Regarding Class /scwm/cl_wm_packing

Hi All,
I am facing an issue while using class /scwm/cl_wm_packing. Method: "get_hu_ident" for uploading batchid's of already created HU's in EWM SAP system. I am getting sy-subrc = 1. Please Answer me <removed by moderator>.
Thanks and Regards,
Kirti Bansal
Message was edited by: Manish Kumar

Hi Glen,
yes it is a standard class.

Similar Messages

  • Reg : information Regarding Class Cl_HTTP_Ext_CSIF

    Hi floks,
    i requested you any body having documentation or links regarding class CL_HTTP_EXT_CSIF . How is it works and need more information this class . Can any body helpout .
    thanks,
    Suresh

    Hi Suresh,
    just check out the following link.
    http://help.sap.com/saphelp_nw04/helpdata/en/d0/590c421c7f11d5991d00508b6b8b11/content.htm
    Regards,
    Prajith

  • Regarding class argument in createPopUp()

    Hi All,
    How to dynamicaly find and  type cast a title window application movie as class argument and pass it to createPopUp() of popup manager on click of popup button.
    regards,
    karthik

    Use this to get the class name and cast to class:
    Class(getDefinitionByName(getQualifiedClassName(obj)))
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com

  • Regarding Class CL_EXITHANDLER, and GET_INSTANCE( )

    Hi All,
    Can anybody tell me wht is the main purpose of class CL_EXITHANDLER,  its method GET_INSTANCE and parameters of this method like EXIT_NAME, NULL_INSTANCE_ACCEPTED and INSTANCE
    Thanks in Advance

    Often the call occurs early in treatment, because its outcome affects the processing logic. But there are no absolute rule, a BAdi only processed at save may not be checked for implementation til actual save processing.
    Apart of break-point you can use a tool like SAT ABAP trace (SE30 or old) to find it.
    Regards,
    Raymond

  • Regarding class CL_GUI_CONTAINER_BAR_XT

    Hi Guys,
    I want to know if it is possible to display some radiobuttons and parameters inside the container that retrieves de GET_CONTAINER method of the class CL_GUI_CONTAINER_BAR_XT.
    Right now I can only display ALV objects inside it.
    Any suggestion?
    Regards,
    Eric

    Hi Guys,
    In this thread  CL_GUI_CONTAINER_BAR_XT Raja gave an example of a way in which you can get the container that is referenced to a particular cell in which you can use to load other objects within the cell.
    After doing that I integrate the combobox part that assign the combobox control to the container (TEST_CONTAINERS program). But the combobox isn't getting display.
    Any suggestion?
    Regards,
    Eric

  • Regarding Classes In CRM

    Hello ,
    Cany Any One Specify The Name Of The Class Used To Create Quotation In CRM (CREATING QUOTATION USING OOPS CONCEPTS) .
    Thanks For UpComing Help.
    Regards,
    Tejaswy.

    Hello,
    Use the class CL_CRM_RTD_IU_OFRLST_CREATE_QU for RTOM to create quotation
    Regards
    DNR Varma

  • Regarding Class Trnsaction

    I have an ALV  report using the new ALV object model  . In the ouput of report I am outputting some class names .
    I have made the class column cell type  hot spot . I am using method on_link_click(event handler ) to respond to the event
      FIELD-SYMBOLS <fs_line> TYPE /evuit/devt_err_final.
      READ TABLE my_lines ASSIGNING <fs_line> INDEX row.
      SET PARAMETER ID 'CLASS'  FIELD  <fs_line>-class .
      CALL TRANSACTION 'SE24' AND SKIP FIRST SCREEN.
    This is working but the problem is the call transaction goes only till the SE24 screen . I want to skip the first screen ie
    the class should be taken in the display mode inside .
    How is it possible?
    Thanks
    Arshad

    Hi,
    In SE24 U can see three options, Display, Change and Create.
    The logic  u mentioned works only when there are no other options in the screen (Only pressing ENTER key after inputting the value), So Skip first screen in call transaction works.
    I think you require BDC in this case.
    Regards,
    Dwarakanath.S

  • Regarding Class Definition

    Hi,
    can we use LIKE statement inside the class or not.If we can Please provide an example
    Regards,
    Swami.

    Hi,
    have a look at this [document|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca]. It contains list of obsolete language constructs for ABAP OO. The LIKE reference is allowed to local data objects only.
    Cheers

  • Regarding Class and Characteristics

    Can any body give  a clear picture on  Class and Characteristics
    i have seen this in batch and alos in variant it is common concept in SAP  please tell the concept behind this
    Thanks in Advance
    Rajesh
    Points will be rewarded

    Hi,
    when you want to assign different characteristics for a material we use the this concept.
    for example in pharma industry when we maintain batch wih characteristics like date of manufacture, though the material is same still we differentiate them it on the basis of batch thus ensuring a FIFO method.
    Similarly in Variant against the same materail the customer has a choice to selection the type of product he wants.
    so all such characteristics(options) are assigned to a class and then to a material.
    regards
    sadhu kishore

  • Need info regarding class extending AbstractSessionBean

    I have a JSF application and in one of my class �MainSessionBean extends AbstractSessionBean� and this bean is defied as session scope in the managed-bean.xml
    In this class MainSessionBean there are some methods like
    public void init() ,
    private void _init()
    public void passivate() ,
    public void destroy()
    The comment says these mathods are created automatically.
    These methods have lots of initialization code like setting data source, transaction attributes etc. And no where in my application these methods are called. When I tried to create similar java class I�m not able to create any of these methods. Is this IDE specific? How are these methods created?
    I�m using the RAD and websphere application server 6.1.

    I think you are confusing an EJB session bean with a JSF managed bean with scope of session.

  • Regarding Class Loader

    Hi
    I am loading a class dynamically and i am using classloader.My code looks like this and its working fine.
    import java.lang.reflect.Method;
    public class TestTwo{
    TestTwo(){}
    void Create() throws Exception{
         c.TestOne t ;
         ClassLoader cl = this.getClass().getClassLoader();
         Class cla = cl.loadClass("c.TestOne");
         t = (c.TestOne) cla.newInstance();
         System.out.println(t.getI());
         Method[] methArr = cla.getDeclaredMethods();
         for (int o=0; o< methArr.length; o++){
              //To get Public methods out of the class
         if(methArr[o].getModifiers()==java.lang.reflect.Modifier.PUBLIC)
                   System.out.println(methArr[o].getName());
    public static void main(String[] args){
         TestTwo t = new TestTwo();
         try {
              t.Create();
    catch (Exception e) {e.printStackTrace();}
    My doubt is i am having testone class inside this package (c.testone)and suppose i am placing the class testone somewhere else the code is not working fine..
    My question is can we dynamically load a class dynamically from anywhere in my system.
    thanks for your reply in advance

    Even when loading classes dynamically, it still needs to be in the classpath. Of course it is possible to load classes outside of the classpath, but it's a bit more work and you still have to think of a way to find the class (in which case you might just put it on the classpath anyway).
    The API mentions (in conjunction with ClassLoader) as an example a NetworkClassloader, where a class is loaded through a network and then constructed with defineClass() etc. You might want to start from there if you're still interested.

  • Regarding class oracle.apps.fnd.framework.server.OANullDBTransactionImpl

    Does any one knows about the class oracle.apps.fnd.framework.server.OANullDBTransactionImpl
    What is the use of this class and when will we use this class?
    Thanks

    Yup, its there. So all I can say is that either FWK team forgot to provide the javadoc for the same or it is meant for internal development only.

  • Regarding class path setting

    Hi,
    I am new to java How can i Set a class path in my sytem to run java programs and tomcat and ant .
    I declated like below in Environment varialble.
    JAVA_HOME
    c:\javasdk\jdk\jre\ext;C;\javasdk\bin;
    ANT_HOME
    c:\ant\bin;
    CATALINA_HOME
    C:\tomcat\bin;c:\tomcat\common\bin;
    when I am running the startup.bat in commandprompt the it showedd me aan error like this.
    CATALINA_HOME environment variable is not deffined correctly, this environment variable is needed to run thhis proram.
    when I am running the ANT then it showed me an error like this.
    build.xml file does not found. But i Wrote the build.xml file in ant\bin.
    Please let me know the where is sthe mistake. It is very urgent to me.

    I love all these questions that go "I'm really new to Java, so new I don't even know how to set or use a classpath. How do I get my application server to work?"
    Like a first-week med student trying a heart transplant

  • Question regarding classes taken

    Hi all.
    Does anyone know where I can get proof that I took a class from Sun? I had taken a course, Fundamentals of the Java Programming Language, Java SE 6 (SL-110-SE6) (or whatever its equivalent was) sometimes between 2006 and 2008 (I know, I should KNOW what year - I think it might have been in 2006 but I can't remember). I lost all paperwork associated with this course in a flood earlier this year, so I wanted to know if there were some way I could get some proof that I've taken this course. Any help would be appreciated.
    -George Kulz
    Senior Java Programmer
    Information Services
    Memorial Hospital of Rhode Island
    Address: 111 Brewster Street, Pawtucket, RI 02860
    Phone: (401) 729-3259
    Email: [email protected]

    Wouldnt your training provider have a record of that? I suppose Sun might have a record of that but I took the Sun SL-314-EE5 – Web Component Development with Servlet and JSP Technology course through QA training in London and I wouldnt expect SUN to have any record of that.... Although they may do.
    I dont think I have the paper certificate I was issued with at the end of the course, but as no exam is required for these courses I dont really think it matters all that much as its just evidence that you attended a 4-5 day course.
    Hopefully your ability in Java should be enough that it wouldnt even be questioned. If I had to prove that I really had my degree or A-Level courses and I didnt have the certificate I would probably be more worried!

  • Regarding class declaration

    Hi All,
    There is a rule saying........There can be only one public class per source code file.
    Can anybody tell me the reason behind that?

    There is a rule associated with declaring classes. If
    we declare more than one public class in a single
    source file..it will give an error.
    Can anybody explain the reason behind that?(recently discussed but can't find the thread anymore)
    The JLS doesn't forbid this, but the (or most) compiler(s) do.
    http://www.janino.net/use.html#class_body_evaluator

Maybe you are looking for

  • Can't create PDF from MS word 2007 Doc

    I am using CS3 Acrobat Pro 8.2 and I can't get a Word doc to PDF.  It starts but then just stops at about 10%.  I have tried importing from Acrobat and just get an error message stating "An unexpected error occurred. PDFMaker was unable to produce th

  • Why can't I make a playlist from the vdownload app since installing Iso7

    Why can't I make a playlist from the vdownload app since installing iso7

  • Problem with Web Service Model code generation

    Hello, I'm importing two different web services into the same web dynpro component, which both contains properties "allGroup2" of type "All2". This causes some problems with the code generation, first of all the Model-classes can't be generated becau

  • XI Administration in RWB

    Hi Everyone, What does Adapter Engine, Business Process Engine, Integration engine does exactly in Integration Server and as from the basis/administration part what sholud be monitored. What will be the process it follows(IE, BPE,Adapter engine) when

  • How come the pics I take with my iPhone are all turned into jibberish?

    Ever since I upgraded the OS on my iPhone 3GS to version 4, I have a weird problem. When I take a picture and try sending it to someone who's on a PC, it asks me "You can reduce message size by scaling the image to one of the sizes below", which it n