2. What are field symbols and field groups.? Have you used "component idx of structure" clause with field groups? 在ABAP/4 程序中,字段符号是现有字段的占位符。字段符号本身不直接为字段保留空间, 而只是指向一个字段( 该字段在程 序运行前还未可知)。 字
这个value table只有一个使用的data element的domain是这个domain的key field。 ? Domain有一个两个key field的text table,一个key field使用的是这个domain本身,另一个key field是language field。其必须还得有一个text field,这个text field的类型为TEXT或TXT。在ABAP DICTIONARY中必须给text field指定一个value tab...
Hi, How about this? DATA: lv_time_utc TYPE i. CALL 'ALERTS' ID 'ADMODE' FIELD 20 ID 'OPCODE' FIELD 30 ID 'ACT_TIME' FIELD lv_time_utc. WRITE: lv_time_utc. "in seconds. (seconds since Jan 01 1970). Best Regards, Ashok. You...
Implementation of Date Date is implemented in SAP as CHARACTER*8 with implicit conversion exits. Elementary data type = D Internal length = output length = 8 System data
SAP Managed Tags: ABAP Development Hi Vasanth, Thanks. However i did not get this completely. In my outtab, i have the timestamp field of type 'timestamp'. what do i have to do to get the data and time together to be displayed as '07.07.2006 16:14:58' in the ALV(outtab). ...
SAP Managed Tags: ABAP Development Hi, Is there any function module to get the TIMESTAMP as Outout , if i give input Time and Date. Or, If I go for the concatenate statement.. Do I need to concate the commas in to the target field? Because, I am not getting the proper result ...
SAP Managed Tags: ABAP Development YOu can make use of the ABAP statement: GET TIME STAMP FIELD f. Here's what the sap documentation for that field says: " GET TIME STAMP FIELD f. Effect Returns the timestamp in short or long form. The short form contains the current date and ...
SAP Managed Tags ABAP Development I am convertind date and time into timestamp and I am getting the timestamp as following 19,991,101,143,146. I want the timestamp in yyyy-mm-dd hh:mm:ss format. Help. 1 ACCEPTED SOLUTION Former Member ...
The "target" field of the error message should give a hint as to which timestamp property is required. Hope this helpsRalf You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in. Comment Comments (1) sonny_wu ...
SAP timestamp valuesare stored in fields with decimal data types. InABAP to convert timestamp to stringprogrammer can use function modules. ABAP function moduleRRBA_CONVERT_TIMESTAMP_TO_STRgiven in this tutorial is an example to display time stamp field values in character or string data represen...