Is this a "bug" on this group by matrix report?

Is this a bug in Reports (10g Release2)?
We need to create a report which will display country and gender wise arrival totals for every flight but Arrival method wise (i.e. grouped by arrival method), with grand totals for the flight number (i.e. total people in the flight).
The output comes out correct only if 1 group (i.e. Arrival method ) is selected. But when all arrival methods are shown, we get this wrong output.
TABLE + DATA
--  DDL + data for Table KR_TABLE1
  CREATE TABLE "KR_TABLE1"
   (     "PK" NUMBER PRIMARY KEY,
     "ARRIVAL_METHOD" VARCHAR2(10 BYTE),
     "COUNTRY_CODE" VARCHAR2(2 BYTE),
     "COUNTRY_NAME" VARCHAR2(10 BYTE),
     "ARRIVAL_GENDER" VARCHAR2(1 BYTE),
     "FLIGHT_NUMBER" VARCHAR2(10 BYTE),
     "FLIGHT_DATE" DATE,
     "COUNT1" NUMBER
REM INSERTING into KR_TABLE1
SET DEFINE OFF;
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (1,'Swipe','In','India','M','UL 123',to_date('01-APR-13','DD-MON-RR'),5);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (2,'Swipe','In','India','F','UL 123',to_date('01-APR-13','DD-MON-RR'),6);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (3,'Swipe','In','India','C','UL 123',to_date('01-APR-13','DD-MON-RR'),2);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (6,'Swipe','Cn','China','M','UL 123',to_date('01-APR-13','DD-MON-RR'),123);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (7,'Swipe','Cn','China','C','UL 123',to_date('01-APR-13','DD-MON-RR'),73);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (11,'Swipe','In','India','M','AB 546',to_date('02-APR-13','DD-MON-RR'),15);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (12,'Swipe','In','India','F','AB 546',to_date('02-APR-13','DD-MON-RR'),16);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (13,'Swipe','In','India','C','AB 546',to_date('02-APR-13','DD-MON-RR'),12);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (16,'Swipe','Cn','China','M','AB 546',to_date('02-APR-13','DD-MON-RR'),133);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (17,'Swipe','Cn','China','C','AB 546',to_date('02-APR-13','DD-MON-RR'),83);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (21,'Swipe','In','India','M','cx 956',to_date('03-APR-13','DD-MON-RR'),26);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (22,'Swipe','In','India','F','cx 956',to_date('03-APR-13','DD-MON-RR'),27);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (23,'Swipe','In','India','C','cx 956',to_date('03-APR-13','DD-MON-RR'),23);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (26,'Swipe','Cn','China','M','cx 956',to_date('03-APR-13','DD-MON-RR'),144);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (27,'Swipe','Cn','China','C','cx 956',to_date('03-APR-13','DD-MON-RR'),94);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (31,'Swipe','In','India','M','QL1234',to_date('04-APR-13','DD-MON-RR'),36);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (32,'Swipe','In','India','F','QL1234',to_date('04-APR-13','DD-MON-RR'),37);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (33,'Swipe','In','India','C','QL1234',to_date('04-APR-13','DD-MON-RR'),33);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (36,'Swipe','Cn','China','M','QL1234',to_date('04-APR-13','DD-MON-RR'),154);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (37,'Swipe','Cn','China','C','QL1234',to_date('04-APR-13','DD-MON-RR'),104);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (41,'Swipe','In','India','M','BF 176',to_date('05-APR-13','DD-MON-RR'),46);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (42,'Swipe','In','India','F','BF 176',to_date('05-APR-13','DD-MON-RR'),47);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (43,'Swipe','In','India','C','BF 176',to_date('05-APR-13','DD-MON-RR'),43);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (46,'Swipe','Cn','China','M','BF 176',to_date('05-APR-13','DD-MON-RR'),164);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (47,'Swipe','Cn','China','C','BF 176',to_date('05-APR-13','DD-MON-RR'),114);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (51,'Swipe','In','India','M','JR 671',to_date('06-APR-13','DD-MON-RR'),56);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (52,'Swipe','In','India','F','JR 671',to_date('06-APR-13','DD-MON-RR'),57);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (53,'Swipe','In','India','C','JR 671',to_date('06-APR-13','DD-MON-RR'),53);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (56,'Swipe','Cn','China','M','JR 671',to_date('06-APR-13','DD-MON-RR'),174);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (57,'Swipe','Cn','China','C','JR 671',to_date('06-APR-13','DD-MON-RR'),124);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (61,'Swipe','In','India','M','M3 999',to_date('07-APR-13','DD-MON-RR'),66);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (62,'Swipe','In','India','F','M3 999',to_date('07-APR-13','DD-MON-RR'),67);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (63,'Swipe','In','India','C','M3 999',to_date('07-APR-13','DD-MON-RR'),63);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (66,'Swipe','Cn','China','M','M3 999',to_date('07-APR-13','DD-MON-RR'),184);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (67,'Swipe','Cn','China','C','M3 999',to_date('07-APR-13','DD-MON-RR'),134);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (71,'Swipe','In','India','M','V3 111',to_date('18-APR-13','DD-MON-RR'),76);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (72,'Swipe','In','India','F','V3 111',to_date('18-APR-13','DD-MON-RR'),77);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (73,'Swipe','In','India','C','V3 111',to_date('18-APR-13','DD-MON-RR'),73);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (76,'Swipe','Cn','China','M','V3 111',to_date('18-APR-13','DD-MON-RR'),194);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (77,'Swipe','Cn','China','C','V3 111',to_date('18-APR-13','DD-MON-RR'),144);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (161,'Manual','In','India','M','UL 123',to_date('01-APR-13','DD-MON-RR'),4);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (162,'Manual','In','India','F','UL 123',to_date('01-APR-13','DD-MON-RR'),5);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (163,'Manual','In','India','C','UL 123',to_date('01-APR-13','DD-MON-RR'),1);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (164,'Manual','Pk','Pakistan','M','UL 123',to_date('01-APR-13','DD-MON-RR'),12);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (165,'Manual','Pk','Pakistan','F','UL 123',to_date('01-APR-13','DD-MON-RR'),6);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (166,'Manual','Cn','China','M','UL 123',to_date('01-APR-13','DD-MON-RR'),122);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (167,'Manual','Cn','China','C','UL 123',to_date('01-APR-13','DD-MON-RR'),72);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (168,'Manual','US','America','M','UL 123',to_date('01-APR-13','DD-MON-RR'),7);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (169,'Manual','US','America','F','UL 123',to_date('01-APR-13','DD-MON-RR'),0);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (170,'Manual','US','America','C','UL 123',to_date('01-APR-13','DD-MON-RR'),2);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (171,'Manual','In','India','M','AB 546',to_date('02-APR-13','DD-MON-RR'),14);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (172,'Manual','In','India','F','AB 546',to_date('02-APR-13','DD-MON-RR'),15);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (173,'Manual','In','India','C','AB 546',to_date('02-APR-13','DD-MON-RR'),11);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (174,'Manual','Pk','Pakistan','M','AB 546',to_date('02-APR-13','DD-MON-RR'),22);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (175,'Manual','Pk','Pakistan','F','AB 546',to_date('02-APR-13','DD-MON-RR'),16);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (176,'Manual','Cn','China','M','AB 546',to_date('02-APR-13','DD-MON-RR'),132);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (177,'Manual','Cn','China','C','AB 546',to_date('02-APR-13','DD-MON-RR'),82);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (178,'Manual','US','America','M','AB 546',to_date('02-APR-13','DD-MON-RR'),17);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (179,'Manual','US','America','F','AB 546',to_date('02-APR-13','DD-MON-RR'),10);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (180,'Manual','US','America','C','AB 546',to_date('02-APR-13','DD-MON-RR'),12);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (181,'Manual','In','India','M','cx 956',to_date('03-APR-13','DD-MON-RR'),25);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (182,'Manual','In','India','F','cx 956',to_date('03-APR-13','DD-MON-RR'),26);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (183,'Manual','In','India','C','cx 956',to_date('03-APR-13','DD-MON-RR'),22);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (184,'Manual','Pk','Pakistan','M','cx 956',to_date('03-APR-13','DD-MON-RR'),33);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (185,'Manual','Pk','Pakistan','F','cx 956',to_date('03-APR-13','DD-MON-RR'),27);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (186,'Manual','Cn','China','M','cx 956',to_date('03-APR-13','DD-MON-RR'),143);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (187,'Manual','Cn','China','C','cx 956',to_date('03-APR-13','DD-MON-RR'),93);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (188,'Manual','US','America','M','cx 956',to_date('03-APR-13','DD-MON-RR'),28);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (189,'Manual','US','America','F','cx 956',to_date('03-APR-13','DD-MON-RR'),21);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (190,'Manual','US','America','C','cx 956',to_date('03-APR-13','DD-MON-RR'),23);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (191,'Manual','In','India','M','QL1234',to_date('04-APR-13','DD-MON-RR'),35);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (192,'Manual','In','India','F','QL1234',to_date('04-APR-13','DD-MON-RR'),36);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (193,'Manual','In','India','C','QL1234',to_date('04-APR-13','DD-MON-RR'),32);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (194,'Manual','Pk','Pakistan','M','QL1234',to_date('04-APR-13','DD-MON-RR'),43);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (195,'Manual','Pk','Pakistan','F','QL1234',to_date('04-APR-13','DD-MON-RR'),37);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (196,'Manual','Cn','China','M','QL1234',to_date('04-APR-13','DD-MON-RR'),153);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (197,'Manual','Cn','China','C','QL1234',to_date('04-APR-13','DD-MON-RR'),103);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (198,'Manual','US','America','M','QL1234',to_date('04-APR-13','DD-MON-RR'),38);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (199,'Manual','US','America','F','QL1234',to_date('04-APR-13','DD-MON-RR'),31);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (200,'Manual','US','America','C','QL1234',to_date('04-APR-13','DD-MON-RR'),33);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (201,'Manual','In','India','M','BF 176',to_date('05-APR-13','DD-MON-RR'),45);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (202,'Manual','In','India','F','BF 176',to_date('05-APR-13','DD-MON-RR'),46);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (203,'Manual','In','India','C','BF 176',to_date('05-APR-13','DD-MON-RR'),42);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (204,'Manual','Pk','Pakistan','M','BF 176',to_date('05-APR-13','DD-MON-RR'),53);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (205,'Manual','Pk','Pakistan','F','BF 176',to_date('05-APR-13','DD-MON-RR'),47);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (206,'Manual','Cn','China','M','BF 176',to_date('05-APR-13','DD-MON-RR'),163);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (207,'Manual','Cn','China','C','BF 176',to_date('05-APR-13','DD-MON-RR'),113);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (208,'Manual','US','America','M','BF 176',to_date('05-APR-13','DD-MON-RR'),48);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (209,'Manual','US','America','F','BF 176',to_date('05-APR-13','DD-MON-RR'),41);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (210,'Manual','US','America','C','BF 176',to_date('05-APR-13','DD-MON-RR'),43);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (211,'Manual','In','India','M','JR 671',to_date('06-APR-13','DD-MON-RR'),55);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (212,'Manual','In','India','F','JR 671',to_date('06-APR-13','DD-MON-RR'),56);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (213,'Manual','In','India','C','JR 671',to_date('06-APR-13','DD-MON-RR'),52);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (214,'Manual','Pk','Pakistan','M','JR 671',to_date('06-APR-13','DD-MON-RR'),63);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (215,'Manual','Pk','Pakistan','F','JR 671',to_date('06-APR-13','DD-MON-RR'),57);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (216,'Manual','Cn','China','M','JR 671',to_date('06-APR-13','DD-MON-RR'),173);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (217,'Manual','Cn','China','C','JR 671',to_date('06-APR-13','DD-MON-RR'),123);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (218,'Manual','US','America','M','JR 671',to_date('06-APR-13','DD-MON-RR'),58);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (219,'Manual','US','America','F','JR 671',to_date('06-APR-13','DD-MON-RR'),51);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (220,'Manual','US','America','C','JR 671',to_date('06-APR-13','DD-MON-RR'),53);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (221,'Manual','In','India','M','M3 999',to_date('07-APR-13','DD-MON-RR'),65);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (222,'Manual','In','India','F','M3 999',to_date('07-APR-13','DD-MON-RR'),66);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (223,'Manual','In','India','C','M3 999',to_date('07-APR-13','DD-MON-RR'),62);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (224,'Manual','Pk','Pakistan','M','M3 999',to_date('07-APR-13','DD-MON-RR'),73);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (225,'Manual','Pk','Pakistan','F','M3 999',to_date('07-APR-13','DD-MON-RR'),67);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (226,'Manual','Cn','China','M','M3 999',to_date('07-APR-13','DD-MON-RR'),183);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (227,'Manual','Cn','China','C','M3 999',to_date('07-APR-13','DD-MON-RR'),133);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (228,'Manual','US','America','M','M3 999',to_date('07-APR-13','DD-MON-RR'),68);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (229,'Manual','US','America','F','M3 999',to_date('07-APR-13','DD-MON-RR'),61);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (230,'Manual','US','America','C','M3 999',to_date('07-APR-13','DD-MON-RR'),63);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (231,'Manual','In','India','M','V3 111',to_date('18-APR-13','DD-MON-RR'),75);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (232,'Manual','In','India','F','V3 111',to_date('18-APR-13','DD-MON-RR'),76);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (233,'Manual','In','India','C','V3 111',to_date('18-APR-13','DD-MON-RR'),72);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (234,'Manual','Pk','Pakistan','M','V3 111',to_date('18-APR-13','DD-MON-RR'),83);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (235,'Manual','Pk','Pakistan','F','V3 111',to_date('18-APR-13','DD-MON-RR'),77);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (236,'Manual','Cn','China','M','V3 111',to_date('18-APR-13','DD-MON-RR'),193);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (237,'Manual','Cn','China','C','V3 111',to_date('18-APR-13','DD-MON-RR'),143);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (238,'Manual','US','America','M','V3 111',to_date('18-APR-13','DD-MON-RR'),78);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (239,'Manual','US','America','F','V3 111',to_date('18-APR-13','DD-MON-RR'),71);
Insert into KR_TABLE1 (PK,ARRIVAL_METHOD,COUNTRY_CODE,COUNTRY_NAME,ARRIVAL_GENDER,FLIGHT_NUMBER,FLIGHT_DATE,COUNT1) values (240,'Manual','US','America','C','V3 111',to_date('18-APR-13','DD-MON-RR'),73);
CREATE SEQUENCE kr_table_seq START WITH 1
CREATE OR REPLACE TRIGGER "kr_table1_PK_GEN_TRIG"
   before insert on "KR_TABLE1"
   for each row
begin 
   if inserting then
      if :NEW."PK" is null then
         select kr_table_seq.nextval into :NEW."PK" from dual;
      end if;
   end if;
end;
/REPORT QUERY
SELECT arrival_method,
country_code, country_name, arrival_gender,
flight_number , flight_date, SUM(count1) sum_count1
FROM kr_table1
GROUP BY arrival_method, country_code, country_name, arrival_gender, flight_number , flight_date
ORDER BY arrival_method,country_code, country_name, arrival_gender,flight_number , flight_dateReport data model (created using reports wizard and not manually):
http://www.freeimagehosting.net/newuploads/6alll.jpg
Erroneous report output:
http://www.freeimagehosting.net/newuploads/2gx4a.jpg
Edited by: 957072 on Apr 23, 2013 3:51 AM
Edited by: 957072 on Apr 23, 2013 3:52 AM

You can set the Default Type before you send the message under SENDING options to TEXT (default is automatic)
But then all it does it will not send the message if more than 20 recipients are there it will tell you how many recipients over 20 you have entered.
Say you have a group of 26 contacts and then you enter that and then select Options -> Sending options -> Message Type
Set to TEXT
Then if you try to send it will tell you that you have to remove 6 recipients.
640K Should be enough for everybody
El_Loco Nokia Video Blog

Similar Messages

  • Is there anyone in this group who would really help me out...

    i need the output in alv.....anyone in this group plz help!!
    Selection Screen:
    Sales Org:
    Sales document number:
    YearPeriod: (Range) ( Mandatory) – YYYYMM to YYYYMM
    Output (Radio button)
    -     Screen
    -     Download
    Report Output:
    Sales Org:
    Sales Doc number:
    Forcast ID number:
    Sales Document Type:
    Net Value:
    Currency:
    Program Flow:
    1) Read Function modules FIRST_DAY_IN_PERIOD_GET and LAST_DAY_IN_PERIOD_GET to ge the first and last  dates of the periods entered on the selection screen. Here Year = First 4 characters and Period = Next two characters of YearPeriod field of the selection screen.
    2) Read VBAK and filter all the sales documents where VBAK - AUART is ZJE or ZJR and VBAK – AUDAT in the first and last dates of the periods detrmined from the above step.
    3) For Each of the sales documents disply the following on the output
      - Sales Org: VBAK – VKORG ( Display on the output)
      - Forcast ID Number: Read function module “READ_TEXT” where ID = Z001, Object = VBBK to get the Forcast ID. Display it on the output.
      - Sales Document Type: VBAK-AUART
      - Net Value: VBAK-NETWR
      - Currency : VBAK-WAERK
    3) For Each of the sales documents with VBAK-AURT = ZJE check the “Revenue amount in TC” in ZBLRV. Replace the vlaue VBAK-NETWR with REVTC and display the value in the report output.

    this requirement looks very familiar. I already wrote a report for Minas....and something, last night, and now you have the same requirement? Strange......Are you working on the same project 'together'?

  • HT3529 How do you send a message to a group of people.  I want to invite our local friends to a birthday party.  I have created a group called "Centerville Gang".  The group has about 12 people in it.  Is there a way I can select this group to receive thi

    I want to invite 12 people to a birthday party.  I have created a group called "Centerville Gang"  I want to send just one message to all of these people.  I would think there would be a way to select this group as the recipients once instead of doing 12 searches through my contacts to get all of the members in the group but I cant seem to figure it out.  I must be missing something.  Can you help?

    Contact groups do not allow for group emailing. they are just an organizational tool for the contacts list.

  • WHAT is "Hibernate this Group" and why can't I find ANY information on this and HOW to get accidentally hibernated groups BACK???

    This is REALLY getting me frustrated! What is "Hibernate this Group"? Why can't I find any information on it? Why can't I get groups back that have been accidentally "hibernated"? There is a "moon" symbol on my upper right screen that says "Hibernate this Group" and I don't know what it does or how it works! AND I accidentally "hibernated" a group when I clicked on it too long and a bunch of "zzz's" showed up and then it was GONE! How do I get it all back? And why isn't there a tech center I can contact to help with this???

    This sounds like some third-party app or extension, because this functionality is not in Firefox by default. [[Reset Firefox – easily fix most problems]] should remove it

  • Newbie to keynote; some questions and some observations about this group

    Hello, my attn was called to this group. I have seen some impressive presentations in keynote so maybe it is time to switch.
    From what?
    I do a lot of presentations. I use acrobat. Prepare my page in whatever app is best for the job; print to pdf; include fonts. By using the app of my choice I get just what I want in my slide.
    I can readily arrange slides in sorter in acrobat. Allows minimal animation, by, say, preparing the full slide, make copies, and delete progressively. sort to show from the least to the fullest; works for me.
    pdf allows touch up text and adding text, which I often think of at the last minute. Drawing an oval or line to point to something. For heavier editing open a slide in illustrator and save as pdf.
    So, as I say it works for me. Not glitzy. Certainly pretty easy to produce decent slides.
    Most everyone has acrobat on his/her machine, so if I take my presentation on a stick, it can work, nicely, cross platform. Very few occasions when that didnt work.
    So I would like to hear folks' experiences. Can you take your presentation on a stick and show it on someone else's computer?
    What about posting presentations. I generally put my pdf on my web page, giving the audience the url; seeems to work fine. Again I ask for experience.
    Seems like quite a learning curve for keynote. And I browsed about 4 pages of discussion on this board before posting. I saw mostly complaints and problems, and not all that many solutions. And very few raves.
    So, I would welcome some testimonials.
    PS I dont want to do anything so glitzy that folks will come up to me after the talk and say nice animations; better they talk to me about the substance of my talk.
    thanks in advance
    -trog

    Welcome to the forums, troglodyte.
    If you want a testimonial, I think that Keynote is hands-down the easiest to use presentation tool, and produces by far the best-looking results. It is far ahead of PowerPoint.
    Keynote produced beautiful results, even when converted to PDF, as it has very nice graphics features (e.g., drop shadows, masking, transparency). If you are most comfortable with PDF, and don't need animations or transitions, then Keynote still has a lot to offer. That said, much of the "wow-factor" of Keynote comes from its lovely and sophisticated transitions and animations.
    (These features needn't be just eye-candy, either, as they can serve to emphasize points and help unify certain material. For example, I use transitions that are more obvious, such as the "Doorway", to mark major changes of topic in my presentations, and more subtle ones, like "Dissolve", to change between related slides. This "grammar" of transitions helps to make the presentation more comprehensible.)
    Keynote is not cross-platform, so you can't put a native Keynote presentation on a memory stick and be assured that it will work on someone else's computer. However, PDFs make from Keynote should function just fine. Alternatively, you can use various of the other exporting options in Kenote, including Quicktime, Flash, and PowerPoint, to provide more cross-platform compatibility than Keynote does (each of these conversions has its own limitations however). And several of these formats are also appropriate for web deployment.
    I find Keynote extremely easy to use. Do realize that these forums are primarily intended for troubleshooting, so you won't find a lot of generic compliments to the application.

  • What happened to the "bookmark this group of tabs" function?

    Firefox 6.0 doesn't have a "bookmark this group of tabs" function on the bookmarks menu. What happened to it? Can it still be done? How? This is progress???

    Thanks. Is it me, or is this completely counterintuitive? I expect the tab context menu to have stuff that applies to a particular tab, and the Bookmarks menu to contain functions concerned with bookmarks globally.

  • Can sap LDAP read and sync this group

    Hello
    I configure LDAP in my sap abap system and its run ok on ou.
    But in my company I have lots of users and not all need sap, and the users are in some ouu2019s .
    I create group in AD that called SAP_USERS and I add same users to this group.
    Can sap LDAP read and sync this group?
    Thanks
    Nir

    Hello,
    have you find a solution for your problem?
    Could you share the solution with us?
    Thank you and Regards
    Matteo

  • I have set up a 'group' in my contacts.  When I go to send an email to this 'group', I get an error message saying 'Invalid Address'. What am I doing wrong?

    I have set up a 'group' in my contacts.  When I go to send an email to this 'group', I get an error message saying 'Invalid Address'. What am I doing wrong?

    I have this problem too. I've always sent messages successfully via bcc to a group using a group email list in contacts. Now ... all of a sudden when I select the same group for bcc nothing happens! Cannot email my group now. Why not?

  • How to set "Make this group privileged" property for group?

    There is a group property which is
    shown as a checkbox in OID Console and
    described as "Make this group privileged. Enabling this option will allow you to perform the assignment of privileges to this group. Non privileged group cannot be associated with any privilege.".
    How to set this property programmatically using Portal PL/SQL API ?
    Thanks

    nina91x,
    It sounds like you have two elements for each crane and forklift service, namely, a labor component that perhaps prepares, delivers, services, etc. each piece of machinery and a material element which is the machine itself. You could create labor and materials
    resources to correspond to each of those elements, but Project doesn't allow you to set a max on a material resource, so creating a material resource for the cranes and forklifts probably isn't going to work.
    What you really need, at least as I interpret it, is a combination schedule (to track your labor) and a spreadsheet (to track your machines). I suggest you only list the labor elements as performance tasks in your schedule. For example, under the Support
    summary line, you might have separate tasks for, Service cranes, Prepare cranes for delivery, Deliver cranes, Retrieve cranes, and likewise for the forklifts. Then, instead of creating or assigning the machines as a resource, customize a couple of extra fields
    (e.g. Text1 and Text2) to track the number of machines that are used and available. For example, if the Text1 field is renamed "Cranes/Forklifts Used", you could enter into that field the number the customer currently has at his jobsite. I would
    enter that value in the Text1 field for the Deliver cranes task. The labor for that task is the truck drivers time to make deleveries and it would be tracked as any normal labor task. Rename the Text2 field as "Cranes/Forklifts Available" and customize
    that field with the formula: IIF([Text1]>"0","250"-[Text1],""). As data is entered into the Text1 field, the Text2 field will automatically calculate the remaining inventory. See the screenshot below.
    Using the above structure you will be tracking both labor and machines and the machine usage will have no impact on progress.
    Hope this helps.
    John

  • Wiki has no groups: 'Enable the following services for this group' is None

    Our Leopard Server is an OD Master and have followed the Wiki setup procedure detailed in the Web Services Overview PDF. Believe I have got that part configured correctly and am able to access the web/wiki frontend on our Intranet.
    Issue is that I am unable to get any groups to be available on the Wiki and therefore cannot actually do anything.
    I believe it is an issue with the 'Enable the following services for this group' setting as it always displays None.
    I have read various posts/discussions but am no wiser as to the issue.
    Sorry if this is a noob question, any help gratefully received.
    Matt

    Your not alone, I have this exact same problem.
    I'm running a fully working BIND 9 and OD Master, so that's not your issue. My groups are without a doubt in the /LDAPv3/127.0.0.1 domain.
    When I connect with Directory.app, all services are grayed out and cannot be enabled. If I attempt to enable them in WGM they appear to apply when I hit save, but if I focus another group and come back it says (None).
    My logs are below:
    Jul 8 17:01:48 airto servermgrd[92]: servermgr_web: Teams service stopped
    Jul 8 17:01:48 airto servermgrd[92]: servermgr_web: Teams service started
    Jul 8 17:01:52 airto com.apple.wikid[3816]: Removing stale pidfile /var/run/wikid.pid
    Jul 8 17:05:58 airto servermgrd[92]: servermgr_web: Teams service stopped
    Jul 8 17:06:00 airto servermgrd[92]: TIME-CHECK: NSLXStandardDeregisterService took 2.001849 seconds!
    Jul 8 17:06:15 airto com.apple.launchd[1] (org.apache.httpd): Unknown key: SHAuthorizationRight
    Jul 8 17:06:16 airto servermgrd[92]: servermgr_web: Teams service started
    Jul 8 17:06:18 airto servermgrd[92]: TIME-CHECK: NSLXStandardRegisterService took 2.003159 seconds!
    Jul 8 17:06:19 airto com.apple.wikid[4222]: Removing stale pidfile /var/run/wikid.pid
    Jul 8 17:06:51 airto servermgrd[92]: servermgr_web: Teams service stopped
    Jul 8 17:06:53 airto servermgrd[92]: TIME-CHECK: NSLXStandardDeregisterService took 2.001768 seconds!
    Jul 8 17:07:04 airto com.apple.launchd[1] (org.apache.httpd): Unknown key: SHAuthorizationRight
    Jul 8 17:07:05 airto servermgrd[92]: servermgr_web: Teams service started
    Jul 8 17:07:07 airto servermgrd[92]: TIME-CHECK: NSLXStandardRegisterService took 2.003067 seconds!
    Jul 8 17:07:07 airto com.apple.wikid[4238]: Removing stale pidfile /var/run/wikid.pid
    Jul 8 17:13:50 airto servermgrd[92]: servermgr_web: htcleancache disabled
    Jul 8 17:13:50 airto servermgrd[92]: servermgr_web: Multi instance key 'SSLLog' has a single value=''!
    Jul 8 17:13:50: --- last message repeated 2 times ---
    Jul 8 17:13:50 airto servermgrd[92]: servermgr_web: Multi instance key 'Weblogs' has a single value='{\n enabled = 0;\n}'!
    Jul 8 17:13:51 airto servermgrd[92]: servermgr_web: Teams service stopped
    Jul 8 17:14:03 airto servermgrd[92]: servermgr_calendar: created default calendar virtual host
    Jul 8 17:14:08 airto servermgrd[92]: servermgr_web: Teams service stopped
    Jul 8 17:14:10 airto servermgrd[92]: TIME-CHECK: NSLXStandardDeregisterService took 2.005470 seconds!
    Jul 8 17:14:13 airto com.apple.launchd[1] (org.apache.httpd): Unknown key: SHAuthorizationRight
    Jul 8 17:14:16 airto servermgrd[92]: TIME-CHECK: NSLXStandardRegisterService took 2.029467 seconds!
    Jul 8 17:14:23 airto servermgrd[92]: servermgr_web: htcleancache disabled
    Jul 8 17:14:23 airto servermgrd[92]: servermgr_web: Multi instance key 'SSLLog' has a single value=''!
    Jul 8 17:14:23: --- last message repeated 2 times ---
    Jul 8 17:14:23 airto servermgrd[92]: servermgr_web: Multi instance key 'Weblogs' has a single value='{\n enabled = 0;\n}'!
    Jul 8 17:14:23 airto servermgrd[92]: servermgr_web: Teams service started
    Jul 8 17:14:28 airto com.apple.wikid[4383]: Removing stale pidfile /var/run/wikid.pid
    Jul 8 17:14:32 airto servermgrd[92]: servermgr_web: htcleancache disabled
    Jul 8 17:14:33 airto servermgrd[92]: servermgr_web: Teams service stopped
    Jul 8 17:14:33 airto servermgrd[92]: servermgr_web: Teams service started
    Jul 8 17:14:37 airto com.apple.wikid[4409]: Removing stale pidfile /var/run/wikid.pid
    Jul 8 17:28:07 airto ipfw[189]: limit 1000 reached on entry 12306

  • "Allow this group's picture and name to be changed...

    I just upgraded to 6.22 and the "Allow this group's picture and name to be changed" checkbox is now missing.  Why is it missing?  I know that you can just do /set options -TOPIC_AND_PIC_LOCKED_FOR_USERS but I don't understand why the GUI option was removed.   

    Group avatars cannot be changed in the latest 6.22 version. In the case of new "cloud-based" group chats, this option is not available in older Skype versions either.

  • This is just to report a problem with Apple updates. I updated recently and the computer brought up my 2012 desktop with all my 2014 files and data including stickies missing! Now I hesitate to do another Apple update. What would you do?

    Apple Updates: This is just to report a problem. I updated recently and on restart the computer restored up my 2012 desktop with all my 2014 files and data including stickies missing!!! Now I hesitate to do another Apple update. What would you do?

    If all your files are missing
    You may have logged in as a different user, such as Guest. Open the Users & Groups pane in System Preferences. Your name should be at the top of the user list, under Current User. See also this support article.   
    If files are missing from one folder
    Change the Finder view mode; for example, from icon view to list view, or vice versa.
    If files are present, but seem outdated
    You may have started up from a different volume (disk.) Open the Startup Disk preference pane and check the selection.

  • WSUS - "this computer has not reported status yet" Windows server 2003

    I just did a successful installation of wsus 3.0 Sp2
    I am able to see all the machines but the issue starts there
    Each of the machine show this error " this computer has not reported status yet"
    i have tried but hasnt manage to resolve this issue
    kindly guide me on how i can resolve it
    thx

    2013-06-26 14:20:36:633
    644 478
    AU ##  END  ##  AU: Search for updates [CallId = {4E48EF51-0D7C-458A-A575-9BA1B4799175}]
    2013-06-26 14:20:36:633
    644 478
    AU #############
    2013-06-26 14:20:36:634
    644 478
    AU Successfully wrote event for AU health state:0
    2013-06-26 14:20:36:634
    644 478
    AU AU setting next detection timeout to 2013-06-26 16:20:36
    2013-06-26 14:20:36:634
    644 478
    AU Setting AU scheduled install time to 2013-06-27 00:00:00
    2013-06-26 14:20:36:634
    644 478
    AU Successfully wrote event for AU health state:0
    2013-06-26 14:20:36:634
    644 478
    AU Successfully wrote event for AU health state:0
    2013-06-26 14:20:41:581
    644 1338
    Report REPORT EVENT: {8DFBD635-02A8-4773-9DF8-80880752189A}
    2013-06-26 14:20:36:577+0300 1
    148 101
    {D67661EB-2423-451D-BF5D-13199E37DF28}
    1 800b0001
    SelfUpdate Failure
    Software Synchronization Windows Update Client failed to detect with error 0x800b0001.
    2013-06-26 14:20:41:621
    644 1338
    Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2013-06-26 14:20:41:621
    644 1338
    Report WER Report sent: 7.6.7600.256 0x800b0001 D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed
    2013-06-26 14:20:41:621
    644 1338
    Report CWERReporter finishing event handling. (00000000)
    2013-06-26 14:22:41:605
    644 1338
    Report Uploading 1 events using cached cookie, reporting URL = http://NTKE01/ReportingWebService/ReportingWebService.asmx
    2013-06-26 14:22:41:612
    644 1338
    Report Reporter successfully uploaded 1 events.
    2013-06-26 15:25:02:219
    644 13d0
    AU Triggering AU detection through DetectNow API
    2013-06-26 15:25:02:219
    644 13d0
    AU Triggering Online detection (non-interactive)
    2013-06-26 15:25:02:220
    644 718
    AU #############
    2013-06-26 15:25:02:220
    644 718
    AU ## START ##  AU: Search for updates
    2013-06-26 15:25:02:220
    644 718
    AU #########
    2013-06-26 15:25:02:221
    644 718
    AU <<## SUBMITTED ## AU: Search for updates [CallId = {65FA8DBB-1567-45A0-8ECB-103EFAB1C0A3}]
    2013-06-26 15:25:02:221
    644 179c
    Agent *************
    2013-06-26 15:25:02:221
    644 179c
    Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-06-26 15:25:02:221
    644 179c
    Agent *********
    2013-06-26 15:25:02:221
    644 179c
    Agent  * Online = Yes; Ignore download priority = No
    2013-06-26 15:25:02:222
    644 179c
    Agent  * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0
    and DeploymentAction='Uninstallation' and RebootRequired=1"
    2013-06-26 15:25:02:222
    644 179c
    Agent  * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2013-06-26 15:25:02:222
    644 179c
    Agent  * Search Scope = {Machine}
    2013-06-26 15:25:02:242
    644 179c
    Setup Checking for agent SelfUpdate
    2013-06-26 15:25:02:242
    644 179c
    Setup Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2013-06-26 15:25:06:522
    644 179c
    Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2013-06-26 15:25:06:530
    644 179c
    Misc Microsoft signed: Yes
    2013-06-26 15:25:06:533
    644 179c
    Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2013-06-26 15:25:06:558
    644 179c
    Misc Microsoft signed: Yes
    2013-06-26 15:25:08:643
    644 179c
    Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2013-06-26 15:25:08:647
    644 179c
    Misc Microsoft signed: Yes
    2013-06-26 15:25:08:700
    644 179c
    Setup Determining whether a new setup handler needs to be downloaded
    2013-06-26 15:25:08:700
    644 179c
    Setup SelfUpdate handler is not found.  It will be downloaded
    2013-06-26 15:25:08:700
    644 179c
    Setup Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2013-06-26 15:25:09:376
    644 179c
    Setup Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2013-06-26 15:25:09:376
    644 179c
    Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2013-06-26 15:25:09:388
    644 179c
    Setup Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2013-06-26 15:25:09:388
    644 179c
    Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2013-06-26 15:25:09:406
    644 179c
    Setup Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2013-06-26 15:25:09:406
    644 179c
    Setup SelfUpdate check completed.  SelfUpdate is NOT required.
    2013-06-26 15:25:09:466
    644 179c
    PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2013-06-26 15:25:09:466
    644 179c
    PT  + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://NTKE01/ClientWebService/client.asmx
    2013-06-26 15:25:09:536
    644 179c
    PT WARNING: Cached cookie has expired or new PID is available
    2013-06-26 15:25:09:536
    644 179c
    PT Initializing simple targeting cookie, clientId = 01f95362-b793-4a75-bc97-94e49f6b63aa, target group = , DNS name = pcke65.kenya
    2013-06-26 15:25:09:536
    644 179c
    PT  Server URL = http://NTKE01/SimpleAuthWebService/SimpleAuth.asmx
    2013-06-26 15:25:17:456
    644 179c
    PT WARNING: GetCookie failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2013-06-26 15:25:17:456
    644 179c
    PT WARNING: SOAP Fault: 0x00012c
    2013-06-26 15:25:17:457
    644 179c
    PT WARNING:     faultstring:Fault occurred
    2013-06-26 15:25:17:457
    644 179c
    PT WARNING:     ErrorCode:ConfigChanged(2)
    2013-06-26 15:25:17:457
    644 179c
    PT WARNING:     Message:(null)
    2013-06-26 15:25:17:457
    644 179c
    PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"
    2013-06-26 15:25:17:457
    644 179c
    PT WARNING:     ID:78fa31e8-8714-47b9-8ae3-182ecb2d9f74
    2013-06-26 15:25:17:477
    644 179c
    PT WARNING: Cached cookie has expired or new PID is available
    2013-06-26 15:25:17:477
    644 179c
    PT Initializing simple targeting cookie, clientId = 01f95362-b793-4a75-bc97-94e49f6b63aa, target group = , DNS name = pcke65.kenya
    2013-06-26 15:25:17:477
    644 179c
    PT  Server URL = http://NTKE01/SimpleAuthWebService/SimpleAuth.asmx
    2013-06-26 15:27:50:499
    644 718
    AU AU received policy change subscription event
    2013-06-26 15:31:23:807
    644 13d0
    AU Triggering AU detection through DetectNow API
    2013-06-26 15:31:23:807
    644 13d0
    AU Piggybacking on an AU detection already in progress
    2013-06-26 15:31:27:317
    644 13d0
    AU Triggering AU detection through DetectNow API
    2013-06-26 15:31:27:317
    644 13d0
    AU Piggybacking on an AU detection already in progress
    2013-06-26 15:36:56:942
    644 179c
    PT WARNING: SyncUpdates failure, error = 0x8024400A, soap client error = 10, soap error code = 0, HTTP status code = 200
    2013-06-26 15:36:56:942
    644 179c
    PT WARNING: PTError: 0x8024400a
    2013-06-26 15:36:56:942
    644 179c
    PT WARNING: SyncUpdates_WithRecovery failed.: 0x8024400a
    2013-06-26 15:36:56:942
    644 179c
    PT WARNING: Sync of Updates: 0x8024400a
    2013-06-26 15:36:56:942
    644 179c
    PT WARNING: SyncServerUpdatesInternal failed: 0x8024400a
    2013-06-26 15:36:56:942
    644 179c
    Agent  * WARNING: Failed to synchronize, error = 0x8024400A
    2013-06-26 15:36:56:943
    644 179c
    Agent  * WARNING: Exit code = 0x8024400A
    2013-06-26 15:36:56:943
    644 179c
    Agent *********
    2013-06-26 15:36:56:943
    644 179c
    Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-06-26 15:36:56:943
    644 179c
    Agent *************
    2013-06-26 15:36:56:943
    644 179c
    Agent WARNING: WU client failed Searching for update with error 0x8024400a
    2013-06-26 15:36:56:959
    644 8dc
    AU >>##  RESUMED  ## AU: Search for updates [CallId = {65FA8DBB-1567-45A0-8ECB-103EFAB1C0A3}]
    2013-06-26 15:36:56:959
    644 8dc
    AU  # WARNING: Search callback failed, result = 0x8024400A
    2013-06-26 15:36:56:959
    644 8dc
    AU  # WARNING: Failed to find updates with error code 8024400A
    2013-06-26 15:36:56:959
    644 8dc
    AU #########
    2013-06-26 15:36:56:959
    644 8dc
    AU ##  END  ##  AU: Search for updates [CallId = {65FA8DBB-1567-45A0-8ECB-103EFAB1C0A3}]
    2013-06-26 15:36:56:959
    644 8dc
    AU #############
    2013-06-26 15:36:56:959
    644 8dc
    AU Successfully wrote event for AU health state:0
    2013-06-26 15:36:56:959
    644 8dc
    AU AU setting next detection timeout to 2013-06-26 17:36:56
    2013-06-26 15:36:56:959
    644 8dc
    AU Setting AU scheduled install time to 2013-06-27 00:00:00
    2013-06-26 15:36:56:959
    644 8dc
    AU Successfully wrote event for AU health state:0
    2013-06-26 15:36:56:960
    644 8dc
    AU Successfully wrote event for AU health state:0
    2013-06-26 15:37:01:943
    644 179c
    Report REPORT EVENT: {48D1738E-F97A-45A4-8AB5-ECBE8FBDDF8F}
    2013-06-26 15:36:56:943+0300 1
    148 101
    {00000000-0000-0000-0000-000000000000}
    0 8024400a
    AutomaticUpdates Failure
    Software Synchronization Windows Update Client failed to detect with error 0x8024400a.
    2013-06-26 15:37:01:950
    644 179c
    Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2013-06-26 15:37:01:950
    644 179c
    Report WER Report sent: 7.6.7600.256 0x8024400a 00000000-0000-0000-0000-000000000000 Scan 101 Managed
    2013-06-26 15:37:01:951
    644 179c
    Report CWERReporter finishing event handling. (00000000)
    2013-06-26 15:39:01:979
    644 179c
    PT WARNING: Cached cookie has expired or new PID is available
    2013-06-26 15:39:01:979
    644 179c
    PT Initializing simple targeting cookie, clientId = 01f95362-b793-4a75-bc97-94e49f6b63aa, target group = , DNS name = pcke65.kenya
    2013-06-26 15:39:01:979
    644 179c
    PT  Server URL = http://NTKE01/SimpleAuthWebService/SimpleAuth.asmx
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING: GetCookie failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING: SOAP Fault: 0x00012c
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING:     faultstring:Fault occurred
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING:     ErrorCode:ConfigChanged(2)
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING:     Message:(null)
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"
    2013-06-26 15:39:02:302
    644 179c
    PT WARNING:     ID:38d9b059-92f2-4248-9a71-be1e33841fcb
    2013-06-26 15:39:02:311
    644 179c
    PT WARNING: Cached cookie has expired or new PID is available
    2013-06-26 15:39:02:311
    644 179c
    PT Initializing simple targeting cookie, clientId = 01f95362-b793-4a75-bc97-94e49f6b63aa, target group = , DNS name = pcke65.kenya
    2013-06-26 15:39:02:311
    644 179c
    PT  Server URL = 
    AS you can see the log file is bigggggg..
    pls advise

  • I've checked my current plugins and it still shows Adobe Acrobat Version 7 for Netscape (7.0.9.50) I tried to do the update but I got an error - "Please tell Microsoft about this problem" "Send Error Report/ Don't Send".

    I've checked my current plugins and it still shows Adobe Acrobat Version 7 for Netscape (7.0.9.50)
    I tried to do the update but I get the same error each time - "Please tell Microsoft about this problem" "Send Error Report/ Don't Send".
    Also, do I need to Disable or Uninstall the Extension: "SEO For Firefox 3.3.4 as this was highlighted?
    == This happened ==
    Every time Firefox opened
    == When I try to do the update

    http://www.microsoft.com/mac/support
    http://answers.microsoft.com/en-us/mac/forum/macword?auth=1
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/microsoft-wor d-for-mac-2011-will-not-open-error/ecc42616-6f49-40bb-b8f5-e21c711ea359

  • How to call this procedure in my report to print my procedure output

    Hi,
    i have a table named letter,it contains 2 columns named as letter_id and letter_content.
    select * from letter;
    letter_id letter_content
    103 Dear MFR
    103 This is in regards to the attached DM List
    103 Please Credit us after reviewing it.
    103 Thanks
    103 Regards
    103 xxxx
    108 Dear customer
    108 This is to inform that ur DM List is as follows
    108 Credit us according to the Dm after reviewing it.
    108 Thanks
    108 Regards
    108 xxxx
    now my requirement is,i need send a parameter as letter_id to a procedure or function in pl/sql in oracle,the output should be as follows:
    if we will pass parameter(letter_id) = 103 then it displays as follows:
    Dear MFR
    This is in regards to the attached DM List.Please Credit us after reviewing it.
    Thanks
    Regards,
    XXXXX.
    if we will pass parameter(letter_id) = 108 then it should displays as follows:
    Dear customer,
    This is to inform that ur DM List is as follows. Credit us according to the Dm after reviewing it.
    Thanks
    Regards,
    XXXXX.
    the procedure for my requirement is like below.now my problem is how to call this procedure in my report.so that if i will send a parameter as letter_id then it should get my report stated above.
    CREATE OR REPLACE PROCEDURE letter_text ( p_letter_id letter.letter_id%TYPE , p_letter_contents_out OUT SYS_REFCURSOR )
    IS
    BEGIN
    OPEN p_letter_contents_out
    FOR
    SELECT letter_content
    FROM letter
    WHERE letter_id = p_letter_id
    ORDER BY line_seq;
    END letter_text;
    which you might call with something like
    SQL> var results refcursor
    SQL> exec letter_text(103, :results)
    PL/SQL procedure successfully completed.
    SQL> print :results;
    CONTENT
    Dear MFR
    this is in regards to the attached DM List
    Please credit us after reviewing it
    thanks
    Regards
    EXP
    6 rows selected.
    so, the same out put i need to get it in a report.
    Thanks

    Thanks for ur suggestions.
    i have 2 select statements.1st query is the main query for the report.so i used it at the time of report created with datablock.
    now my 2nd query is
    select letter_content
    from ( select content_seq,
         content || case content_seq
    when 2 then
    ' ' || lead(content) over (partition by letter_id order by content_seq)
    end as letter_content
    from exp_letter_contents
         where letter_id = 103)
    where content_seq <> 3;
    i had taken 2parameters 1 for the main query and 2nd is for the above query(parameter is letter_id).
    now i have to write the above select statement in the report.
    so i had taken a field object in the report and then i had written this code in before report trigger.
    function letter_contentFormatTrigger return boolean is
    begin
    select letter_content
    from ( select content_seq,
                        content ||
                        case content_seq when 2 then
                             ' ' || lead(content) over (partition by letter_id order by content_seq)
                        end as letter_content
              from exp_letter_contents
              where letter_id = 103)
    where content_seq <> 3;
    return (letter_content);
    end;
    when i tried to compile it.i got an error as follows :
    error 103 at line6,column 5
    encountered the symbol "CASE" when expecting one of the following:
    (- + mod null <an identifier>
    <a double-quoted delimited-identifier><a bind variable> avg...etc
    so,where can i write this select statement.
    i am using oracle reports6i
    Message was edited by:
    user579585

Maybe you are looking for

  • Can I delete photos app and start again? How?

    Ok, I've been really daft and did not ever know that there was a photo trash can in iPhoto. So for years in iPhoto I've been deleting or rather just removing photos and not thinking much of it. Just did my mac updates and notice I now have Photo. Ope

  • Why were no system/install disks shipped with system?

    I received a brand new Lenovo system with Windows Home Basic install from telus, and the was only an install disk for the monitor. Why was the registered copy of Vista not shipped with the system? If the HD was damaged in the shipping and I had to re

  • Dualview on 2 external displays Satellite P100

    I just bought a Satellite P100 to replace my desktop computer expecting that since it has two external monitor outputs I could drive two external monitors simultaneously using DualView. It would appear that I can have either: Internal display + DVI c

  • IDVD 6 slideshow image quality

    Still image quality in iDVD slideshows is a topic that comes up again and again on the iDVD forums. Two and a half years ago, I made a test with an earlier version of iDVD. Now, with the release of iDVD 6, it was time to repeat the test. Go to my pag

  • Business Area balances upload

    Hi How can I do the following? I have 5 business areas defined in SAP. The 5th BA is not going to be running on SAP. Instead, we want to upload the G/L balances into SAP from its own legacy system at the end of every month/year. We will not mantain a