SAP Managed Tags: ABAP Development hi all , In sy-datum why it is using the year 6(4) like that actually what it mean i know sy-datum is the actual system date to extract the year month date seperately dey r using and the same in gjahr is dey are using 4(2) what it means Wi...
SAP Managed Tags: ABAP Development Hello Experts, In my program i have to mention 2 dates .one is current date and other is currendate - 2 months.I have done like this: Sy-datum - '0000020000'. But it is not working.can suggest me any solution?? u will have points...Reply 1 ...
SAP Managed Tags: ABAP Development A date value in DD.MM.YYYY is not actually a DATE TYPE whose internal representation would infact look like YYYYMMDD. So you need to first rearrange the digits into YYYYMMDD and then directly assign to a DATE TYPE. You can use DATA: V_DATE1(10) TYPE...
SAP Managed Tags: BW (SAP Business Warehouse), BW Content and Extractors Hi, I want to update current day's date (sy-datum) in all the values of an the infocube. (without any condition) How can I do that ? Dont tell me zdate = sy-datum in the transformation ...that will be on...
SAP Managed Tags: ABAP Development Hi Santosh, Go to the System option in the menu bar,clcik on the User Profile and Own Data,under the Defaults tab,choose the option dd.mm.yyyy from the Date Format.Save and close. Now, the date appears n the above format. In case you have any fu...
SAP Managed Tags: ABAP Development Hi, Check this reply.. DATA: BEGIN OF MONTH_YEAR, YEAR(4), MONTH(2), END OF MONTH_YEAR. MONTH_YEAR = SY-DATUM. WRITE: / 'Month', MONTH_YEAR-MONTH. WRITE: / 'Year', MONTH_YEAR-YEAR. Thanks, Naren Reply Former Member In response to Former ...
SAP Managed Tags: ABAP Development sy-datum contains the SERVER system date. You can get more information about the system values if you go to SE11 and put SYST in the structures field. The SYST structure has a lot of useful information related with the server, the environment and the ap...
SAP Managed Tags: ABAP Development Hi Swapnika, DATA: DATUM(4) TYPE C, DATUM1(4) TYPE C. DATUM = SY-DATUM(4). DATUM1 = DATUM - 1. write : / datum1. The above code is working. It seems that their is something missing in the declaration part. Can you please paste your com...
SAP Managed Tags: ABAP Development Hallo, in the follwoing code I am trying to have the year 2009 and previous year 2008. But it dont function.Can somebody tell me What can I do to get in prvious_year 2008. DATA: cha TYPE d, previous_year type d. cha = sy-datum+0(4). pre...
SAP Managed Tags: UI Web Dynpro ABAP, Virtualization how to set system date (sy-datum) value directly in the context of an attribute ?I used the wd_context->setattribute option,but I want to set it in the context attribute itself as the default value. ...