Incorrect Display of Time by Portal Report

Any assistance would be much appreciated:
Portal report display of a date field using MM-DD-
YYYY:HH24:SS:MI is off by 12 hours. Select of same field and
mask via SQL*Plus looks okay.
Thanks in advance,
- LTG

Chetan,
Thanks for responding... I'm not sure I follow your suggestion...
Here is some more info about the problem.
I used the Portal "Reports From Query Wizard" to create a
tabular report from a pretty simple db table containing an
Oracle date field. In the Column Formatting window I entered MM-
DD-YYYY:HH24:MI:SS for the format mask for the Oracle date
field. When I run the report, the Oracle date field is
displayed with an incorrect time (18:52:20 is displayed as
06:52:20). An Sql*Plus query using to_char(timestamp,'MM-DD-
YYYYY HH24:MI:SS') displays the correct time.
I attempted to put to_char(timestamp,'MM-DD-YYYYY HH24:MI:SS')
into the format mask for the Oracle date field in the Column
Formatting screen (instead of MM-DD-YYYY HH24:MI:SS). No
apparent effect.
Did I follow your suggestion correctly? Is there something more
to do? Please advise?
Thanks,
Len Greenberg

Similar Messages

  • Displaying Server time in portal

    Hi All,
    I would like to display server time in portal i have followed below document link to display it but i am unable to get it
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00cfee3a-5369-2c10-a2a3-dbadc322065c?QuickLink=index&overridelayout=true
    Please provide your inputs....
    Thanks,
    Rahul.

    Hi Rahul,
    As you already know about the masthead.jsp file, the java part is compiled and executed on the server side.
    So you can just use the "new Date()" in the java part (inside <%).
    Then you can easily retrieve the date and some other like year, month, etc from that.
    If you only need milliseconds and want to calculate yourself, you can use System.currentTimeMillis().
    Regards,
    Vijay.

  • Displaying date/time in the report of last updating data?

    Hi,
    I have produced a report over a multiprovider. The multiprovider is built up from tow cubes. The data is being updated to one cube each hour and to the another cube one time daily.
    The date/time that display in the report is for the last updating data of the cube that updating one time daily.
    I want that the date\time be updated each hour, in another words, to display the date\time of last updating data to the second cube.
    Any suggestions?

    Hi Mohamad,
    Please read through this discussion for a solution:
    ROLLUPTIME of a multiprovider
    Hope this helps...

  • Display selected parameter in portal report?

    How can one display the parameters, selected in the parameter form on the report?

    Thanks I found it
    Just select "Show Query Conditions" when creating the report.

  • Show system time in Portal Header

    Hi,
    We have a requirement to display current system time/clock at the Netweaver Portal screen (preferably at the header) all time.
    How we can do that ?
    Thank you for your help in adavnce..
    Satya.

    Hi satya,
    For displaying the time in Portal header go through this document . Do some code changes based on your requirement
    [Implementing Digital World Clock on SAP Portal|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/509f3468-2e96-2c10-11b7-f15c42924272?QuickLink=index&overridelayout=true]
    hope this will helpful
    Regards
    Mahesh

  • Report in Crystal 10 incorrectly displays rows when it shouldn't

    We have a problem in Crystal Reports 10 whereby the report incorrect displays 6 rows/records in the report but when we run the exact same SQL statement on its own (outside of Crystal) it does not bring back any results.
    Clare

    That didn't work either. I'm still getting the wrong timestamp.
    But, I did try something else, with more unexpected results. Just for the heck of it, I exported my workbook to excel (the workbook showing the 12:00 AM timestamps). When I opened the Excel file, it has the Archive Date with the correct times. Very strange. I export the workbook with all 17-NOV-09 12:00 AM timestamps in every Archive Date row, and in Excel it opens with the correct dates (17-NOV-09 10:15, 10:18 and 10:23 AM). So weird.
    That seems to reinforce that Discoverer can at least see the dates as they exist in the data warehouse, but for some reason, it insists on displaying 12:00 AM. And exporting the 12:00 AM results to Excel actually produces the correct times. Is this like some Java bug or something? I seem to get bit by Java problems more often than not.
    ***EDIT***
    I shouldn't say your suggestion didn't work entirely. It worked in that I am no longer getting 17-NOV-09 12:00 AM. But, it's returning a timestamp that does not exist for the given record. For example, all 3 Nov 17th timestamps (in the Discoverer report) are now showing 17-NOV-09 10:11 AM. 10:11 AM isn't even a timestamp available in the database for any record in the table. Why did it arbitrarily pick 10:11? It seems like your suggestion to create a TO_CHAR calculation from the column is on the right track, but the 10:11 AM thing is odd.
    Edited by: user527082 on Nov 17, 2009 4:29 PM

  • SOLUTION - How to display a BLOB content in Portal Report

    Courtesy of Kelly Wong:
    1. Every time a record of the file information is inserted into the
    PORTAL30.WWDOC_DOCUMENT table while you inserted a record to the blob
    field in a portal form that you created.
    [The fact that a file uploaded appears in the WWDOC_DOCUMENT table is actually a side-effect of Forms file upload, this may change in a future version. However this example gives a pretty good solution to the problem - Dmitry]
    2. If you describe the PORTAL30.WWDOC_DOCUMENT table, you will find
    that a few of the columns are: NAME, FILENAME, MIME_TYPE, BLOB_CONTENT,
    CREATOR, etc.
    3. I created a pl/sql procedure that takes a NAME parameter.
    The code of the procedure is as follows:
    CREATE OR REPLACE Procedure get_url
    (V_FILENAME IN VARCHAR2)
    IS
    url varchar2(100);
    BEGIN
    url := '/pls/portal30/docs/'&#0124; &#0124;v_filename;
    portal30.wwv_redirect.url(p_url =>url);
    END;
    4. I then created a portal report, select NAME, FILENAME, MIMETYPE,
    CREATOR fields from PORTAL30.WWDOC_DOCUMENT. (remember, no BLOB_CONTENT
    field is selected!) My select statement is:
    SELECT '<A
    HREF="scott.get_url?v_filename='&#0124; &#0124;name&#0124; &#0124;'">'&#0124; &#0124;filename&#0124; &#0124;'</A>' filename,
    name,mime_type,creator
    from portal30.wwdoc_document
    where creator = 'KELLY'
    You can see that I am passing in "NAME" instead of "FILENAME" into the
    get_url procedure because the it needs the "NAME" info to display the
    file.
    Actually, the content in the NAME column is something like:"563.TXT",
    and the content in the FILENAME column is "F15675/IPORTAL_LOCAL.TXT".
    The hyperlink can be either on the NAME or FILENAME field, as long as
    you pass in the content of "NAME" into the procedure.
    And it should be fairly easily to substring the FILENAME to show only
    "IPORTAL_LOCAL.TXT" if the client doesn't like to see the number
    portion.
    That is, when I click on the link, I am able to see my file in a new
    browser window.The only drawback in this scenario is if there is a link
    from your document to a portal component (form/report), it may not link
    to the form/report. If there are links in the document link to other
    document (html, txt, etc.), it will be no problem. It just open the
    document in another browser window.
    Please feel free to give me any comment on this and post it to the forum
    if needed. I just don't want to search for the original questions in
    the forum and attach the reply to it.
    Regards;
    Kelly.

    Is this method working also for portal 3.0.9?
    I can't get it to work.
    Is there a way do put a link to download the content of a blob field inside a report in version 3.0.9 that comes with iAS 1.0.2.2?
    Thank's in advance
    Mauro

  • Report to display Average time taken for processing payments".

    Hi,
    I have been asked to develop a report for "Report to display Average time taken for processing payments".
    Could any one guide me technically what are the different tables i need to take to generate the report. Treat this is very urgent. Pls provide sample code too....
    Thanks in advance....

    Given below is the set up for credit card payment processing:
    Set Up Credit Control Areas:
    Define Credit Control Area
    Transaction: OB45 
    Tables: T014
    Action: Define a credit control area and its associated currency.  The Update Group should be ‘00012’.  This entry is required so the sales order will calculate the value to authorize
    Assign Company Code to Credit Control Area
    Transaction: OB38
    Tables: T001
    Action: Assign a default credit control area for each company code
    Define Permitted Credit Control Area for a Company
    Code
    Transaction: 
    Tables: T001CM
    Action: For each company code enter every credit control area that can be used
    Identify Credit Price
    Transaction: V/08
    Tables: T683S
    Action: Towards the end of the pricing procedure, after all pricing and tax determination, create a subtotal line to store the value of the price plus any sales tax.  Make the following entries:
    Sub to:  “A”
    Reqt:  “2”
    AltCTy:  “4”
    Automatic Credit Checking
    Transaction: OVA8
    Tables: T691F
    Action: Select each combination of credit control areas, risk categories and document types for which credit checking should be bypassed.  You need to mark the field “no Credit Check” with the valid number for sales documents.
    Set Up Payment Guarantees
    Define Forms of Payment Guarantee
    Transaction: OVFD
    Tables: T691K
    Action: R/3 is delivered with form “02” defined for payment cards.  Other than the descriptor, the only other entry should be “3” in the column labeled “PymtGuaCat”
    Define Payment Guarantee Procedure
    Transaction: 
    Tables: T691M/T691O
    Action: Define a procedure and a description. 
    Forms of Payment Guarantee and make the following entries Sequential Number  “1” 
    Payment Guarantee Form “02”
    Routine Number   “0”    Routine Number can be used to validate payment card presence.
    Define Customer Payment Guarantee Flag
    Transaction: 
    Tables: T691P
    Action: Define a flag to be stored in table. 
    Create Customer Payment Guarantee = “Payment Card Payment Cards (All Customers can use Payment Cards)”.
    Define Sales Document Payment Guarantee Flag
    Transaction: 
    Tables: T691R
    Action: Define the flag that will be associated with sales document types that are relevant for payment cards
    Assign Sales Document Payment Guarantee Flag
    Transaction: 
    Tables: TVAK
    Action: Assign the document flag type the sales documents types that are relevant for payment cards.
    Determine Payment Guarantee Procedure
    Transaction: OVFJ
    Tables: T691U
    Action: Combine the Customer flag and the sales document flag to derive the payment guarantee procedure
    Payment Card Configuration
    Define Card Types
    Transaction: 
    Tables: TVCIN
    Action: Create the different card types plus the routine that validates the card for length and prefix (etc…) 
    Visa , Mastercard, American Express, and Discover 
    Create the following entries for each payment card 
    AMEX  American Express ZCCARD_CHECK_AMEX Month
    DC  Discover Card  ZCCARD_CHECK_DC  Month*****
    MC  Mastercard  ZCCARD_CHECK_MC  Month
    VISA  Visa   ZCCARD_CHECK_VISA  Month
    The Routines can be created based on the original routines delivered by SAP. 
    *****SAP does not deliver a card check for Discover Card. We created our own routine.
    Define Card Categories
    Transaction: 
    Tables: TVCTY
    Action: Define the card category to determine if a
    payment card is a credit card or a procurement card.
    Create the following two entries
    Cat Description  One Card  Additional Data
    CC Credit Cards  No-check  No-check
    PC Procurement Cards No-check  Check
    Determine Card Categories
    Transaction: 
    Tables: TVCTD
    Action: For each card category map the account number range to a card category.  Multiple ranges are possible for each card category or a masking technique can be used.  Get the card number ranges from user community.  Below is just a sample of what I am aware are the different types of cards. 
    Visa Credit  Expires in 7 days. 
        400000   405500
        405505   405549
        405555   415927
        415929   424603
        424606   427532
        427534   428799
        428900   471699
        471700   499999
    Visa Procurement  Expires in 7 days.
        405501   405504
        405550   405554
        415928   415928
        424604   424605
        427533   427533
        428800   428899
    Mastercard Credit Expires in 30 days
        500000   540499
        540600   554999
        557000   599999
    Mastercard Procurement Expires in 30 days
        540500   540599
        555000   556999
    American Express Credit Expires in 30 days
        340000   349999
        370000   379999
    Discover Card Credit Expires in 30 days
        601100   601199
    Set Sales Documents to accept Payment Card Information Transaction: 
    Tables: TVAK
    Action: Review the listing of Sales Document types and enter “03” in the column labeled “PT” for each type which can accept a payment card
    Configuration for Authorization Request
    Maintain Authorization Requirements
    Transaction: OV9A
    Tables: TFRM
    Action: Define and activate the abap requirement that determines when an authorization is sent.  Note that the following tables are available to be used in the abap requirement (VBAK, VBAP, VBKD, VBUK, and VBUP).
    Define Checking Group
    Transaction: 
    Tables: CCPGA
    Action: Define a checking group and enter the
    description.  Then follow the below guidelines for the remaining fields to be filled.
    AuthReq Routine 901 is set here.
    PreAu  If checked R/3 will request an authorization for a .01 and the authorization will be flagged as such. (Insight does not use pre-authorization check).
    A horizon This is the days in the future SAP will use to determine the value to authorize
    (Insight does not use auth horizon period).
    Valid  You will get warning message if the payment card is expiring within 30 days of order entry date. 
    Assign Checking Group to Sales Document
    Transaction: 
    Tables: TVAK
    Action: Assign the checking group to the sales order types relevant for payment cards
    Define Authorization Validity Periods
    Transaction: 
    Tables: TVCIN
    Action: For each card type enter the authorization validity period in days.
    AMEX American Express 30
    DC Discover card  30
    MC Master card  30
    VISA Visa   7
    Configuration for clearing houses
    Create new General Ledger Accounts
    Transaction: FS01
    Tables: 
    Action: Two General Ledger accounts need to be created for each payment card type.  One for A/R reconciliation purposes and one for credit card clearing.
    Maintain Condition Types
    Transaction: OV85
    Tables: T685
    Action: Define a condition type for account determination and assign it to access sequence “A001”
    Define account determination procedure
    Transaction: OV86
    Tables: T683 / T683S
    Action: Define procedure name and select the procedure for control.  Enter the condition type defined in the previous step.
    Assign account determination procedure
    Transaction: 
    Tables:
    Action: Determine which billing type we are using for payment card process.
    Authorization and Settlement Control
    Transaction: 
    Tables: TCCAA
    Action: Define the general ledger accounts for reconciliation and clearing and assign the function modules for authorization and settlement along with the proper RFC destinations for each.
    Enter Merchant ID’s
    Transaction: 
    Tables: TCCM
    Action: Create the merchant id’s that the company uses to process payment cards
    Assign merchant id’s
    Transaction: 
    Tables: TCCAA
    Action: Enter the merchant id’s with each clearinghouse account

  • How do I display blob (image) in a Portal Report

    I am using 9ias 10222 and portal 30983 and I have a table that stores an image as a blob and have a varchar field to store the mime type. I have created a form to upload the image and can then query the form to display the image.
    How do I dislay the image in a Portal Report/Dynamic Page Component. I have followed note 68016.1 but the retrieve_img_data procedure does not work it gives a wwv-11230 error.
    Any ideas? Any help would be appreciated.
    Thanks
    Belinda

    Hi,
    Can you display what code you used for this? I followed note 172045.1 and everything compiles properly but when I run the report, I just get a box with a red X in it, like it is not finding the picture. I ran the procedure that downloads the image and it works fine from there. Thanks.

  • Display portal report in new window

    In 9.0.2, I have a sql based portal report displayed on my page. I would like to create links that open up a new report in a different browser window. Is this possible? For example:
    My 1st report lists the Deptno, Deptname in a tabular display. I created a link on the Deptname that calls up all employees in the department. I want that report to show in a new window. When I select a different Deptno, it should re-display with the correct employees.

    Not familiar with using this:
    wwctx_api.get_proc_path(p_url =>
    Can you give me a little help. Here is my SQL curentky be processed on the graph.
    select 'STARS3.ADMIN_DAILY_ATT_DET.SHOW?p_arg_names=v_student_id&p_arg_values='||replace(:student_id,'%','%25') ||
    '&p_arg_names=v_atcode_desc&p_arg_values='||replace(replace(C.atcode_desc,'%','%25'),' ','%20')||'&p_arg_names=_v_atcode_desc&p_arg_values=%3D'
    the_link,
    the_name,
    count(*) the_data

  • CProject descriptions in Display working time report

    Hi Gurus,
    in our system we set the integration with HR, and we tranfer via ALE personnel numbers from R/3 to BP in cProject. We record time with timesheet to wbs linked to cProject tasks.
    I have a problem in report CATS_DA "Display working time" with cProject descriptions
    In this report, fields CPR_TEXT & CPR_OBJTEXT in the CATSDB_ALV output structure are always blank. I checked table IAOM_CPRO_EXAT in R/3, where cProject description can be found, but it seems that no access to this table is done when executing CATS_DA.
    Any idea how to show cproject task and project destription in CATS_DA?
    Thanks in advance
    Roberto

    Hi Roberto,
    I think, the description of the project should be retrieved remotely from cProject system.
    You can apply the check report in
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=61926
    and debug the result of the call:
    Get worklist for cProjects
    CALL FUNCTION 'DPR_API_CATS_WORKLIST' DESTINATION lt_receivers
       EXPORTING
    Kind regards,
    Zhenbo

  • Displaying " Maximum retrieval time " in WEBI report

    Hi ,
    I want to display " Maximum time taken by the report to run " in the webi intelligence report.
    Please let me know if there are any built in functions .
    Regards,
    Dirasa

    Hi,
    There are some pre defined functions in BO. For your requirement try this function .
    = LastExecutionDuration(DataProvider([Any object of data provider])) -> gives the max amount of time taken for refresh/execution if it executed first time.
    Cheers,
    Suresh ALuri.

  • Portal report execution time

    Hi experts,            
    Can any one tell me how to check the report execution time in portal.Its taking a long time to execute
    the report in portal.so i would like to evaluate the execution time in portal itself.
    I know how to check it at bi side but here iam intrested to know at portal itself and it varies
    at bi side RSRT and at portal level. At RSRT and in Analyzer its taking expected time only but in
    portal its taking long time.
    Regards,
    Shais

    Thanks Alot For your reply.
    Its working. when i run the statistics i got the below details .
    Step runtime: 7532 ms   -
    > is this the total time taken to execute the report?
    Remote runtime :6845 ms
    Local runtime :687 ms
    Handle types olap frontend events:
      - BRFC: 78 ms
      - DP: 237 ms
      - OLAP: 6443 ms
      - DFLT: 95 ms
      - DIAL: 0 ms
      - APPL: 391 ms
      - F4: 4 ms
      - CMD: 110 ms
      - ITEM: 109 ms
    what is meant by remote run time, local run time,BRFC .......... Can you explain me in details.
    Waiting for your reply,
    Regards,
    Shais.

  • Displaying parameter form in Portal

    we have reports created using 9i reports builder and are running them using 9ias portal version 9.0.2.2.22
    can we get the parameter form displaying before the report is run, as at the moment it either gives an error because parameters have not been entered, or it runs with the last used parameters which may not be the ones required for this time ( and so reports take awhile to run)

    hi
    You could look at http://www.oracle.com/technology/products/discoverer/files/viewlets/1012_dashboard.html
    I don´t remember if here you create the simple parameter form. But there is a portlet called "Simple Parameter Form", you can find it at Portlet Builders. You can reach this link in your Oracle portal in the Edit link, in the add portlet link.
    then you can follow the wizard to create your parameter portlet
    After this step you should link the parameters you send through this portlet with the page and the other portlets.
    I hope this help

  • "Display Work Schedule" in Portal( Generic iviews)

    Hi All,
    Is there any way to display the "Display Work Schedule " in Portal.
    We are trying use the Generic iViews to display the reports in Portal and we created a SAP Query with the IT 7 ( Planned working time ) .
    Here we would like to see the view thats similar to the view we see when we go display of IT 7 and then click on "Display Work Schedule "
    Can some one tell me how we can acheive this " Display Work Schedule" thru generic iview in Portal.
    Appreciate your valuable inputs on this.
    thnks,
    NR

    hai..
    The iViews and Web Dynpro applications of the Business Package for Employee Self-Service (ESS) are based on the Floor Plan Manager. Business Package for Self-Service Administrator.
    SAP Service Marketplace at service.sap.com/ep-content , BP Product Availability Matrix.

Maybe you are looking for

  • GR Print Out Put Types

    Hi Wats the diff between invidual slip and collective slip in MIGO screen Wats the std out put type for GR print out in mb90 Vijay

  • What does 'waiting' mean on a doc in iCloud?

    I use iCloud to store my Numbers documents. I have used only .22 GB of space so far. I have a several Numbers doc in the cloud of my MacBook Pro. The most recent doc has the word "waiting" underneath it. The doc opens OK on my MacBook; I don't see it

  • Aperture replaces images with other images that have the same image number

    Help! Aperture has started replacing images in recent projects with older images from elsewhere on my hard drive that have the same image number. Obviously I need a better numbering system, but can someone help me figure out why this is happening? I

  • I have no scroll bar on the right side; how do I get it back?

    I followed Co-rel's instructions and got my mail back on the page--thank you-- but there is no scroll bar to scroll through the mail in the inbox. There is a scrollbar on the left to scroll through folders.

  • Handoff not working for iWork apps, but ok with Safari, Mail, etc.

    Handoff is working fine between my iPhone and my rMBP for Safari, Mail, Calendar, Maps, etc. but not working with Pages, Numbers and Keynote.  Have updated Pages, Numbers and Keynote to latest versions on both OS X and iOS. Any ideas?