Bursting with more queries

I built a report with data template and two queries. I have implemented the bursting on this. Both queries contain the department in the select. The key of the bursting is the department. The split by element in the bursting can be only one. So if I specify, for the split by element the department in the first query, only first query is divided by department, but the second query is not split. Does the bursting work for more queries to split? How do I divide multiple queries in the bursting logic?
Can you help me please?

I send you my datatemplate, for further analysis:
I send you my datatemplate, for further analysis:
<dataTemplate name="NEW_DATASET_1_ROW_B" description="043B-Mandatory Age and Notices of SeparationDT" dataSourceRef="HR Datawarehouse" defaultPackage="PKG_BIP_AUDITING">
<parameters>
<parameter name="DATA_PROMPT1" dataType="date"/>
<parameter name="xdo_user_name" dataType="character"/>
<parameter name="ROWNUM1" dataType="number" defaultValue="rownum1"/>
<parameter name="SYS_DATE" dataType="character" defaultValue="SYS_DATE"/>
</parameters>
<dataQuery>
<sqlstatement name="SYSDATE">
<![CDATA[ SELECT TO_CHAR(SYSDATE,'YYYYMMDDHH24MISS')SYS_DATE FROM DUAL]]>
</sqlstatement>
<sqlStatement name="Q_1">
<![CDATA[ SELECT to_char(data_run,'dd Month yyyy')  DATA_PROMPT1, DEPARTMENT,
            count(*) over (order by null) ROWNUM1 ,
            NVL(CASE WHEN(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NOT NULL)OR(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NULL) THEN
            CASE WHEN AS_ASSIGNMENT_N<ADD_MONTHS(PE_DATE_OF_B,62*12) THEN 'Notice of Separation' ELSE MANDATORY_RETIREMENT END
           END,MANDATORY_RETIREMENT)                                                                                                                                                                        MANDATORY_RETIREMENT       ,
       PE_FULL_NAME||DECODE(GEOGRAPHICAL_DISTRIBUTION_CNT,1,NULL,'*')                                                                                                              PE_FULL_NAME               ,
       NC_DESCRIPTION                                                                                                                                                                                         ,
       TO_CHAR(PE_DATE_OF_B,'DD-Mon-YY') PE_DATE_OF_BIRTH,
       PE_GENDER ,
       TO_CHAR(AS_ASSIGNMENT_EOD,'DD-Mon-YY')   AS_ASSIGNMENT_EOD,
       TO_CHAR(AS_ASSIGNMENT_N,'DD-Mon-YY')     AS_ASSIGNMENT_NTE,
       AS_TECH_ORG,
       AS_GRADE,
       LTRIM(NOTICE_OF_SEPARATION_REASON,'*') NOTICE_OF_SEPARATION_REASON, 
       NVL(CASE WHEN(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NOT NULL)OR(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NULL) THEN
            CASE WHEN AS_ASSIGNMENT_N<ADD_MONTHS(PE_DATE_OF_B,62*12) THEN RTRIM(TO_CHAR(AS_ASSIGNMENT_N,'Month'))||' '||TO_CHAR(AS_ASSIGNMENT_N,'RRRR')
                 ELSE  RTRIM(TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'Month'))||' '||TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'RRRR')END            
           END
           RTRIM(TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'Month'))||' '||TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'RRRR')
          )   MONTH   ,
       DECODE(MANDATORY_RETIREMENT,'Mandatory Age of Separation',1||TO_CHAR(PE_DATE_OF_B,'YYYYMMDD'),2||TO_CHAR(AS_ASSIGNMENT_N,'YYYYMMDD'))   RANKING ,
       RTRIM(TO_CHAR(DATA_RUN,'DD-Mon-YY'))  TD_DAY,
       RTRIM(TO_CHAR(DATA_RUN,'DD Month'))||' '||TO_CHAR(DATA_RUN,'YYYY') TD_DAY2,
       GEOGRAPHICAL_DISTRIBUTION_CNT
  FROM(SELECT  dv.dw_version DATA_RUN,
              pto.od_name Department,   
              P.PE_FULL_NAME,
              C.NC_DESCRIPTION,
              P.PE_DATE_OF_BIRTH PE_DATE_OF_B,             
              P.PE_GENDER,
              AI.AS_ASSIGNMENT_EOD,
              AI.AS_ASSIGNMENT_NTE AS_ASSIGNMENT_N,
              AI.AS_TECH_ORG,
              AI.AS_GRADE,
              B.GEOGRAPHICAL_DISTRIBUTION_CNT,
              CASE WHEN AI.AS_STATUS_TYPE||AI.AS_STATUS_TYPE_ID='Under Notice of Separation222'AND TO_CHAR(AI.AS_ASSIGNMENT_NTE,'YYYYMM')=TO_CHAR(I.TD_DAY,'YYYYMM')AND TO_CHAR(AI.AS_ASSIGNMENT_NTE,'DD')>=TO_CHAR(I.TD_DAY,'DD')THEN NVL((SELECT SUBSTR(MAX(TO_CHAR(PA_EFFECTIVE_DATE,'RRRRMMDD')||PAT.PA_SUB_TRANSACTION_DESC),9)
                  FROM DM_PA_TRANSACTION PAT
                 WHERE PAT.PA_PERSON_ID       =B.PE_PERSON_ID
                   AND PAT.PA_TRANSACTION_CODE='NSEP'
                )ELSE
               CASE WHEN AI.AS_STATUS_TYPE||AI.AS_STATUS_TYPE_ID='Under Notice of Separation222'AND TO_CHAR(AI.AS_ASSIGNMENT_NTE,'YYYYMM')IN(TO_CHAR(ADD_MONTHS(I.TD_DAY, 1),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 2),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 3),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 4),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 5),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 6),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 7),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 8),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY, 9),'YYYYMM'),                                                                                                                                                           
                         TO_CHAR(ADD_MONTHS(I.TD_DAY,10),'YYYYMM')                                                                                                                                                            
                        )THEN NVL((SELECT SUBSTR(MAX(TO_CHAR(PA_EFFECTIVE_DATE,'RRRRMMDD')||PAT.PA_SUB_TRANSACTION_DESC),9)                                                                                                   
                                     FROM DM_PA_TRANSACTION PAT                                                                                                                                                               
                                    WHERE PAT.PA_PERSON_ID       =B.PE_PERSON_ID                                                                                                                                              
                                      AND PAT.PA_TRANSACTION_CODE='NSEP'                                                                                                                                                      
                                                                                                                                 )ELSE
                CASE WHEN AI.AS_STATUS_TYPE||AI.AS_STATUS_TYPE_ID='Under Notice of Separation222'AND TO_CHAR(AI.AS_ASSIGNMENT_NTE,'YYYYMM')=TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'YYYYMM')AND TO_CHAR(AI.AS_ASSIGNMENT_NTE,'DD')<=TO_CHAR(I.TD_DAY,'DD')THEN NVL((SELECT SUBSTR(MAX(TO_CHAR(PA_EFFECTIVE_DATE,'RRRRMMDD')||PAT.PA_SUB_TRANSACTION_DESC),9)
                                   FROM DM_PA_TRANSACTION PAT
                                  WHERE PAT.PA_PERSON_ID       =B.PE_PERSON_ID
                                    AND PAT.PA_TRANSACTION_CODE='NSEP'
                                ,'*')END END END                                                                              NOTICE_OF_SEPARATION_REASON,
              CASE WHEN TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'YYYYMM')=TO_CHAR(I.TD_DAY,'YYYYMM')AND TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'DD')>=TO_CHAR(I.TD_DAY,'DD')THEN 'Mandatory Age of Separation' ELSE
               CASE WHEN TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'YYYYMM')IN(TO_CHAR(I.TD_DAY,'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 1),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 2),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 3),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 4),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 5),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 6),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 7),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 8),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY, 9),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY,10),'YYYYMM'),
                      TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'YYYYMM')       
                             )THEN 'Mandatory Age of Separation' ELSE
                CASE WHEN TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'YYYYMM')=TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'YYYYMM')AND TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'DD')<=TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'DD')THEN 'Mandatory Age of Separation' END END END                                                                                MANDATORY_RETIREMENT
         FROM DM_TIME                 I ,
              DM_NATIONALITY          C ,
              FT_POSITION_AND_PEOPLE  B ,
              DM_ORGANIZATION         PTO,
              DM_POSITION             D ,
              DM_ASSIGNMENT           AI,
              DM_ENTITLEMENT_CATEGORY EC,
              DM_PEOPLE               P ,
              DM_LOCATION_TYPE        B2,
              dw_version dv
        WHERE  B.time_fk = to_number(to_char(dv.dw_version,'RRRRMMDD'))
          AND B.as_organization_tech_fk     =PTO.ox_id
          AND I.TD_DAY                      =TO_DATE(TO_CHAR(dv.dw_version,'DD/MM/YYYY'),'DD/MM/YYYY')
          AND I.TD_ID                       = B.TIME_FK
          AND C.NC_ID                       = B.NATIONALITY_FK
          AND D.PO_ID                       = B.POSITION_FK
          AND B.ASSIGNMENT_FK               =AI.AS_ID
          AND EC.EM_NAME                    ='Professional & above'
          AND B.AS_ENTITLEMENT_CATEGORY_FK  =EC.EC_ID
          AND B.PEOPLE_FK                   =P.PE_ID
          AND B.PO_LOCATION_TYPE_FK         =B2.LT_ID
          --AND B2.LG_NAME                   !='FLD' -- DAP 18-DEC-09
          AND AS_APPOINTMENT_TYPE          IN('FT','CO')
          and d.PO_GRADE_1 !='DG'
WHERE NOTICE_OF_SEPARATION_REASON||MANDATORY_RETIREMENT IS NOT NULL
order by department,13,4]]>
</sqlStatement>
<sqlStatement name="Q_2">
<![CDATA[ select
            DEPARTMENT DEPARTMENT,
                      nvl(decode(Mandatory_Retirement,'Mandatory Age of Separation',Mandatory_Retirement,Notice_of_separation_reason),'Others') dist,count(*)counts
  from(SELECT department,
        NVL(CASE WHEN(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NOT NULL)OR(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NULL) THEN
            CASE WHEN AS_ASSIGNMENT_N<ADD_MONTHS(PE_DATE_OF_B,62*12) THEN 'Notice of Separation' ELSE MANDATORY_RETIREMENT END
           END
           MANDATORY_RETIREMENT
          )                                                                                                                                                                        MANDATORY_RETIREMENT       ,
       PE_FULL_NAME||DECODE(GEOGRAPHICAL_DISTRIBUTION_CNT,1,NULL,'*')                                                                                                              PE_FULL_NAME               ,
       NC_DESCRIPTION                                                                                                                                                                                         ,
       TO_CHAR(PE_DATE_OF_B,'DD-Mon-YY')                                                                                                                                           PE_DATE_OF_BIRTH           ,
       PE_GENDER                                                                                                                                                                                              ,
       TO_CHAR(AS_ASSIGNMENT_EOD,'DD-Mon-YY')                                                                                                                                      AS_ASSIGNMENT_EOD          ,
       TO_CHAR(AS_ASSIGNMENT_N,'DD-Mon-YY')                                                                                                                                        AS_ASSIGNMENT_NTE          ,
       AS_TECH_ORG                                                                                                                                                                                            ,
       AS_GRADE                                                                                                                                                                                               ,
       LTRIM(NOTICE_OF_SEPARATION_REASON,'*')                                                                                                                                      NOTICE_OF_SEPARATION_REASON, 
       NVL(CASE WHEN(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NOT NULL)OR(NOTICE_OF_SEPARATION_REASON IS NOT NULL AND MANDATORY_RETIREMENT IS NULL) THEN
            CASE WHEN AS_ASSIGNMENT_N<ADD_MONTHS(PE_DATE_OF_B,62*12) THEN RTRIM(TO_CHAR(AS_ASSIGNMENT_N,'Month'))||' '||TO_CHAR(AS_ASSIGNMENT_N,'RRRR')
                 ELSE  RTRIM(TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'Month'))||' '||TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'RRRR')END            
           END
           RTRIM(TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'Month'))||' '||TO_CHAR(ADD_MONTHS(PE_DATE_OF_B,62*12),'RRRR')
          )                                                                                                                                                                        MONTH                      ,
       DECODE(MANDATORY_RETIREMENT,'Mandatory Age of Separation',1||TO_CHAR(PE_DATE_OF_B,'YYYYMMDD'),2||TO_CHAR(AS_ASSIGNMENT_N,'YYYYMMDD'))                                       RANKING                    ,
       RTRIM(TO_CHAR(DATA_RUN,'DD-Mon-YY'))                                                                                                                                   TD_DAY                     ,
       RTRIM(TO_CHAR(DATA_RUN,'DD Month'))||' '||TO_CHAR(DATA_RUN,'YYYY')                                                                                                TD_DAY2                    ,
       GEOGRAPHICAL_DISTRIBUTION_CNT
  FROM(SELECT dv.dw_version DATA_RUN,
              pto.od_name Department  ,   
              P.PE_FULL_NAME,
              C.NC_DESCRIPTION,
              P.PE_DATE_OF_BIRTH PE_DATE_OF_B,             
              P.PE_GENDER,
              AI.AS_ASSIGNMENT_EOD,
              AI.AS_ASSIGNMENT_NTE AS_ASSIGNMENT_N,
              AI.AS_TECH_ORG,
              AI.AS_GRADE,
              B.GEOGRAPHICAL_DISTRIBUTION_CNT,
              CASE WHEN AI.AS_STATUS_TYPE||AI.AS_STATUS_TYPE_ID='Under Notice of Separation222'AND
                        TO_CHAR(AI.AS_ASSIGNMENT_NTE,'YYYYMM')=TO_CHAR(I.TD_DAY,'YYYYMM')AND
                        TO_CHAR(AI.AS_ASSIGNMENT_NTE,'DD')>=TO_CHAR(I.TD_DAY,'DD')THEN NVL((SELECT SUBSTR(MAX(TO_CHAR(PA_EFFECTIVE_DATE,'RRRRMMDD')||PAT.PA_SUB_TRANSACTION_DESC),9)
                                                                                              FROM DM_PA_TRANSACTION PAT
                                                                                              WHERE PAT.PA_PERSON_ID       =B.PE_PERSON_ID
                                                                                                AND PAT.PA_TRANSACTION_CODE='NSEP'
                                                                                 ELSE
               CASE WHEN AI.AS_STATUS_TYPE||AI.AS_STATUS_TYPE_ID='Under Notice of Separation222'AND
                         TO_CHAR(AI.AS_ASSIGNMENT_NTE,'YYYYMM')IN(TO_CHAR(ADD_MONTHS(I.TD_DAY, 1),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 2),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 3),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 4),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 5),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 6),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 7),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 8),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 9),'YYYYMM'),                                                                                                                                                           
                          TO_CHAR(ADD_MONTHS(I.TD_DAY,10),'YYYYMM')                                                                                                                                                            
                        )THEN NVL((SELECT SUBSTR(MAX(TO_CHAR(PA_EFFECTIVE_DATE,'RRRRMMDD')||PAT.PA_SUB_TRANSACTION_DESC),9)                                                                                                   
                                   FROM DM_PA_TRANSACTION PAT                                                                                                                                                               
                                   WHERE PAT.PA_PERSON_ID       =B.PE_PERSON_ID                                                                                                                                              
                                      AND PAT.PA_TRANSACTION_CODE='NSEP'),'*' )ELSE
               CASE WHEN AI.AS_STATUS_TYPE||AI.AS_STATUS_TYPE_ID='Under Notice of Separation222'AND
                        TO_CHAR(AI.AS_ASSIGNMENT_NTE,'YYYYMM')=TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'YYYYMM')AND
                        TO_CHAR(AI.AS_ASSIGNMENT_NTE,'DD')<=TO_CHAR(I.TD_DAY,'DD')THEN NVL((SELECT SUBSTR(MAX(TO_CHAR(PA_EFFECTIVE_DATE,'RRRRMMDD')||PAT.PA_SUB_TRANSACTION_DESC),9)
                            FROM DM_PA_TRANSACTION PAT
                            WHERE PAT.PA_PERSON_ID       =B.PE_PERSON_ID
                              AND PAT.PA_TRANSACTION_CODE='NSEP'
                                                    ),'*')END END END NOTICE_OF_SEPARATION_REASON,
              CASE WHEN TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'YYYYMM')=TO_CHAR(I.TD_DAY,'YYYYMM')AND TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'DD')>=TO_CHAR(I.TD_DAY,'DD')THEN 'Mandatory Age of Separation' ELSE
              CASE WHEN TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'YYYYMM')IN(TO_CHAR(I.TD_DAY,'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 1),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 2),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 3),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 4),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 5),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 6),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 7),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 8),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY, 9),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY,10),'YYYYMM'),
                          TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'YYYYMM')       
                             )THEN 'Mandatory Age of Separation' ELSE
                CASE WHEN TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'YYYYMM')=TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'YYYYMM')AND TO_CHAR(ADD_MONTHS(P.PE_DATE_OF_BIRTH,62*12),'DD')<=TO_CHAR(ADD_MONTHS(I.TD_DAY,11),'DD')THEN 'Mandatory Age of Separation' END END END                                                                                MANDATORY_RETIREMENT
         FROM DM_TIME                 I ,
              DM_NATIONALITY          C ,
              FT_POSITION_AND_PEOPLE  B ,
              DM_POSITION             D ,
              DM_ASSIGNMENT           AI,
              DM_ENTITLEMENT_CATEGORY EC,
              DM_ORGANIZATION         PTO,
              DM_PEOPLE               P ,
              DM_LOCATION_TYPE        B2,
              dw_version dv
        WHERE  B.time_fk = to_number(to_char(dv.dw_version,'RRRRMMDD'))
          AND B.as_organization_tech_fk     =PTO.ox_id
          AND I.TD_DAY                      =TO_DATE(TO_CHAR(dv.dw_version,'DD/MM/YYYY'),'DD/MM/YYYY')
          AND I.TD_ID                       = B.TIME_FK
          AND C.NC_ID                       = B.NATIONALITY_FK
          AND D.PO_ID                       = B.POSITION_FK
          AND B.ASSIGNMENT_FK               =AI.AS_ID
          AND EC.EM_NAME                    ='Professional & above'
          AND B.AS_ENTITLEMENT_CATEGORY_FK  =EC.EC_ID
          AND B.PEOPLE_FK                   =P.PE_ID
          AND B.PO_LOCATION_TYPE_FK         =B2.LT_ID
          AND AS_APPOINTMENT_TYPE          IN('FT','CO')
          and d.PO_GRADE_1 !='DG'
      WHERE NOTICE_OF_SEPARATION_REASON||MANDATORY_RETIREMENT IS NOT NULL
      group by DEPARTMENT,
               decode(Mandatory_Retirement,'Mandatory Age of Separation',Mandatory_Retirement,Notice_of_separation_reason)
      order by DEPARTMENT,
               decode(dist,'Others','ZZ',dist)
      ]]>
</sqlStatement>
</dataQuery>
<dataStructure>
<group name="DATASET" source="SYSDATE">
<element name="SYS_DATE" value="SYS_DATE"/>
</group>
<group name="NEW_DATASET_1_ROW" source="Q_1">
<element name="DEPARTMENT" value="DEPARTMENT"/>
<element name="ROWNUM1" value="ROWNUM1"/>
<element name="MANDATORY_RETIREMENT" value="MANDATORY_RETIREMENT"/>
<element name="PE_FULL_NAME" value="PE_FULL_NAME"/>
<element name="NC_DESCRIPTION" value="NC_DESCRIPTION"/> ,
<element name="PE_DATE_OF_BIRTH" value="PE_DATE_OF_BIRTH"/>
<element name="PE_GENDER" value="PE_GENDER"/> ,
<element name="AS_ASSIGNMENT_EOD" value="AS_ASSIGNMENT_EOD"/>
<element name="AS_ASSIGNMENT_NTE" value="AS_ASSIGNMENT_NTE"/>
<element name="AS_TECH_ORG" value="AS_TECH_ORG"/> ,
<element name="AS_GRADE" value="AS_GRADE"/> ,
<element name="NOTICE_OF_SEPARATION_REASON" value="NOTICE_OF_SEPARATION_REASON"/>
<element name="MONTH" value="MONTH"/>
<element name="RANKING" value="RANKING"/>
<element name="TD_DAY" value="TD_DAY"/>
<element name="TD_DAY2" value="TD_DAY2"/>
<element name="GEOGRAPHICAL_DISTRIBUTION_CNT" value="GEOGRAPHICAL_DISTRIBUTION_CNT"/>
</group>
<group name="NEW_DATASET_2_ROW" source="Q_2">
<element name="dist" value="dist"/>
<element name="counts" value="counts"/>
</group>
</dataStructure>
<dataTrigger name="BIP_AUDITING" source="PKG_BIP_AUDITING.F_BIP_AUDITING('043-Mandatory Age and Notices of Separation',:xdo_user_name,:ROWNUM1,:SYS_DATE,'As at', :DATA_PROMPT1)"/>
</dataTemplate>
The bursting query is:
select DISTINCT d.od_name KEY,
'043-Staff Separation-Retirement Age-Notification' TEMPLATE,
'RTF' TEMPLATE_FORMAT,
'en-US' LOCALE,
'PDF' OUTPUT_FORMAT,
'email' DEL_CHANNEL,
BE.EMAIL_ADDRESS PARAMETER1,
NULL PARAMETER2,
BE.EMAIL_FROM PARAMETER3,
'SUBJECT: Bursting to Email Test' PARAMETER4,
'BODY: Test Report Body' PARAMETER5,
'true' PARAMETER6,
null PARAMETER7
from dm_organization d,
T_BIP_BURSTING_DEPART_EMAIL BE
WHERE d.od_name IS NOT NULL AND
D.OD_NAME=BE.DEPARTMENT
The spit by and delivery by is the department in NEW_DATASET_1_ROW, so the table that refers at NEW_DATASET_2_ROW isn't split.
How can I resolve this problem?

Similar Messages

  • Report Bursting with more then 1 report (sheet)

    Hi All,
    I have an query
    this is regarding Scheduling the report. I have 1 report it contains 3 report sheets.
    for eg: country1, coungry2, country3
    when i trying to Burst the report with only 1 report sheet (country1) it is working find. but unable to burst with more than 1 report sheet i am following the report bursting steps correctly .
    i am bursting the report at SAP BO INFOVIEW  with the help of Publication option.
    i am using SAP BO INFOVIEW 3.1
    Thanks in advance
    Ranjeet

    Hi Farzana,
    Thanks for your replay and qry.
    in Publication i have select report field =Dynamic recipient mapping
    and it is working fine when i am bursting the report with 1 tab/1 sheet/ 1 report
    and in all three tab data belongs to same provider actually i am bursting the report on providers no which practicing in three states/country that is the reason i have mentioned. the tab name = country1, country2, country3.
    please let me know if any concern regarding the requirement.
    suggest something
    Regards,
    Ranjeet

  • Bursting a report with multiple queries

    Hi,
    I need to set-up bursting in BIP for a report with multiple queries. The output format is pdf and delivery is through e-mail. Since the queries need to be linked, I'm trying to do this using data template. I've set-up split and burst based on a field (store_id) from the first query which is used as a bind variable in the subsequent queries. So I'd ideally want the report to be split based on store_id. The report works fine if I use a parameter for store_id and view the output by store_id. When I try to schedule the report for bursting, it generates and e-mails the reports but only the last report appears to have correct data output while the others have only the output from the first query (and all other queries appear to return nothing in the report).
    Any suggestions on what could be the issue here? Thanks!
    Here is the data template for the report:
    <dataTemplate name="Report" description="Report" dataSourceRef="ReportDB">
    <dataQuery>
    <sqlStatement name="STORE_VENDOR">
    <![CDATA[SELECT STORE.STORE_ID Q1_STORE_ID, VENDOR.VENDOR_ID Q1_VENDOR_ID, VENDOR.VENDOR_DESC Q1_VENDOR_DESC, PERSON.NAME Q1_NAME
                   FROM STORE, SERVICE_TICKET, VENDOR, ROLE, ROLE_TYPE, PERSON, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = VENDOR.SOURCE_ID AND SERVICE_TICKET.VENDOR_ID = VENDOR.VENDOR_ID)
                   AND (STORE.SOURCE_ID = ROLE.SOURCE_ID AND STORE.STORE_ID = ROLE.STORE_ID)
                   AND (ROLE.SOURCE_ID = ROLE_TYPE.SOURCE_ID AND ROLE.ROLE_TYPE_ID = ROLE_TYPE.TYPE_ID AND ROLE_TYPE.TYPE_DESC = 'PIC')
                   AND (ROLE.SOURCE_ID = PERSON.SOURCE_ID AND ROLE.PERSON_ID = PERSON.PERSON_ID)
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   GROUP BY STORE.STORE_ID, VENDOR.VENDOR_ID, VENDOR.VENDOR_DESC, PERSON.NAME
                   ORDER BY STORE.STORE_ID]]>
    </sqlStatement>
    <sqlStatement name="WO">
    <![CDATA[SELECT STORE.STORE_ID Q3_STORE_ID, 'Nightly Cleaning' Q3_NIGHTLY_CLEANING, 'Nightly Cleaning' Q3_DESCRIPTION, SERVICE_TICKET.TICKET_ID Q3_TICKET_ID, TO_CHAR(SERVICE_TICKET.END_DATE, 'MM/DD/YYYY') Q3_END_DATE, 'Excellent' Q3_QUALITY_RATING_1, 'Satisfactory' Q3_QUALITY_RATING_2, 'Unsatisfactory' Q3_QUALITY_RATING_3
                   FROM SERVICE_TICKET, STORE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4']]>
    </sqlStatement>
    <sqlStatement name="SERVC_TYPE_1">
    <![CDATA[SELECT STORE.STORE_ID Q4_STORE_ID, ZONE.ZONE_DESC Q4_ZONE_DESC, SERVICE_TICKET_LINE.SERVICE_COST Q4_SERVICE_COST, SERVICE_TICKET_LINE.TICKET_ID Q4_TICKET_ID, TO_CHAR(SERVICE_TICKET_LINE.WO_END_DATE, 'MM/DD/YYYY') Q4_WO_END_DATE, 'Excellent' Q4_QUALITY_RATING_1, 'Satisfactory' Q4_QUALITY_RATING_2, 'Unsatisfactory' Q4_QUALITY_RATING_3
                   FROM SERVICE_TICKET_LINE, SERVICE_TICKET, STORE, SERVICE_TYPE, ZONE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = SERVICE_TICKET_LINE.SOURCE_ID AND SERVICE_TICKET.TICKET_ID = SERVICE_TICKET_LINE.TICKET_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = SERVICE_TYPE.SOURCE_ID AND SERVICE_TICKET_LINE.SERVICE_TYPE_ID = SERVICE_TYPE.TYPE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = ZONE.SOURCE_ID AND SERVICE_TICKET_LINE.ZONE_ID = ZONE.ZONE_ID)
                   AND SERVICE_TYPE.TYPE_DESC = 'ABC'
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   ORDER BY SERVICE_TICKET_LINE.SOURCE_ID, SERVICE_TICKET_LINE.TICKET_ID, SERVICE_TICKET_LINE.LINE_ID]]>
    </sqlStatement>
    <sqlStatement name="SERVC_TYPE_2">
    <![CDATA[SELECT STORE.STORE_ID Q5_STORE_ID, ZONE.ZONE_DESC Q5_ZONE_DESC, SERVICE_TICKET_LINE.SERVICE_COST Q5_SERVICE_COST, SERVICE_TICKET_LINE.TICKET_ID Q5_TICKET_ID, TO_CHAR(SERVICE_TICKET_LINE.WO_END_DATE, 'MM/DD/YYYY') Q5_WO_END_DATE, 'Excellent' Q5_QUALITY_RATING_1, 'Satisfactory' Q5_QUALITY_RATING_2, 'Unsatisfactory' Q5_QUALITY_RATING_3
                   FROM SERVICE_TICKET_LINE, SERVICE_TICKET, STORE, SERVICE_TYPE, ZONE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = SERVICE_TICKET_LINE.SOURCE_ID AND SERVICE_TICKET.TICKET_ID = SERVICE_TICKET_LINE.TICKET_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = SERVICE_TYPE.SOURCE_ID AND SERVICE_TICKET_LINE.SERVICE_TYPE_ID = SERVICE_TYPE.TYPE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = ZONE.SOURCE_ID AND SERVICE_TICKET_LINE.ZONE_ID = ZONE.ZONE_ID)
                   AND SERVICE_TYPE.TYPE_DESC = 'XYZ'
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   ORDER BY SERVICE_TICKET_LINE.SOURCE_ID, SERVICE_TICKET_LINE.TICKET_ID, SERVICE_TICKET_LINE.LINE_ID]]>
    </sqlStatement>
    <sqlStatement name="SERVC_TYPE_3">
    <![CDATA[SELECT STORE.STORE_ID Q6_STORE_ID, ZONE.ZONE_DESC Q6_ZONE_DESC, 'Excellent' Q6_QUALITY_RATING_1, 'Satisfactory' Q6_QUALITY_RATING_2, 'Unsatisfactory' Q6_QUALITY_RATING_3, 'One' Q6_QTY_MISSING_1, 'Two' Q6_QTY_MISSING_2, '3 or More' Q6_QTY_MISSING_3
                   FROM SERVICE_TICKET_LINE, SERVICE_TICKET, STORE, SERVICE_TYPE, ZONE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = SERVICE_TICKET_LINE.SOURCE_ID AND SERVICE_TICKET.TICKET_ID = SERVICE_TICKET_LINE.TICKET_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = SERVICE_TYPE.SOURCE_ID AND SERVICE_TICKET_LINE.SERVICE_TYPE_ID = SERVICE_TYPE.TYPE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = ZONE.SOURCE_ID AND SERVICE_TICKET_LINE.ZONE_ID = ZONE.ZONE_ID)
                   AND SERVICE_TYPE.TYPE_DESC = 'PQR'
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   ORDER BY SERVICE_TYPE.TYPE_ID]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
         <group name="G_STORE_VENDOR" source="STORE_VENDOR">
              <element name="Q1_STORE_ID" value="Q1_STORE_ID"/>
              <element name="Q1_VENDOR_ID" value="Q1_VENDOR_ID"/>
              <element name="Q1_VENDOR_DESC" value="Q1_VENDOR_DESC"/>
              <element name="Q1_NAME" value="Q1_NAME"/>
         </group>     
         <group name="G_WO" source="WO">
              <element name="Q3_NIGHTLY_CLEANING" value="Q3_NIGHTLY_CLEANING"/>
              <element name="Q3_DESCRIPTION" value="Q3_DESCRIPTION"/>
              <element name="Q3_TICKET_ID" value="Q3_TICKET_ID"/>
              <element name="Q3_END_DATE" value="Q3_END_DATE"/>
              <element name="Q3_QUALITY_RATING_1" value="Q3_QUALITY_RATING_1"/>
              <element name="Q3_QUALITY_RATING_2" value="Q3_QUALITY_RATING_2"/>
              <element name="Q3_QUALITY_RATING_3" value="Q3_QUALITY_RATING_3"/>
         </group>     
         <group name="G_SERVC_TYPE_1" source="SERVC_TYPE_1">
              <element name="Q4_ZONE_DESC" value="Q4_ZONE_DESC"/>
              <element name="Q4_SERVICE_COST" value="Q4_SERVICE_COST"/>
              <element name="Q4_TICKET_ID" value="Q4_TICKET_ID"/>
              <element name="Q4_WO_END_DATE" value="Q4_WO_END_DATE"/>
              <element name="Q4_QUALITY_RATING_1" value="Q4_QUALITY_RATING_1"/>
              <element name="Q4_QUALITY_RATING_2" value="Q4_QUALITY_RATING_2"/>
              <element name="Q4_QUALITY_RATING_3" value="Q4_QUALITY_RATING_3"/>
         </group>     
         <group name="G_SERVC_TYPE_2" source="SERVC_TYPE_2">
              <element name="Q5_ZONE_DESC" value="Q5_ZONE_DESC"/>
              <element name="Q5_SERVICE_COST" value="Q5_SERVICE_COST"/>
              <element name="Q5_TICKET_ID" value="Q5_TICKET_ID"/>
              <element name="Q5_WO_END_DATE" value="Q5_WO_END_DATE"/>
              <element name="Q5_QUALITY_RATING_1" value="Q5_QUALITY_RATING_1"/>
              <element name="Q5_QUALITY_RATING_2" value="Q5_QUALITY_RATING_2"/>
              <element name="Q5_QUALITY_RATING_3" value="Q5_QUALITY_RATING_3"/>
         </group>     
         <group name="G_SERVC_TYPE_3" source="SERVC_TYPE_3">
              <element name="Q6_ZONE_DESC" value="Q6_ZONE_DESC"/>
              <element name="Q6_QUALITY_RATING_1" value="Q6_QUALITY_RATING_1"/>
              <element name="Q6_QUALITY_RATING_2" value="Q6_QUALITY_RATING_2"/>
              <element name="Q6_QUALITY_RATING_3" value="Q6_QUALITY_RATING_3"/>
              <element name="Q6_QTY_MISSING_1" value="Q6_QTY_MISSING_1"/>
              <element name="Q6_QTY_MISSING_2" value="Q6_QTY_MISSING_2"/>
              <element name="Q6_QTY_MISSING_3" value="Q6_QTY_MISSING_3"/>
         </group>
    </dataStructure>
    </dataTemplate>

    Hello user6428199,
    When you use ":Q1_STORE_ID" in your queries, BI Publisher looks for a report parameter named Q1_STORE_ID. Change all your report queries to get data for all the store_id's available. As you are bursting the report using the store_id as the bursting key, BI Publisher will split the report based on the stored_id and delivers content based on it. No matter how many queries you may have, BI Publisher will loop through all the store_id's available and all the queries will return data for that particular id in a report.
    Thanks,
    Machaan

  • Workbooks with more than 12 queries

    Hi,
    I have a workbook with 11 queries.
    In each query, there is only one variable (same technical name).
    As a consequence, the whole workbook is refreshed automatically by filling only one variable screen.
    When I add 1 more query in this workbook, then 12 variable screens are displayed one after the other, with the same variable!
    Is there a known limitation with BEx 3.x / BW 3.5 that causes this problem with workbooks having more than 12 queries?
    Thanks and regards,
    John

    Hi,
    Check the below link forDisplay Duplicate Variables Only Once:
    variables:
    http://help.sap.com/saphelp_nw70/helpdata/en/54/a493f7256b43698191a2623e5a0532/content.htm
    Also check this forum:
    assigning same variable values for queries in workbook
    Hope this helps...
    Rgs,
    Ravikanth

  • Error while running spatial queries on a table with more than one geometry.

    Hello,
    I'm using GeoServer with Oracle Spatial database, and this is a second time I run into some problems because we use tables with more than one geometry.
    When GeoServer renders objects with more than one geometry on the map, it creates a query where it asks for objects which one of the two geometries interacts with the query window. This type of query always fails with "End of TNS data channel" error.
    We are running Oracle Standard 11.1.0.7.0.
    Here is a small script to demonstrate the error. Could anyone confirm that they also have this type of error? Or suggest a fix?
    What this script does:
    1. Create table object1 with two geometry columns, geom1, geom2.
    2. Create metadata (projected coordinate system).
    3. Insert a row.
    4. Create spacial indices on both columns.
    5. Run a SDO_RELATE query on one column. Everything is fine.
    6. Run a SDO_RELATE query on both columns. ERROR: "End of TNS data channel"
    7. Clean.
    CREATE TABLE object1
    id NUMBER PRIMARY KEY,
    geom1 SDO_GEOMETRY,
    geom2 SDO_GEOMETRY
    INSERT INTO user_sdo_geom_metadata (table_name, column_name, srid, diminfo)
    VALUES
    'OBJECT1',
    'GEOM1',
    2180,
    SDO_DIM_ARRAY
    SDO_DIM_ELEMENT('X', 400000, 700000, 0.05),
    SDO_DIM_ELEMENT('Y', 300000, 600000, 0.05)
    INSERT INTO user_sdo_geom_metadata (table_name, column_name, srid, diminfo)
    VALUES
    'OBJECT1',
    'GEOM2',
    2180,
    SDO_DIM_ARRAY
    SDO_DIM_ELEMENT('X', 400000, 700000, 0.05),
    SDO_DIM_ELEMENT('Y', 300000, 600000, 0.05)
    INSERT INTO object1 VALUES(1, SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(550000, 450000, NULL), NULL, NULL));
    CREATE INDEX object1_geom1_sidx ON object1(geom1) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    CREATE INDEX object1_geom2_sidx ON object1(geom2) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    SELECT *
    FROM object1
    WHERE
    SDO_RELATE("GEOM1", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE';
    SELECT *
    FROM object1
    WHERE
    SDO_RELATE("GEOM1", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE' OR
    SDO_RELATE("GEOM2", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE';
    DELETE FROM user_sdo_geom_metadata WHERE table_name = 'OBJECT1';
    DROP INDEX object1_geom1_sidx;
    DROP INDEX object1_geom2_sidx;
    DROP TABLE object1;
    Thanks for help.

    This error appears in GeoServer and SQLPLUS.
    I have set up a completly new database installation to test this error and everything works fine. I tried it again on the previous database but I still get the same error. I also tried to restart the database, but with no luck, the error is still there. I geuss something is wrong with the database installation.
    Anyone knows what could cause an error like this "End of TNS data channel"?

  • Problems deploying Windows 7 x64 computers with more than 8GB RAM

    SCCM 2012 R2 CU1
    Windows 7 x64
    We have a weird problem after upgrading from SP1 to R2 CU1. We have built a Windows 7 64 bit image with the latest updates (currently September 2014 updates). It deploys fine to all computers. But after some days – don’t know exactly – guess after 4-7 days
    - we start getting errors on computers with more than 8 GB of RAM. The errors just start out of the blue. We didn't change TS, image or driver package.
    The error shows in 3 different ways – depending of the computer model.
    1) BSOD – STOP 0x000000F4. Disk error.
    2) Task Sequence error 0x87D00269 when installing the first Application in TS. The error seems to have something to do with Management Point not found.
    3) Task Sequence simply stops after installing CMclient. No errors - it simply stops.
    For instance we get the BSOD on the Lenovo ThinkCentre M93p. But on the ThinkCentre M83 we get the TS error 0x87D00269. M93p and M83 uses the same driver package. They consequently  fail every time after the error has begun. If we reduce (remove physically)
    the memory to max. 8GB of RAM, they successfully run the Task Sequence.  We get the above errors on both Lenovo and HP machines with more than 8GB. 
    I made a copy of the production TS and started testing. I created a new driver package for M93p/M83. It contains only the NIC drivers. Now M93p an M83 successfully finishes the TS. Adding sata or chipset or MEI/SOL drivers to the package I get the 0x87D00269
    error on both m93p and M83. At least not the BSOD on the M93p ;-)
    Tried setting  SMSTSMPListRequestTimeout to 180 in the TS. Also tried putting in a 5 minute break before installing the first Application in the TS. Also tried putting in SMSMP=mp1.mydomain in the installation properties for the CMclient. It is still
    the same problem.
    Investigating the smsts.log on a computer with the 0x87D00269 error.
    Policy Evaluation failed, hr=0x87d00269 InstallApplication
    25-09-2014 08:59:59 3020 (0x0BCC)
    Setting TSEnv variable 'SMSTSAppPolicyEvaluationJobID__ScopeId_654E40B7-FC55-4213-B807-B97383283607/Application_d9eea5a0-0660-43e6-94b8-13983890bae2'=''InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    EvaluationJob complete InstallApplication25-09-2014 08:59:59 3020 (0x0BCC)
    MP list missing in WMI, sending message to location service to retrieve MP list and retrying. InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    m_hResult, HRESULT=87d00269 (e:\qfe\nts\sms\client\osdeployment\installapplication\installapplication.cpp,1080) InstallApplication
    25-09-2014 08:59:59 3020 (0x0BCC)
    Step 2 out of 2 complete InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Install application action failed: 'SCIENCE PC Guide'. Error Code 0x87d00269 InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Sending error status message InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
     Setting URL = http://mp1.mydomain, Ports = 80,443, CRL = false InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Investegating the 0x87D00269 error on the siteservers Status Messages Queries is weird.
    Install Static Applications failed, hr=0x87d00269. The operating system reported error 617: You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that
    you have not previously used.
    Hopefully this is a bug in translating the errorcodes? Just to be sure I checked all the SCCM serviceaccounts and none of them have expired passwords.  And again why only on computers with more than 8GB RAM.
    Anyone else had problems rolling computers with more than 8GB og RAM?
    Why does this happens after a few days? To begin with, it runs just perfect and then starts failing on all machines with more than 8GB. Without a change in TS, image and driverpackage. We have seen this pattern for the last 3 month after
    updating our image with the latest Windows Updates. It all started after updating from SP1 to R2 CU1.
    Why does it only affect machines with more than 8GB RAM?
    How to get rid of the 0x87D00269 error?
    Seems to be somehow related to driver installation mechanism in SCCM in combination with Windows 7 64 bit, +8GB RAM and SCCM 2012 R2 CU1 or perhaps just R2.
    Any help or hints would be appreciated!
    Thanks
    Anders

    We have the same workaround, using a x64 boot image resolved all our issues with WinPE 5.0.
    Machines with >4GB of RAM
    Lenovo ThinkPad T540p failed applying drivers with 80040005
    Black screen/white cursor issues intermittently
    No updates from Microsoft, they are still looking through the logs, but we have updated our boot images and all is well now. Our case it still open with Microsoft, they are researching the logs.
    Daniel Ratliff | http://www.PotentEngineer.com

  • How to create a workbook in BI 7.0 with more than 15 Sheets?

    Hi Experts,
    i would like to know how to create a workbook with more than 15 Sheets.
    One Workbook should be based on one query  and the other on differents queries.
    How should be the authorization? If you have any documents please just send it to me.
    Cheers
    G

    HI
    Execute one report save it in the workbook, then you can goto the tools and click insert query, like that you can add how many queries you want. then right click on the reports goto properties there in the interface tab click the check button for refrsh all the queries. finally save it with the option save existing wrokbook(beacause you already save the first query in the workbook)
    Regards,
    chandra.

  • Report with Multiple queries too slow in BI Publisher 11g

    Hi, I have a report in 11g where i need to create multiple queries to show them in report. I tried to combine everything in one query, but i found that the query is too huge and hard to understand and maintain. I created 3 data sets and linked them together. In SQL dev, the main query is returning about 315 records and first detail query returns less than 100 records and second detail query is returning one record which is BLOB. Each query returns data within a couple of seconds from SQL Developer. The entire report from BI Publisher should be just 21 page PDF output. Did anyone face performance issues while running reports with multiple queries in 11g? I ran reports that have single query which returned 10K pages PDF and never had an issue while everthing is in one query. This is the first time Iam attempting to create multiple queries. Can someone help me understand what i might be doing wrong or missing here. Thank you.

    Isn't there a way for you to do this via a Package/Procedure versus having multiple queries?
    Per the BI Publisher guide,
    Following are recommended guidelines for building data models:
    Reduce the number of data sets or queries in your data model as much as possible. In general, the fewer data sets and queries you have, the faster your data model will run. While multiquery data models are often easier to understand, single-query data models tend to execute more quickly. It is important to understand that in parent-child queries, for every parent, the child query is executed.
    You should only use multiquery data models in the following scenarios:
    To perform functions that the query type, such as a SQL query, does not support directly.
    To support complex views (for example, distributed queries or GROUP BY queries).
    To simulate a view when you do not have or want to use a view.
    Thanks,
    Bipuser

  • Analyse a partitioned table with more than 50 million rows

    Hi,
    I have a partitioned table with more than 50 million rows. The last analyse is on 1/25/2007. Do I need to analyse him? (query runs on this table is very slow).
    If I need to analyse him, what is the best way? Use DBMS_STATS and schedule a job?
    Thanks

    A partitioned table has global statistics as well as partition (and subpartition if the table is subpartitioned) statistics. My guess is that you mean to say that the last time that global statistics were gathered was in 2007. Is that guess accurate? Are the partition-level statistics more recent?
    Do any of your queries actually use global statistics? Or would you expect that every query involving this table would specify one or more values for the partitioning key and thus force partition pruning to take place? If all your queries are doing partition pruning, global statistics are irrelevant, so it doesn't matter how old and out of date they are.
    Are you seeing any performance problems that are potentially attributable to stale statistics on this table? If you're not seeing any performance problems, leaving the statistics well enough alone may be the most prudent course of action. Gathering statistics would only have the potential to change query plans. And since the cost of a query plan regressing is orders of magnitude greater than the benefit of a different query performing faster (at least for most queries in most systems), the balance of risks would argue for leaving the stats alone if there is no problem you're trying to solve.
    If your system does actually use global statistics and there are performance problems that you believe are potentially attributable to stale global statistics and your partition level statistics are accurate, you can gather just global statistics on the table probably with a reasonably small sample size. Make sure, though, that you back up your existing statistics just in case a query plan goes south. Ideally, you'd also have a test environment with identical (or nearly identical) data volumes that you could use to verify that gathering statistics doesn't cause any problems.
    Justin

  • Poor Performance 7.0 Workbook with multiple queries

    Hi all,
    I've got the following issue. Our users have workbooks which contain serveral queries on different sheets. (One on each workbook sheet)
    When a workbook contains 5 or more queries, the overall workbook performance will decrease drastically. Workbook with 8 or more queries result in time-outs and messages like unsufficient shared memory.
    Does anyone have the same kind of problems with multiple queries in a Bex 7.0 workbook? Do any one have a solution?
    Any suggestions are welcome.
    Thanks!
    Cheers,
    Ron

    Bill,
    Tried to make a workbook according to your advise. It certainly makes a difference in workbook size. The new workbook is 50% smaller than the older version based on the standard SAP template.
    However, my workbook contains 17 queries, and after 5 minutes it breaks the BW connection. So basic conclusion is that BW 7.0 workbook can't work with a large number of dataproviders/ queries.  This did work in BEx BW 3.x.
    If any one has any other suggestion, more than welcome.
    Cheers,
    Ron

  • Generate ER Diagram with Sql Queries ?

    Hi Expertie,
    I am new to Oracle Sql Developer Data Modeler.
    I am having doubt in Oracle Sql Developer Data Modeler. Can we create ER Diagram with sql queries ?
    Ex: select Ename, EAge, Eemail, ESalary, DDept, Dname, Estatus from Emp E join Dept D on E.EmpId = D.Empid
          Where EAge in (20, 25, 30, 35)
    Please provide me the answer and suggestion. It will be greatful for me.
    Thanks & Regards
    Bhaskar

    Yes, you can engineer your physical model to a logical one, then you'll have an ERD as well. It's a right-click on the model I believe.
    To be more specific, if you relational model is loaded, you can use the button in the toolbar that looks like a double-blue-arrow, or you can mouse-right-click on your relational model in the tree. This will engineer your model to a logical one. You'll then have your ERD.
    Edited by: Jeff Smith SQLDev PM on Apr 29, 2013 9:53 AM

  • Anyone with more than one iPhone 6/6+ in same order getting there phones shipped if all your phones didn't have 9-19 when you ordered?

    Our Verizon account has 10 lines and I figure we're paying over $7,000 a year, when I think of how much money total we have payed to Verizon only to be jerked around and around and lied too over and over again really does make me sick.  6 of these contracts have ended and 3 will be up in next couple months and 1 has a year left so the cancelation fees would not be that bad. And with the other big carrier I've heard it might be cheaper on monthly service. All I wanted from Verizon was for them to do whats right.
    I Ordered
    iPhone 6 16gb  gray
    iPhone 6+ 16gb gray
    iPhone 6+ 64gb gray
    iPhone 6+ 64gb silver
    all on the same order. I finished at 3:19 am est and got a date of 10/14 even though all the phones except the 6+ 16 gb gray had 9/19. Got confirmation email at 4:56 will ship by 10/14 I got worried that all the phones would not ship till 10/14 and contacted verizon thru facebook messenger. They told me my phones would ship in the order received and not be held up by a phone that wasn't available in my order. And based on the time of my order she said 9/19 for the 6 and 6+ silver, 10/7 for the 6+ 64 gray , 10/14 for 6+ 16 gray. On Monday morning my status changed to 9/19:):) in the afternoon in changed to unknown. I called 611 and rep went thru all my phones with a time sheet she had and said i should get all but the 6+ 16 gray on 9/19, she said that one you had to order by 3:00 to get on 9/19. On Wednesday my status changed to 10/14 , called 611 again and this lady told me all my phones had 10/14 listed after them. She told me she didn't know  what to tell me that Apple ships the phones and its out of Verizon's hands because they don't have the phones. then she told me to call Apple (and gave me the phone # ) and see if they ship preorders with more than 1 in a order when their available or wait till all are. I called them ( they laughed that Verizon had me call them) and they don't hold up orders . Called customer service back and guy said at least 10 times ....I ASSURE YOU VERIZON WILL NOT HOLD YOUR PHONES!!!  i said of course they're not actually putting them in a box and waiting for all, they're sending them to other people who ordered after me. I asked him if my order could be separated/ rebuilt and do a (jump the line request)  so i could get my phones when i should. He said there is no such thing at verizon....he has worked there many years and if there was he would know. Someone posted # to Internet orders so i called them Thursday morning, spoke to a very nice guy he said my phones that i should get i would and i should get an e-mail later that day and if i didnt get anything by 8:00 pm to call back. Before we hung up i asked if I didn't  get anything did he know if they could cancel/separate/rebuild and do jump the line, he said they can do that and put me on hold while he spoke with a supervisor, he came back and said if nothing happened that day they would do that with my order. I got nothing, called Internet orders back at 8:30pm... went thru my history and asked them to do the rebuild. She transferred me to supervisor who REFUSED to rebuild my order, that is only for orders that have a technical error. She was also the first person from Verizon to tell me that they DO NOT  ship orders in multiple shipments, they will only send when everything is available. She then said your order was given a delivery date of before 10/14  and that's when you'll get all your phones. I let her know that there is nothing about that confirmation that tells me that the phones that I ordered that had 9/19 deliver by dates would not be delivered then, 9/19 is before 10/14.

    Same thing happened to me!!! They made a shady business move and they should be ashamed. Placed a pre-order for an Phone 6 and an iPhone 6 Plus at 2 AM on the 12th and got my pre-order in line just like everyone else did that morning. The 6 said delivery by 9/19 and the Plus was already back ordered to 10/7 but that's fine, I expected the Plus to be harder to get anyway. Being that both phones were eligible it made sense to just place one order given this hasn't been an issue in the past. However, Verizon moved my iPhone 6 pre-order delivery to coincide with the back ordered Plus so they don't have to ship each phone separately!!! I have to wait for something on backorder while the other is ready so they can save on shipping cost. I expected the one that I pre-ordered IN TIME FOR A 9/19 delivery and waited my turn "in (on)line" like everyone else I should get that when it told me that in the checkout, THEN send the Plus when it becomes available. I even have the confirmation email that says "Deliver by 9/19"!!!  Every company you order from sends you the backorder item when it becomes in stock, they don't wait and hold the entire order for it. WHAT A BUNCH OF CRAP!!!

  • Is there a stereo bluetooth headset that can pair with more than one device at a time?

    Is there a stereo bluetooth headset that can pair, i.e. multipoint, with more than one device at a time?
    Are the MacBook and iPhone 4 capable of multipoint bluetooth technoloagy?
    The goal is for my wife to be able to watch her Korean TV soap operas on her MacBook and still receive a call on her iPhone 4 via a stereo bluetooth headset.
    I was looking at the Motorola S10-HD but after further review saw that it only pairs with one device at a time.
    Appreciate any and all input. My Googling has returned no results.
    Rick

    TeslasBB wrote:
    pairing my BB8330 with my blue tooth earphone(TM:jawbone) and my microsoft sync thats in my car simultaneously? if i pair with the car, will i have to pair my jawbone all over again?
    You can only pair one device at a time to your 8330, or any other phone for that matter.  The "pairings" are saved to the phone, you can use one or the other and you won't have to pair it again.  Once you turn your bluetooth device on and the phone is on, they will find each other again.
    Hope this helps,
    John
    Stevie Ray! 1954-1990
    ** Don't forget to resolve your post with the accepted solution.

  • Can I use a magic trackpad with more than one Mac at a time?

    I am attempting to pair a MTP with a second MacBook Pro.  So far I can't get system preferences to find the MTP.
    I am wondering whether the MTP can be paired with only one Mac at a time, and that this is why my MBP won't find it.
    The reason I am thinking this is because the little booklet that comes with the MTP says 'after you pair your MTP with a Mac, you can pair it again with a different Mac.  To do this, you first remove the existing pairing and then pair the trackpad again'.
    Can anyone advise, please?
    If it can be paired with more than one MBP at a time, any suggestions why my system preferences search for the MTP is not producing any results?
    Thanks

    Yes, your keyboard, mouse or trackpad can be paired with multiple Macs.  You can even have multiple keyboards, mice or trackpads paired with one Mac.  The caveat is that the device can only be connected to one Mac at a time.  The device can't be paired or connected with a Mac while it's currently connected to another.
    Pairing a device with 2 Macs will be troublesome if the Macs are located within 33 ft of each other.  The device will connect with the first available paired Mac and then unavailable to the second.   If the Macs are located outside the 10meter range, it's quite easy to power off the keyboard (forcing a disconnect) then walking the keyboard to Mac 2 and powering the keyboard on.   I do this with a keyboard from my iMac to a Mac Mini in another room.
    Captfred

  • Finding of materials in scheduling agreement with more than 150 lines

    Dear Experts,
    we are in need to find materials in scheduling agreement with more than 150 lines. In standard SAP, materials can be searched only based on item Nos. is there a way we can search by material in ME38. also we noticed that find icon is greyed out in ME38.
    Please suggest.
    One more request is, to create an uplaod program for maintaining delivery schedules for multiple SAs.
    please sugegst if this is feasible.
    Regards
    Raghavendra MS
    9886138875

    I am also curious if anyone has found a solution to this problem.
    We routinely have scheduling agreements that are hundreds of line items. Users find it difficult to find the line item they wish to work with. It would be helpful if we could search by material number or sort the line items by material.
    As Raghavendra mentioned (ctrl+F) functionality is not available in ME33L or ME38.
    Thanks.

Maybe you are looking for