Not able to load data in view

Hi All
i had created one view based on four different tables.Now to enter the data in load i had successfully created INSTEAD OF TRIGGER on view.But data load into tables but when i try to see data in view then its shows me nothing.
so why my data not load in view but lad into four diff tables.
---VIEW CODE
CREATE OR REPLACE FORCE VIEW "VIEW_WELL_GENERATOR_FORM" ("WEL_PK", "STA_PK", "PER_PK", "FAC_PK", "WELL_TYPE", "WELL_TYPE_DATE", "OPER_STATUS", "STATUS_DATE", "CLASS", "SITE", "FAC_TYPE", "AUT_STATUS") AS
select     "WELL"."WEL_PK" as "WEL_PK",
     "WELL_STATUS"."STA_PK" as "STA_PK",
     "PERMIT"."PER_PK" as "PER_PK",
     "FACILITY"."FAC_PK" as "FAC_PK",
     "WELL_STATUS"."WELL_TYPE" as "WELL_TYPE",
     "WELL_STATUS"."WELL_TYPE_DATE" as "WELL_TYPE_DATE",
     "WELL_STATUS"."OPER_STATUS" as "OPER_STATUS",
     "WELL_STATUS"."STATUS_DATE" as "STATUS_DATE",
     "WELL_STATUS"."CLASS" as "CLASS",
     "WELL"."SITE" as "SITE",
     "FACILITY"."FAC_TYPE" as "FAC_TYPE",
     "PERMIT"."AUT_STATUS" as "AUT_STATUS"
from     "FACILITY" "FACILITY",
     "PERMIT" "PERMIT",
     "WELL_STATUS" "WELL_STATUS",
     "WELL" "WELL"
where "WELL"."WEL_PK"="WELL_STATUS"."WEL_FK"
and     "PERMIT"."WEL_FK"="WELL"."WEL_PK"
and     "FACILITY"."FAC_PK"="WELL"."FAC_FK"
---INSTEAD OF TRIGGER CODE...
CREATE OR REPLACE TRIGGER "WELL_GENERATOR_TRIGGER_1"
INSTEAD OF INSERT ON VIEW_WELL_GENERATOR_FORM
FOR EACH ROW
DECLARE
rowcnt number;
BEGIN
INSERT INTO facility (FAC_PK) VALUES (:NEW.FAC_PK);
SELECT COUNT(*) INTO rowcnt FROM WELL WHERE WEL_PK = :NEW.WEL_PK;
IF rowcnt = 0 THEN
INSERT INTO WELL (SITE,FAC_FK) VALUES(:NEW.SITE,:NEW.FAC_PK);
ELSE
UPDATE WELL SET WELL.SITE = :NEW.SITE,
WELL.FAC_FK = :NEW.FAC_PK
WHERE WELL.WEL_PK = :NEW.WEL_PK;
END IF;
SELECT COUNT(*) INTO rowcnt FROM WELL_STATUS WHERE WELL_STATUS.STA_PK = :NEW.STA_PK;
IF rowcnt = 0 THEN
INSERT INTO WELL_STATUS (WELL_TYPE, WELL_TYPE_DATE, OPER_STATUS, CLASS,WEL_FK)
VALUES(:NEW.WELL_TYPE, :NEW.WELL_TYPE_DATE, :NEW.OPER_STATUS, :NEW.CLASS,:NEW.WEL_PK);
ELSE
UPDATE WELL_STATUS SET WELL_STATUS.WELL_TYPE = :NEW.WELL_TYPE,
WELL_STATUS.WELL_TYPE_DATE = :NEW.WELL_TYPE_DATE,
WELL_STATUS.OPER_STATUS = :NEW.OPER_STATUS,
WELL_STATUS.CLASS = :NEW.CLASS,
WELL_STATUS.WEL_FK = :NEW.WEL_PK
WHERE STA_PK = :NEW.STA_PK;
END IF;
SELECT COUNT(*) INTO rowcnt FROM PERMIT WHERE PERMIT.PER_PK = :NEW.PER_PK;
IF rowcnt = 0 THEN
INSERT INTO PERMIT (AUT_STATUS,WEL_FK) VALUES (:NEW.AUT_STATUS,:NEW.WEL_PK);
ELSE
UPDATE PERMIT SET PERMIT.AUT_STATUS = :NEW.AUT_STATUS,
PERMIT.WEL_FK = :NEW.WEL_PK
WHERE PERMIT.PER_PK = :NEW.PER_PK;
END IF;
Thanks

Hi
Thanks for your reply.here i am adescribing my code for the tables.
CREATE TABLE "FACILITY"
(     "FAC_PK" NUMBER(8,0),
     "FAC_STATE_UK" VARCHAR2(4),
     "DELFLAG" VARCHAR2(1),
     "FAC_TYPE" VARCHAR2(1),
     "FAC_NAME" VARCHAR2(80),
     "STREET1" VARCHAR2(50),
     "STREET2" VARCHAR2(50),
     "CITY" VARCHAR2(60),
     "SATE" VARCHAR2(2),
     "ZIP" VARCHAR2(14),
     "LABEL_STREET_1" VARCHAR2(30),
     "LABEL_STREET_2" VARCHAR2(30),
     "LABEL_CITY" VARCHAR2(15),
     "LABEL_COUNTY" VARCHAR2(10),
     "STATE_OR_TRIBE" VARCHAR2(3),
     "SIC_CODE" VARCHAR2(4),
     "NAICS_CODE" VARCHAR2(6),
     "PETIT_STATUS" VARCHAR2(2),
     "STATE_CONTACT_NAME" VARCHAR2(30),
     "TRIBAL_NAME" VARCHAR2(30),
     "TOTAL_WELLS" NUMBER(5,0),
     "LANDOWNER_TYPE" VARCHAR2(1),
     "LOC_IDENTITY" VARCHAR2(1),
     "PROJECT_STATUS" VARCHAR2(25),
     "TRIBE_YN" VARCHAR2(1),
     "INFO_SOURCE" VARCHAR2(35),
     "FAC_DESC" VARCHAR2(3),
     "FAC_LAT" NUMBER(10,8),
     "FAC_LONG" NUMBER(11,8),
     "FAC_ACC_VALUE" NUMBER(6,0),
     "FAC_HORIZ_DATUM" VARCHAR2(3),
     "FAC_METHOD" VARCHAR2(3),
     "FAC_POINT_LINE_AREA" VARCHAR2(3),
     "FAC_SOURCE_SCALE" VARCHAR2(2),
     "FAC_COUNTY" VARCHAR2(35),
     "FAC_HIST_LAT" VARCHAR2(100),
     "FAC_HIST_LONG" VARCHAR2(100),
     "HIST_NOTES_ACTDATE" DATE,
     "HIST_NOTES_ACTNEEDED" VARCHAR2(15),
     "HIST_SUBMITBY" VARCHAR2(35),
     "HIST_ENTRYDATE" DATE,
     "HIST_ID" VARCHAR2(64),
     "AUD_ACTION" VARCHAR2(10),
     "AUD_TIME" DATE,
     "AUD_BEFORE_VALUE" VARCHAR2(80),
     "AUD_AFTER_VALUE" VARCHAR2(80),
     "HIST_NAME" VARCHAR2(100),
     "HIST_CONTACT" VARCHAR2(80),
     "HIST_FULL_STREET" VARCHAR2(100),
     "HIST_FULL_FAC_NAME" VARCHAR2(200),
     "FORMER_FAC_NAME" VARCHAR2(100),
     "COMMENTS" VARCHAR2(300),
     "HIST_ORIGINATOR" VARCHAR2(20),
     "PHONE" VARCHAR2(15),
     "PHONE_EXT" VARCHAR2(8),
     "FAX" VARCHAR2(15),
     "EMAIL_ADDRESS" VARCHAR2(30),
     "EMAIL_ADDRESS_DOMAIN_NAME" VARCHAR2(30),
     "FAC_URL" VARCHAR2(60),
     "LAST_UPDATE_LOTUS_NOTES" DATE,
     "NUM_INSPECTIONS" NUMBER(6,0),
     "NUM_PERMITS" NUMBER(6,0),
     "NUM_CONVERSIONS" NUMBER(6,0),
     "LAST_UPDATE" DATE,
     "USERNAME" VARCHAR2(16),
     "CREATED_BY" VARCHAR2(16),
     "CREATED_ON" DATE,
     "EDITED_BY" VARCHAR2(16),
     CONSTRAINT "FACILITY_PK" PRIMARY KEY ("FAC_PK") ENABLE,
     CONSTRAINT "FACILITY_STATE_UK" UNIQUE ("FAC_STATE_UK") DISABLE
CREATE OR REPLACE TRIGGER "BI_FACILITY"
before insert on "FACILITY"
for each row
begin
if :NEW."FAC_PK" is null then
select "FACILITY_SEQ".nextval into :NEW."FAC_PK" from dual;
end if;
end;
for the WELL table----
CREATE TABLE "WELL"
(     "WEL_PK" NUMBER(8,0) NOT NULL ENABLE,
     "FAC_FK" NUMBER(8,0),
     "CNT_FK" NUMBER(8,0),
     "GEO_FK" NUMBER(8,0),
     "WEL_STATE_UK" VARCHAR2(4) DEFAULT '09DI',
     "DELFLAG" VARCHAR2(1) DEFAULT 'N',
     "NAME" VARCHAR2(80) DEFAULT 'No data',
     "SITE" VARCHAR2(50) DEFAULT 'No data',
     "HIGH_PRIORITY_YN" VARCHAR2(1) DEFAULT ('N'),
     "AQUI_EXEMPT_YN" VARCHAR2(1) DEFAULT ('N'),
     "TOTAL_DEPTH" NUMBER(5,0),
     "WELL_IN_SWA" VARCHAR2(1) DEFAULT ('U'),
     "AUD_ACTION" VARCHAR2(10),
     "AUD_TIME" DATE,
     "AUD_BEFORE_VALUE" VARCHAR2(80),
     "AUD_AFTER_VALUE" VARCHAR2(80),
     "LAST_UPDATE" DATE DEFAULT sysdate,
     "USERNAME" VARCHAR2(16) DEFAULT user,
     CONSTRAINT "WEL_AQUI_EXEMPT_YN_CK" CHECK (AQUI_EXEMPT_YN IN ('Y', 'N', 'U' )) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "WEL_HIGH_PRIORITY_YN_CK" CHECK (HIGH_PRIORITY_YN IN ('Y', 'N', 'U' )) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "WEL_WELL_IN_SWA_CK" CHECK (WELL_IN_SWA IN ('Y', 'N', 'U' )) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "WEL_WEL_STATE_UK_NN" CHECK (WEL_STATE_UK is not null) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "WEL_WEL_STATE_UK_CK" CHECK (WEL_STATE_UK IN ('09DI', 'CAOC', 'GUEA', 'MPEQ', 'NVEP', 'NNUI' )) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "WEL_PK" PRIMARY KEY ("WEL_PK") DEFERRABLE INITIALLY DEFERRED ENABLE
ALTER TABLE "WELL" ADD CONSTRAINT "WELL_CON_FK" FOREIGN KEY ("FAC_FK")
     REFERENCES "FACILITY" ("FAC_PK") ON DELETE CASCADE ENABLE
CREATE INDEX "WEL_PK" ON "WELL" ("WEL_PK")
CREATE OR REPLACE TRIGGER "WEL_WEL_PK"
BEFORE INSERT ON "WELL"
FOR EACH ROW
BEGIN
SELECT "well_PK_seq".NEXTVAL INTO :NEW.wel_pk FROM DUAL;
END;
ALTER TRIGGER "WEL_WEL_PK" ENABLE
FOR THE WELL_STATUS TABLE -----
CREATE TABLE "WELL_STATUS"
(     "STA_PK" NUMBER(8,0) NOT NULL ENABLE,
     "WEL_FK" NUMBER(8,0),
     "DELFLAG" VARCHAR2(1) DEFAULT 'N',
     "WELL_TYPE" VARCHAR2(12) DEFAULT '5X',
     "WELL_TYPE_DATE" DATE,
     "OPER_STATUS" VARCHAR2(2) DEFAULT 'AC',
     "STATUS_DATE" DATE DEFAULT sysdate,
     "CLASS" VARCHAR2(2) DEFAULT '5',
     "R9_WELL_TYPE" VARCHAR2(4),
     "LAST_UPDATE" DATE DEFAULT sysdate,
     "USERNAME" VARCHAR2(16) DEFAULT user,
     CONSTRAINT "STA_CLASS_CK" CHECK (CLASS IN ('0','1','2','3','4','5', 'CV')) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "STA_CLASS_NN" CHECK (CLASS is not null) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "STA_STATUS_DATE_NN" CHECK (STATUS_DATE is not null) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "STA_OPER_STATUS_NN" CHECK (OPER_STATUS is not null) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "STA_OPER_STATUS_CK" CHECK (OPER_STATUS IN ('AC','UC', 'TA', 'PA', 'AN', 'PW' )) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "STA_WELL_TYPE_NN" CHECK (WELL_TYPE is not null) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "STA_PK" PRIMARY KEY ("STA_PK") DEFERRABLE INITIALLY DEFERRED ENABLE
ALTER TABLE "WELL_STATUS" ADD CONSTRAINT "WELL_STATUS_CON_FK" FOREIGN KEY ("WEL_FK")
     REFERENCES "WELL" ("WEL_PK") ON DELETE CASCADE ENABLE
CREATE INDEX "STA_PK" ON "WELL_STATUS" ("STA_PK")
CREATE OR REPLACE TRIGGER "WELL_STATUS_STA_PK"
BEFORE INSERT ON "WELL_STATUS"
FOR EACH ROW
BEGIN
SELECT "STA_PK_SEQ".NEXTVAL INTO :NEW.sta_pk FROM DUAL;
END;
ALTER TRIGGER "WELL_STATUS_STA_PK" ENABLE
For the PERMIT table-----
CREATE TABLE "PERMIT"
(     "PER_PK" NUMBER(8,0) NOT NULL ENABLE,
     "WEL_FK" NUMBER(8,0),
     "DELFLAG" VARCHAR2(1) DEFAULT 'N',
     "NUM_AOR_WELL" NUMBER(6,0),
     "AUT_STATUS" VARCHAR2(2) DEFAULT 'RA',
     "AUT_STATUS_DATE" DATE DEFAULT sysdate,
     "OWNERSHIP_TYPE" VARCHAR2(2) DEFAULT 'PB',
     "SUBMISSION_DATE" DATE,
     "PER_STATE_UK" VARCHAR2(4) DEFAULT '09DI',
     "REQUIRED_YN" VARCHAR2(1) DEFAULT 'N',
     "LAST_UPDATE" DATE DEFAULT sysdate,
     "USERNAME" VARCHAR2(16) DEFAULT user,
     CONSTRAINT "PER_AUT_STATUS_CK" CHECK (AUT_STATUS IN ('IP', 'AP', 'GP', 'EP', 'RA', 'NO' )) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "PER_AUT_STATUS_NN" CHECK (AUT_STATUS is not null) DEFERRABLE INITIALLY DEFERRED ENABLE,
     CONSTRAINT "PER_OWNERSHIP_TYPE_CK" CHECK (OWNERSHIP_TYPE IN ('PB', 'PN', 'PF','FG', 'OI','OS', 'OT', 'PV', 'OR' )) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "PER_PER_STATE_UK_CK" CHECK (PER_STATE_UK IN ('09DI', 'CAOC', 'GUEA', 'MPEQ', 'NVEP', 'NNUI' )) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "PER_PER_STATE_UK_NN" CHECK (PER_STATE_UK is not null) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "PER_REQUIRED_YN_CK" CHECK (REQUIRED_YN IN ('Y', 'N')) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "PER_REQUIRED_YN_NN" CHECK (REQUIRED_YN is not null) DEFERRABLE INITIALLY DEFERRED DISABLE,
     CONSTRAINT "PER_PK" PRIMARY KEY ("PER_PK") DEFERRABLE INITIALLY DEFERRED ENABLE
ALTER TABLE "PERMIT" ADD CONSTRAINT "PERMIT_CON_FK" FOREIGN KEY ("WEL_FK")
     REFERENCES "WELL" ("WEL_PK") ON DELETE CASCADE ENABLE
CREATE INDEX "PER_PK" ON "PERMIT" ("PER_PK")
CREATE OR REPLACE TRIGGER "PERMIT_PER_PK"
BEFORE INSERT ON "PERMIT"
FOR EACH ROW
BEGIN
SELECT "PER_PK_seq".NEXTVAL INTO :NEW.per_pk FROM DUAL;
END;
ALTER TRIGGER "PERMIT_PER_PK" ENABLE
THESE ALL ARE TABLE STRUCTURE

Similar Messages

  • Not able to query data from View

    Hi,
    I am not able to fetch data from views even while running simple select statements. I am using SQL Developer Version 3.0.04,
    Same query is fetching data on other computers running SQL Developer or Toad.
    Has anyone faced this issue??

    Is that the first version ever you installed? You unzipped in a clean directory, right?
    What OS/JDK/DB versions?
    So do you get an error or what?
    K.

  • Not able to load data in tables with correct way

    Hi
    i made one trigger to load data in view and tables.
    CODE FOR TRIGGER>>>>
    Object Details Code Errors SQL
    CREATE OR REPLACE TRIGGER "WELL_GENERATOR_TRIGGER_1"
    INSTEAD OF INSERT ON VIEW_WELL_GENERATOR_FORM
    FOR EACH ROW
    DECLARE
    rowcnt number;
    BEGIN
    INSERT INTO facility (FAC_PK) VALUES (:NEW.FAC_PK);
    SELECT COUNT(*) INTO rowcnt FROM WELL WHERE WEL_PK = :NEW.WEL_PK;
    IF rowcnt = 0 THEN
    INSERT INTO WELL (WEL_PK,SITE,FAC_FK) VALUES(:NEW.WEL_PK,:NEW.SITE,:NEW.FAC_PK);
    ELSE
    UPDATE WELL SET WELL.SITE = :NEW.SITE,
    WELL.FAC_FK = :NEW.FAC_PK
    WHERE WELL.WEL_PK = :NEW.WEL_PK;
    END IF;
    SELECT COUNT(*) INTO rowcnt FROM WELL_STATUS WHERE WELL_STATUS.STA_PK = :NEW.STA_PK;
    IF rowcnt = 0 THEN
    INSERT INTO WELL_STATUS (WELL_TYPE, WELL_TYPE_DATE, OPER_STATUS, CLASS,WEL_FK)
    VALUES(:NEW.WELL_TYPE, :NEW.WELL_TYPE_DATE, :NEW.OPER_STATUS, :NEW.CLASS,:NEW.WEL_PK);
    ELSE
    UPDATE WELL_STATUS SET WELL_STATUS.WELL_TYPE = :NEW.WELL_TYPE,
    WELL_STATUS.WELL_TYPE_DATE = :NEW.WELL_TYPE_DATE,
    WELL_STATUS.OPER_STATUS = :NEW.OPER_STATUS,
    WELL_STATUS.CLASS = :NEW.CLASS,
    WELL_STATUS.WEL_FK = :NEW.WEL_PK
    WHERE STA_PK = :NEW.STA_PK;
    END IF;
    SELECT COUNT(*) INTO rowcnt FROM PERMIT WHERE PERMIT.PER_PK = :NEW.PER_PK;
    IF rowcnt = 0 THEN
    INSERT INTO PERMIT (AUT_STATUS,WEL_FK) VALUES (:NEW.AUT_STATUS,:NEW.WEL_PK);
    ELSE
    UPDATE PERMIT SET PERMIT.AUT_STATUS = :NEW.AUT_STATUS,
    PERMIT.WEL_FK = :NEW.WEL_PK
    WHERE PERMIT.PER_PK = :NEW.PER_PK;
    END IF;Now But still i am not getting result which i want.Like in WELL_STATUS table i could nt able to insert the value (WEL_FK) from (WEL_PK).And In PERMIT table column (WEL_FK) still i could nt able to insert the value (WEL_PK).
    Now WEL_PK value autogenerate from the SEQ same with STA_PK and PER_PK.But instead of taking value from seq STA_PK take the value from WEL_PK (dnt know why ? But in data its shows me Same value WEL_PK and STA_PK).Same thing With PER_PK.
    so where i am wrong ? i really need your help.
    workspace:PRACTISE
    UN:[email protected]
    PW:testing
    Application:     39289 - TESTTING
    Thanks
    Edited by: vijaya45 on Jul 13, 2009 9:44 PM
    Edited by: vijaya45 on Jul 14, 2009 12:48 AM

    Hello vijaya45,
    Not sure if this will help, but I noticed you currently have a WELL_GENERATOR_TRIGGER_1 and a WELL_GENERATOR_TRIGGER_2, and "1" is disabled but "2" is enabled. Which one is supposed to be running at this point?
    John

  • Not able to load data in 0MATERIAL_ATTR

    Hi ,
    For Infoobject 0MATERIAL I am maintaining both attribute and text. I am able to load text into 0MATERIAL successfully.
    But, when I am trying to load datasource 0MATERIAL_ATTR, I am getting error
    'DataSource 0MATERIAL_ATTR(ECCCLNT711) must be activated,
    Message no. RSDS179
    'Invalid DataStore object name /BIC/B0000039: Reason: No valid entry in table RSTS'
    Message no. RSM1294
    I checked ECC 711, 0MATERIAL_ATTR is active. I am even able to see data in 0MATERIAL_ATTR in Tcode RSA3.
    Please tell me what to do. It will be a great help.
    Thanks and Regards
    Shilpa

    hi shilpa..
    chk these threads for clue...
    /message/3666553#3666553 [original link is broken]
    Re: Short dump when trying to load 0MATERIAL_ATTR
    hope it helps...

  • IPhoto 9.4.3 -not able to load image to view/edit

    I have iPhoto 9.4.3 and am running 10.7.5 OS.  I am able to see photo thumbnnails, zoom and see info on the image, however, I can not load the image to view or edit.  When I try to click on the image I get a black screen.

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/ Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help: As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Not able to load master data

    HI Friends,
    I am not able to load data in master data even after deleting the master data. when i am schedule then the data is not even load in PSA , I am using the SRM as source system,
    The SRM is refreshed every quater so we need to re load the data from that system.
    Can you please suggest how to go about as it is very urgent ,
    I have checked that the connection is working fine but there is one short dump that is coming
    this is information that st22 is provding
    The termination occurred in the ABAP program "SAPLRSS1 " in                   
    "RSM1_CHECK_FOR_DELTAUPD".                                                   
    The main program was "RSPROCESS ".                                                                               
    The termination occurred in line 1361 of the source code of the (Include)     
    program "LRSS1F11 "                                                          
    of the source code of program "LRSS1F11 " (when calling the editor 13610).    
    The program "SAPLRSS1 " was started as a background job.                      
    Thanks
    Raju

    Hi Raju,
    Very strange to see your dump mesg when you are doing full load.
    Are you sure this dump is realted to your load.
    Check if your transfer structure is active or try doing following steps:
    1. Kill all the jobs runing in BW system.
    2. Delete all the data in all the realted data targets and infoobjects.
    3. Then try uploading data one by one.
    Ans why dont your try uploading data first only to PSA.
    Regards,
    Rohini

  • Not able to see data in Pivot table

    Hi,
    I have a issue with pivot table i have a column which displays values 0 and 1 and another column called month when i am placing this month column as a section and values column as a measure i am not seeing any values means i can see the month as header but instead showing 0 or 1 its showing blank columns. previously i created similar kind of table it worked but at that time values column data type is number this time its char. can anybody help me out how i can see the data in the pivot table. i already tried converting this column to number but still i am not able to see data in that values column.
    Thanks

    Hi copter,
    Place the month column in rows and value column in measure section and check if results are coming.If still it doesnt come i suppose you dint apply aggregation rules to value column.In pivot view click values column and aggregate by /select min or max or either server complex and check your results.
    (I suppose your aggregation rules is default)....Correct this one and you can place it in sections as per your requirement.
    Cheers,
    KK

  • Not able to access data in Query

    Hi,
    I have loaded data using DTP from 2 different source systems.
    One is 3.x emulated datasource and the other is New 7.0 datasource.I have loaded data sucessfully in to DSO.Built a query on same.
    But when iam executing the query by material as selection criteria.Iam not able to found data in query from one source system.The same data is available in DSO.Please needed in this regard.

    Hi Venkat,
    After extracting data into DSO check the request whether active or not.
    Check data in DSO in contents.
    If is there any restrictions on info providers in Queries.
    Let us know status clearly.......
    Reg
    Pra

  • Not able to see Data in Xcelsius 2008

    Hi everyone,
    My question is I am not able to see data in Xcelsius spreadsheet although I am able to connect to SAP BW and also able to see and select query but when I select Cross Tab Data in output Values it is not displaying in Xcelsius spreadsheet
    System Info
    Xcelsius 2008 Enterprise Trial Version SP 3.0
    SAP BW 7.1 SP 6 ABAP and JAVA
    Any help would be appreciated

    Hi Rashid,
    When you are using the BW conenction in Xcelsius you will not see any data in the spreadsheet at design time or at preview time.
    To see the data you need to go SAP > Publish, then SAP > Launch to test the dashboard in the NetWeaver Portal as that is the only place where the data can be viewed.
    Regards
    Matt

  • Not able pass the data from component to other component.

    Hello All
    I am not able pass the data from component to other component.
    I have done like this.
    1 Main Component (Parent component ) having below  two child components.Embeded as used components.
    2)     Search Component  and Details Component
    3)     In the Search Component having buttons,  Say : Button u201CXu201D on click of button I am navigating to Details component view through FPM.
    4)     When I am clicking above button u201CXu201D raising the event to call the parent   business logic method, there I am getting  Structure with values and binded this structure to the node and Mapped this node to the Details component  interface node. FYI : I kept the debugging point Structure is having data , I had set static attributes table to node instance.
    5)     In the Details component node data is not coming mean empty.
    Thanks in Advance.
    Br-
    CW
    Edited by: CarlinWilliams on Jul 4, 2011 9:21 AM

    Hi,
    When you use input Ext. check that the parent component should not be used as used component in child component.
    Only in the parent component the child components should be used as used components and the usage has to be created for the
    Child Components and the binding of the Node should be done from comp. controller of parent component to child node
    by which you will be able to see double arrow against the node.This should work
    Thanks,
    Shailaja Ainala.

  • Not able insert ,query data from forms

    hi,
    I am not able to insert data or query data from forms(10g devsuite).getting error frm-40505,frm 40508 .i am able to insert and select record from sql plus.the block ihave created is control block .it is connected to the table using the properties.
    should i do anything to insert record.please help

    the block ihave created is control block .it is connected to the table using the properties.A Control Block, by definition, is a non-database block. This means the block is not directly connected to a table so you have to manually display data in the block and any DML you want to perform on data in this block you must do manually as well.
    There are four database objects you can base your database block on; 1) a Table, 2) a View, 3) From Clause Query (basically an In-line View), and 4) a database stored procedure. I recommend you use one of these four methods rather than manually display your data.
    Craig...

  • I received a 1st Gen IPad from a supplier as a gift to promote their products. They used their Apple account to load the apps.  I am not able to load my own apps because their apple user is the one that pops up. How can I change it to mine?

    I received a 1st Gen IPad from a supplier as a gift to promote their products. They used their Apple account to load the apps.  I am not able to load my own apps because their apple user is the one that pops up. How can I change it to mine?

    Set it up as new device, explained in this article, without using the backup afterwards:
    How to back up your data and set up as a new device

  • Not able to put data selection condition in data selection tab of infopakag

    I was loading data from data source as data mart ( export data sauce from ODS) to other ODS.
    when I tried to do delta Initialization with data transfer , I am not able to put data selection condition in data selection tab of infopakage.
    when I choose Full Update in Update tab . It enables data selection fields in data selection tab. and I could put the condition.
    I have checked in transfer structure as well , the fields are marked for selection.
    Please advice .
    Please tell me what could be the reason for this problem

    Ashutosh,
    As you are doing delta upload the data selection tab will be disabled, if you want to do the selective load then you need to do init update with your selection.
    When you do the full updtae then definitely the data selection tab will be enabled for all the objects.
    Hope this helps...
    *******Assign Points if it helps********
    Thanks,
    Gattu

  • Not able to open data file in a rule file

    Hi,
    We have a rule file which has 140 columns. We are trying to add two new columns at the end (i.e. 141 & 142). We have added those columns in input text file and opened that text file in rule file. So automatically two columns are added at the end of rule file. Mapping is done properly. After that we saved that rule file.
    But next time when we opened that rule file and clicked "Open data file" option nothing is happening. We are not able to open data file in that rule file. But that rule file is working fine when we are running it.
    Can you please give any hint why it is not working?
    Thanks.

    Just a thought about your data file -- maybe 142 columns is too much? Yes, I know, if this is loading to a BSO database, and the columns represent a dense dimension, you are super duper efficient, but is the game worth the candle?
    What happens if you drop one of the members? Mark the column as Ignore During Data Load? Several columns? And then you need to add in new ones? KABOOM!
    FWIW, to keep the process as flexible and maintenance free as possible, I make every record one data value if I have any say in the matter. Yes, it is not efficient. But at least I don't get calls at o-dark-thirty telling me my process blew up and I need to fix it right away.
    NB -- I suppose these are two extremes and the right answer is somewhere in middle, but I will note that you likely won't have issues with reading and writing a data load rule with my approach.
    Regards,
    Cameron Lackpour

  • Camera Raw not able to load lense correction profiles

    Hi there,
    like the topic says.. I am not able to load lense correction profiles and get always the error message. I have the newest version (Creative Cloud Member) of Photoshop CC 2014 15.2.2 and my Mac OSX is up to date. With older versions (when I start from a backup it is working fine!? So what can I do?! I dont want to run PS from my backup folder.. it hast to work with the actual release as well. I did not change anything.. already tried with uninstalling and reinstalling PS. But it didn´t solve the problem.

    Possibly a reset to both Bridge and Camera Raw is in order. First, close Bridge. Now hold Cmd+Opt+Shift as you restart it. A box will appear; Place a check mark on all three options and hit "ok." Now, again, Cmd+Opt+Shift as you "open in Camera Raw."
    See is this helps.
    Benjamin

Maybe you are looking for