HELP NEEDED........PLZ

My problem is like this-
I am reading an image file from the Jar file and then writing some part of image to outside of Jar file and when am taking that written part as an image it is not working!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
any Idea how to overcome this???????????

My problem is like this-
I am reading an image file from the Jar file and then
writing some part of image to outside of Jar file and
when am taking that written part as an image it is
not
working!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
any Idea how to overcome this???????????The outer part needs to be thinged up!!!!!!!!!!! and dont forget to do stuff to it before you do the whatsit , you understand?????????????????????????????????????????????????????????????????????????????????????

Similar Messages

  • Urgent help needed plz

    hello everyone,
    am new to apple.store, i had purchased for a macbook air and another item, at the begining it was cancelled for no reasons, when i contacted my bank they say there is no request for any money withdraw and i was blaming them for thier services.
    but then after making order couple of times, my order was done and i got a confirmation from my bank that a specific amount of money was wathdrawn from bank acount. and i was happy that everything is fine now, but the problem started here, the next day i got an email from apple that says that my order was cancelled cus they dont sent to a freight forward address, but hey i already had an order two days before that and it was approved and shiped to my address in US. and i got a msg from my freight forward service that i got an item from apple and it will be shiped to me soon.
    as am out of US, i cant use the phone numbers they provided, nor i can find any email address that could help me. i contacted the apple store here in Dubai, but they said this problem should be fixed there cus it was done there..
    the money i purchased is around 2300 dollar,, i dont know what to do??? plz help me ..

    i wanted to have an advice, i thought maybe someone had the same prob, thats why i wrote in the forum,
    i spent my last two days looking for any contact that could help me in this, but notheing at all was there, all contact methods were phone numbers for those who are in US or Canada,
    anyway, thanks for your reply

  • Set Up Help Needed Plz!!!

    Im using audition cs with an mbox2 mini + mic to record audio tracks. I've had a hell of a time finding all the drivers needed for the mbox to work with audition in stand alone mode. Before i installed the drivers, i would open audition and the option to use the mbox as an input & output was there. however when i went to record nothing happened. No sound was coming thru the mbox, i tried to monitor levels and got nothing. The USB light on the front of the mbox was also off. I went to the device manager in the control panels menu, changed the default recording device to mbox, still no nothing coming thru. I noticed that in my device manager window the mbox icon had an exclaimation point next to it, meaning drivers were missing. But the mbox was also listed as working under video game controllers in the device manager.  Somebody suggested that i re-download the stand alone driver. After re-downloading the driver the USB light came on my mbox, and i thought everything was finally gonna work. when i opened audition this time the mbox was no longer discoverable, even though the green light was lit on the mbox. I went to the audio hardware setting in audition and all the mbox settings were gone. Im not sure if i should have the drivers set to MME or ASIO. I tried to set my drivers to ASIO and got a message saying something like "can not be done, will use the previous setting" I have a feeling the problem lies in the set up of the ASIO/MME drivers? also after installing the stand alone driver, the mbox is no longer discoverable in my windows sounds menu in the control panels. Its like it just up and dissappeared even though the USB light is on. Can anyone help???

    As I've already told you, mbox standalone ASIO drivers are seriously flawed - and nothing we can say will alter that, I'm afraid.

  • Ejb-ql method help needed plz!

    Dear All,
    I get the following error: the details are given below!
    Unknown query: public abstract java.util.Collection com.sextanttech.entities.implementations.UserBean.ejbSelectUsers(int,int,int) throws javax.ejb.FinderException
    The relevant part of my ejb-jar.xml file
    <query>
    <query-method>
    <method-name>ejbSelectUsers</method-name>
    <method-params>
    <method-param>int</method-param>
    <method-param>int</method-param>
    <method-param>int</method-param>
    </method-params>
    </query-method>
    <ejb-ql><![CDATA[
    SELECT user.userName
    FROM UserTable user
    WHERE user.flag1 = ?1
    AND user.flag2 = ?2
    AND user.flag3 = ?3]]>
    </ejb-ql>
    </query>
    The relevant part of my entity bean class:
    public Collection getselectedusers() throws FinderException // this is my business method impl.
    Collection cc = this.ejbSelectUsers(1,1,1);
    return cc;
    public abstract Collection ejbSelectUsers( int flag1,int flag2,int flag3 ) throws FinderException;
    Thanks in advance!
    alex.

    hi buddy,
    select method cannot be declared in both home or remote interfaces...only in bean impl class
    and i did exactly that...plz notify me if u get any ideas.
    regards

  • Class or interface problem..help needed PLZ.

    Here is my code..but i am constantly getting error message. :(
    public class VesselClass
         private double xCoord;
         private double yCoord;
         private double velocity;
         private double bearing;
    public vessel(double xCoord, double yCoord, double velocity, double bearing)
    this.setXCoord (xCoord);
    this.setYCoord (yCoord);
    this.setvelocity (velocity);
    this.setbearing (bearing);
    public double getXCoord();
    public boolean setXCoord(double x);
    if( x <= -1000.0 && x >= 1000.0)
         xCoord = true;
    else
              xCoord = false;
    return xCoord;
    public double getYCoord();
    public boolean setYCoord(double y);
         if (x <= -1000.0 && x >= 1000.0)
              yCoord = true;
         else
              yCoord = false;
         return yCoord;
    public double getVelocity();
    public boolean setVelocity(double v);
         if (v <= 0.0 && v >= 600.0)
              velocity = true;
         else
              velocity = false;
         return velocity;
    public double getBearing();                                                                           
    public boolean setBearing(double b)
         if (b <= 0.0 && b >= 360.0 )
              bearing = true;
         else
              bearing = false;
         return bearing;
    public String toString()
    return "( X-Coordinate = " + xCoord +" Y-Coordinate = " + yCoord + "V-Velocity = " + velocity +" B-Bearing = " + bearing +" )";
    public void display()
    System.out.println("(" + this.xCoord + "," + this.yCoord + "," + this.velocity + "," + this.bearing ")");
    Here is my method main()
    public class MyVessel
    public static void main(String[] arg)
    VesselClass vessel007 = new VesselClass(300.0, 500.0, 100.0, 250.0);
    System.out.println(vessel007.toString());
    Thanks a lot buddies.

    Okay. And did that message refer to a particular line
    of code, and you forgot to mention that piece of
    information? Somewhere before that line of code you
    have an extra closing brace (the "}" character). Get
    rid of that.It's far worse than that.
    Hopefully your code is indented, which would make it
    much easier to find extra braces. The stuff you
    posted wasn't.Normally I don't bother compiling code like this to see what's wrong, but IntelliJ made it easy to do.
    Your code could win a "worst code" contest. There are so many things wrong with what you wrote that it's a crying shame.
    Please go read a book on how to write Java. Your code is an example of how not to.
    Here's your code cleaned up so it compiles. It's still a bloody mess, but I have my own stuff to work on:
    package cruft;
    public class VesselClass
        private double xCoord;
        private double yCoord;
        private double velocity;
        private double bearing;
        public static void main(String[] arg)
            VesselClass vessel007 = new VesselClass(300.0, 500.0, 100.0, 250.0);
            System.out.println(vessel007.toString());
        public VesselClass(double xCoord, double yCoord, double velocity, double bearing)
            this.setXCoord(xCoord);
            this.setYCoord(yCoord);
            this.setVelocity(velocity);
            this.setBearing(bearing);
        public double getXCoord()
            return xCoord;
        public boolean setXCoord(double x)
            boolean thisClassIsCrap = true;
            return thisClassIsCrap;
        public double getYCoord()
            return yCoord;
        public boolean setYCoord(double y)
            if (y <= -1000.0 && y >= 1000.0)
                return true;
            else
                return false;
        public double getVelocity()
            return velocity;
        public boolean setVelocity(double v)
            if (v <= 0.0 && v >= 600.0)
                return true;
            else
                return false;
        public double getBearing()
            return bearing;
        public boolean setBearing(double b)
            if (b <= 0.0 && b >= 360.0)
                return true;
            else
                return false;
        public String toString
            return "( X-Coordinate = " + xCoord + " Y-Coordinate = " + yCoord + "V-Velocity = " + velocity + " B-Bearing = " + bearing + " )";
        public void display()
            System.out.println("(" + this.xCoord + "," + this.yCoord + "," + this.velocity + "," + this.bearing + ")");
    }%

  • Help needed Displaying ALV  Secondary list without using oops concept

    Hi Experts
    Help needed Displaying ALV  Secondary list without using oops concept.
    its urgent
    regds
    rajasekhar

    hi chk this code
    ******************TABLES DECLARATION*****************
    TABLES : VBAP,MARA.
    *****************TYPE POOLS**************************
    TYPE-POOLS : SLIS.
    ****************INTERNAL TABLES**********************
    DATA : BEGIN OF IT_VBAP OCCURS 0,
    VBELN LIKE VBAP-VBELN, "SALES DOCUMENT
    POSNR LIKE VBAP-POSNR, "SALES DOCUMENT ITEM
    MATNR LIKE VBAP-MATNR, "MATERIAL NUMBER
    END OF IT_VBAP.
    ****************TEMPORARY VARIABLES******************
    DATA : V_VBELN LIKE VBAP-VBELN."SALES DOCUMENT
    DATA : V_MTART LIKE MARA-MTART. "MATERIAL TYPE
    *****************FIELD CATALOG***********************
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    ****************LAYOUT*******************************
    DATA : WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    ***************VARIANT*******************************
    DATA : G_VARIANT LIKE DISVARIANT.
    ****************SAVE*********************************
    DATA : G_SAVE(1) TYPE C.
    *****************EVENTS******************************
    DATA : XS_EVENTS TYPE SLIS_ALV_EVENT,
           G_EVENTS TYPE SLIS_T_EVENT.
    ******************PF STATUS**************************
    DATA : PF_STATUS TYPE SLIS_FORMNAME VALUE 'SET_PF_STATUS'.
    ******************USER COMMAND************************
    DATA : USER_COMMAND TYPE SLIS_FORMNAME VALUE 'SET_USER_COMMAND',
           R_UCOMM LIKE SY-UCOMM.
    ****************SELECTION SCREEN************************
    SELECT-OPTIONS : S_VBELN FOR VBAP-VBELN.
    ***************AT SELECTION SCREEN*********************
    AT SELECTION-SCREEN.
      PERFORM VALIDATE.
    **************START-OF-SELECTION**************************
    START-OF-SELECTION.
      PERFORM GET_DETAILS.
      PERFORM FIELDCAT.
      PERFORM LAYOUT.
      PERFORM VARIANT.
      PERFORM SAVE.
      PERFORM EVENTS.
      PERFORM ALV_DISPLAY.
    *********************FORMS*******************************************
    *&      Form  validate
          text
    -->  p1        text
    <--  p2        text
    FORM VALIDATE .
      SELECT SINGLE VBELN
                    FROM VBAP
                    INTO V_VBELN
                    WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'enter valid vbeln'.
      ENDIF.
    ENDFORM.                    " validate
    *&      Form  get_details
          text
    -->  p1        text
    <--  p2        text
    FORM GET_DETAILS .
      SELECT VBELN
             POSNR
             MATNR
             FROM VBAP
             INTO TABLE IT_VBAP
             WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'no details found'.
      ENDIF.
    ENDFORM.                    " get_details
    *&      Form  fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM FIELDCAT .
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'VBELN'.
      WA_FIELDCAT-OUTPUTLEN = 10.
      WA_FIELDCAT-SELTEXT_L = 'SALES DOC'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'POSNR'.
      WA_FIELDCAT-OUTPUTLEN = 6.
      WA_FIELDCAT-SELTEXT_L = 'ITEM'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-OUTPUTLEN = 18.
      WA_FIELDCAT-SELTEXT_L = 'MATERIAL NO'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    " fieldcat
    *&      Form  LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM LAYOUT .
      WA_LAYOUT-ZEBRA = 'X'.
    ENDFORM.                    " LAYOUT
    *&      Form  VARIANT
          text
    -->  p1        text
    <--  p2        text
    FORM VARIANT .
      CLEAR G_VARIANT.
      G_VARIANT-REPORT = SY-REPID.
    ENDFORM.                    " VARIANT
    *&      Form  SAVE
          text
    -->  p1        text
    <--  p2        text
    FORM SAVE .
      CLEAR G_SAVE.
      G_SAVE = 'A'.
    ENDFORM.                    " SAVE
    *&      Form  EVENTS
          text
    -->  p1        text
    <--  p2        text
    FORM EVENTS .
      CLEAR XS_EVENTS.
      XS_EVENTS-NAME = SLIS_EV_TOP_OF_PAGE.
      XS_EVENTS-FORM = 'TOP_OF_PAGE'.
      APPEND XS_EVENTS TO G_EVENTS.
    ENDFORM.                    " EVENTS
    *&      Form  TOP_OF_PAGE
          text
    FORM TOP_OF_PAGE.
      WRITE :/ ' INTELLI GROUP'.
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  ALV_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM ALV_DISPLAY .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
         I_CALLBACK_PROGRAM             = SY-REPID
         I_CALLBACK_PF_STATUS_SET       = PF_STATUS
         I_CALLBACK_USER_COMMAND        = USER_COMMAND
      I_STRUCTURE_NAME               =
         IS_LAYOUT                      = WA_LAYOUT
         IT_FIELDCAT                    = IT_FIELDCAT
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
         I_SAVE                         = G_SAVE
         IS_VARIANT                     = G_VARIANT
         IT_EVENTS                      = G_EVENTS
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = IT_VBAP
       EXCEPTIONS
         PROGRAM_ERROR                  = 1
         OTHERS                         = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY
    *&      Form  SET_PF_STATUS
          text
    FORM SET_PF_STATUS USING EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'Z50651_PFSTATUS' EXCLUDING EXTAB.
    ENDFORM.                    "SET_PF_STATUS
    *&      Form  SET_USER_COMMAND
          text
    FORM SET_USER_COMMAND USING R_UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN 'DC'.
          READ TABLE IT_VBAP INDEX RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            SELECT SINGLE MTART
                          FROM MARA
                          INTO V_MTART
                          WHERE MATNR = IT_VBAP-MATNR.
            IF SY-SUBRC <> 0.
       MESSAGE E000 WITH 'NO MATERIAL DESCRIPTION FOR SELECTED MATERIAL NO'.
            ELSE.
              WRITE :/ 'MATERIAL NO :',IT_VBAP-MATNR.
              WRITE :/ 'MATERIAL TYPE :' , V_MTART.
            ENDIF.
          ENDIF.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE TO SCREEN 0.
        WHEN 'CLOSE'.
          CALL TRANSACTION 'SE38'.
      ENDCASE.
    REPORT  Z_ALV_INTERACTIVE  MESSAGE-ID ZMSG_50651
                                    LINE-SIZE 100
                                    LINE-COUNT 60
                                    NO STANDARD PAGE HEADING.
    ******************TABLES DECLARATION*****************
    TABLES : VBAP,MARA.
    *****************TYPE POOLS**************************
    TYPE-POOLS : SLIS.
    ****************INTERNAL TABLES**********************
    DATA : BEGIN OF IT_VBAP OCCURS 0,
    VBELN LIKE VBAP-VBELN, "SALES DOCUMENT
    POSNR LIKE VBAP-POSNR, "SALES DOCUMENT ITEM
    MATNR LIKE VBAP-MATNR, "MATERIAL NUMBER
    END OF IT_VBAP.
    ****************TEMPORARY VARIABLES******************
    DATA : V_VBELN LIKE VBAP-VBELN."SALES DOCUMENT
    DATA : V_MTART LIKE MARA-MTART. "MATERIAL TYPE
    *****************FIELD CATALOG***********************
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    ****************LAYOUT*******************************
    DATA : WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    ***************VARIANT*******************************
    DATA : G_VARIANT LIKE DISVARIANT.
    ****************SAVE*********************************
    DATA : G_SAVE(1) TYPE C.
    *****************EVENTS******************************
    DATA : XS_EVENTS TYPE SLIS_ALV_EVENT,
           G_EVENTS TYPE SLIS_T_EVENT.
    ******************PF STATUS**************************
    DATA : PF_STATUS TYPE SLIS_FORMNAME VALUE 'SET_PF_STATUS'.
    ******************USER COMMAND************************
    DATA : USER_COMMAND TYPE SLIS_FORMNAME VALUE 'SET_USER_COMMAND',
           R_UCOMM LIKE SY-UCOMM.
    ****************SELECTION SCREEN************************
    SELECT-OPTIONS : S_VBELN FOR VBAP-VBELN.
    ***************AT SELECTION SCREEN*********************
    AT SELECTION-SCREEN.
      PERFORM VALIDATE.
    **************START-OF-SELECTION**************************
    START-OF-SELECTION.
      PERFORM GET_DETAILS.
      PERFORM FIELDCAT.
      PERFORM LAYOUT.
      PERFORM VARIANT.
      PERFORM SAVE.
      PERFORM EVENTS.
      PERFORM ALV_DISPLAY.
    *********************FORMS*******************************************
    *&      Form  validate
          text
    -->  p1        text
    <--  p2        text
    FORM VALIDATE .
      SELECT SINGLE VBELN
                    FROM VBAP
                    INTO V_VBELN
                    WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'enter valid vbeln'.
      ENDIF.
    ENDFORM.                    " validate
    *&      Form  get_details
          text
    -->  p1        text
    <--  p2        text
    FORM GET_DETAILS .
      SELECT VBELN
             POSNR
             MATNR
             FROM VBAP
             INTO TABLE IT_VBAP
             WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'no details found'.
      ENDIF.
    ENDFORM.                    " get_details
    *&      Form  fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM FIELDCAT .
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'VBELN'.
      WA_FIELDCAT-OUTPUTLEN = 10.
      WA_FIELDCAT-SELTEXT_L = 'SALES DOC'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'POSNR'.
      WA_FIELDCAT-OUTPUTLEN = 6.
      WA_FIELDCAT-SELTEXT_L = 'ITEM'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-OUTPUTLEN = 18.
      WA_FIELDCAT-SELTEXT_L = 'MATERIAL NO'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    " fieldcat
    *&      Form  LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM LAYOUT .
      WA_LAYOUT-ZEBRA = 'X'.
    ENDFORM.                    " LAYOUT
    *&      Form  VARIANT
          text
    -->  p1        text
    <--  p2        text
    FORM VARIANT .
      CLEAR G_VARIANT.
      G_VARIANT-REPORT = SY-REPID.
    ENDFORM.                    " VARIANT
    *&      Form  SAVE
          text
    -->  p1        text
    <--  p2        text
    FORM SAVE .
      CLEAR G_SAVE.
      G_SAVE = 'A'.
    ENDFORM.                    " SAVE
    *&      Form  EVENTS
          text
    -->  p1        text
    <--  p2        text
    FORM EVENTS .
      CLEAR XS_EVENTS.
      XS_EVENTS-NAME = SLIS_EV_TOP_OF_PAGE.
      XS_EVENTS-FORM = 'TOP_OF_PAGE'.
      APPEND XS_EVENTS TO G_EVENTS.
    ENDFORM.                    " EVENTS
    *&      Form  TOP_OF_PAGE
          text
    FORM TOP_OF_PAGE.
      WRITE :/ ' INTELLI GROUP'.
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  ALV_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM ALV_DISPLAY .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
         I_CALLBACK_PROGRAM             = SY-REPID
       I_CALLBACK_PF_STATUS_SET         = PF_STATUS
         I_CALLBACK_USER_COMMAND        = USER_COMMAND
      I_STRUCTURE_NAME               =
         IS_LAYOUT                      = WA_LAYOUT
         IT_FIELDCAT                    = IT_FIELDCAT
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
         I_SAVE                         = G_SAVE
        IS_VARIANT                      = G_VARIANT
         IT_EVENTS                      = G_EVENTS
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = IT_VBAP
       EXCEPTIONS
         PROGRAM_ERROR                  = 1
         OTHERS                         = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY
    *&      Form  SET_PF_STATUS
          text
    FORM SET_PF_STATUS USING EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD' EXCLUDING EXTAB.
    ENDFORM.                    "SET_PF_STATUS
    *&      Form  SET_USER_COMMAND
          text
    FORM SET_USER_COMMAND USING R_UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN 'DC'.
          READ TABLE IT_VBAP INDEX RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            SELECT SINGLE MTART
                          FROM MARA
                          INTO V_MTART
                          WHERE MATNR = IT_VBAP-MATNR.
            IF SY-SUBRC <> 0.
       MESSAGE E000 WITH 'NO MATERIAL DESCRIPTION FOR SELECTED MATERIAL NO'.
            ELSE.
              WRITE :/ 'MATERIAL NO :',IT_VBAP-MATNR.
              WRITE :/ 'MATERIAL TYPE :' , V_MTART.
      SUBMIT SLIS_DUMMY WITH P_MATNR EQ IT_VBAP-MATNR
                        WITH P_MTART EQ V_MTART.
            ENDIF.
          ENDIF.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE TO SCREEN 0.
        WHEN 'CLOSE'.
          CALL TRANSACTION 'SE38'.
      ENDCASE.
    plz reward if useful

  • My ipad is freez...it only show a fome screen. but i can turn off my ipad but not shut down...and i went to my computer and i go to itune. i try to restart my ipad but it say turn off your.find my iphone..but i cant my ipad is freezing.can help me plz.

    my ipad is freez...it only show a fome screen. but i can turn off my ipad but not shut down...and i went to my computer and i go to itune. i try to restart my ipad but it say turn off your.find my iphone..but i cant my ipad is freezing.can help me plz.plz help me.................thx u

    Option 1
    Try force iPad into Recovery Mode. Follow step 1 to 6 very closely.
    http://support.apple.com/kb/HT1808
    Note: You need to be patient and repeat the above many times to recover your iPad

  • Frustrating JSTL, help me plz

    I'm using Tomcat 5 and JSTL 1.1. I copied the JSTL files jstl.jar and standard.jar in Tomcat's /root/WEB-INF folder. Then I ran the following code
    <%@ page contentType="text/html" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <html>
    <body bgcolor=lightblue>
    <form   method=post  action="demo1.jsp">
    NAME <input  type=text  name="text1"><br>
    PLACE<input  type=text  name="text2"><br>
           <input type=submit>
    </form>
    NAME:<c:out value="${param.text1}"  /><br>
    PLACE:<c:out value="${param.text2}"  />
    </body>
    </html>After clicking submit, the code failed to get the value. What's wrong in it? Do I need to copy those tld's in WEB_INF or do I need to make certain change in my web.xml file? I'm working hard since yesterday, help me plz.

    You are still using the JSTL1.0 uri
    The taglib import should be:
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    (note the subtle addition of /jsp/ in there)
    See this thread for full details on setting up JSTL and Tomcat:
    http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0 rely #6

  • Hello.can anyone help me plz i have problem with my macbook air i can't find image capture.

    hello.can anyone help me plz i have problem with my macbook air i can't find image capture. there is nothing in progrem can i reinstall that progrem and how?thanks

    If you can't find it in your applications folder you will need to reinstall your Mac OS X. Take a look at this link, https://discussions.apple.com/message/16478873#16478873

  • I have an iphone 4 just updated my iTunes and now i'm having troubles to sync my iPhone with iTunes... can anyone help me plz?

    i have an iphone 4 just updated my iTunes and now i'm having troubles to sync my iPhone with iTunes... can anyone help me plz?

    You need to do as provided. If no change after restoring as a new iPhone or not from the backup, the iPhone has a hardware problem.

  • FIFA 14 ULTIMATE TEAM HELP PLZ HELP ME ASKED THIS QUESTION TOO MANY TIMES BUT NO HELP ME SO PLZ HELP ME PLZ

    HI
    i like playing fifa and i wanted to start a fifa 14 ultimate team but th problem is that i know some things about fifa but not too much and i was wondering if you guys/girls can helpl me out
    you see the problem is that i dont know how to start off fifa 14 ultimate team lke what should i do when i start off and what should i should i do after
    i tried fifa ultimate team before and was no good because i always had no money left and my players were bronze and had no more contracts so can you guys/girls help m out plz
    plz help me out and reply back to me by this post plz need your help a lot plz help me plz
    thanks

    It's best to Google for answers. Here's one.
    http://www.fifauteam.com/fifa-14-mobile-ios-android/
     Cheers, Tom

  • My iphone 5  charger is heat up when i am charging i brought it last week....help me,,plz give me a solve

    my iphone 5  charger is heat up when i am charging i brought it last week....help me,,plz give me a solve

    The iPhone is not user servicable.
    Sounds like you either need to find a competent 3rd party repair shop, figure it out yourself (you can get help at www.ifixit.com) or buy a new phone.

  • Simple question but urgent help needed....

    I am using Sqlplus i need help on one query. I have got table with 34,000 rows and i would like to findout the frequency frm that table...can anyone help me plz how shud i do it?
    I have all this field in my table ( PROD_ID CUST_ID TIME_ID PROMO_ID QUANTITY_SOLD AMOUNT_SOLD)
    I need to find out the frequency for quantity sold column can some1 help me plz.
    Message was edited by:
    user562879

    SQL> create view v as select column_value as item from table(integer_tt(17, 17, 14, 16, 15, 24, 12, 20, 17, 17, 13, 21, 15, 14, 14, 20, 21, 9, 15, 22, 19, 27, 19));
    View created.
    SQL> select * from v;
          ITEM
            17
            17
            14
            16
            15
            24
            12
            20
            17
            17
            13
            21
            15
            14
            14
            20
            21
             9
            15
            22
            19
            27
            19
    23 rows selected.
    SQL> @count item v
          ITEM      TOTAL    %
             9          1    4
            12          1    4
            13          1    4
            14          3   13
            15          3   13
            16          1    4
            17          4   17
            19          2    9
            20          2    9
            21          2    9
            22          1    4
            24          1    4
            27          1    4
    13 rows selected.
    SQL> @cardinality item v
    Occurrences Groups with this cardinality   Total rows Proportion
               1                            7            7         30
               2                            3            6         26
               3                            2            6         26
               4                            1            4         17
                                                        23        100
    4 rows selected.

  • JCmboBox setSelectedIndex help needed !!!!!!!!!!!!

    hi,
    I hope it's a trivial question but I am not able to solve it so need your help plz. I have a demo program if you run it you will see what I mean. Actually I am adding items to my JComboBox dynamically. My problem is that if I add the items with the same name and then explicitly set them selected my first item with same name is always highlighted and selected even though I say to select the last item which I add. But when I pull down the comboBox my first item with the same name is selected and highlighted not the last one. Please run the program and see. How can I solve this problem help needed.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ComboBoxDemo extends JPanel {
    JButton picture;
    public ComboBoxDemo() {
    String[] petStrings = { "Bird", "Cat", "Dog", "Rabbit", "Pig" };
    // Create the combo box, select the pig
    final JComboBox petList = new JComboBox(petStrings);
    picture = new JButton("ADD");
    picture.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    petList.addItem("TEST ");
                   int nodeTotal =     petList.getItemCount();
                   petList.setSelectedIndex(nodeTotal-1);
    setLayout(new BorderLayout());
    add(petList, BorderLayout.NORTH);
    add(picture, BorderLayout.SOUTH);
    setBorder(BorderFactory.createEmptyBorder(20,20,20,20));
    public static void main(String s[]) {
    JFrame frame = new JFrame("ComboBoxDemo");
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    frame.setContentPane(new ComboBoxDemo());
    frame.pack();
    frame.setVisible(true);
    I want to select the last item I add even if there exists an item with same name.
    Any help is greatly appreciated.
    Thanks.

    never mind I got the answer.
    Tnaks

  • [HELP] need TX2 recovery DVD/Image

    [HELP] need TX2 recovery DVD/Image HP won't repair it b/c i dont have the original software....can someone provide me an image or i will pay $ for DVD plz full model is TX2-1024CA

    That is a notebook PC. Maybe this document will help? http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00810334&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US...
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • I have problem with the security question i forgot it some body tell me they will show down of the question forgot the answering but nothing show help me plz thanks

    I have problem with the security question i forgot it some body tell me they will show down of the question forgot the answering but nothing show help me plz thanks

    The reset link will only show if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

Maybe you are looking for

  • Using a NAS to as iTunes server

    I am looking to purchase a NAS to use primarily as a reliable (RAID-5) photo and music repository, to be shared amongst my family computers (6 PCs). Most of our iTunes library content was purchased from the iTunes store, and the rest ripped from CDs.

  • URGENT: SBS 2011 Exchange log files filling up drive in minutes!

    I need some help with ideas as to why Exchange is generating hundreds of log files every minute. The server had 0MB free on the C: drive, and come to find out, there were over 119,000 log files in the Exchange server folder (dated within the last 7 d

  • How can I get into my locked Dreamweaver files?

    I bought a new iMac last week and transferred my CS4 files from my G5 (not Intel) to the new machine. First I used Apples migration assistant and found I couldn't open any of the CS 4 Adobe programs. So after Googling for answers I copied them all to

  • Thunderbolt port No device connected

    Just purchased a new tb harddrive and when I connect it to my Macbook Pro 17 (early 2011) it doesn't recognize it? I am running Mavericks. It doesn't show up in disc utillity and if you look in system profiler under thunderbolt it says No device conn

  • Transferring audiobooks

    'm transferring my itunes library to my new computer. The music transfers, but not the audiobooks. Any suggestions?