Date and Time Data types.
Type d is the data type used for dates and type t for time. Both consist of string representations of dates (in a YYYMMDD format) and times (HHMMSS) with which calculations can be performed. Adding an integer value to a type d variable affects the day part of the date while adding an integer to a time value affects seconds. Assigning a date or time value to an integer yields the number of days since 01.01.0001 or the number of seconds since 00:00:00. The system date is provided by the sy-datum system field while the system time by sy-uzeit.
Addressing subfields
Extracting date and time fields from date and time variables can be achieved by using the SAP sub-field syntax which -- given a filed named f -- goes like this :
subfield = f[+offset][(length)]
if you specify an offset without length then the entire string starting from offset is addressed. if no offset is specified then 1 is implied. ABAP strings always start at index 1.
Examples
Keeping in mind that the internal format of a date field is YYYYMMDD we may declare some variables using the following syntax
DATA :
my_birthday TYPE d VALUE '19681120',
cur_year TYPE i VALUE sy-datum(4), " get the first four characters of the sy-datum field
cur_month TYPE i VALUE sy-datum+4(2), " get the two characters after position 4 i.e. 5 and 6
cur_day TYPE i VALUE sy-datum+6(2) " get the two characters after position 6
Ads
Monday, November 9, 2009
Subscribe to:
Post Comments (Atom)
Blog Archive
-
▼
2009
(185)
-
▼
November
(122)
- SAP Glossary B
- SAP Glossary A
- Designing SAP Transactions SAP Dynpros
- SAP DB Interview FAQs
- SAP Business One
- SAP BDC Interview Questions And Answers
- An Introduction to SAP
- SAP (Systems, Applications and Products in Data Pr...
- What is roll out of SAP Project?
- Resume tips
- SAP ABAP FAQs
- REPORTING – GENERAL
- REPORT GENERATION – FORMATTING
- SAP R/3 ARCHITECTURE QUESTIONS
- QUESTIONS TO ASK HR
- Main Functions of QM Functional Consultant
- What is the Purpose of R/3?
- SAP Purchasing Tables
- SAP Production Planning tables
- Plant Maintenance/Sales
- Object oriented programming (OOP) IX
- Object oriented programming (OOP) VIII
- Object oriented programming (OOP) VII
- Object oriented programming (OOP) VI
- Object oriented programming (OOP) V
- Object oriented programming (OOP) IV
- Object oriented programming (OOP) III
- Object oriented programming (OOP) II
- Object oriented programming (OOP) XVII
- Object oriented programming (OOP) XVI
- Object oriented programming (OOP) XV
- Object oriented programming (OOP) XIV
- Object oriented programming (OOP) XIII
- Object oriented programming (OOP) XII
- Object oriented programming (OOP) XI
- Object oriented programming (OOP) X
- Object oriented programming (OOP) Step-by-step
- Object oriented programming (OOP) explained with a...
- SAP Modules Interview Questions And Answers
- Creating SAP Module Definitions
- SAP MM Tables
- SAP Transaction codes
- Will ABAP be Obsolete? Will JAVA Replace ABAP?
- SAP Implemetation Phases
- IBM abap interview Questions Phase - IV
- IBM abap interview Questions phase - III
- IBM abap interview Questions phase - II
- IBM abap interview Questions phase - I
- IBM abap interview Questions phase - E
- IBM abap interview Questions phase - D
- IBM abap interview Questions phase - C
- IBM abap interview Questions phse - B
- IBM abap interview Questions phase - A
- IBM abap interview Questions phase - Final III
- IBM abap interview Questions phase - Final II
- IBM abap interview Questions phase - Final I
- SAP HR INTERVIEW QUESTIONS
- Difference between the User Exit & Gap analysis
- Role of a mySAP Functional Consultant
- Role of a Functional Consultant in an End To End I...
- For those who wished to know the role of a functio...
- Designing SAP Transactions Flow Logic
- SAP Finance Tables
- SAP FI Functional Consultant Responsibilities
- Dynamic Variant in a report
- What are the tools to download tickets from client...
- Display company logo in the top of ALV report
- Designing SAP Transactions Introduction
- SAP ABAP FAQs
- Creating F1 helps in ease
- What courses are offered in Unauthorized training ...
- What is Client? What is the difference between Cus...
- Abap interview Qustions
- Difference Between BW Technical and Functional
- Batch Data Communication (BDC)
- SAP BDC
- SAP Functional
- Important Ale Idocs Faqs
- What is ALE
- ACCENTURA ABAP Qustions
- Important sap Smartforms faqs
- important abap script faqs
- Sap ABAP Dictionary Faqs
- SAP Program II
- SAP Program I
- Date and Time Calculations
- Substring in SAP's ABAP programming
- sample program I
- Understanding Date Selections Using the HR Logical...
- Different method of Converting Date in ABAP
- ABAP Date Time Variables and Addressing Subfields
- Pop a Date in ABAP Report Selection Screens
- Add n number of working days to date
- Add n number of working days to date (using SAP pe...
- Add n number of working days to date
- Convert month value of a date to text
- SAP ABAP program for A SAP Pop-out Calculator
- Step by step learning ABAP
- Download
- How to transport layout ALV?
-
▼
November
(122)
No comments:
Post a Comment