Problem in Displaying Date for Culture th-TH in SSRS 2010

Hello,
I have a text box of date/time type. And Language of the report is set to a parameter ex: @P_Culture_Name
and parameter will take a value from Prompt (UI).
Suppose default value of date/time text box is 1/22/2013 12:00:00 AM
when i pass 'en-US' to @P_Culture_Name output is 1/22/2013 (I have formatted text box to show only date part)
Problem is : 
when i pass 'th-TH' to @P_Culture_Name output is 22/1/2556
look at the year, its showing 2556 instead of 2013.
Here i have to display year as 2013, Please give me a solution for this. And explanation(If possible) why it is showing 2556.
Thanks in advance.

But the date value is absolutly correct; in Thai calendar the year is 543 greater then in Christian calendar; see
http://en.wikipedia.org/wiki/Thai_solar_calendar
Olaf Helper
[ Blog] [ Xing] [ MVP]

Similar Messages

  • Problem in displaying data for G/L Account in Tcode FAGLB03

    Hi,
    I am a abaper but my client is facing a strange problem in Tcode FAGLB03 that when it runs the tcode the data displayed for a purticular finanacial year then there are few months which remains blank in the display but the Carry Forward Balance is accurate.
    In the similar way when we execute tcode for previous financial year it is displaying the data accurately and filling all the months columns in it.
    Is there any way to present the missing data for that puritcular finanacial year?
    Edited by: nav009 on Jan 3, 2010 10:04 AM

    Hi,
    Please check the same with your netweaver administrator(basis consultant). He would have the user name and pwd for the SAP support portal. You can view notes in SAP support portal.
    SAP clearly says in the note that it is because of program error and you need to implement the correction notes.
    Do involve your FI consultant and Basis consultant to resolve this issue.
    Thanks
    Aravind

  • Problem in displaying dates for replacement path with text variable

    Hi all,
    I have to display dates in sequence as descriptions for 15 columns based on the the date entered by the user in Bex Report.I managed to display date as description using text variable with replacement path for single column.I could not able to increment date for other descriptions.Could you please help me to solve this issue.Its urgent.
    Ex: User enters 03/09/2007 then in the out put desciptions for the columns should be  03/09   04/09  05/09 ............ 17/09.
    Thanks in advance.
    Regards,
    Mandadi.

    Hi,
       goto the properties of your KF and click on the variable button side to that of the description field and click on new/Create option.Enter the technical name description for the text variable and select Replacement path as the Processing type and in the nxt screen select Fiscal year as the replacement variable and in nxt screen  specify as Key and provide offset values if necessary and click on finish.now select the variable by clickin on the variable button next to the description field.it comes after the description of the KF.Now run the query.
    Thanks,
    Sandeep

  • Problem in Displaying Data for Localised Reports

    Hi everyone..I am having a problem with crystal Reports. I need Malayalam unicode( INDIAN Language) to be displayed in the reports, this data will be binded from database.
    And the problem is : After applying this unicode font to the labels of my reports, some labels in the reports are going invisible.Also, previously  if I increase the font size beyond 22, I used to get "A Generic error occured in GDI+".  But after changing the textformat property of the field to "crRtfText" from "crstandardText" , I could resolve this Generic Error.
    And, I could also observe that the last char of the fields in the "details" section is repeating.
    This is the code I am using to apply local font to the labels.
    Private Sub assignfont()
    Dim Mfont As New Font("kartika", 20, FontStyle.Regular,GraphicsUnit.Pixel)
    CType(Report.Section8.ReportObjects("Field45"), CrystalDecisions.CrystalReports.Engine.FieldObject).ApplyFont(Mfont) 
    CType(Report.Section8.ReportObjects("Field48"), CrystalDecisions.CrystalReports.Engine.FieldObject).ApplyFont(Mfont)
    End Sub
    And I am calling this function in the form load event of that report.
    Any suggestion on this is greatly appreciated........Thanks in advance..

    Dear MJ,
    thanks for the reply and I am really sorry for my delay. Actually I got vexed waiting for any reply and stopped opening this forum.
    And coming to your suggestion,
    Ya, I tried assigning font at design time also, but nothing worked for me.
    Even a textbox control also cannot show few characters which are said to be complex in malayalam script.
    So, do u feel getting BOBJ support is the only way for this?
    Thanks once again for your interest.
    Regards,
    raj.

  • Problem with displaying data's in a chart

    I have a main VI (Hovedprogram) and 5 VI's (Ferdigprogram temp tur , Ferdigprogram temp retur, Ferdigprogram nivå, Ferdigprogram temp i fyr and Ferdigprogram trykk)who starts when I start the main VI.
    I want to display data for last 15 seconds, last 24 hours, last week, last month and last year.
    The problem is that the graphs for last week, last month and last year do not display all the data's. I just got a dot where I started the program 28.April. The graphs shows the data's from 2.May
    Any suggestion how I can change my program to appear as described?
    Attachments:
    Hovedprogram.vi ‏748 KB

    And here is one of the 5 VI's
    Attachments:
    Ferdigprogram temp retur.vi ‏125 KB

  • Problem in Loading data for clob column using sql ldr

    Hi,
    I am having problem in loading data for tables having clob column.
    Could anyone help me in correcting the below script for ctrl file inorder to load the data which is in mentioned format.
    Any help really appreciated.
    Table Script
    Create table samp
    no number,
    col1 clob,
    col2 clob
    Ctrl File
    options (skip =1)
    load data
    infile 'c:\1.csv'
    Replace into table samp
    fields terminated by ","
    trailing nullcols
    no,
    col1 Char(100000000) ,
    col2 Char(100000000) enclosed by '"' and '"'
    Data File(1.csv)
    1,asdf,"assasadsdsdsd""sfasdfadf""sdsdsa,ssfsf"
    2,sfjass,"dksadk,kd,ss""dfdfjkdjfdk""sasfjaslaljs"
    Error Encountered
    ORA-01461: can bind a LONG value only for insert into a LONG column
    Table sampThanks in advance

    I can't reproduce it on my 10.2.0.4.0. CTL file:
    load data
    INFILE *
    Replace into table samp
    fields terminated by ","
    trailing nullcols
    no,
    col1 Char(100000000) ,
    col2 Char(100000000) enclosed by '"' and '"'
    BEGINDATA
    1,asdf,"assasadsdsdsd""sfasdfadf""sdsdsa,ssfsf"
    2,sfjass,"dksadk,kd,ss""dfdfjkdjfdk""sasfjaslaljs"Loading:
    SQL> Create table samp
      2  (
      3  no number,
      4  col1 clob,
      5  col2 clob
      6  );
    Table created.
    SQL> host sqlldr scott/tiger control=c:\temp\samp.ctl log=c:\temp\samp.log
    SQL> select * from samp
      2  /
            NO
    COL1
    COL2
             1
    asdf
    assasadsdsdsd"sfasdfadf"sdsdsa,ssfsf
             2
    sfjass
    dksadk,kd,ss"dfdfjkdjfdk"sasfjaslaljs
            NO
    COL1
    COL2
    SQL> SY.

  • Scorecard doesn't display data for some selections

    Hi,
    I have configured a scorecard to display detail data (product quantities for 4 quarters) based on different parameter (product code) selection in other master scorecard. The detail dashboard doesn't display data for all the product codes. It's weird even data is there for the same product code where the scorecard is mapped in the excel however doesn't display. Appreciate if any of you can help me to overcome the issue.
    Technology: SAP Dashboard 4.1 SP4, Oracle 11g
    Thanks,
    Anurag

    Hi Anurag
    Have you taken an excel snapshot and checked if the master scorecard has the rows you expect to see in the detail sorecard?
    Thanks
    Runali

  • Problem in displaying data.

    Hi,
    I am facing a problem in display of data for a particular employee. This is a HR report with 5 selection variables out of which 3 are mandatory and rest 3 like company code, Cost centre and Employee are optional.
    when i run the report with company code and cost centre variable it shows me list of employees whose timesheet are missing in a particular time frame which misses out 1 employee and when i run the report with same variables but put in the employee it shows me the data of that employee which is assigned to same cost centre and company code. Its just that in first case i am using 2 diff optional variables and in 2nd i am using only 1 with rest of the variables same. This is so weired. For the first time i have encountered such issue. and if i run the report with company code and cost center and after getting the necessary output i select the filter value as that emplyees name i get the data for that employee.... I am unable to understand as to how where exactly is the problem?
    i checked the master data of employees, cost centre and company code. Everything is working fine.
    Kindly help to figure out the issue.
    Kind regards,
    Shailja kaul.

    Please perform the consistency check for the cube in RSRV and confirm that all the dimensions in the cube are consistent. Sometimes, this happens, which generates such situation that some of records disappear in the result set if not mentioned in the selection screen.
    Here as per your msg, if you mention the employee number, the record appears, that means you should also perform the consistency check for 0EMPLOYEE (if that is the infoobject for employee) master data.
    Thanks
    Danny.

  • Problems with displaying data in Chart

    Hi, everyone
    I am stuck with displaying data in Chart. I set the minimum
    and maximum for LinearAxis of a LineChart, so the chart only
    display the data within this range. But sometimes I still need to
    keep the trend of all data even the data is out of range.
    eg, the range of verticalAxis is 0 -100 and I got data 70,
    120, 90. Neither I want to set the data 120 to 100 in order to keep
    the data point nor make the data 70 connected directly to data 90.
    All I want is to keep the shape, from 70 to 120, from 120 to 90,
    but 120 doesn't display in the chart.
    My another question is when I try to select an area of a
    chart to zoom in, how can I the get the exact area that I select to
    zoom,
    for example: I want to use exactly the result of the
    following line:
    ((firstMouseX - this.mouseX)/ this.dataRegion.width) *
    chart.dataProvider.length
    that is I don't want to use methods ceil or floor to get the
    approximate area.
    Excuse me, I got one question more. The weird things is my
    chart won't resize itself when I resize the VDividedBox or other
    containers. I set the width equals 100% wherever it needs to be.
    Just like the Flex sample - dashboard. If I open a small window at
    the very begining and then maximize the window, the chart still
    keep the small part of its container. I don't understand why.
    Sorry for too many questions.
    Hope someone can help me.
    Thanks in advance.

    Can I use the Interpolate to solve the first problem?
    But I have no idea about interpolate at all.
    Please help!

  • Problem in retreiving data for the given user parameter year!!!

    hi all,
    I am working in oracle report 6i. I want to display the data for the date given in the parameter field(MM/YYYY).
    For ex. Input is 07/2007 means i want to display the data from 04/2006 to 07/2007.Please guide me
    to get this desire output......
    Here is my query.....
    select gl_code,financial_month,financial_year,division_code
    from gtemp
    where financial_year between to_number(to_char(:P_Date,'YYYY')) - 1 and to_number(to_char(:P_Date,'YYYY'))
    and financial_month >= '04'
    and financial_month < = to_char(:P_Date,'MM')
    and division_code = 11
    order by financial_month, financial_year
    regards,
    jame
    Message was edited by:
    Jame

    Works fine if u gave values instead of variables.... But if we gave 02 in place of 11 like below.Query will get
    confused to take which years 02 because in both 2005 and 2006 we have 02(Feb)thats y.......
    how to overcome this prob.......I think, my entire query is wrong to get this desire output....Please guide me how
    to solve......
    select gl_code,financial_month,financial_year,division_code
    from gtemp
    where financial_year between 2005 and 2006
    and financial_month >= '04'
    and financial_month < = '02'
    and division_code = 11
    order by financial_month, financial_year

  • Problem in displaying data when data is huge

    Hi All,
              I am getting 1 strange problem in Adobe forms.In my form i have few subforms.For those i have set Auto fit property as true,Expand to fit property is true ,Allow multiple lines property is true ,Allow Page breaks within content property is true & the layout is flow content.
    If the complete data for 1 subform is shown in same page,it shows the complete data but if the data is split into more than 1 pages,its showing the data in both pages but it truncates some data.Can anybody tell what can be the problem?
    regards
    Sumit

    Hi Sumit,
    Just recheck if all are in Flow content, top to bottom flow,  Expands to fit.
    If it does not solve the problem, put some margins in the layout pallette.
    How many lines are gettinig truncated???
    Put the Body page with in  the content area..
    - Hope these helps,
    Regards,
    Anto.

  • BPM reporting not displaying data for newly added field

    Hello All,
    I have a BPM process up and running fine. I have added reporting for monitoring no. of context field. I have also created a VC model for displaying the BPM report data. However, VC application is displaying only the context field that I had selected initially during the New Reporting Datasource creation. It'd not display the reporting data for the field that I added later.
    Please help

    Hi Apoorva ,
    Have you checked in the process repository whether your new process is activated or not?
    Thanks & Regards,
    Rohit

  • Problem while inserting data for some datatypes in Oracle 10g

    Hi
    I was trying to insert data in database for all the data types defined in Oracle 10g.
    I was successful in maximum cases.
    I was not able to insert data for following datatypes:
    1 Long varraw
    2 string
    3 varraw
    4 varnum
    5 charz
    6 unsigned int
    7 native double
    8 native float
    Please put some light on it.
    Thanks,
    Gyanendra

    Hi Subin,
    You can try couple of things.
    If your data is less than 32767, you can pass it to stored procedure and change it to clob type like
    PROCEDURE CLOBQUERY
         Param     IN     CLOB,
    and you can call Procedure
    EXECUTE CLOBQUERY '[Param.1]'
    If your data is around than 1000000(32767*32), you can break the data in length of 32767 and pass it to param 1 to 32 like
    EXECUTE CLOBQUERY '[Param.1][Param.2][Param.3]..[Param.32]'
    Finally you can try to update jdbc drive.
    check the link Link: [JDBC Limitation|http://confluence.atlassian.com/display/JIRA/UsingOracle10gdriverstosolvethe4000character+limitation]

  • Graph in BEX not displaying data for the selected range

    Hi Gurus,
    I am running a report for the calweek 200801-200840. But the graph is displaying value upto 200835. The data is available in the cube till 200840.
    Please help!!
    Thanks
    Nisha

    Hi Nisha,
    Please check once again whether there is data for 200836 to 200840 for the corresponding selections and restrictions you have mentioned in the design of your query.
    Regards,
    Suresh

  • Problem in uploading data for the Tcode CA02

    Hi,
    I am trying to upload the data for the Tcode ca02  and i am facing a problem i.e. the uploading for the for the 18th  inspection characterstic is not able to being uploaded. I had checked the code of it  and the logic is there.
    It was previously uploading the data for it,but iit is not doing now. I had cheked the program of the screen also the fields are also present..

    would u plz send code.so i can check

Maybe you are looking for

  • How do I get my tabs back in safari on iPad

    Hi, originally every time I went into Safari all my tabs stayed open and there were hundreds of them. I searched the forum and it advised to go to the safari home page, click on private, then delete all tabs, then click on private again. But now if I

  • So... I cannot watch movie on DVD on my HDTV?

    With a cable from my MacBook to my HDTV, I can watch a movie on DVD or anything that I  to pull up the MacBook.  Now, unless I am wrong, I cannot use the setup Apple TV instead of the cable?   Reading over what Apple says about the Apple TV, I though

  • Support for Sony RAW (.SR2) images?

    Does anyone have any information about whether iPhoto is likely to support RAW files from Sony's recent cameras? I have a DSCR1 which saves RAW files in .SR2 format. I understand it's possible to convert these to more common RAW formats, but proper i

  • Cannot access browser

    Hello there, I am posting this message on behalf of my sister. She cannot access her browser on the blackberry curve 8520, it comes up saying please contact your network provider. She is connected to wifi and I do not understand why it won't let her

  • A way to set table type in MySQL?

    Is there a way to set the table type that Kodo uses in MySQL? I use MySQL 4.0 and I want to use the Inno DB tables for my tables because they implement and enforce true foreign keys. TIA Robert