Solved: Hi, I have a variable of type of CHAR which actually holds a numeric value. I want to assign it to another variable which is of type CURR. How can I do this type
DATA: value_n TYPE i VALUE '12344', value_c TYPE char25. WRITE value_n TO value_c. WRITE value_c. Regards, Venkat.O Reply vinod_vemuru2 Active Contributor 2008 Apr 12 2:49 PM 0 Kudos 6,278 SAP Managed Tags: ABAP Development Hi Nancy, We can do it in 2 way...
Hoe to convert the data internal table to excel format. Former Member Options Mark as New Bookmark Subscribe Mute Subscribe to RSS Feed Permalink Print Report Inappropriate Content 2009 Jun 24 3:55 PM 0 Kudos 870 SAP Managed Tags: ABAP Development ABAP Development Programming Tool...
COL_NAME DATA_TYPE LENGTH FILE_NAME : CHAR 200 TLINENO: CHAR 4 CONTE: LRAW 1024 in java i can just using this byte[] attachfile= file.getBytes(); if a file is bigger than 1024 , how do i store it and pass it to JCO.. do i have to pass line by line of binary code ?? JC...
DATA: ld_spool_nr TYPE tsp01_sp0r-rqid_char. ld_spool_nr = gd_spool_nr. CHECK p_delspl <> c_no. CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ' EXPORTING spoolid = ld_spool_nr. ENDFORM.*&---* *& Form SEND FILE AS EMAIL ATTACHMENT *&---** Send email*---...
SAP Managed Tags: ABAP Development Ahh - yes, but I am talking about the use of the conversion routine: Data: l_Pspnr Type PS_INTNR, l_Char1 Type naTxt, l_Char2 Type naTxt. Select single Pspnr Into l_Pspnr From Proj. Write l_Pspnr to l_Char1.l_Char2 = l_Pspnr. Write...
SAP Managed Tags: ABAP Development FORM select_where_tab_fill TABLES pt_where USING ps_lot_general TYPE bapi2045d_il0 ps_requirements TYPE bapi2045d1. DATA lv_where(40) TYPE c. DATA lv_and(3) TYPE c. Add selection critions for characteristic IF ps_requirements-mstr_char IS NOT INITIA...
SAP Managed Tags: ABAP Development Hi, Use This Concept to download the Header file in Excel File. DATA: v_fieldname TYPE char30. DATA: v_char TYPE numc4. DATA: it_fldcat TYPE lvc_t_fcat. DATA: wa_it_fldcat LIKE LINE OF it_fldcat. DATA: gp_table TYPE REF TO data, GP_WA ...
SAP Managed Tags: ABAP Development There is an easy way of handling it.. declare a variable of format char10 and write that date in to this.. Reply Former Member 2008 Jul 18 10:49 AM 0 Kudos 1,731 SAP Managed Tags: ABAP Development Hi, Use FM CONVERSION_EXIT_SDATE_INPU...