Runtime problem

Excute the program it will take more time its urgent for me
REPORT ZRPT_MM_006.
TYPE-POOLS: slis.
tables : likp, lips, bseg, bkpf, mara, t001w, makt,ekko,ekpo.
DATA : gt_fieldcat TYPE slis_t_fieldcat_alv.
DATA : heading TYPE slis_t_listheader.
DATA : gt_events TYPE slis_t_event.
DATA : gs_keyinfo TYPE slis_keyinfo_alv.
DATA : gt_sort TYPE slis_t_sortinfo_alv.
DATA : gt_sp_group TYPE slis_t_sp_group_alv.
DATA : g_header_tab TYPE slis_tabname.
DATA : g_item_tab TYPE slis_tabname.
DATA : g_repid TYPE sy-repid.
SELECTION-SCREEN : BEGIN OF BLOCK t1 WITH FRAME TITLE text-007 .
SELECT-OPTIONS : s_vstel FOR likp-vstel OBLIGATORY,
s_matnr FOR lips-matnr,
s_lfdat FOR likp-lfdat OBLIGATORY,
s_matkl for mara-matkl,
s_werks for likp-werks.
SELECTION-SCREEN : END OF BLOCK t1.
PARAMETERS: p_vari LIKE disvariant-variant. " ALV Variant
data: begin of itab occurs 0,
lfdat like likp-lfdat,
vbeln like likp-vbeln,
vstel like likp-vstel,
werks like likp-werks,
matnr like lips-matnr,
maktx like makt-maktx,
matkl like lips-matkl,
lfimg like lips-lfimg,
vrkme like lips-vrkme,
dmbtr like bseg-dmbtr,
ebeln like ekko-ebeln,
ebelp like ekpo-ebelp,
bedat like ekko-bedat,
menge like ekpo-menge,
end of itab.
data : it_likp like likp occurs 0 with header line,
it_lips like lips occurs 0 with header line.
CONSTANTS : formname_top_of_page TYPE slis_formname VALUE 'TOP_OF_PAGE',
formaname_foreign_top_of_page TYPE slis_formname
VALUE 'FOREIGN_TOP_OF_PAGE'.
DATA : g_save(1) TYPE c,
g_exit(1) TYPE c,
gx_variant LIKE disvariant,
g_variant LIKE disvariant,
f2code LIKE sy-ucomm VALUE '&ETA',
layout TYPE slis_layout_alv.
DATA : repid LIKE sy-repid.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
PERFORM f4_for_variant.
At Selection Screen *
AT SELECTION-SCREEN.
PERFORM pai_of_selection_screen.
INITIALIZATION.
repid = sy-repid.
PERFORM field_cat_fill USING gt_fieldcat[].
PERFORM initialize_variant.
START-OF-SELECTION.
PERFORM build_eventtab USING gt_events[].
PERFORM build_comment USING heading[].
PERFORM build_layout .
PERFORM get_data.
perform process_data.
PERFORM display_data.
END-OF-SELECTION.
*& Form field_cat_fill
text
-->RT_FIELDCATtext
FORM field_cat_fill USING
rt_fieldcat TYPE slis_t_fieldcat_alv.
DATA : ls_fieldcat TYPE slis_fieldcat_alv,
v_pos TYPE i.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'LFDAT'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Del.Date'.
ls_fieldcat-outputlen = '10'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'VBELN'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Del.Doc.No.'.
ls_fieldcat-outputlen = '12'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'VSTEL'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Iss.Plant'.
ls_fieldcat-outputlen = '10'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'WERKS'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Rec.Plant'.
ls_fieldcat-outputlen = '10'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'MATNR'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Material code'.
ls_fieldcat-outputlen = '18'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'MAKTX'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Material Description'.
ls_fieldcat-outputlen = '40'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'MATKL'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Mat.Group'.
ls_fieldcat-outputlen = '10'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'LFIMG'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Delivery Qty.'.
ls_fieldcat-outputlen = '20'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'VRKME'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'UOM'.
ls_fieldcat-outputlen = '3'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'DMBTR'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Value'.
ls_fieldcat-outputlen = '15'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'EBELN'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'PO No'.
ls_fieldcat-outputlen = '10'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'EBELP'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'PO Item'.
ls_fieldcat-outputlen = '8'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'BEDAT'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'PO Date'.
ls_fieldcat-outputlen = '10'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'MENGE'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'PO qty'.
ls_fieldcat-outputlen = '15'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
v_pos = v_pos + 1.
CLEAR ls_fieldcat.
ls_fieldcat-col_pos = v_pos.
ls_fieldcat-fieldname = 'DMBTR'.
ls_fieldcat-tabname = 'ITAB'.
ls_fieldcat-seltext_l = 'Total'.
ls_fieldcat-outputlen = '15'.
ls_fieldcat-just = 'R'.
APPEND ls_fieldcat TO rt_fieldcat.
ENDFORM. "field_cat_fill
*& Form build_eventtab
text
-->P_EVENTS text
FORM build_eventtab USING p_events TYPE slis_t_event.
DATA : ls_event TYPE slis_alv_event.
CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
EXPORTING
i_list_type = 0
IMPORTING
et_events = p_events.
READ TABLE p_events WITH KEY name = slis_ev_top_of_page
INTO ls_event.
IF sy-subrc = 0.
MOVE formname_top_of_page TO ls_event-form.
APPEND ls_event TO p_events.
ENDIF.
ENDFORM. "build_eventtab
*& Form build_comment
text
-->P_HEADING text
FORM build_comment USING p_heading LIKE heading.
DATA: hline TYPE slis_listheader,
text(60) TYPE c,
text1(60) type c,
sep(20) TYPE c,
option(10).
CLEAR: hline, text.
hline-typ = 'H'.
WRITE: 'RunDate:' TO text,
sy-datum TO text+9,
'User' TO text+23,
sy-uname TO text+29,
'TCode' TO text+45,
sy-tcode TO text+52.
hline-info = text.
APPEND hline TO p_heading.
CLEAR text.
INCLUDE zselectionsalv.
ENDFORM. "build_comment
*& Form top_of_page
text
FORM top_of_page.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = heading.
if not s_vstel-low is initial.
clear t001w.
select single * from t001w where werks = s_vstel-low.
write: / 'Issuing Plant :', s_vstel-low, ' - ', t001w-name1.
endif.
if not s_vstel-high is initial.
clear t001w.
select single * from t001w where werks = s_vstel-high.
write: / ' to ', s_vstel-high, ' - ', t001w-name1.
endif.
if not s_matnr-low is initial.
write: / 'Material Code :', s_matnr-low.
endif.
if not s_matnr-high is initial.
write: ' to ', s_matnr-high.
endif.
if not s_lfdat-low is initial.
write: / 'Duration :', s_lfdat-low.
endif.
if not s_lfdat-high is initial.
write: ' to ', s_lfdat-high.
endif.
if not s_matkl-low is initial.
write: / 'Material Grp :', s_matkl-low.
endif.
if not s_matkl-high is initial.
write: ' to ', s_matkl-high.
endif.
if not s_werks-low is initial.
clear t001w.
select single * from t001w where werks = s_werks-low.
write: / 'Receiving Plant :', s_werks-low, ' - ', t001w-name1.
endif.
if not s_werks-high is initial.
clear t001w.
select single * from t001w where werks = s_werks-high.
write: ' to ', s_werks-high, ' - ', t001w-name1.
endif.
ENDFORM. "top_of_page
*& Form display_data
text
FORM display_data.
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
I_INTERFACE_CHECK = ' '
I_BYPASSING_BUFFER =
I_BUFFER_ACTIVE = ' '
i_callback_program = repid
I_CALLBACK_PF_STATUS_SET = ' '
i_callback_user_command = 'USER_COMMAND'
I_STRUCTURE_NAME =
is_layout = layout
it_fieldcat = gt_fieldcat[]
IT_EXCLUDING =
IT_SPECIAL_GROUPS =
IT_SORT =
IT_FILTER =
IS_SEL_HIDE =
i_default = 'A'
i_save = g_save
is_variant = g_variant
it_events = gt_events[]
IT_EVENT_EXIT =
IS_PRINT = gt_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 = itab
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. " WRITE_ALV
*& Form get_data
text
--> p1 text
<-- p2 text
FORM get_data .
select * from likp into corresponding fields of table it_likp
where vstel IN s_vstel
and lfdat IN s_lfdat
and werks IN s_werks.
CHECK NOT it_likp[] IS INITIAL.
if p_grn is initial.
select * from lips into corresponding fields of table it_lips
for all entries in it_likp
where vbeln = it_likp-vbeln
and matnr IN s_matnr
and matkl IN s_matkl
and bwart IN ('641')
and LFIMG ne 0.
else.
select * from lips into corresponding fields of table it_lips
for all entries in it_likp
where vbeln = it_likp-vbeln
and matnr IN s_matnr
and matkl IN s_matkl
and bwart IN ('642').
endif.
sort : it_likp, it_lips.
ENDFORM. " get_data
*& Form process_data
text
form process_data.
loop at it_likp.
loop at it_lips where vbeln = it_likp-vbeln.
move it_likp-lfdat to itab-lfdat.
move it_likp-vbeln to itab-vbeln.
move it_likp-vstel to itab-vstel.
move it_likp-werks to itab-werks.
move it_lips-matnr to itab-matnr.
clear makt.
select single * from makt where matnr = it_lips-matnr.
if sy-subrc = 0.
move makt-maktx to itab-maktx.
endif.
move it_lips-matkl to itab-matkl.
move it_lips-lfimg to itab-lfimg.
move it_lips-vrkme to itab-vrkme.
clear bkpf.
if p_grn is initial.
select single * from bkpf where xblnr = it_likp-vbeln
and tcode = 'VL02N'.
else.
select single * from bkpf where xblnr = it_likp-vbeln
and tcode = 'VL09'.
endif.
if sy-subrc = 0.
clear bseg.
select single * from bseg where belnr = bkpf-belnr
and bschl = '89'
and shkzg = 'S'
and ebeln = it_lips-VGBEL
and ebelp = it_lips-vgpos.
if sy-subrc = 0.
move bseg-dmbtr to itab-dmbtr.
else.
itab-dmbtr = 0.
endif.
endif.
perform get_poinfo.
append itab.
clear itab.
clear it_lips.
endloop.
clear it_likp.
endloop.
endform. "proccess_data
*& Form get_poinfo
text
form get_poinfo.
clear : ekko,ekpo.
select single * from ekko
where ebeln = it_lips-VGBEL.
select single * from ekpo
where ebeln = it_lips-VGBEL
and ebelp = it_lips-vgpos.
move : ekko-ebeln to itab-ebeln,
ekko-bedat to itab-bedat,
ekpo-ebelp to itab-ebelp,
ekpo-menge to itab-menge.
endform. "get_poinfo
*& Form f4_for_variant
text
FORM f4_for_variant.
g_save = 'A'.
g_variant-report = sy-repid.
CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
EXPORTING
is_variant = g_variant
i_save = g_save
IMPORTING
e_exit = g_exit
es_variant = gx_variant
EXCEPTIONS
not_found = 2.
IF sy-subrc = 2.
MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ELSE.
IF g_exit = space.
p_vari = gx_variant-variant.
ENDIF.
ENDIF.
ENDFORM. " F4_FOR_VARIANT
*& Form pai_of_selection_screen
text
FORM pai_of_selection_screen.
IF NOT p_vari IS INITIAL.
MOVE g_variant TO gx_variant.
MOVE p_vari TO gx_variant-variant.
gx_variant-report = sy-repid.
CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
EXPORTING
i_save = g_save
CHANGING
cs_variant = gx_variant.
g_variant = gx_variant.
ELSE.
PERFORM initialize_variant.
ENDIF.
ENDFORM. " PAI_OF_SELECTION_SCREEN
*& Form initialize_variant
text
FORM initialize_variant.
g_save = 'A'.
CLEAR g_variant.
g_variant-report = repid.
gx_variant = g_variant.
CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
EXPORTING
i_save = g_save
CHANGING
cs_variant = gx_variant
EXCEPTIONS
not_found = 2.
IF sy-subrc = 0.
p_vari = gx_variant-variant.
ENDIF.
ENDFORM. " INITIALIZE_VARIANT
*& Form build_layout
text
FORM build_layout.
layout-f2code = f2code.
layout-zebra = 'X'.
layout-detail_popup = 'X'.
layout-no_vline = ' '.
ENDFORM. "build_layout

Hi Vijay
  Check if the below can help you for extraction process:
data: begin of it_temp occurs 0,
lfdat like likp-lfdat,
vbeln like bkpf-xblnr, "likp-vbeln,
vstel like likp-vstel,
werks like likp-werks,
matnr like lips-matnr,
maktx like makt-maktx,
matkl like lips-matkl,
lfimg like lips-lfimg,
vrkme like lips-vrkme,
vgbel like lips-vgbel,
vgpos like ekpo-ebelp, "lips-vgpos,
*dmbtr like bseg-dmbtr,
*ebeln like ekko-ebeln,
*ebelp like ekpo-ebelp,
*bedat like ekko-bedat,
*menge like ekpo-menge,
end of it_temp.
data: begin of it_bkpf occurs 0,
        xblnr like bkpf-xblnr,
        belnr like bkpf-belnr,
      end of it_bkpf.
data: begin of it_bseg occurs 0,
        belnr like bseg-belnr,
        dmbtr like bseg-dmbtr,
        ebeln like bseg-ebeln,
        ebelp like bseg-ebelp,
      end of it_bseg.
data: begin of it_pur occurs 0,
        ebeln like ekko-ebeln,
        bedat like ekko-bedat,
        ebelp like ekpo-ebelp,
        menge like ekpo-menge,
      end of it_pur.
  select a~lfdat a~vbeln a~vstel a~werks b~matnr
         c~maktx b~matkl b~lfimg b~vrkme b~vgbel b~vgpos
         into table it_temp
         from likp as a
         inner join lips as b
         on a~vbeln = b~vbeln
         inner join makt as c
         on b~matnr = c~matnr
         where a~lfdat in s_lfdat
         and   a~werks in s_werks
         and   b~matnr in s_matnr
         and   b~matkl in s_matkl
         and   b~bwart eq '641'
         and   b~lfimg ne 0
         and   c~spras eq sy-langu.
  if not it_temp[] is initial.
     select xblnr belnr into table it_bkpf
            from bkpf
            for all entries in it_temp
            where xblnr eq it_temp-vbeln
            and   tcode = 'VL02N'.
     sort it_bkpf.
     delete adjacent duplicates from it_bkpf.
     if not it_bkpf[] is initial.
        select belnr dmbtr ebeln ebelp into table it_bseg
               from bseg
               for all entries in it_bkpf
               where belnr = it_bkpf-belnr
               and   bschl = '89'
               and   shkzg = 'S'.
     endif.
     select a~ebeln a~bedat b~ebelp b~menge
            into table it_pur
            from ekko as a
            inner join ekpo as b
            on a~ebeln = b~ebeln
            for all entries in it_temp
            where a~ebeln = it_temp-vgbel
            and   b~ebelp = it_temp-vgpos.
  endif.
   Also kindly help close the other duplicate threads on the same topic.
Kind Regards
Eswar

Similar Messages

  • Have CS5 and after installing yosemite is asking to install Java SE6 Runtime, problem is Java has a ton of version 6 and none for Mac, why hasnt adobe provide the right version download?

    Adobe needs to get their act together, be specific as to what version of Java SE6 Runtime is needed to open CS5  (InDesing, Illustrator, etc.)and if possible offer a direct download, since Oracle has a ton of version of SE6 and none of them for Mac specific platform. This short sight on behalf of Adobe and carelessness on behalf of apple is the kind of garbage, this companies will never get!

    I'm pretty sure this post has the link in it...
    Dreamweaver and Java SE 6 Runtime problem on MAC Mountain Lion OSX
    If not, do a search of the DW forum for Java SE 6, there has been a lot of discussion about it and the download link for it is floating around here somewhere.

  • Mix of different runtime problems on a mac.

    Hi,
    I'm on a mac 10.3 and have no intentions of upgrading. When I try to start some demo's I get a lot of different errors, all as far as I can tell related to the JRE. I installed everything from the apple website:
    Java webstart 2.3.0 (modified the May 2007)
    Applet Launcher 1.4 (modified the May 2007)
    Here's 2 of them: I give the info I get from the console:
    1. An error occurred while launching/running the application.
    Title: jME (v0.11) Test [curve.TestBezierCurve]
    Vendor: jMonkeyEngine, LLC
    Category: Invalid Argument error
    The application has requested a version of the Java 2 platform (JRE) that is currently not locally installed. Java Web Start was unable to automatically download and install the requested version. The JRE version must be installed manually.
    launch file
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="http://www.jmonkeyengine.com/webstart/"
    href="jmedemo.php/curve.TestBezierCurve">
    <information>
    <title>jME (v0.11) Test [curve.TestBezierCurve]</title>
    <vendor>jMonkeyEngine, LLC</vendor>
    <homepage href="http://www.jMonkeyEngine.com"/>
    <icon href="jme_logo.jpg"/>
    <description>jME (0.11) JNLP Test - curve.TestBezierCurve</description>
    <description kind="short">jME Technology Preview</description>
    <offline-allowed/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.5+"/>
    <jar href="jmetest.jar" main="true"/>
    <jar href="jmetest-data.jar"/>
    <extension name="jme" href="http://www.jmonkeyengine.com/webstart/jme.jnlp" />
    </resources>
    <property key="java.library.path" value="." />
    <application-desc main-class="jmetest.curve.TestBezierCurve"/>
    </jnlp>
    exception
    JNLPException[category: Invalid Argument error : Exception: null : LaunchDesc: null ]
         at com.sun.javaws.Launcher.handleApplicationDesc(Launcher.java:259)
         at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:199)
         at com.sun.javaws.Launcher.run(Launcher.java:167)
         at java.lang.Thread.run(Thread.java:552)
    console
    Java Web Start 1.4.2_12 Console, started Thu May 03 10:23:16 NZST 2007
    Java 2 Runtime Environment: Version 1.4.2_12 by Apple Computer, Inc.
    Example 2:
    An error occurred while launching/running the application.
    Title: Tower Of Hanoi
    Vendor: J�rgen Failenschmid
    Category: Launch File Error
    Unsupported JNLP version in launch file: 1.5+. Only version 1.0 is supported with this version. Please contact the application vendor to report this problem.
    launch file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!-- Tower Of Hanoi Webstart Configuration -->
    <jnlp spec="1.5+"
    codebase="http://projects.anycpu.com/toh/"
    href="toh.jnlp">
    <information>
    <title>Tower Of Hanoi</title>
    <vendor>J�rgen Failenschmid</vendor>
    <homepage href="http://www.anycpu.com/Java3DExample.htm"/>
    <description>Tower Of Hanoi</description>
    <description kind="short">Animated implementation of the Tower Of Hanoi puzzle using Java 3D.</description>
    <description kind="tooltip">Tower Of Hanoi</description>
    <!-- Gif or Jpeg: 64x64 during download; 32x32 as icon. Automatically resized. -->
    <icon href="icon.gif"/>
    <!-- Splash screen during launch -->
    <icon kind="splash" href="splash.jpg"/>
    <offline-allowed/>
    <shortcut online="false">
    <desktop/>
    <menu submenu="Anycpu"/>
    </shortcut>
    </information>
    <!--
    Java 3D will not run with minimum security.
    Therefore, the application JARs have to be signed.
    -->
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.5+"/>
    <jar href="toh.jar" main="true"/>
    <jar href="jars/commons-logging.jar"/>
    <jar href="jars/log4j.jar"/>
    <extension href="http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp"/>
    </resources>
    <application-desc main-class="net.pacbell.jfai.toh.util.Launcher">
         <argument>net.pacbell.jfai.toh.TowerOfHanoi</argument>
         <argument>splash.jpg</argument>
    </application-desc>
    </jnlp>
    exception
    JNLPException[category: Launch File Error : Exception: null : LaunchDesc:
    <jnlp spec="1.5+" codebase="http://projects.anycpu.com/toh/" href="http://projects.anycpu.com/toh/toh.jnlp">
      <information>
        <title>Tower Of Hanoi</title>
        <vendor>J�rgen Failenschmid</vendor>
        <homepage href="http://www.anycpu.com/Java3DExample.htm"/>
        <description>Tower Of Hanoi</description>
        <description kind="short">Animated implementation of the Tower Of Hanoi puzzle using Java 3D.</description>
        <description kind="one-line">Tower Of Hanoi</description>
        <description kind="tooltip">Tower Of Hanoi</description>
        <icon href="http://projects.anycpu.com/toh/icon.gif" kind="default"/>
        <icon href="http://projects.anycpu.com/toh/splash.jpg" kind="splash"/>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se initial-heap-size="-1" max-heap-size="-1" version="1.5+"/>
        <jar href="http://projects.anycpu.com/toh/toh.jar" download="eager" main="true"/>
        <jar href="http://projects.anycpu.com/toh/jars/commons-logging.jar" download="eager" main="false"/>
        <jar href="http://projects.anycpu.com/toh/jars/log4j.jar" download="eager" main="false"/>
        <extension href="http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp"/>
      </resources>
      <application-desc main-class="net.pacbell.jfai.toh.util.Launcher">
        <argument>net.pacbell.jfai.toh.TowerOfHanoi</argument>
        <argument>splash.jpg</argument>
      </application-desc>
    </jnlp> ]
         at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:179)
         at com.sun.javaws.Launcher.run(Launcher.java:167)
         at java.lang.Thread.run(Thread.java:552)
    console
    Java Web Start 1.4.2_12 Console, started Thu May 03 10:17:25 NZST 2007
    Java 2 Runtime Environment: Version 1.4.2_12 by Apple Computer, Inc.
    Help greatly appreciated.

    You should contact Apple for this issue.

  • Dreamweaver and Java SE 6 Runtime problem on MAC Mountain Lion OSX

    I have a problem with dreamweaver. I really love dreamweaver for building web pages and have used it for years with a PC.  I recently switched from a PC to a MAC but I find that when I open the Dreamweaver app for the first time I get a prompt that says something like "You must download Java SE 6 runtime, would you like to install it now?"   I click yes, and the download fails.  I called Apple about it, they said the software resides on Oracle's Java web site, and its out of their control.  I go to the Oracle Java web site it says "Apple supplies their version of Java SE 6 runtime and there's no way to download it from the Java.com site.  All this means is that YOUR software does not work on my MAC because these two companies can't agree on who suppies this software.
    What I need to know is HOW DO I GET DREAMWEAVER TO WORK?  How do I get around this crazy *** catch 22 situation?  And why doesn't your software recognize Java SE 7 runtime?

    I'm in the same boat with you. I recently used Time Machine to backup my profile and then wiped my entire drive and installed Mountain Lion. After importing all of my data with the Migration Assitant, Dreamweaver will NOT open.
    SnakEyez02, Oracle's website does NOT have the dowload. The link you posted is to version 7. We've been down this road already. Martiantime is correct, neither Apple nor Oracle are providing Java SE 6, but Dreamweaver is crying to have it installed.
    So, Adobe, how do we get out of the hole that we did not dig?

  • Facing some runtime problem in new AIR 2.0Beta2 SDK and same application work in OLD AIR 2.0Beta1 SD

    Severity:
    Runtime Error
    Reproducibility:
    Every Time
    Discoverability:
    High
    Found in Version:
    SDK Flex 3 (Released)
    Affected OS(s):
    Windows              - XP
    Steps to Reproduce:
    « Hide
      Steps to reproduce:
    1. Run the Application 
    2. At the creation complete I am referring "StorageVolumeInfo" i.e. StorageVolumeInfo.storageVolumeInfo.addEventListener(StorageVolumeChangeEvent.STORAGE_VOL UME_MOUNT, onVolumeMount);
    3.
      Actual Results:
      I am getting runtime ERROR as below:
    VerifyError: Error #1014: Class flash.filesystem::StorageVolume could not be found.
    at _FreepandasV2WatcherSetupUtil$/init()
    at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()[C:\autobuild\3.4.0\frameworks\projects\framework\src\mx\managers\SystemManager.as:3213]
    at mx.managers::SystemManager/docFrameListener()[C:\autobuild\3.4.0\frameworks\projects\fram ework\src\mx\managers\SystemManager.as:3065]
      Expected Results:
       I am using ADOBE AIR 2.0Beta2 version SDK.
    The same application is run in Last SDK i.e AIR 2.0Beta1
      Workaround (if any):
      I am using ADOBE AIR 2.0Beta2 version.
    Can you please help me out...
    Thank you

    My settings with air 3.3:
    <renderMode>gpu</renderMode>
    <aspectRatio>portrait</aspectRatio>
              <autoOrients>false</autoOrients>
            <fullScreen>true</fullScreen>
            <visible>true</visible>
            <softKeyboardBehavior>none</softKeyboardBehavior>
        </initialWindow>
    It only displays a white screen with a small gray square (1/5 of the screen size - top left).
    A scrollbar is visible if you drag the screen and the sound is playing...
    I tried this settings:
    <aspectRatio>portrait</aspectRatio>
            <renderMode>gpu</renderMode>
              <autoOrients>true</autoOrients>
            <fullScreen>true</fullScreen>
            <visible>true</visible>
            <softKeyboardBehavior>none</softKeyboardBehavior>
        </initialWindow>
    It won't work...
    Edit:
    I also tested the new sdk http://www.adobe.com/products/air/sdk/ with gpu mode.
    iPhone works fine but the iPad version always crashes.
    The app opened up but if I try to load a level created with box2d the app always closes (crashs).
    I think that is a gpu ram issue?
    Is this a iPad issue or air?
    Edit 2:
    I changed the creationcomplete event to viewactivate. The transition now looks really worse but the levels are loading.
    I also deleted all the elements before changing the view (removeElement and removeChild).
    The third step I made was to use weak eventListener obj.addEventListener("event, function, false,0,true);
    I think that iOS systems have the problem of less gpu ram than android devices ...

  • Possible Java Runtime problem

    I am an amatuer at best.
    I am receiving an error when trying to access any part of windows explorer now. I can't open folders at all.
    Included in picture format is the error.
    I'm running XP Home edition service pack 2
    more than enough ram/HD
    I recently un-installed AND re-installed java (from java.com). When java isn't installed - windows explorer works just fine.
    This problem is recent (last week or so) To my knowledge ZERO applications are been installed or modified. This computer is solely used for archiving pictures/video and web surfing (with the occasional video playback via VLC media player.
    Please let me know if you have any suggestions on how to combat this problem without having to re-install windows.
    If you need more information: please ask.
    Java is: 1.6.0_01
    http://img.photobucket.com/albums/v245/all2e_z/errormessage.jpg

    Hai create a batch file mode.bat
    in mode.bat write the code like dir > out.txt
    try {
                                  String line;
                                  Process p = Runtime.getRuntime().exec("mode.bat");
                                  BufferedReader input =  new BufferedReader(new InputStreamReader(p.getInputStream()));
                                  while ((line = input.readLine()) != null) {
                                  input.close();
                                catch (Exception err) {
                                }or if you need the in formation sbout the directory use the following code:
    import java.io.File;
    import java.io.IOException;
    public class FileUtil {
      public static void main(String[] a)throws IOException{
        showDir(1, new File("d:\\"));
      static void showDir(int indent, File file) throws IOException {
    File f=new     File("d:\\out.txt");
    FileWriter fw=new FileWrite(f);
    for (int i = 0; i < indent; i++)
          fw.write('-');
        fw.write(file.getName());
        if (file.isDirectory()) {
          File[] files = file.listFiles();
          for (int i = 0; i < files.length; i++)
            showDir(indent + 4, files);
    regards,
    Naga Raju

  • Execute an external java program with Runtime, problem with classpath

    Hi,
    I m calling an external java program by the command:
    Runtime.getRuntime().exec("java -classpath \"library/*\" org.mypackage.TestMainProgram param1 c:/input/files c:/output/files");All my classes are stored in the relative directory "library", and it contains ONLY .jar files. However, I keep getting errors like:
    "java.lang.NoClassDefFoundError: library/antlr/jarCaused by: java.lang.ClassNotFoundException: library.antlr.jar     at java.net.URLClassLoader$1.run(URLClassLoader.java:200)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(URLClassLoader.java:188)     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)     at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)Could not find the main class: library/antlr.jar. Program will exit.Exception in thread "main" where "antlr.jar" is a jar file in "library". It is there but still the program keeps complaining it cannot be found. The problem applies to any jars in "library", ie.., if i have "mylib.jar" then it will complain "NoClassDefFoundError: library/mylib/jar".
    Could anyone give some pointers please?
    Many thanks!
    Edited by: 836590 on 14-Feb-2011 09:03

    836590 wrote:
    Hi,
    I m calling an external java program by the command:
    Runtime.getRuntime().exec("java -classpath \"library/*\" org.mypackage.TestMainProgram param1 c:/input/files c:/output/files");All my classes are stored in the relative directory "library", and it contains ONLY .jar files. However, I keep getting errors like:
    "java.lang.NoClassDefFoundError: library/antlr/jarCaused by: java.lang.ClassNotFoundException: library.antlr.jar     at java.net.URLClassLoader$1.run(URLClassLoader.java:200)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(URLClassLoader.java:188)     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)     at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)Could not find the main class: library/antlr.jar. Program will exit.Exception in thread "main" where "antlr.jar" is a jar file in "library". It is there but still the program keeps complaining it cannot be found. The problem applies to any jars in "library", ie.., if i have "mylib.jar" then it will complain "NoClassDefFoundError: library/mylib/jar".
    Could anyone give some pointers please?
    Many thanks!
    Edited by: 836590 on 14-Feb-2011 09:03First, if you run from the command line
    java -classpath "library/*" org.mypackage.TestMainProgram param1 c:/input/files c:/output/filesfrom the parent directory of library, does it work?
    Despite what I said to Kayaman about Runtime.exec not expanding the asterisk, it looks like that's what's happening, so that you're getting
    java -claspath library/aaaa_something_before_antlr.jar library/antlr.jar library/bbb.jar library/ccc.jar  org.mypackage.TestMainProgram param1 c:/input/files c:/output/filesThat is, it *is* expanding the asterisk to a list of files in the directory, and the first one is being taken as the classpath, and the second one--library/antlr.jar is being taken as the class to execute. I'm certain this doesn't happen on Linux, so it must be a Windows thing.
    Two suggestions:
    1) Try single quotes instead of double.
    2) Try the exec that takes an array
    Runtime.getRuntime().exec(new String[] {"java", "-classpath", "'library/*'", "org.mypackage.TestMainProgram", "param1", "c:/input/files", "c:/output/files");Edited by: jverd on Feb 14, 2011 9:41 AM

  • Runtime problem in custom program

    I have created a program awhile back that calculates the sales tax and total price for a product. I successfully compiled and ran the terminal version, but due to some problems, I decided to make a GI version. However, I'm having problems. After what felt like many trials and error, I finally got it to compile and show the window but after typing in the info to test my program, the dialog box will not show up with the results. here is the code I put into the program.
    import javax.swing.*;
    import java.text.*;
    import java.awt.*;
    import java.lang.*;
    import java.awt.event.*;
    class SwingWindow extends JFrame
              JLabel messageLabel;
              JLabel messageLabel2;
              JTextField num1;
              JTextField num2;
              JButton calcButton;
              JPanel panel;
         public SwingWindow()
              super("Sales Tax calculator");
              setSize(400, 150);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              messageLabel = new JLabel("Enter your sales tax rate:");
              num1 = new JTextField(10);
              messageLabel2 = new JLabel("Enter the listed price of the product:");
              num2 = new JTextField(10);
              calcButton = new JButton("Calculate");
              calcButton.addActionListener(new CalcButtonListener());
              panel = new JPanel();
              panel.add(messageLabel);
              panel.add(num1);
              panel.add(messageLabel2);
              panel.add(num2);
              panel.add(calcButton);
              setVisible(true);
              Container contentArea = getContentPane();
              contentArea.setBackground(Color.white);
              contentArea.add(panel);
              setContentPane(contentArea);
         private class CalcButtonListener implements ActionListener
              public void actionPerformed(ActionEvent e)
                   NumberFormat cf = NumberFormat.getCurrencyInstance();
                   String str1;
                   String str2;
                   float rate;
                   float total;
                   str1 = num1.getText();
                   str2 = num2.getText();
                   rate = Float.parseFloat(str1) * Float.parseFloat(str2);
                   total = rate + Float.parseFloat(str2);
                   JOptionPane.showMessageDialog(null, cf.format(str2) + "is the listed price and" + str1 + "is your sales tax rate and" + cf.format(rate) + "is the sales tax for the product and" + cf.format(total) + "is the overall cost for the product.");
    public class Salestax
         public static void main(String[] args)
              SwingWindow Salestax = new SwingWindow();
    }What can I do or need to do to make that dialog box appear when the Calculate button is clicked? I looked at a tutorial on frames from Sun, but I had troubles compiling afterwards. I'm using Java version 6, if that helps any.
    Edited by: gotenks05 on Sep 18, 2008 11:54 AM

    Hello, I'm the one who posted this thread this is just a different name because I could not figure out how to get back under the name I posted as. I know that when compiling being syntax error free does not guarantee an error free runtime, but nobody can run a program if it is not or cannot be compiled. This is why I need help. I want the dialog box to appear and the code to be syntax error free. When I ran the program from terminal, I got the following:
    Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: Cannot format given Object as a Number     at java.text.DecimalFormat.format(DecimalFormat.java:487)
         at java.text.Format.format(Format.java:140)
         at SwingWindow$CalcButtonListener.actionPerformed(Salestax.java:51)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2028)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2351)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6126)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5891)
         at java.awt.Container.processEvent(Container.java:2102)
         at java.awt.Component.dispatchEventImpl(Component.java:4497)
         at java.awt.Container.dispatchEventImpl(Container.java:2160)
         at java.awt.Component.dispatchEvent(Component.java:4327)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4366)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4030)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3960)
         at java.awt.Container.dispatchEventImpl(Container.java:2146)
         at java.awt.Window.dispatchEventImpl(Window.java:2440)
         at java.awt.Component.dispatchEvent(Component.java:4327)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:300)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:210)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:200)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:195)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:187)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)>
    I know there is something that needs to be done with the source, but I don't what it is, especially since I did not get this problem when I compiled the text based version.
    update: I got the dialog box to show, but I want the numbers in currency format.
    update 2: I finally got the result I wanted, with a bit of tweaking thanks for the help so far given. I just made another variable to show the number as a float, then used cf.format for currency.
    Edited by: realgotenks05 on Sep 18, 2008 1:55 PM
    Edited by: realgotenks05 on Sep 18, 2008 2:10 PM

  • Runtime problem , please help,

    public class execInput {
    public static void main(String Argv[]) {
    try {
    String output;
    String[] cmd ={"c:\\xpdf\\pdftotext.exe", "c:\\pdfFile\\dispatching.pdf"};
    Process pr = Runtime.getRuntime().exec(cmd);
    }catch (IOException e) {
    System.exit(0);
    Above program is run in Ms-DOS : c�F\xpdf\pdftotext.exe
    no problem. But I ran it in Java, compiles is fine.
    when I run it. it let me press any key to continue.
    and a GUI apper to tell me an error:
    16bit MS-DOS subsystem
    C�F\WINDOWS\system32\ntvdm.exe
    Error while setting up environment for the application
    choose "close" to terminate the application.
    Please help me solve it, I hava tried on different machine and I re-install the WinXP system, but the problem still appears,
    many many Thanks!

    Cross posted. All posts:
    http://forum.java.sun.com/thread.jspa?threadID=664225&messageID=3890448#3890448
    http://forum.java.sun.com/thread.jspa?threadID=664226&messageID=3890449#3890449
    http://forum.java.sun.com/thread.jspa?threadID=664227&messageID=3890450#3890450
    http://forum.java.sun.com/thread.jspa?threadID=664228&messageID=3890452#3890452
    http://forum.java.sun.com/thread.jspa?threadID=664229&messageID=3890453#3890453

  • Java runtime problem Internet Sales

    I am getting a runtime error in the SAP Internet Sales Shop Management tool when I try to create a new shop. I am quite sure my problem is java related because the SAP generated webform fails too fast. There doesn't seem to be any time for abap processing.
    Has anyone experienced this before. How can I find out where the problem is?
    Thanks very much,

    Hi Pankaj,
    you can try with the first patch of the SP 9 - for example try the file ISAWAC40SP09_0-10002109.SAR. Extract the file using the sapcar program and search for docs.sar file where the documents are.
    I hope this will help you.
    Regards
    Borislav

  • Runtime problems on Linux Ubuntu 7.04

    Here is the error code I get. I am new to Linux, so bear with me please,
    root@circuit-circus:/home/sidewalkcynic/.opera/cache4/Compendium# ./compendium.sh
    Exception in thread "main" java.awt.AWTError: Cannot load AWT toolkit: gnu.java.awt.peer.gtk.GtkToolkit
    at java.awt.Toolkit.getDefaultToolkit(libgcj.so.70)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(libgcj.so.70)
    at java.awt.Window.<init>(libgcj.so.70)
    at java.awt.Frame.<init>(libgcj.so.70)
    at java.awt.Frame.<init>(libgcj.so.70)
    at javax.swing.SwingUtilities$OwnerFrame.<init>(libgcj.so.70)
    at javax.swing.SwingUtilities.getOwnerFrame(libgcj.so.70)
    at javax.swing.JDialog.<init>(libgcj.so.70)
    at javax.swing.JDialog.<init>(libgcj.so.70)
    at com.compendium.ui.dialogs.UIStartUp.<init>(UIStartUp.java:51)
    at com.compendium.ProjectCompendium.main(ProjectCompendium.java:69)
    Caused by: java.lang.UnsatisfiedLinkError: libgtkpeer: libgtkpeer.so: cannot open shared object file: No such file or directory
    at java.lang.Runtime._load(libgcj.so.70)
    at java.lang.Runtime.loadLibrary(libgcj.so.70)
    at java.lang.System.loadLibrary(libgcj.so.70)
    at gnu.java.awt.peer.gtk.GtkToolkit.<clinit>(libgcj.so.70)
    at java.lang.Class.initializeClass(libgcj.so.70)
    at java.lang.Class.forName(libgcj.so.70)
    at java.awt.Toolkit.getDefaultToolkit(libgcj.so.70)
    ...10 more
    root@circuit-circus:/home/sidewalkcynic/.opera/cache4/Compendium#
    What do I do?

    Hi,
    have had this problem myself...although model=basic DOES get the internal speakers working, the headphones jack then fails..(or at least it did for me ;))
    im using the ALC262 codec (which can be determined from the output of cat /proc/asound/card0/codec#* ), and i found that
    options snd-hda-intel model=hippo worked best for me... (ie both internal speaker and headphone jack working)
    if in doubt...more info can be found in the alsa drivers ALSA-Configuration.txt
    HTH
    damian

  • Runtime problems after migrating from Flex3 to 4 in compatibility mode

    We are migrating our Flex-3.2 application to Flex 4.1, mainly to take advantage of the new text flow/engine features. In a first step we decided to go with compiling for MX-only and in Flex-3-compatibility mode.
    Thanks to some helpful resources (
    http://www.adobe.com/devnet/flex/articles/flexbuilder3_to_flashbuilder4.html
    http://stackoverflow.com/questions/1563482/any-flex-4-migration-experience
    http://www.adobe.com/devnet/flex/articles/flex3and4_differences_02.html
    ) I am able to compile our application.
    But I find myself surprised about the amount of runtime differences ranging from the problem that I cannot cast ResultEvent.currentTarget to HTTPService ( which apparently was introduced in 3.5 ) to many layout problems to differences in event dispatching ( e.g. one of our legacy components listens to the add event which it just doesn't seem to get anymore ).
    It seems there is very little documentation on this. I'd like to find a list with detailed changes so that we don't have to rely on QA to stumble across hopefully all issues.
    This documents lists some, but doesn't seem exhaustive.
    Does someone have a better list of documented changes from SDK 3.2 to 4.1?
    Thanks
    Stefan
    PS. Concrete example of one surprising change:
    In Flex 4:
        <?xml version="1.0" encoding="utf-8"?>
        <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library://ns.adobe.com/flex/mx" layout="absolute" minWidth="955" minHeight="600">
        <fx:Script>
        <![CDATA[
        private function notFired():void
        trace("ADDED");
        private function fired():void
        trace("COMPLETE");
        ]]>
        </fx:Script>
        <mx:TextArea add="notFired();" creationComplete="fired();"/>
        </mx:Application>
    Now do the same in Flex 3 and you'll see both events fire.

    The add event is a bug.

  • Adobe Bridge is really bogging down and PS CS5 will not open at all (runtime problem), ideas

    Also many thanks to Adobe for not supporting their software.

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full, unrestricted, access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating

  • Pnp ce runtime problem

    Hallow I use pnpce and the runtime of program is to much
    Here Is my code what I doing wrong and if I can something to improve time because is to much
    regards
    START-OF-SELECTION.
    GET peras.
      PERFORM get_new_data.
    END-OF-SELECTION.
    wa_person_tab-pernr = pernr-pernr.
      rp_provide_from_last t_0001 ' '  sy-datum sy-datum.       "pa0001
    pn-begda pn-endda.
      wa_person_tab-stell = t_0001-stell.
      wa_person_tab-werks = t_0001-werks.
      wa_person_tab-persg = t_0001-persg.
      wa_person_tab-persk = t_0001-persk.
    wa_person_tab-orgeh = t_0001-orgeh.
      rp_provide_from_last t_0002 ' ' sy-datum sy-datum.        "pa0002
      wa_person_tab-lastname = t_0002-nachn.
      wa_person_tab-firstname = t_0002-vorna.
      wa_person_tab-perid = t_0002-perid.
      rp_provide_from_last t_0315 ' ' sy-datum sy-datum.        "pa0315
      wa_person_tab-lifnr = t_0315-lifnr.
      wa_person_tab-kostl = t_0315-kostl.
      wa_person_tab-yytariff_code = t_0315-yytariff_code.
      wa_person_tab-yytariff_total = t_0315-yytariff_total.
      wa_person_tab-yywaers = t_0315-yywaers.
      APPEND wa_person_tab TO person_tab.
      CLEAR wa_person_tab.
    IF person_tab[] IS NOT INITIAL.
       SELECT pernr stdaz begda plans  " Employee Numbers & Hours
       FROM pa2010
       INTO (wa_person_tab-pernr, wa_person_tab-stdaz,
             wa_person_tab-begda, wa_person_tab-orgeh)
       FOR ALL ENTRIES IN person_tab
       WHERE pernr = person_tab-pernr
       AND lgart = '9EXT'                        "  Wage Type (salary)
       AND begda GE pn-begda
       AND begda LE pn-endda
       GROUP BY pernr stdaz begda plans.
         IF sy-subrc = 0.
           APPEND wa_person_tab TO person_tab.
           CLEAR wa_person_tab.
         ENDIF.
       ENDSELECT.
    ELSE.
       MESSAGE i023.
       EXIT.
    ENDIF.

    Hi,
    The PNP database selects and filters the PERNRs according to the data selected on the Selection-Screen. If it shows 'no data found', there might not be any PERNR satisfying the conditions given.
    Pls search for the PERNRs in the respective Database tables(PA tables) of the Infotypes for the required selections. If there are soem PERNRs satisfying the conditions, it prog must be filtering the PERNRs in the GET PERNR event. Pls check where is the PERNR ignored in debug mode.
    Thanks,
    Teja.

  • Form Runtime Problem

    I have Windows 2000 environment
    OC4J Instance started on my PC
    Oracle Intelligent Agent = 1748, 1754, 1808, 1809 (ports into my Portlist.ini file)
    I set the above ports into form builder preference runtime tab but the explorer return
    Page cannot be displayed
    I changed my port to 8888 in the form builder preference runtime tab
    HTTP error resolve, internet explorer displaying the forms 9i splash screen,
    but a new error return
    FRM-92060: Failed to connect to server
    bad Machine specification: forms90/I90servlet:-1

    See my response to your other thread.
    Form Runtime

  • Runtime problem in java

    Hai Guys
    sample.jsp
    try //try statement
    Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + "c:\\fileName.pdf"); //open the file chart.pdf
    } catch (Exception e) //catch any exceptions here
    System.out.println("Error" + e ); //print the error
    When I run this jsp file (http://localhost:8080/sample.jsp) the pdf is opening fine. But when I run this jsp file in my remote machine (http://sysname:8080/sample.jsp) the pdf is not opening . Instead of this pdf file is opening in my local machine. how to open the pdf file in my client machine. Any idea regarding this. Please let me know. Its helpful to me.
    Regards
    Sheik Dawood. K

    Hi Sagar I think that you didn't get my point
    */sampleEx/sample.jsp*
    try //try statement
    Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + "http://sysname:8080/sampleEx/fileName.pdf");
    } catch (Exception e) //catch any exceptions here
    System.out.println("Error" + e ); //print the error
    When I run this jsp file in server Machine (*http://localhost:8080/sampleEx/sample.jsp* or http://sysname:8080/sampleEx/sample.jsp ) the pdf is opening fine
    But when I run this jsp file in my client machine (http://sysname:8080/sampleEx/sample.jsp) the pdf is not opening .
    when i run the jsp file in my client machine the pdf file is opening in my server machine not the client machine. how to open this pdf file in my client machine. Any idea regarding this. Please let me know. Its helpful to me.
    Regards
    sherin.

Maybe you are looking for

  • Mini late 2006 DVI HDMI Samsung LE26A457

    A couple of people on other forums, like me, are having trouble connecting our Mac Mini DVI to HDMI on Samsung screens. Is there a known issue? Is there a fix of some kind. It seems like the Mac Mini is very very picky about handshaking, whereas all

  • My apple id is gone missing!!

    My apple id is gone missing!! I can't reset, nothing!! I've been trying to resolve this issue and it seems apple does not even have a trace of my id which I've used to purchase various apps, songs, movies for many years now!!  I'm perplexed and disap

  • Still having problems with palm tx

    I'm getting really tired of this palm tx. I have done a hard reset like 6 times. I even created a new user on it and deleted all the programs and data from the old user. I even took of the security lock from it. It turns on and everything but it neve

  • Photoshop CS4 - Single Slice Creating 6 Separate Files

    I am using Photoshop CS4 Extended and have a file that has a slice named Slider4.  When I select this slice and chose to save it for the web, it produces 6 separate files instead of one.  The resulting file size should be 960x260, but I get one file

  • Some keyboard shortcuts are not working

    I have found a few keyboard shortcuts that don't work, no matter what you set the shortcut to. I only found two, and they are "Show Desktop", and "Show Launchpad". I have set them to many different combinations, none of which seem to work. every once