How to display blank character if date is not there

Hello abapers,
I need to diaply blank values if Date is not initialized.Not to display zeros.
INstead i need to display spaces.
waiting for ur favourable replies
Regards
Maruthi.

Hi maruthi,
1. For spaces, we will have to take another variables.
2. eg.
REPORT abc.
DATA : dt TYPE sy-datum.
DATA : dts(10) TYPE c.
WRITE : 'Date Normal' , dt.
IF dt IS NOT INITIAL.
  WRITE dt TO dts.
ENDIF.
WRITE :/ 'Date Character' , dts.
regards,
amit m.

Similar Messages

  • How to display greek character in adobe digital edition using urf-8

    how to display greek character in adobe digital edition using urf-8

    when i tried to open below link
    https://websmp130.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/bobj_download/main.htm
    It's not opening & displaying access denied message as below.
    403 Access denied
    You do not have the permissions to access this resource
    Error is logged with Tag:
    Just want to know, Is it possible to display japanese characters on report using crystal report 8.5?
    We've constraint to use only CR 8.5
    Regds,
    Kaushal

  • How to display Blanks instead of # in Report

    Hi All,
    In my report we are getting # for all blanks. Any one have idea how to display Blank instead of #.
    Thanks
    Vani

    You can do it using Excel macros. See the links for more info:
    [Re: replacing '#'-sign for 'not assigned' in queries]
    [How do I replace "#" to "NoData" in the workbook;

  • HT203167 I accidentally deleted a few apps and not remember their name. Pls let me know how to re-install it that data is not lost.

    I accidentally deleted a few apps and not remember their name. Pls let me
    know how to re-install it that data is not lost.

    Hello DucPV,
    You can view your purchase history, track down the Apps (by recognizing the icons), and reinstall. The following article outlines how to do so:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Thanks,
    Matt M.

  • How can i sort photos by date taken, not date created?

    How can i sort photos by date taken, not date created?

    I'd like this feature as well. I tend to browse my photos by date in Aperture, but on ios thay always appear in some bizzare random order.
    I've tried several workarounds but with no luck. As metadata is present, surely this should be simple...

  • How to display metadata such as data load date in answers report title?

    We have a requirement to display the last load date of the data relevant to the report the user is viewing. We have such information stored in a metadata table listed by the fact table the report is referencing. Our proposed solution is to create new answers reports off of this metadata table and put each report (with the appropriate filter on the fact table) on each dashboard section where the corresponding report is placed. One problem with this approach is the load date information will not be reflected in the print form of the report as the date is dashboard content - not report content. Is there any way to overcome this situation (other than create a ton of variables specifically created for this purpose)? I'm open to entertaining javascript ideas, if necessary. I would love to know how to push this OBIEE envelope further. Thanks in advance.

    Hi,
    I discuss with some people who are familiar with SharePoint, we both thought Windows Explorer may
    not accept the custom metadata.
    if we want to do some customization, it is recommended to ask for help in development forum.
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?category=windowsdesktopdev
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • How to display success message when data is changed in the custom tab in MM

    Hi,
    I have added a new custom data tab in the MM01/MM02/MM03 transactions. Whenever I do changes to fields in the custom tab in MM02 transaction, and no changes in the standard tabs, I will get a message stating "No Changes Made".
    But if I do changes in the standard tabs, it works as usual with display of message "Changes to particular material has been done.
    Please let me know, if anyone of you know, how to display the success message if the changes to the custom tab is done.
    Thanks in advance,
    sudhanva

    Hi Sudhanva,
    The exit EXIT_SAPLMGMU_0001 is a function exit that you can use for custom validation but not to add custom tab/screen.
    But the message issued by SAP is not related to this Function Exit.
    If you have used a Screen Exit, then there must be some Function Exits also in the same Enhancement using which you can assign the value of custom fields to/from the standard structure. Thus when the value of any custom field is changed the system can understand that the some changes have been changed and will  not issue the message.
    In case you have used a BADI, there can be other methods in the BADi using whcih you can assign the value of custom fields to/from the standard structure. This might also prevent the message from being displayed.
    I could try giving you further details if you can provide the name of the Enhancement/BADi that you used to add the additional tab.
    Hope this helps.
    Regards,
    Abhisek.

  • How to display maximum (most recent) date value in a query

    hello,
    I have the following query:
    StudentNumber | ExternalOrganization | Date |         | NumbeOfAdmissions
    0112                  050                            06/27/2007   1
    0234                  060                            07/15/2008   1
    1356                  025                            01/08/2008   1
    My dilemma is how to display only the row that has the most recent Date, e.g. here I want to only see the row with student number 0234 and date 07/15/2008; everything else should be hidden.
    I know it should be very simple....yes/no?
    thanks

    Hi
    even I am facing the same problem..
    Can you please tell me what did you do to get most recent record..
    Even I have made my date field as KF.. n have put condition on it.. but not getting desired result.. may be I am missing something.. somewhere..
    I resolved it.. thanks
    Regards
    Swati
    Edited by: Swati on Feb 17, 2009 7:49 AM

  • How to display document last modfied date time in core result web part?

    Hi,
    We have a requirment in the sharepoint application where we need to display last modified date&time of document in core result web part.
    To support this we have specify the property <Column Name="Write"/> in custom XSL.
    But it displays only the modified date.Is there is way to display modified date and time as well?
    D.Ganesh

    If you want to modify the
    XML can do i tin the
    template "DisplayTemplate":
    An example:
    Replace
    <xsl:value-of select="write" />
    by
    <xsl:value-of select="ddwrt:FormatDate($write, 1033, 2)"/>
    But I think the managed property"Write"
    is returned only as
    Date without
    Time. By
    this time will
    always 00:00.
    To see the resulting XML
    can replace
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
    <xmp><xsl:copy-of select="*"/></xmp>
    </xsl:template>
    </xsl:stylesheet>
    Where you see the format
    of "write"
    http://msdn.microsoft.com/en-us/library/ms546985(v=office.14).aspx
    Miguel de Hortaleza

  • How to display each character of an input string in different rows

    Dear Members,
    I want to write a SQL or PL/SQL where in I can separate and display each character of an input string into multiple rows.
    For eg, the input string is TESTING, I want the result to be displayed as following:
    1 T
    2 E
    3 S
    4 T
    5 I
    6 N
    7 G
    I know we can use substr, but it returns me only one or more than one characters consecutively.
    Please help me get the desired output.
    Thanks in advance.

    Hi,
    Perhaps
    with a as
    select 'TESTING' text from dual
    select level, substr(a.text,level,1)
    from a
    connect by level <= length(a.text)

  • When I open up "originals" in my iPhoto library, the dates are not there or are incorrect.  I see date created and date modified, not the original date the picture was taken.  How can I find the accurate original dates?

    I have had a lot of issues with my iPhoto program. After many trips to the Genius Bar and numerous hours with phone techs, I am now rebuilding my library, starting with a backup of it from before the corruption. When I "get info" of a picture, I notice the original date the picture was taken (most important for me), is not there or is wrong.  When I check package contents of my iPhoto library, the originals show up, but most (not all) of the dates are wrong.  Can anyone tell me how or where I might find the original dates?

    I did post to the iPhoto forum and am hoping for an answer soon. I don't want to continue rebuilding my iphoto library if I can do it using originals. My library has 45,000 pictures...a huge job!

  • How to display Column List (Search Bar - Do Not Display) in Ascending Order

    Hi,
    I am having a Interactive Report..
    In the Search Bar we have Select Columns, under that we have Do Not Display.
    where all the columns (currently not displayed) are listed.
    How can we display these columns in Ascending order
    Thanks,
    Deepak

    Do you want to display these columns in the IR?
    If yes. Select the column you want to display and click the the '>'.
    In the interactive report regions - source, where you have your query to select the columns use order by to sort them in assn order.
    Do you want to keep these columns as 'Do not display' and have them in assn order there?
    Select all columns to display and move the columns back to the 'Do not display' region one by one making selections in assn order.
    Or in the query select the columns in the order desired.
    I don't know if I am helping. I fell like I got your question all wrong. Still...
    Edited by: machan on Dec 11, 2009 11:01 AM

  • How to display only one role to show , not double show on role

    Dear Sir,
    I have the problem on Role , Normally, we will create the user and add in the group . And then to assigned role in group. However, the user can add in many gropus. Sometimes ,  the role will be assinged double. And show in the menu the same. How can to make the role which double not display.
    Thank you and best regards,
    Vimol

    Hi,
    if this is really the same role than this role should be assigned to the user only once -- regardless of how many groups this user belongs to and how many times this role is assigned to the groups.
    You can check this by searching for the user and clicking on assigned roles (with the recursive flag activated). Then you should see the role only once.
    If the rolename is different however, then you might have to work with MergeIDs (http://help.sap.com/saphelp_nw70/helpdata/en/53/89503ede925441e10000000a114084/frameset.htm)
    Hope this helps,
    Holger.

  • How to display Top-5 earners from the table,there should be no duplication

    Hi All
    Can you give me some idea about this query,
    i want a query like
    1)How to dispaly top-N earners from the Emp Table ( i want to dispaly top 5 sal )
    2)There should be no duplicaion in the sal.
    3)If Two emp's earn the same sal,the sal should be picked up only once....!!
    select distinct (sal) from emp order by sal desc;
    select distinct (sal) from emp order by sal desc;
    SAL
    5000
    3000
    2975
    2850
    2450
    1600
    1500
    1300
    1250
    1100
    950
    800
    I want to display only first 5 rows !!
    That first 5 rows i have to insert into other table..!! Please How to display only first 5 rows..!!
    Please can you give me some idea..!!
    Thank in Advance

    USE THIS QUERY
    SELECT SAL FROM (SELECT DISTINCT SAL FROM SCOTT.EMP ORDER BY SAL DESC) WHERE ROWNUM <= 5
    IF U WANT TO FIND 3 SAL OR 4 0R ANY USE THIS QUERY
    SELECT SAL FROM SCOTT.EMP A WHERE &N = (SELECT COUNT(DISTINCT B.SAL) FROM SCOTT.EMP B WHERE B.SAL <= A.SAL)
    FOR &N = GIVE UR VALUE

  • How can i display blank table if data not present

    hi all,
    i have problem here.
    i need to display one blank table if there is no data. in default, it just show column name box.
    now i need to add blank box under column name.
    please if you have any advice, let me know.
    regards,
    dityo

    hi,
    the solution that i get is create two similar table with if condition.
    if condition for table A : <?if:count(G_PARTS) > 0?> . G_PARTS is name of group. table A will showed if data present.
    if condition for table B (blank table) : <?if:count(G_PARTS) = 0?>. this blank table will showed if no data.
    if
    table A
    end if
    if
    table B
    enf if
    hope this help.
    rgrds,
    tyo

Maybe you are looking for

  • Adding field in pc00_m11_wtk

    Hi Experts, In report (Wage Type Reporter) pc00_m11_wtk,for a particular wage type i need total count of employee. Please suggest. Regards, Kaustubj.

  • Can 't connect old iMac to new Mac Mini

    I'm trying to connect an older iMac (450MHz, cherry red OS 9.2.1) to a new Mac Mini (OS X 10.4.3). I don't have a Frewire cable, so I'm trying to do it with an ethernet router. I seem to be doing it incorrectly. File Sharing is turned on for the iMac

  • Jaas authorization in JBoss 4.2.3

    Hi, i need to use JAAS for authentication and authorization in JBoss. I've done the following. conf/login-config.xml ==> <application-policy name = "jaas3"> <authentication> <login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" f

  • Available Disk Space Incorrect

    I hav a 500 GB internal hard drive on my Mac Book Pro running Lion. In any Finder window or "get info" on my hard drive, it says I have 465 GB available (only 34 GB actually used). In Disk Utility, it says I only have 121 GB available and 379 used. W

  • Can't see imovie. Its like the Imovie thinks I have a third screen?

    Can't see imovie. Its like the Imovie thinks I have a third screen? I have connected an external screen, but now Imovie thinks I have a third? Can't figure how to fix the problem and see Imovie on my primary screen. I did try deletingand reinstall th