Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

va02 --> date double click dumping

Former Member
0 Kudos

I got a problem like

/nva02 --> give so# --> AFS item overview --> at line item 78,

when we double click on the date it is not going to another

screen like when i clicked on other line items date.

I DEBUGGED AND SAW IT IS DUMPING

by saying DYNPRO_FIELD_CONVERSION

============================================

By the way how can I copy the dump and paste ?

Edited by: sam kumar on Oct 21, 2008 4:27 AM

1 ACCEPTED SOLUTION

Former Member
0 Kudos

when I double click on other lines item's date field ( except 78th line item' date ) , it is not dumping.

The dump is occurring when I double click 78 th line item's date field.

8 REPLIES 8

amit_khare
Active Contributor
0 Kudos

This error appears when the screen value is different from the data type defined for that field.

Check for it.

You can get the copy of dump in ST22 transaction.

Former Member
0 Kudos

Thanks for your reply .

I did not get ...

could you please suggest me by looking my below code :

MODULE z_d4602_mod_screen OUTPUT.

check: not zgv_gatp_running is initial.

if ( z_atp_check_sim-activetab = zgc-fcode_d9601_t and

zgv_updmenge = charp ) or

( z_atp_check_sim-activetab ne zgc-fcode_d9601_t and

zgv_updmenge = chart ) or

j_3atpvd-j_4krcat = zgc-sizesum.

loop at screen.

if screen-name = zgc-j3atpvdmenge.

screen-input = screen_off.

if j_3atpvd-j_4krcat = zgc-sizesum.

j_3atpvd-menge = zgv_menge_sum.

clear zgv_menge_sum.

endif.

if j_3atpvd-menge is initial.

screen-active = screen_off.

endif.

endif.

if j_3atpvd-j_4krcat = zgc-sizesum.

if screen-name = zgc-LIPRC or

screen-name = zgc-SAPRC or

screen-name = zgc-CLPRC.

screen-invisible = screen_on.

endif.

SCREEN-INTENSIFIED = screen_on.

endif.

modify screen.

endloop.

else.

  • loop at screen.

*if screen-name = zgc-j3atpvdmenge.

*screen-input = screen_on.

*screen-active = screen_on.

*screen-invisible = screen_off.

*modify screen.

*endif.

*endloop.

endif.

  • header fields screen on/off

perform z_mod_screen_hf.

ENDMODULE.                 " z_d4602_mod_screen  OUTPUT     <---  here program is giving dump

FORM Z_MOD_SCREEN_HF.

LOOP AT SCREEN.

CHECK SCREEN-GROUP2 = ZGC-ZHF.

SPLIT SCREEN-NAME AT CHAR- INTO SCREEN-NAME ZGV_STRING.

READ TABLE ZGT_GATP_HF INTO ZGS_GATP_HF

WITH KEY FIELDNAME = ZGV_STRING.

CHECK SY-SUBRC = 0.

CHECK ZGS_GATP_HF-SCREEN_ON IS INITIAL.

SCREEN-ACTIVE = SCREEN_OFF.

MODIFY SCREEN.

ENDLOOP.

ENDFORM. " z_mod_screen_hf

0 Kudos

seems like you enhanced the Sales order transaction, the error is coming because you didn't mention the format screen. just go to screen, double click the screen field which is causing the problem, there you mention the Format (i think now it is char format) check it once.

Former Member
0 Kudos

when I double click on other lines items except 78th line item , it is not dumping.

The dump is occurring when I double date on 78 th line item.

is there possibility of screen value is different from the data type defined for that field ?

or

the Format PROBLEM

I really not aware of this kind of problem.

Please help me on this.

0 Kudos

>screen value is different from the data type defined for that field ?

it is nothing but format problem. just check what is the value in the date field.

Former Member
0 Kudos

when I double click on other lines item's date field ( except 78th line item' date ) , it is not dumping.

The dump is occurring when I double click 78 th line item's date field.

0 Kudos

> I double click 78 th line item's date field

i asked what is there in that 78th line items' date field value?

Former Member
0 Kudos

the value in 78th lineitem's date field is '18.10.2008'

Even all other line item's date field value is '18.10.2008'

THANKS IN ADV