Issue with case statment on particular column

We have a case statement on a particular column in rpd. Report works fine when this column is not included in the report. Including the column fails to generate the below strange error
State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error code: 1445, message: ORA-01445: cannot select ROWID from, or sample, a join view without a key-preserved table at OCI call OCIStmtExecute. [nQSError: 17010] SQL statement preparation failed. (HY000)
Thanks in Advance
Surya

CASE WHEN "INVOICE AND PAYMENTS"."ACCESS LEVEL".ENTITY_CODE = 'SCS' THEN "INVOICE AND PAYMENTS"."CODE COMBINATIONS".SEGMENT2 ELSE "INVOICE AND PAYMENTS"."CODE COMBINATIONS".SEGMENT7 END ..
There are ten colums in BMM layer, all of them has similar case statements.

Similar Messages

  • Issue with Case Statment Bit Urgent.

    Hi Friends,
    I am using a Case in my select statment but problem is i have used group by clause.
    This is the main query.
    SELECT   papf.employee_number OHR,
               papf.business_group_id,
               (CASE
                   WHEN (paaf.effective_start_date = Min("paaf.effective_start_date" From Below Where condition))
                   THEN
                      TO_CHAR (
                         (SELECT   ORIGINAL_DATE_OF_HIRE
                            FROM   apps.per_all_people_f p1
                           WHERE   p1.employee_number = papf.employee_number
                                   AND p1.current_employee_flag = 'Y'),
                         'DD-MON-YYYY'
                   ELSE
                      TO_CHAR (MIN (paaf.effective_start_date), 'DD-MON-YYYY')
                END)                                                                EFFECTIVE_START_DATE,
               DECODE (TO_CHAR (MAX (paaf.effective_end_date), 'DD-MON-RRRR'),
                       '31-DEC-4712', NULL,
                       TO_CHAR (MAX (paaf.effective_end_date), 'DD-MON-RRRR'))      EFFECTIVE_END_DATE,
       FROM   apps.per_all_people_f papf,
               apps.per_all_assignments_f paaf,
               apps.per_grades pg,
               apps.per_jobs pj
       WHERE       papf.person_id = paaf.person_id
               AND papf.employee_number = '2130'
               AND papf.current_employee_flag = 'Y'
               AND paaf.grade_id = pg.grade_id
               AND paaf.job_id = pj.job_id
               AND (   paaf.ass_attribute21 IS NOT NULL
                    OR paaf.ass_attribute22 IS NOT NULL
                    OR paaf.ass_attribute23 IS NOT NULL
                    OR paaf.ass_attribute24 IS NOT NULL
                    OR paaf.ass_attribute25 IS NOT NULL)
               AND EXISTS
                     (SELECT   pap.EMPLOYEE_NUMBER
                        FROM   APPS.PER_ALL_PEOPLE_F PAP
                       WHERE   TRUNC (SYSDATE) BETWEEN PAP.EFFECTIVE_START_DATE AND  PAP.EFFECTIVE_END_DATE
                               AND PAP.CURRENT_EMPLOYEE_FLAG = 'Y'
                               AND PAP.EMPLOYEE_NUMBER = PAPF.EMPLOYEE_NUMBER)
               AND PAAF.EFFECTIVE_START_DATE >
                     NVL (
                        (SELECT   MAX (PAAFA.EFFECTIVE_START_DATE)
                                     EFFECTIVE_START_DATE
                           FROM   APPS.PER_ALL_ASSIGNMENTS_F PAAFA,
                                  APPS.PER_PERIODS_OF_SERVICE PPOSA
                          WHERE   PAAFA.PERIOD_OF_SERVICE_ID =
                                     PPOSA.PERIOD_OF_SERVICE_ID
                                  AND (UPPER (PPOSA.LEAVING_REASON) NOT LIKE
                                          '%TRANSFER%')
                                  AND PPOSA.ACTUAL_TERMINATION_DATE < SYSDATE
                                  AND PAAFA.PERSON_ID IN
                                           (SELECT   DISTINCT PERSON_ID
                                              FROM   apps.per_all_people_f
                                             WHERE   employee_number =
                                                        PAPF.EMPLOYEE_NUMBER)),
                        TO_DATE ('01-JAN-1881')
    GROUP BY   papf.employee_number,
               papf.person_id,
               paaf.assignment_id,
               fnd_date.canonical_to_date (papf.ATTRIBUTE29),
               papf.business_group_id,
               TRIM(SUBSTR (PAAF.ASS_ATTRIBUTE21,
                            INSTR (PAAF.ASS_ATTRIBUTE21, '-') + 1)),
               TRIM(SUBSTR (PAAF.ASS_ATTRIBUTE22,
                            INSTR (PAAF.ASS_ATTRIBUTE22, '-') + 1)),
               UPPER (paaf.ass_attribute23),
               UPPER (paaf.ass_attribute24),
               UPPER (paaf.ass_attribute25),
               xx_ijp_get_loc (paaf.ass_attribute23),
               pg.name,
               pj.name
    ORDER BY   papf.employee_number, MIN (paaf.effective_start_date) DESC -----------------
    Output of the query
    EFFECTIVE_START_DATE     EFFECTIVE_END_DATE
    13-JAN-2010     
    15-DEC-2009          12-JAN-2010
    09-JUN-2009          14-DEC-2009
    05-JUN-2009          08-JUN-2009
    22-SEP-2008          04-JUN-2009
    21-APR-2008          21-SEP-2008
    21-JAN-2008          20-APR-2008
    01-JAN-2008          20-JAN-2008
    04-APR-2007          31-DEC-2007While using when in case statment i want to put the condition from where condition of main query and pick the min value of EFFECTIVE_START_DATE column i.e 04-APR-2007 so i can replace this with employee Date of Joining through Case condtion.
    Any solution for this.
    Please suggest it's bit urgent.
    Thanks
    Bachan.

    Bachan wrote:
    Please suggest it's bit urgent.Ok, I'll suggest it's a bit urgent...
    "it's a bit urgent"
    But only to you.
    Everybody who posts a question would like it answering as soon as possible. Do you not think it's rude of you to expect that your question demands more immediate attention than someone elses? Is that fair on all the other people who've just asked their question and are patient enough to wait for answers? Or should they be happy that you're jumping up and down saying "me first! me first!"
    What about everybody who's giving up their own time volunteering to answer questions? They have their own jobs to do as well. Do you not think it's rude to expect them to drop what they're doing to just help you because you think your question is "urgent".
    Typically, you will find that less people will come to help you if you say your question is urgent because most people will ignore it as they consider it rude. The best way to ask you question is to give as much information as possible and ensure you state what your database version is, as well as providing table structures, example data and expected output, so that the most appropriate answer can be given.
    Looking at your code, it's not clear what your problem is as we don't have the input data to try it ourselves.
    One clear issue is:
    TO_DATE ('01-JAN-1881')As you don't specify a format mask so it will rely on your NLS_DATE_FORMAT mask being set to DD-MON-YYYY which, if it's not, will cause the code to either give incorrect results or error.

  • Issue with CAS Console for 3.1.1

    Hi All,
    We are having an issue with the CAS Console in Workbench. We upgraded bot CAS and Tools and Framework to 3.1.1 from the previous versions. We were able to successfully recreate all the crawls and can execute them from the command line. However when opening Workbench and selecting the CAS Console item we don't get anything displayed. The logs show the following:
    2013-01-25 15:55:32,342 WARN [] [1415899750@jetty-7] org.apache.cxf.phase.PhaseInterceptorChain: Interceptor for {http://endeca.com/itl/cas/2011-12}CasCrawlerService#{http://endeca.com/itl/cas/2011-12}getAllModuleSpecs has thrown exception, unwinding now
    org.apache.cxf.interceptor.Fault: Unexpected wrapper element {http://endeca.com/itl/cas/2010-07}getAllModuleSpecs found. Expected {http://endeca.com/itl/cas/2011-12}getAllModuleSpecs.
    at org.apache.cxf.interceptor.DocLiteralInInterceptor.handleMessage(DocLiteralInInterceptor.java:105)
    at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:262)
    at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:122)
    at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:211)
    at org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:213)
    at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:193)
    at org.apache.cxf.transport.servlet.CXFNonSpringServlet.invoke(CXFNonSpringServlet.java:129)
    at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:187)
    at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doPost(AbstractHTTPServlet.java:110)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:166)
    at sun.reflect.GeneratedMethodAccessor124.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.endeca.itl.plugin.ThreadContextRunner$1$1.doWork(ThreadContextRunner.java:19)
    at com.endeca.itl.plugin.ThreadContextRunner.run(ThreadContextRunner.java:110)
    at com.endeca.itl.plugin.ThreadContextRunner$1.invoke(ThreadContextRunner.java:25)
    at $Proxy10.service(Unknown Source)
    at com.endeca.itl.bootstrap.CasBootStrapServlet.service(CasBootStrapServlet.java:105)
    at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
    at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:401)
    at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
    at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
    at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
    at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450)
    at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
    at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
    at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
    at org.mortbay.jetty.Server.handle(Server.java:326)
    Anyone seen this?

    Why a home screen? Option to delete

  • Issue with using formatted date value column in order by clause...

    Hi,
    1) Through a function I am listing all the months in a year.
    like JAN-2007, FEB-2007,MAR-2007......
    2) i am comparing these values against a date value column in a table.
    And if there are no values in a particular period it will return a null value (simply to say, i am using an outer join)
    3) The issue.....
    When join both the queries then the order of the dates is not mainted .....
    My requirement is......
    Jan-2007 = 3
    Feb-2007 = 5
    Mar-2007 = null
    etc.....
    should be acheived.
    But I end up in the alphabetical order of the months....
    like
    Apr-2007 = 5
    Aug-2007 = 10
    etc.....
    Can anybody let me know how can i acheive my resultant output to be ordered by the date and not by character.
    When I use the date column in the order by I run into an error....
    saying....
    ORA-01858: a non-numeric character was found where a numeric was expected
    Its a kind of urgent...
    Any help is appreciated....
    KK

    When I use a outer join as follows....
    "and upper(to_char(a.task_planned_start_date,'mon-rrrr')) = d.period_name(+)"
    All the null periods are ending at the bottom.It's standard behavoiur.
    Seems, you need to sort by a.task_planned_start_date.
    Look below:
    SQL> select e.ename, ec.ename from emp e, emp_copy ec
      2  where e.empno = ec.empno(+);
    ENAME      ENAME
    SMITH      SMITH
    ALLEN
    WARD       WARD
    JONES
    MARTIN     MARTIN
    BLAKE
    CLARK      CLARK
    SCOTT
    KING       KING
    TURNER
    ADAMS      ADAMS
    JAMES
    FORD       FORD
    MILLER
    14 rows selected.
    SQL> select e.ename, ec.ename from emp e, emp_copy ec
      2  where e.empno = ec.empno(+)
      3  order by ec.ename
      4  /
    ENAME      ENAME
    ADAMS      ADAMS
    CLARK      CLARK
    FORD       FORD
    KING       KING
    MARTIN     MARTIN
    SMITH      SMITH
    WARD       WARD
    JAMES
    TURNER
    ALLEN
    MILLER
    BLAKE
    JONES
    SCOTT
    14 rows selected.
    SQL> select e.ename, ec.ename from emp e, emp_copy ec
      2  where e.empno = ec.empno(+)
      3  order by e.ename
      4  /
    ENAME      ENAME
    ADAMS      ADAMS
    ALLEN
    BLAKE
    CLARK      CLARK
    FORD       FORD
    JAMES
    JONES
    KING       KING
    MARTIN     MARTIN
    MILLER
    SCOTT
    SMITH      SMITH
    TURNER
    WARD       WARD
    14 rows selected.Rgds.

  • Issue with case when try to modify the siimple query

    Hello PL/SQL Gurus/Experts,
    I am stuck with an issue (could be simple) but not gettings any headsway -
    select 365/day_num_yr Anul_Fact from Date where date_dt = trunc(sysdate -1) value returns is as - 1.46
    need to write this in the form of case (as i need to multiply this to some other outer query), i want to store it ina variable and and then use the same in outer one -
    but when use the following then it is always returning the value as 0 and not the same output as returned by the above query without case.
    select (case when date_dt =trunc(sysdate -1) then 365/day_num_yr else 0 END) Anul_Fact Kindly help, i appericate your time and effort in advance.

    Thanks for providing the Drop table and CTAS script. It eased the job of creating sample data;
    I only used few data from the table:
    drop table T4;
    create table T4(day_num_yr, date_dt) as
    select 249, to_date('09/05/2012', 'MM/DD/YYYY') from dual union all
    select 250, to_date('09/06/2012', 'MM/DD/YYYY') from dual union all
    select 251, to_date('09/07/2012', 'MM/DD/YYYY') from dual union all
    select 252, to_date('09/08/2012', 'MM/DD/YYYY') from dual;
    select date_dt, sysdate - 1 prev_dt, trunc(sysdate - 1) trunc_prev_dt,
           case when date_dt = trunc(sysdate - 1) then 365 / day_num_yr
                else 0
           end num_day
      from t4;
    DATE_DT                   PREV_DT                   TRUNC_PREV_DT             NUM_DAY               
    05-SEP-12                 06-SEP-12                 06-SEP-12                 0                     
    06-SEP-12                 06-SEP-12                 06-SEP-12                 1.46                  
    07-SEP-12                 06-SEP-12                 06-SEP-12                 0                     
    08-SEP-12                 06-SEP-12                 06-SEP-12                 0See the output. For Date_DT as 6-Sep, i.e. a Day before Today, we are getting the Output, but for other dates we are not.
    One another suggestion I would like to make is, (assuming) you are using the Table only for storing the Current day of Year and not including Public Holidays etc. then you can use a 'DDD' format model to get the Current Day of year starting 1 Jan.
    Something like below:
    select date_dt, sysdate - 1 prev_dt, trunc(sysdate - 1) trunc_prev_dt,
           case when date_dt = trunc(sysdate - 1) then 365 / to_char(date_dt, 'DDD')
                else 0
           end num_day
      from t4;

  • Issue with how to compute additional column in query output.

    Hello PL/SQL Gurus/experts,
    I am using Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production version
    Currently i have the data in the following way -
    drop table T2;
    create table T2(Year, MastTot, BechTot, Tot) as select
    '2008', '20000', '450000', '470000' from dual union all select
    '2008', '50000', '324000', '374000'  from DUAL union all select
    '2009', '25000', '450000', '475000'  from dual union all select
    '2009', '250000', '324000', '574000' from DUAL union all select
    '2010', '120000', '450000', '570000' from dual union all select
    '2010', '52000', '324000', '376000'  from DUAL union all select
    '2011', '220000', '450000', '670000' from dual union all select
    '2011', '52000', '324000', '376000'  from DUAL ;I want the data to be presented in the following way (output)-
    Year     MastTot     %Change     BechTot     %Change     Tot     %Change     %Total
    2009     275000     292.86     774000     0     1049000     24.29     27
    2010     172000     -37.45     774000     0     946000     -9.82     24.35
    2011     272000     58.14     774000     0     1046000     10.57     26.92
    Total     789000     313.54     3096000     0     3885000     25.04     78.28I am using the following sql query -
    select decode(grouping(Year), 0, Year, 'Total') Year,
           To_Char(sum(MastTot), '999,999,999,999,999,999,999.99')  "MastTot",
           To_Char(sum(BechTot), '999,999,999,999,999,999,999.99')  "BechTot",
           To_Char(sum(Tot), '999,999,999,999,999,999,999.99')  "Tot",
           round((sum(Tot)/nullif(max(total_amount),0)) * 100, 2) "%Total"
      From
    select Year,
           sum(MastTot) MastTot,
           sum(BechTot) BechTot,
           sum(Tot) Tot,
           SUM(Tot) over() total_amount
      From t2
    group by Year,Tot
    where Year>'2008'
    group by grouping sets((Year),())
    order by YearBut i am not able to fetch the %Change column. Kindly help me with that.
    All efforts and help in this regard is highly appericated and i will be thankful to you ...

    Hello Purvesh K/jeneesh
    If data turn out to the be following -
    drop table T2;
    create table T2(Year, MastTot, BechTot, Tot) as select
    '2008', '20000', '450000', '470000' from dual union all select
    '2008', '50000', '324000', '374000'  from DUAL union all select
    '2009', '25000', '450000', '475000'  from dual union all select
    '2009', '250000', '324000', '574000' from DUAL union all select
    '2010', '120000', '0', '570000' from dual union all select
    '2010', '52000', '0', '376000'  from DUAL union all select
    '2011', '220000', '450000', '670000' from dual union all select
    '2011', '52000', '324000', '376000'  from DUAL ;and if i use the following sql -
    select year, sum(masttot), sum(change), sum(bechtot), sum(b_change), sum(tot), sum(t_change)
      from (
              select lead(year) over(order by year) year,
                     lead(masttot) over (order by year) masttot,
                     round((lead(masttot) over (order by year) - masttot)/nullif(masttot,0), 4) * 100 Change,
                     lead(bechtot) over (order by year) bechtot,
                     round((lead(bechtot) over (order by year) - bechtot)/nullif(bechtot,0), 4) * 100 B_Change,
                     lead(tot) over (order by year) tot,
                     round((lead(tot) over (order by year) - tot)/nullif(tot,0), 4) T_Change
                from (
                      select year, sum(masttot) masttot, sum(bechtot) bechtot, sum(tot) tot
                        from t2
                       group by year
                       order by year
           ) a
    where year is not null
    group by yearor
    with t
    as (
    select year,masttot,lag(masttot) over(order by year) prevm,
    BechTot,lag(BechTot) over(order by year) prevb,
    tot,lag(Tot) over(order by year) prevt,
    sum(tot) over(order by null) sm_t
    from(
    select Year,
    sum(MastTot) MastTot,
    sum(BechTot) BechTot,
    sum(Tot) Tot
    From t2
    group by Year
    select year,sum(masttot) masttot,
    sum(((masttot-prevm)/nullif(prevm,0))*100) Perc_m,
    sum(BechTot) bechtot,
    sum(((BechTot-prevb)/nullif(prevb,0))*100) Perc_b,
    sum(tot) tot,sum(((tot-prevt)/nullif(prevt,0))*100) Perc_t,
    sum((tot/nullif(sm_t,0))*100)  perc_total
    from t
    where year > 2008
    group by rollup(year);then it is not giving the correct result as in case of 2010 to 2011 in %B (Bechelor) total there is 100% change as from in year 2010 sum(bechtot)=0 and in year 2011 it is 774000.
    Whats wrong with this ..........
    Thanks in advance for your help/effort and valuable
    Edited by: user555994 on Oct 15, 2012 5:24 AM

  • Issue with case statement

    100*ifnull(x,1)/case when ifnull(yagox,1)=0 then 1 else yagox end)
    based on above condition my result should be like below
    99.8
    101.1
    99.4
    97.7
    Current displaying result like below
    99.8
    1,22,345,000
    99.4
    97.7
    2,34,567,400
    i need to display those two values also in %
    it may be happen denominater(yagox value is 1)
    could please give the proper case statement for resolving the issue
    betham
    Edited by: 961992 on Oct 22, 2012 10:15 PM

    Dear betham,
    welcome to the forum, could you please share the table structure and some sample data and also what your select statement is. This will help people come up with solution faster and also it would avoid going in loops.

  • Issue with CAS 2010 and Blackberry (BIS)?

    I have a Blackberry Pearl 8130 (Verizon) v4.3, and have used it to get/send work e-mails for years. This weekend, my company upgraded something in the Exchange environment and now it doesn't work. I am told: "IT has upgraded to the latest Central Authentication System (CAS) for 2010. After this upgrade the Blackberry Internet Service fails to recognize this 2010 version, therefore when it tries to authenticate, it fails." Furthermore, I'm told that there is "no solution to this problem." 
    I was previously getting the e-mail via "IMAP Proxy."  
    Any thoughts on this?
    Thanks,
    Greg

    I am having the simlar issue, I upgraded to a new computer with wndows 7, outlook 2010 and desktop manager 6.
    When I open DM6 then plug in my bold the desktop manager crashes, i have un installed an re-installed but still the same issues. the only thing that I did do differently when moving to a new computer was change the primary caledar to a new email account.
    Windows 7 32 bit
    Outlook 2010
    Bold 9700
    Desktop Mamager 6
    BIS
    Hope sombody out there can help me.
    Regards,
    Chris

  • Consistent issues with wifi in one particular location

    I consistently have a problem with connectivity in a coffee shop with wireless internet.  It is a free wifi spot and works about 80% of the time.  However, sometimes I simply cannot connect.  I will reset the PRAM, change my network settings (e.g. add a network location, change the DNS settings to 8.8.8.8, turn off the wifi, etc), and delete my system config folder.  Sometimes it comes back and other times it just hangs out.  At one point I found a page explaining how to delete certain files through Terminal, but I cannot locate that again.  The issues I face often happen if I have gone from one wireless setting (work, school, home) and then into the coffee shop without turning the computer fully off - going into sleep mode.  Any thoughts.
    System Information:
    Processor 2.4 GHZ Intel Core 2 Duo
    Memory 4 GB 667 MHZ DDR2 SDRAM
    Graphics NVIDIA GeForce 8600M GT 256 MB
    Software OS X 10.8.1 (Mountain Lion)

    I've run across several sites that use a captive portal to login their network, rather than WEP/WPA.
    These networks use a protocol that allows your computer to discover DNS service automatically on the network without manually typing the address. This is why you are not provided with a DNS server address for their network.
    If you specify a DNS address, your laptop cannot find the DND of the wireless router.
    The simple fix is to add a new location and leave the DNS Servers field blank. That should allow your machine to find the router.
    Good luck.

  • Issues with selecting value from XMLType column

    I want to retrieve values from my XMLType column. Can anyone tell me why this works
    select XMLCAST
                XMLQUERY
                   'declare default element namespace  "urn:hl7-org:v3"; (: :)
                    declare namespace voc = "urn:hl7-org:v3/voc"; (: :)
                    $doc/ClinicalDocument/recordTarget/patientRole/patient/name/family'
                    passing CCD_DOC as "doc"
                    returning content
                as VARCHAR2(4000)
         from CCDbut this doesn't?
    select
        ccdid,
        extractvalue(CCD_DOC,'/recordTarget/patientRole/patient/name/given') "given",
        extractvalue(CCD_DOC,'/recordTarget/patientRole/patient/name/family') "family",
        extractvalue(CCD_DOC,'/recordTarget/patientRole/providerOranization/name') "name",
        extractvalue(CCD_DOC, 'title') as Title
    from CCDwhere ClinicalDocument is the root element?
    I don't get any errors from the second one but the three XML-derived columns are null. The values are not retrieved while the values ARE retrieved using the first method.
    Thanks!

    XMLTable..
    select x.*
      from CCD,
           XMLTable
             xmlNamespaces
               default 'urn:hl7-org:v3',
               'urn:hl7-org:v3/voc' as "voc"
             '$doc/ClinicalDocument/recordTarget/patientRole'
             passing CCD_DOD as "doc"
             columns
             given varchar2(128) path 'patient/name/given',
             family varchar2(128) path 'patient/name/family',
             name varchar2(128) path 'providerOranization/name'
           ) x

  • How to merge the contents of two rows in ALV for particular column data

    Hi Experts,
    I have a requirement to merge various rows in a ALV Grid with same data for particular columns.
    Kindly Suggest,
    Thanks and Best Regards,
    Sahil

    Hi,
    Just fill the and pass the SORT table for what ever fields you want this functionality.
      DATA: lwa_sort  TYPE lvc_s_sort.
      CLEAR lwa_sort.
      MOVE: 'VBELN' TO lwa_sort-fieldname,
                   'X' TO lwa_sort-up,
    APPEND lwa_sort TO i_sort.
    Now pass this SORT table to ALV FM.
    Thanks,
    Vinod.

  • Issues with Character Pallete after latest PS CS6 update

    Since the latest update earlier this week, I've experienced major issues with the character palette - particularly the point size and tracking. The tracking issue is by far the greater of these two evils and the following explains the issues I've observed:
    tracking - the number you type isn't the number used to set the tracking. The slider and up/down arrows do not remedy this problem, though they make it slightly more predictable. The number that appears seems random, though I've noticed a pattern in some instances (typing 20 sets tracking 18, typing 40 sets it 36, typing 60 sets it 54, and so on). This issue also appears to be connected to free transforming a text layer, so the pattern is possibly based on the percentage of scaling.
    font size - the number you type works if size is increased in small increments to a certain point. Then it max's out, and this error appears repeatedly (after ok is clicked the error pops back up)
    I've searched the web for resolutions to the issue and haven't found anything. This is what I've tried and none of it worked to any lasting degree:
    - set units to pixels in preferences and restart photoshop
    - set units back to points in preferences and restart photoshop
    - restart photoshop and pc (several times)
    - shut down photoshop and pc (several times)
    - unplug pc and discharge static

    I dont know the the below link. But if you go to Photoshop .com feedback. And go to Topics>Problems and sort by most recent, these text bug topics should be on that page. (I created the last one "Scrubby Leading Bug")
    Text layer inconsistent property values (new in 13.0.5 / 13.0.1.2)
    Photoshop: Font style size problems in CS6
    Photoshop CS6: program error from vector tools, multiple text layer font size weirdness
    Photoshop 13.0.5 Scrubby Leading Bug in Character Panel (appears after Free Transform of Type)

  • Any known issues with SQL DB Link Synonyms joining on encrypted columns

    Are there any known issues with accessing encrypted columns via a database link that is masked by a synonym?
    We are experiencing unexpected results when the encrypted column is anti-joined through a not exists, to a local encrypted column of the same datatype The encrypted columns are person ids. If the expected person id is hard coded, the results return correctly. The local database is 10.2.0.4.0 and the link is to a 10.2.0.3.0 RAC.
    Both enrollments and person_ids, below, are synonyms to the linked tables.
    ... From table_1 d
    where ...
    AND NOT EXISTS (SELECT 1
    FROM enrollments x,
    person_ids p
    WHERE x.person_demo = p.person_demo
    AND x.rept_inst = d.rept_inst
    AND x.demo_time_frame = d.term_deg_grant
    AND p.person_id_encrypted = '999999999')
    vs.
    ... From table_1 d
    where ...
    AND NOT EXISTS (SELECT 1
    FROM enrollments x,
    person_ids p
    WHERE x.person_demo = p.person_demo
    AND x.rept_inst = d.rept_inst
    AND x.demo_time_frame = d.term_deg_grant
    AND p.person_id_encrypted = d.person_id_encrypted)

    milazzo74 wrote:
    I am having the same problem...
    http://www.milazzo.com.br/teste/projetos.php
    It works fine in Firefox but loads forever in explorer 8...
    The cause of the problem is not the same.
    In your case it takes forever to load the thumbnails from flickr.com; the SpryDataSets without the loading of the thumbnails works as expected.
    Remember that ALL of the thumbnails for each 60 odd projects are downloaded from flickr, that is about 1800 thumbnails.
    Gramps

  • RH 10 issue with Fixed Column width

    Hi,
    Is anybody else having issues with setting a fix width for a column in a table?  In RH v.10 the "fixed widths" are not staying "fixed" as I have them manually set.
    I've recently been upgraded from Robohelp (html) v.8 to v.10. 
    In a "Design" view in v.8.0 when I set a column width from the right click menu (AutoFit > Fixed Column Width), the width of the column would be whatever width I'd set it to.  Now, in v.10, the width is whatever width the Robohelp window is set to!  For example, I have a large monitor and I've got Robohelp open in Full Screen mode, the table (a 1-cell table) gets set to the width of the window rather than the particular width I want to use!  I want the cell to be a particular width (much less than my monitor or the open window's width).  Can someone please tell me what I am doing wrong?
    OS=Windows7.
    Browser=IE9
    Robohelp is installed locally (it is not being run over a network).
    Thanks!
    P.S. So far this is the only issue I've had after upgrading from RH v.8 to RH v.10.

    Hi William,
    In a "Design" view in v.10, the table (which is 1 cell) looks like a big rectangular box.  I've turned off the border (cell or table border), so the border appears in gray. 
    Put mouse focus on this 1-cell table, then grab an edge with the mouse. 
    Move the table inward to make the column narrower in the view.
    Then from the right click menu, choose AutoFit > Fixed Column Width.
    Voilá - the width is back to the width of the display window.
    Did that make sense to you?   Thank you for your help and ideas.
    Cheers,
    Julia

  • Lightning to 30-pin Adapter issues - flimsy and won't work with cases

    Anyone else having issues with the Lightning to 30-pin Adapter/Connectors? When applied to my Sony docking stations (numerous btw), the iPhone 5 barely rests securely on the connector AND the Lightning pin itself won't even fit or connect on the phone when the cases is on - this is iPhone 101 folks. I shall be returning all of my conenctors that I have purchased as they do me no good. Would really appreciate a proper fit and well stock of these items ASAP as its causing tremendouse aggrevation with the conenctor switchover.

    I have the same problem. I bought the same type of Speck Candy Shell case that I had for my 3GS iPhone. The $34.00 Lighting to 30-pin adapter will not fit through the case and into the IPhone 5. I just talked to Apple support and after being on hold 5 mins while the tech talked to her supervisor, the Apple solution is "take your case off the phone when you want to use the adapter". I hope thousands of us complain and Apple fixes this. If Apple had not been so secretive and talked to accessory manufacturers they would of know that the Adapter they designed was faulty. Now I how to drive to an Apple store to return the Adapter to get my money back. Only the USB cable will fit through the case into the iPhone 5.
    Bad Adapter design my Apple. Thats what happens when you design a product for millions of people - in a secretive bubble.

Maybe you are looking for

  • Moving iTunes Library to an external drive.  My itunes cant connect to the library

    I have tried to move my iTunes Library to an external drive.  When I open the iTunes app i can not get the app to read the library on the external drive.  I have gone into iTunes preferences and redirected the app to read the external file and I stil

  • Design view not always available?

    I have a some sites in Dreamweaver CC 2014 but none of them are created in this version, they are created mostly in CS6. But when I open them in CC 2014, some of them seem to have the "design view" available, but som of them not. And I cannot underst

  • Boot Camp Error - Erased Partition?

    I erased windows partition as instructed, finished my work and restarted the computer... it opens up in windows. I search, and discover my OSX partition has been erased. All my files were on there, university work, music, photographs! Is there any wa

  • Flex Red5 SyncEvent

    Hello all, I am working with a video chat application using flex and Red5. On flex side, I am using cairngorm architecture and SyncEvent on shared object for broadcasting changes made in shared objects to all clients. I feel sometimes the sync events

  • HELP: where is "com.sun.awt.svg"?

    Hi, there is sample code "HelloSVGWorld.java" for SVG generator at http://wwws.sun.com/software/xml/developers/svg/java2d-api/ can anyone kindly tell me where the package com.sun.awt.svg is. Many thanks.