Query to bring 6 rolling pay check date at any point of time

Hi,
we have a date dimension dim_date which is having calendar date. I need to write a query which will always bring 6 rolling pay check dates ant any point of time. there is 14 days gap between each pay check date and it is fall on friday. please take below example as a reference and help me to write query as per my requirement. thanks in advance.
pay check date example:
3/23/2012
3/09/2012
2/24/2012
2/10/2012
1/27/2012
Thanks
Jay.

The to_char function with 'D' mask returns the day of the week:
Sunday is 1, we need to sum 6-mod(1,7)=5 for next friday
Monday is 2, we need to sum 6-mod(2,7)=4 for next friday
Tuesday is 3, we need to sum 6-mod(3,7)=3 for next friday
Wednesday is 4, we need to sum 6-mod(4,7)=2 for next friday
Thursday is 5, we need to sum 6-mod(5,7)=1 for next friday
Friday is 6, we need to sum 6-mod(6,7)=0 for next friday (well, current or next friday)
Saturday is 7, we need to sum 6-mod(7,7)=6 for next friday
So, we always need to sum 6-mod(to_char(sysdate, 'D'), 7) to found the current or next friday:
SQL> select to_char(sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') next_friday from dual;
NEXT_FRIDAY
2012-02-17
And, adding other 14 days for each next rolling pay chack, we have:
SQL> select to_char(sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
2 union all
3 select to_char(14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
4 union all
5 select to_char(14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
6 union all
7 select to_char(14+14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
8 union all
9 select to_char(14+14+14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
10 union all
11 select to_char(14+14+14+14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual;
ROLLING_DA
2012-02-17
2012-03-02
2012-03-16
2012-03-30
2012-04-13
2012-04-27
6 rows selected.
Please check the results in your instance, because week day numbers are NLS dependents
I hope this helps
Best Regards
Alfonso Vicente
[http://www.logos.com.uy/el_blog_de_alfonso]

Similar Messages

  • A "designer" file being worked on a machine, is checked-in regularly, if at any point of time the latest version of that file is taken on the same machine, all the data gets deleted

    A “designer” file being worked on a machine, is checked-in regularly, if at any point of time the latest version of that file is taken on the same machine, all the data gets deleted

    Hi,
    Could you provide us more information to help you?
    If you have resolved the issue, it would be better if you can post the solution here, which will help others.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make rolling plan at any point of time for 12 months using SOP/LTP?

    Hi Gurus,
    I am configuring an MTS scenario where the client desires that at any point of time, when he does planning, system should do a rolling plan. For example, let us say that we first do the planning in Jan for Jan to Dec. When he does the planning again in Feb, it should become a plan for Feb to Jan and so on. Is this possible in SOP/LTP? Please advise. Thanks.
    Regards,
    SB

    Yes. This is normal for SOP, but what are looking to achieve using LTP? Is this rolling plan operative, or simulative?

  • Pl/sql block reading reading table data from single point in time

    I am trying to figure out whether several cursors within a PL/SQL block are executed from within a Single Point In Time, and thus do not see any updates to tables made by other processes or procedures running at the same time.
    The reason I am asking is since I have a block of code making some data extraction, with some initial Sanity Checks before the code executes. However, if some other procedure would be modifying the data in between, then the Sanity Check is invalid. So I am basically trying to figure out if there is some read consistency within a PL/SQL, preventing updates from other processes to be seen.
    Anyone having an idea?.
    BR,
    Cenk

    "Transaction-Level Read Consistency
    Oracle also offers the option of enforcing transaction-level read consistency. When a transaction runs in serializable mode, all data accesses reflect the state of the database as of the time the transaction began. *This means that the data seen by all queries within the same transaction is consistent with respect to a single point in time, except that queries made by a serializable transaction do see changes made by the transaction itself*. Transaction-level read consistency produces repeatable reads and does not expose a query to phantoms."
    http://www.oracle.com/pls/db102/search?remark=quick_search&word=read+consistency&tab_id=&format=ranked

  • Query Question - Linking in Time Span Data to Point-in-Time References

    I am trying to pull historical data from a time-span table of records, using another point-in-time reference. I have been unsuccessful.
    I've thrown some sample tables and data together to illustrate what I am seeking:
    Create Table EmployeeInfo (
           id Number(10,0),               -- Employee ID Number
           Name VarChar2(32 Byte),        -- Employee Name
           CurrentShift VarChar2(2 Byte)  -- Current Employee Shift
    Create Table ShiftChanges (
           id Number(10,0),               -- Employee ID that this shift change record is for
           ChangeDate Date,               -- Date that this Change Took Place
           OldShift VarChar2(2 Byte),
           NewShift VarChar2(2 Byte)
    Create Table TimeCard(
           id Number(10,0),               -- Employee ID Number for this Timecard
           WorkDay Date,                  -- What Day is this Timecard for?
           Hours Float(63)                -- Number of Hours worked.
    COMMIT;
    INSERT INTO EmployeeInfo VALUES (100,'John Doe','Days')
    INSERT INTO EmployeeInfo VALUES (101,'Jane Doe','Days');
    INSERT INTO TimeCard VALUES (100, to_date('01012010','ddmmyyyy'), 10.5);
    INSERT INTO TimeCard VALUES (101, to_date('01012010','ddmmyyyy'), 10);
    INSERT INTO TimeCard VALUES (100, to_date('02012010','ddmmyyyy'), 9);
    INSERT INTO TimeCard VALUES (101, to_date('02012010','ddmmyyyy'), 10.5);
    INSERT INTO TimeCard VALUES (100, to_date('03012010','ddmmyyyy'), 8);
    INSERT INTO TimeCard VALUES (101, to_date('03012010','ddmmyyyy'), 7);
    INSERT INTO ShiftChanges VALUES (100, to_date('02012010','ddmmyyyy'), 'Nights', 'Days');
    COMMIT;I could do a query such as:
    SELECT TC.id,
           EM.Name,
           TC.Workday,
           EM.CurrentShift AS Shift
    FROM   TimeCard TC,
           EmployeeInfo EM
    WHERE  (TC.ID=EM.ID(+));But it will not give me the historical shift, only the current. Since John Doe changed shifts on Jan 2 from Nights to Days, the above query would not reflect it.
    I have attempted to join the historical table using a less-than operator. This doesn't work since more than one row can be returned.
    SELECT TC.id,
           EM.Name,
           TC.Workday,
           SC.NewShift AS Shift
    FROM   TimeCard TC,
           EmployeeInfo EM,
           ShiftChanges SC
    WHERE  (TC.ID=EM.ID(+)) AND
           (TC.ID=SC.ID(+) AND TC.WORKDAY<=SC.WORKDAY(+));The problem stems from the fact that you need to examine multiple records in one table in order to obtain the correct historical data for the other.
    The following SQL script {color:green}does work{color} - if the values are defined ahead of time.
    DEFINE EMPID=101;
    DEFINE CHGDATE=to_date('01/01/2010','dd/mm/yyyy');
    SELECT SQ.Shift
    FROM   (SELECT  ShiftChanges.NewShift AS Shift,
                    RANK() OVER (ORDER BY ShiftChanges.ChangeDate DESC) R
            FROM    ShiftChanges
            WHERE   ShiftChanges.id = &EMPID AND
                    ShiftChanges.ChangeDate <= &CHGDATE
            ) SQ
    WHERE R = 1However, I have been unsuccessful in adapting it to the example tables I provided. If I insert the query as an inline subquery* in the select statement, it won't work, since the criteria is nested two levels down, and I can only get parent values within the first level.
    I haven't thought of a way I can do this using a nested subquery - I keep running into that problem - how do you link in Time-Span data with a point-in-time reference.
    Any ideas / enlightening thoughts?
    Thank You
    {size:8}_SELECT * FROM V$VERSION information:_
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    PL/SQL Release 9.2.0.8.0 - Production
    "CORE     9.2.0.8.0     Production"
    TNS for 32-bit Windows: Version 9.2.0.8.0 - Production
    NLSRTL Version 9.2.0.8.0 - Production
    {size}
    user10879184 re-wrote the original post on 29-Mar-2010 1:21 PM to reflect suggestions made by poster.

    I changed the tables to hold VARCHAR2(6) shift information and your query to reference the ChangeDate column.
    I also assume you meant to link a TimeCard entry with the most previous ShiftChange entry rather than one that occurs after the time worked (TC.WORKDAY>=SC.CHANGEDATE(+) rather than TC.WORKDAY<=SC.CHANGEDATE(+)):
    Another issue you don't take into account the case where there has been no shift change. In that event you need the current shift from the EmployeeInfo table which is taken care of with the NVL function.
    You correctly note that multiple shift change records will result in duplicate TimeCard records though your test data fails to check for that condition. I added this row:
    SQL> INSERT INTO ShiftChanges VALUES (100, to_date('03012010','ddmmyyyy'), 'Days', 'Nights'); Now it is apparent
    SQL> SELECT TC.id,
      2         EM.Name,
      3         TC.Workday,
      4         NVL(SC.NewShift,EM.CurrentShift) AS Shift
      5  FROM   TimeCard TC,
      6         EmployeeInfo EM,
      7         ShiftChanges SC
      8  WHERE  TC.ID=EM.ID(+) AND
      9         TC.ID=SC.ID(+) AND TC.WORKDAY>=SC.CHANGEDATE(+);
            ID NAME                             WORKDAY   SHIFT
           100 John Doe                         01-JAN-10 Days
           100 John Doe                         02-JAN-10 Days
           100 John Doe                         03-JAN-10 Days
           100 John Doe                         03-JAN-10 Nights
           101 Jane Doe                         01-JAN-10 Days
           101 Jane Doe                         02-JAN-10 Days
           101 Jane Doe                         03-JAN-10 Days
    7 rows selected.The reason for the duplicate Jan3 time is the two shift change records. We are matching both ShiftChange records that occured before the 3rd.
    We also see that your test data has John starting out on Days and then shifting from Nights to Days on the 2nd for no real change. Fixing that:
    SQL> DELETE from ShiftChanges where ID = 100;
    2 rows deleted.
    SQL> INSERT INTO ShiftChanges VALUES (100, to_date('02012010','ddmmyyyy'), 'Days', 'Nights');
    1 row created.
    SQL> INSERT INTO ShiftChanges VALUES (100, to_date('03012010','ddmmyyyy'), 'Nights', 'Days');
    1 row created.Then:
    SQL> SELECT TC.id,
      2         EM.Name,
      3         TC.Workday,
      4         NVL(SC.NewShift,EM.CurrentShift) AS Shift
      5  FROM   TimeCard TC,
      6         EmployeeInfo EM,
      7         (SELECT ID, Workday, ChangeDate, NewShift
      8          FROM
      9                 (SELECT TC2.ID, TC2.Workday, SC2.ChangeDate, SC2.Newshift,
    10                         MAX (SC2.ChangeDate) KEEP (DENSE_RANK LAST ORDER BY SC2.ChangeDate)
    11                                              OVER (PARTITION BY SC2.ID, TC2.Workday) AS Max_ChangeDate
    12                  FROM   ShiftChanges SC2,
    13                         TimeCard TC2
    14                  WHERE  TC2.Workday >= SC2.ChangeDate
    15                  AND    TC2.ID = SC2.ID
    16                  )
    17          WHERE   ChangeDate = Max_ChangeDate
    18          ) SC
    19  WHERE  TC.ID=EM.ID(+) AND
    20         TC.ID=SC.ID(+) AND
    21         TC.Workday=SC.ChangeDate(+) AND
    22         TC.Workday = SC.Workday(+);
            ID NAME                             WORKDAY   SHIFT
           100 John Doe                         01-JAN-10 Days
           100 John Doe                         02-JAN-10 Nights
           100 John Doe                         03-JAN-10 Days
           101 Jane Doe                         01-JAN-10 Days
           101 Jane Doe                         02-JAN-10 Days
           101 Jane Doe                         03-JAN-10 Days
    6 rows selected.The inline view finds the greatest ChangeDate less than the TimeCard Workday for each Workday.

  • Dynamic parameter doesn't bring in all the data

    Hi All,
    Crystal 11.5.10.1263
    Ok, I'm stumped. 
    I created a query that brings in all the data.
    I pasted the query in the report and it brings in all the data.
    I created a simple dynamic parameter to select the "ID" field.
    I looked for ID 1539 and saw that tons of IDs were missing,
    including 1539.
    I've already broken down the report and created tests,
    keeping them as simple as possible.
    The report without a parameter shows all the data.
    I also tried a static parameter just to see what would happen,
    and I got the same results as the dynamic parameter - lots of missing data.
    I guess that proves it's not the parameter, so I'm stumped.
    Signed,
    Stumped Jimmy

    hey stumped jimmy,
    you can increase the number of parameter values via a reg key...
    HKEY_CURRENT_USERSoftwareBusiness ObjectsSuite 12.0Crystal ReportsReportView
    uisng the decimal value  for "PromptingLOVBatchSize".
    please see the support note [here |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333333383331333333363331%7D.do]for more info.
    cheers,
    jamie

  • Error - Conditions in IDoc E1EDP05 have been transferred: Check data

    Hi
    I am procesing a ORDERS05 idoc .
    in foreground the document is posted but when i run the idoc in background i get the following error.
    <b>Conditions in IDoc E1EDP05 have been transferred: Check data
    </b>
    any idea why is such an error is occuring
    Thanks
    Nikhil

    Hi,
    I have same problem here 'Conditions in IDoc E1EDP05 have been transferred: Check data' while transfer PO to SO.
    I have tried in doing SMME, but it show me 'Client 800 has status 'not modifiable''.
    What I should do the next?
    Many Thanks.

  • DATE QUERY (Need to find the financial dates)

    **I want to get the first and last financial dates of any year when i enter some date**
    Say, If i enter today's date "07-aug-2012", The query should written me the financial dates are 01-apr-2012 to 31-mar-2013
    And Note : That query should written me the financial dates of any year. (" not only this year alone ")
    Is there any possibility to find query for this?
    Shoot me if possible!!!

    with t as (
               select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    select to_char(add_months(fiscal_year,3),'DD-MON-YYYY') fiscal_year_start,
           to_char(add_months(fiscal_year,15) - 1,'DD-MON-YYYY') fiscal_year_end
      from t
    / For example:
    SQL> with t as (
      2             select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
      3            )
      4  select to_char(add_months(fiscal_year,3),'DD-MON-YYYY') fiscal_year_start,
      5         to_char(add_months(fiscal_year,15) - 1,'DD-MON-YYYY') fiscal_year_end
      6    from t
      7  /
    Enter value for enter_date: 2012-08-07
    old   2:            select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    new   2:            select trunc(add_months(date '2012-08-07',-3),'YYYY') fiscal_year from dual
    FISCAL_YEAR FISCAL_YEAR
    01-APR-2012 31-MAR-2013
    SQL> /
    Enter value for enter_date: 2013-03-31
    old   2:            select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    new   2:            select trunc(add_months(date '2013-03-31',-3),'YYYY') fiscal_year from dual
    FISCAL_YEAR FISCAL_YEAR
    01-APR-2012 31-MAR-2013
    SQL> /
    Enter value for enter_date: 2013-04-01
    old   2:            select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    new   2:            select trunc(add_months(date '2013-04-01',-3),'YYYY') fiscal_year from dual
    FISCAL_YEAR FISCAL_YEAR
    01-APR-2013 31-MAR-2014
    SQL> SY.

  • Syntax to export 18 months of data at any given time using variables?

    I have written a calculation script for exporting data from an application using DATAEXPORT. I want to get 18 months of data in my exported text files at any point of time. So, I want to specify the range using variables for Period and Year but I am kind of stuck on how should I be writing it in my script.
    Please let me know the correct syntax using variables or if you could share some link that would help me know that would be a help.
    Can I use @XRANGE Function???
    Thanks !

    Srinivas --> Thanks for clarifying that. After I read your post I did go through the @XRANGE again and noticed that they had use cross dimensional operators so it put me in a confusion. But you cleared it by being more specific this time. Thanks a lot !
    If I follow what Robb suggested then like you mentioned when 3 years will be involved its going to be difficult I guess. Not sure at this point which way would be the best to get this work.
    I agree with CL - 18 months rolling forecast can be annoying seriously.
    Can one of you please suggest me a permanent and most efficient solution for this out of all the ideas that would not require manual work and can be automated completely?
    Thank you all for your inputs. I really appreciate it.
    Edited by: 892254 on Nov 3, 2011 6:30 AM

  • HT4847 Can we check camera roll and documents data which we had back up byiphone ??

    Can we check camera roll and documents data which we had back up byiphone ??

    Consider it a loss... sorry

  • Terms of payment in IDoc E1EDK18 have been transferred: Check data

    hi Firends,
    In my scenario  , i have to convert incoming purchase order to sales order in my system . I am able to get message from partner and idoc is created to the message bt it contains error,
    tht is Terms of payment in IDoc E1EDK18 have been transferred: Check data
    related to this I had gone through note 388120 - Transfer of conditions and terms of payment.
    which says that i have to maintain tht entry in SMME tcode.
    My confusion here is, while I tested same scenario in development , and quality server , it was not giving any such error bt in prod system i m gettin this error.
    Also if some one knows more details abt this note ,let me know.
    Thanks ,
    Brijesh Soni

    Hi Brijesh,
      you are more likely to get a response for this query if you create a thread in the SD forum.
    Regards
      Kenny Scott
      XI/PI SDN Forum Moderator

  • How to check data in the cube

    for integration purpose, how can you go and check data in the cube and validate it against the query data ? i know we can go to corresponded infocube and right click "display data" but what's on the query is not available when i execute "display data"
    Thanks

    You can always use the similar set of Restrictions as used in RKF and get the value very close to what RKF is displaying.
    But getting the same values in CKF is a bit tough..I can suggest may be you can take few/1-2 examples and do the calculations manually and compare the query result and Infocube data.

  • Report designer - Check Data Provider button missing

    Hi,
    We are in Bi 7.0 Sp 17. I found out that reports designer with hierarchies don't offer the 'check data provider' button- In field catalog, over the query, right button. If report has a fixed structure button appears...
    I need it to refresh the dataprovider with new filter values set in the query
    Have you noticed this? Do you think it's a bug in report designer or can it be my sapgui version?
    Regards,
    Ruben

    Hi Ruben,
    I think I am correct in the following, it is my understanding that the Check Data Provider button only works on fixed (Static) structures not dynamic characteristics.  Therefore if you add in additional characteristics (dynamic) after you have inserted the dataprovider into the report designer then you will not be able to use the Check Data Provider button.
    Please see the following link for explanation.
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/8a95791b1f22a8e10000000a1553f6/content.htm
    If you find additional help on this please share, as RD has caused lots of "challenges" and is still in development as far as I am concerned.  Be glad when its superceded.
    Regards
    Nick

  • US Payroll -Employee Pay-Checks and its impact on G/L accts

    Hi Experts,
                    I am faced with a dilemma with this issue. It will be great if you can let me know on how to go about this issue:
    US - Two employee pay checks dated in December of 2008 were voided in January 2009. Not only is this reflected in the 2008 state tax withholding data, which it should be, but  it is also subtracting from the G/L and the payroll reconciliation reports for 1st Qtr 2009.  This should not happen. 
    The W-2 reports are correct.
    This is also affecting the unemployment reporting for these states as well.
    Thanks And Regards,
    Somdeb Banerjee.

    No response yet. Hence closing this thread.
    Regards,
    Somdeb.

  • How to check data in physical standby database?

    Hi!
    I'm maintaining physical standby database system. everyday, i must check tranfer and apply progress. I known, it operate very good. No archive gap is found.
    But i want to check data in physical standby database that there is consistant with primary database, there isn't? What method do I use? How to do?
    thankS

    I hope the following will help
    Verifying the Physical Standby Database
    ==========================================
    Once you create the physical standby database and set up log transport services, you may want verify that database modifications are being successfully shipped from the primary database to the standby database.
    To see the new archived redo logs that were received on the standby database, you should first identify the existing archived redo logs on the standby database, archive a few logs on the primary database, and then check the standby database again. The following steps show how to perform these tasks.
    Step 1 Identify the existing archived redo logs.
    On the standby database, query the V$ARCHIVED_LOG view to identify existing archived redo logs. For example:
    SQL> SELECT SEQUENCE#, FIRST_TIME, NEXT_TIME
    2 FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
    SEQUENCE# FIRST_TIME NEXT_TIME
    8 11-JUL-02 17:50:45 11-JUL-02 17:50:53
    9 11-JUL-02 17:50:53 11-JUL-02 17:50:58
    10 11-JUL-02 17:50:58 11-JUL-02 17:51:03
    3 rows selected.
    Step 2 Archiving the current log.
    On the primary database, archive the current log using the following SQL statement:
    SQL> ALTER SYSTEM ARCHIVE LOG CURRENT;
    Step 3 Verify that the new archived redo log was received.
    On the standby database, query the V$ARCHIVED_LOG view to verify the redo log was received:
    SQL> SELECT SEQUENCE#, FIRST_TIME, NEXT_TIME
    2> FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
    SEQUENCE# FIRST_TIME NEXT_TIME
    8 11-JUL-02 17:50:45 11-JUL-02 17:50:53
    9 11-JUL-02 17:50:53 11-JUL-02 17:50:58
    10 11-JUL-02 17:50:58 11-JUL-02 17:51:03
    11 11-JUL-02 17:51:03 11-JUL-02 18:34:11
    4 rows selected.
    The logs are now available for log apply services to apply redo data to the standby database.
    Step 4 Verify that the new archived redo log was applied.
    On the standby database, query the V$ARCHIVED_LOG view to verify the archived redo log was applied.
    SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG
    2 ORDER BY SEQUENCE#;
    SEQUENCE# APP
    8 YES
    9 YES
    10 YES
    11 YES
    4 rows selected.

Maybe you are looking for

  • My bookmarks changed after update to OS 10.9.2, how do I get back to my current bookmarks?

    I've never posted here before so bear with me... I have bookmarks that I deleted months ago showing and some recent ones that are now missing since the update.  I haven't had to restore anything since I've owned my iMac (2007) so anything involving t

  • Posting payments REMADV

    I am attempting to post payments into SAP from a POS system. I am attempting to use REMADV with process code REMC. I believe this is a payment advice with clearning (which I believe posts payments to a customer account ??). Please advise if that is c

  • How do I close applications in Lion?

    Granted I'm still trying to find my way around Lion and I'm sure I have just not stumbled upon this yet but how the heck do you close out apps, web sites, ANYTHING now?! I hate that I have to keep swiping back and forth and that there are so many win

  • User Mode Linux

    Well, I've built a 2.6.15 UML kernel package and I made a filesystem using archbootstrap... I've been wrestling with it for several hours now and I FINALLY have it booting... kind of! I've had to boot into runlevel 1 and then run init 3 otherwise it

  • Column Header Wrapping Issue in OBIEE

    Hi All, We are facing issue with the Column Header Wrapping . Our requirement is to wrap the column header to three lines. Few users are able to see the wrapped header in three lines, few are able to see it in two lines . Even though the Browser is s