SAP Managed Tags: ABAP Development Hi Experts, I´m searching for the possibility to compare two deep ABAP Structures (same structure) and to display the differences within the structures. Is there any hint for this Problem? I found in the Debugger the possibility to compare two structures,...
SAP Managed Tags: ABAP Development Hi In version management u can compare the 2 versions of the same program.But i don't think u have the option to compare two different programs. Abdul Reply Former Member In response to abdul_hakim 2005 Dec 20 8:17 AM 0 Kudos 2,429 SAP...
SAP Managed Tags: ABAP Development If you want to work with SY-ABCDE, you should code it like IF LV_VAR CA SY-ABCDE. But since SY-ABCDE contains only the 26 latin alphabet characters (and that in caps only), I'd rather say: IF LV_VAR NO '1234567890 .'. <some message> ENDIF. ...
SAP Managed Tags: ABAP Development Sorry, I have the problem with function "CTVB_COMPARE_TABLES" that when I have "STRING"-Fields in my table, then it produce a shortdump ASSIGN_CASTING_ILLEGAL_CAST in include LBUSSF00. (line 95) **...Prepare key for selection... **assign <lfs_...
You can compare the dates by taking it on to a character string and then use the EQ operator. If w_date1 eq w_date2. ... endif. Thanks, Sowmya Reply Former Member 2009 Jun 08 10:13 AM 0 Kudos 345 SAP Managed Tags: ABAP Development Hi The problem is to know which...
Problem is that table's DATE field is of type "DATS" and dropdown is of type INTEGER(or) STRING ... How to compare this fields? Can any one please give me solution for this...! Thanks in Advance! Hi sreelakshmi.B, try the following: ...