View data in 10.1.3.4.1 is not working

Hi
I imported SH Schema from the oracle database to the repository.But i can not view the data in admintool in 10.1.3.4.1
the steps are the following
1.import sh schema from the database to the admin tool
2.click on any table in physical layer and click view data
i got a error"table or view does not exist ORA-00948 Issue"
but table and views are exist in the database.pls help

user13351713 wrote:
tnsnames.ora file entries are correct, i can connect to database with sql*plus
is any attribute in NQSCONFIG.ini may prevent view datanot that i'm aware of.
regards
John
http://www.obiee101.blogspot.com/

Similar Messages

  • My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    Thanks for your response and good luck wishes, I suspect I will need them!
    In principle, I agree re: the manufacturer's warranty. However, I am pretty upset that this is now my second iPod to develop a critical fault within weeks of the warranty expiring, and frankly, it is not unreasonable to expect a state-of-the-art $500 electronic device to last well beyond one year of life.
    I agree talking to Apple is not likely to do me any good (the clue is in how impossible they make it to talk to them in the first place) - but that is not necessarily OK. I expect I will have to pay money to get the battery replaced - again, not OK (full stop - but especially given the cost of the device and the money I have spent with Apple). Yes, the batteries have a limited lifespan, but it should last longer than this (and surely, I should notice a gradual decline in its functionality, not an instant stop).
    I will try Deggie's suggestion (see my reply post), but probably won't hold my breath (think I have already done this). I probably will have to get the new battery - and probably under my own steam. It is a principle at stake and I feel I should be able to let Apple know how I'm feeling - and am frustrated that they make this virtually impossible. It sends the very clear message that they are not interested in listening to their customers.

  • HT204053 I tried to make a purchase with my apple id after changing the experiration date on my credit card and it does not work

    I tried to make a purchase from the app store ( the French app store using my French apple ID and credit card) , i had just changed the experition date for my credit card and it did not work, should I do anything else?
    Thanks

    Then you should contact them:
    http://www.apple.com/emea/support/itunes/contact.html

  • Data Services- The job server you selected is not working

    Long Text:
    After logging in to the Data Services designer,when try to run a job it shows error -The job server you selected is not working
    Latest Software version -BODS 4.0 SP2
    Reproduce Steps:
    1. Double click on the Project from repository, it will display the project in Project area.
    2. After that it will display all the jobs under the project.
    3.Right click on the job and try to execute, then it will display the "Execution Properties" windows.
    Here the we can the default Job Server has been selected.
    4. Try to click ok to execute the job and then we get the error-"The job server you selected is not working"

    Hi
    Please contact your Data services administrator to check on the server why the job server is not working.
    There might be several issues like connectivity with the repository, access details , mapping in the management console etc.
    And let us know the exact issue.
    Regards
    Puneet

  • Between function for dates in Docmd.OpenReport rptName,,[date-filed] BETWEEN #date1# AND #date2# .. NOT WORKING

    Please assist, this is a nightmare indeed.
    Am trying to filter records in a report using the BETWEEN function, as below:
    strCondition = "Format([tblOrderLineTrack_main].[dtAllocation],'dd/MM/yyyy') BETWEEN Format(#06/02/2015#,'dd/MM/yyyy') AND Format(#07/03/2015#,'dd/MM/yyyy')" 
    DoCmd.OpenReport strDocName, acViewPreview, , strCondition, acWindowNormal
    The report is bringing up all records including those outside the specified range. What could be wrong with this???? Please assist, I am going nuts over this...

    The date literals I used are in the
    ISO standard for date notation of YYYY-MM-DD so are internationally unambiguous.  The only circumstance I can envisage in which it would not return the rows expected would be the extremely unlikely one where all the rows with dates in the range happen
    to have a date of 7 March 2015, and all have a non-zero time of day element.  There is no such thing in Access as a date value, only a date/time value so #2015-03-07# in fact represents the point of time at midnight at the start of 7 March 2015. 
    Any rows with date/time values of that date, but with a non-zero time of day would consequently fall outside the range.
    The above is so unlikely that I can't believe it to be the case, but the bullet-proof syntax would be:
        strCondition = "dtAllocation  >= #2015-02-06# " & _
              "AND dtAllocation < #2015-03-07#+1"
    i.e. all date/time values on or later than the start of the first day of the range (#2015-02-06 00:00:00#) and before the start of the day following the end of the range (#2015-03-08 00:00:00#)
    Assuming that the dtAllocation column is of date/time data type, and is returned as such in the report's RecordSource, not as a formatted string expression, I can see no reason on the information available why the above should not work, so if the report is
    still not returning any data some other reason not apparent to us must be suspected.  We are not in a position to debug the report, however, so what that might be I can't say.
    Ken Sheridan, Stafford, England

  • Quantities/Dates and Status tab in purchase requisition is not working

    Help!!! In the Quantities/Dates tab of Purchase Requisition is not updating the Quantity Ordered field if a Scheduling Agreement was created, no matter if have a Delivery Schedule or Goods Receipt, and in the Status tab is not updating the Ordered field.

    Ok, but you can create a Scheduling agreement whit reference a PR and the PR show in the Status tab the number of Scheduling agreement created and the total quantity ordered to date, but is not showing the data, and in the Quantities/dates tab of PR __is not showing the Quantity Ordered too_, that is the problem, however that is not happened if you create a PO.

  • Data Transfer using DataSink from DataSource to MediaLocator not working

    I wrote this pretty straightforward program to transfer from a DataSource to a MediaLocator and when i run it nothing happens. I waited for around 10 minutes and still nothing happened. I manually closed the program to see if any data has been transferred to the destination file but the destination file timpu.mp3 is empty. Can someone tell me why it isn't working?
    import javax.swing.*;
    import javax.media.*;
    import java.net.*;
    import java.io.*;
    import javax.media.datasink.*;
    import javax.media.protocol.*;
    class Abc implements DataSinkListener
         DataSource ds;
         DataSink dsk;
         public void transfer() throws Exception
              ds=Manager.createDataSource(new MediaLocator(new File("G:/java files1/jmf/aa.mp3").toURL()));
              MediaLocator mc=new MediaLocator(new File("G:/java files1/jmf/timpu.mp3").toURL());
              dsk=Manager.createDataSink(ds,mc);
              System.out.println(ds.getContentType()+"\n"+dsk.getOutputLocator().toString());
              dsk.open();
              dsk.start();
              dsk.addDataSinkListener(this);
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent)
                   try
                        System.out.println("EndOfStreamEvent");
                        dsk.stop();
                        dsk.close();
                        System.exit(1);
                   catch(Exception e)
    public class JMFCapture5
         public static void main(String args[]) throws Exception
              Abc a=new Abc();
              a.transfer();          
    }Message was edited by:
    qUesT_foR_knOwLeDge

    Have thrown this together - so it's not pretty, but should give you an idea
    public class ABC extends JFrame implements DataSinkListener, ControllerListener, ActionListener{
        private Container cont;
        private JButton jBRecord;
        private boolean bRecording = false;
        private Processor recordingProcessor;
        private DataSource recordingDataSource;
        private DataSink recordingDataSink;
        private Processor mainProcessor;
        private DataSource mainDataSource;
         public ABC(){
            super("Basic WebCam Handler");
            cont = getContentPane();
            cont.setLayout(new BorderLayout());
            //     control panel buttons
            jBRecord = new JButton("R+");
            jBRecord.setToolTipText("Record On / Off");
            cont.add(jBRecord, BorderLayout.NORTH);
            //     & Listeners
            jBRecord.addActionListener(this);
            addMyCamera();
            pack();
            setVisible(true);
        private void addMyCamera()
            Vector vCDs = CaptureDeviceManager.getDeviceList(null); //     get Devices supported
            Iterator iTCams = vCDs.iterator();
            while(iTCams.hasNext())
                CaptureDeviceInfo cDI = (CaptureDeviceInfo)iTCams.next();
                if(cDI.getName().startsWith("vfw:"))
                    try{
                        MediaLocator mL = cDI.getLocator();
                        mainDataSource = Manager.createCloneableDataSource(Manager.createDataSource(mL));
                        mainProcessor = Manager.createProcessor(mainDataSource);
                        mainProcessor.addControllerListener(this);
                        mainProcessor.configure();
                        break;
                    }catch(Exception eX){
                        eX.printStackTrace();
         private void startRecording(){
             if(!bRecording){
                  try{
                    System.out.println("startRecording");
                    recordingDataSource = ((SourceCloneable)mainDataSource).createClone();
                    recordingProcessor = Manager.createProcessor(recordingDataSource);
                    recordingProcessor.addControllerListener(this);
                    recordingProcessor.configure();
                    bRecording = true;
                  }catch(Exception eX){
                       eX.printStackTrace();
         private void stopRecording(){
             if(bRecording){
                System.out.println("stopRecording");
                bRecording = false;
                try{
                    recordingProcessor.close();
                    recordingDataSink.stop();
                    recordingDataSink.close();
                }catch(Exception eX){
                     eX.printStackTrace();
        public void actionPerformed(ActionEvent e)
            Object obj = e.getSource();
            if(obj == jBRecord)
                if(jBRecord.getText().equals("R+"))
                    jBRecord.setText("R-");
                    startRecording();
                else
                    jBRecord.setText("R+");
                    stopRecording();
         *     ControllerListener
        public void controllerUpdate(ControllerEvent e)
              Processor p = (Processor)e.getSourceController();
             if(e instanceof ConfigureCompleteEvent){
                   System.out.println("ConfigureCompleteEvent-" + System.currentTimeMillis());
                   if(p == recordingProcessor){
                     try{
                         VideoFormat vfmt = new VideoFormat(VideoFormat.CINEPAK);
                         TrackControl [] tC = p.getTrackControls();
                         tC[0].setFormat(vfmt);
                         tC[0].setEnabled(true);
                         p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME));
                         Control control = p.getControl("javax.media.control.FrameRateControl");
                         if(control != null && control instanceof FrameRateControl){
                              FrameRateControl fRC = (FrameRateControl)control;
                             fRC.setFrameRate(30.0f);
                     catch(Exception eX)
                         eX.printStackTrace();
                   else{
                        p.setContentDescriptor(null);
                   p.realize();
             else if(e instanceof RealizeCompleteEvent){
                   System.out.println("RealizeCompleteEvent-" + System.currentTimeMillis());
                   try{
                        if(p == mainProcessor){
                             Component c = p.getVisualComponent();
                             if(c != null){
                                  cont.add(c);
                             p.start();
                             validate();
                        else if(p == recordingProcessor){
                         GregorianCalendar gC = new GregorianCalendar();
                             File f = new File("C:/Workspace/" + gC.get(Calendar.YEAR) + gC.get(Calendar.MONTH) +
                                 gC.get(Calendar.DAY_OF_MONTH) + gC.get(Calendar.HOUR_OF_DAY) +
                                 gC.get(Calendar.MINUTE) + gC.get(Calendar.SECOND) + ".mov");
                         MediaLocator mL = new MediaLocator(f.toURL());
                         recordingDataSink = Manager.createDataSink(p.getDataOutput(), mL);
                         p.start();
                         recordingDataSink.open();
                         recordingDataSink.start();
                   }catch(Exception eX){
                        eX.printStackTrace();
             else if(e instanceof EndOfMediaEvent){
                  System.out.println("EndOfMediaEvent-" + System.currentTimeMillis());
                p.stop();
             else if(e instanceof StopEvent){
                System.out.println ("StopEvent-" + System.currentTimeMillis());
                p.close();
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent){
                   try{
                        System.out.println("EndOfStreamEvent-" + System.currentTimeMillis());
                        recordingDataSink.stop();
                        recordingDataSink.close();
                   }catch(Exception e){
         public static void main(String args[]) throws Exception
              ABC a=new ABC();
    //          a.transfer();          
    }

  • I have an iMac and the latest Firefox; however, I *can't* get auto-fill to work...I do a lot of repetitive data entry and auto-fill/auto-complete IS NOT WORKING

    I downloaded the auto-fill app for firefox (latest version) and have the latest firefox version, yet none of the autofill works whenever i do it once.
    i've even restarted firefox, shut down my iMac for a while, started firefox up again, nothing.
    i do A LOT of repetitive data entry and this is getting frustrating for me to work from home.
    help, please! *thanks in advance!*

    We apologize that you are experiencing issues with some Firefox feature.
    When typing in a text field, does is drop-down list appear when typing?
    If not, please '''try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Urgent- Data Merge with 4 labels to a page not working

    I have a csv file that I am attempting to place 4 labels to a page.
    I use the multiple record placement and all records but it only generates the 1st record for all labels.
    What am I doing wrong.

    Have you placed the label four times on your page? If so, that's what you are doing wrong.
    You only place ONE copy of the label in the top left of the page, and InDesign will clone it and work its way through
    your CSV data as it does so.
    Positioning of the labels is done by the margin and separation options in the multiple label dialogue, and you can check
    the output with preview.
    k

  • How to view data in Xcelsius from an external Excel file

    Hi Everyone,
    i wonder if you know How to view data in Xcelsius from external Excel file and not depend only on the emebded excel sheet.

    Hi,
    As per my understanding, excel has to be imported in Xcelsius to draw up the dashboard. Your aggregated data sits in the xlf file. Using an external excel file will not be possible (I guess).
    One of the ways to connect to an external excel, is the use XML Maps but then your data has to be in the form of XML which will be pulled into excel first and then needs to be brought in Xcelsius using Data Manager.
    You can explore XML Maps in xcelsius in SDN.
    Regards
    Nikhil

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

  • Clob is not working for bulk data files in PL/SQL XML program

    Hi Odie,
    we took your help to fix the our issue before
    "https://forums.oracle.com/forums/thread.jspa?threadID=2238458&tstart=105"
    working fine for : program is working for smaller size data.
    Issue : now we have problem with the largr size data .
    getting the below error:
    Arguments
    P_dir_name='/tmp'
    P_file_name='CCBGO.COLO_CNG.RESPONSES.20120802.00054131826'
    Environment will now switch to UTF-8 code-set.
    Parts of this log file may not display correctly
    as a result. This is an expected behavior.
    XML_REPORTS_XENVIRONMENT is :
    /apps/applmgr/product/OFDEV/ofdevora/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /apps/applmgr/product/OFDEV/ofdevora/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    stat_low = 8B
    stat_high = 0
    emsg:was terminated by signal 11
    Appreciated for your earlier support.
    Kindly suggest .
    Many Thanks,
    Ramesh.

    Thanks ALex,
    your are true it is concurrent program error ,
    but it is working for small amount of data and generating the output and it is not working for larger data.
    i have placed the code which i have used kindly suggest where i am going wrong.
    i am calling the .rdf through the concurrent program, i've used the below query in RDF
    select
    BATCHHEADER
    ,BATCHTRAILER
    ,RqUID
    ,Severity
    ,PmtRefId
    ,StatusDesc
    ,ErrorDesc
    ,AsOfDate
    ,AsOfTime
    ,RqUID1
    ,SPRefId
    from table(CL_CXFRFXFH_PKG.rcacknowledgments(:P_dir_name,:P_file_name));
    kindly find the below code for the package CL_CXFRFXFH_PKG.
    ==========================
    CREATE OR REPLACE package body APPS.CL_CXFRFXFH_PKG is
    function rcacknowledgments (p_directory in varchar2, p_filename in varchar2)
    return TRecordTable pipelined
    is
    nb_rec number := 1;
    tmp_xml clob;
    tmp_file clob;
    rec TRecord;
    begin
    dbms_lob.createtemporary(tmp_file, true);
    tmp_file := dbms_xslprocessor.read2clob(p_directory, p_filename);
    rec.BATCHHEADER := regexp_replace(tmp_file, '.*<BATCHHEADER>(.*)</BATCHHEADER>.*', '\1', 1, 1, 'n');
    rec.BATCHTRAILER := regexp_replace(tmp_file, '.*<BATCHTRAILER>(.*)</BATCHTRAILER>.*', '\1', 1, 1, 'n');
    loop
    tmp_xml := regexp_substr(tmp_file, '<\?xml[^?]+\?>\s*<([^>]+)>.*?</\1>', 1, nb_rec, 'n');
    exit when length(tmp_xml) = 0;
    --dbms_output.put_line(tmp_rec);
    nb_rec := nb_rec + 1;
    select RqUID, Severity, PmtRefId, StatusDesc, ErrorDesc, AsOfDate, AsOfTime, RqUID1, SPRefId
    into rec.RqUID
    , rec.Severity
    , rec.PmtRefId
    , rec.StatusDesc
    , rec.ErrorDesc
    , rec.AsOfDate
    , rec.AsOfTime
    , rec.RqUID1
    , rec.SPRefId
    from xmltable(
    '/CMA/BankSvcRq' passing xmltype(tmp_xml)
    columns RqUID varchar2(3000) path 'RqUID'
    , Severity varchar2(3000) path 'XferAddRs/Status/Severity'
    , PmtRefId varchar2(3000) path 'XferAddRs/Status/PmtRefId'
    , StatusDesc varchar2(3000) path 'XferAddRs/Status/StatusDesc'
    , ErrorDesc varchar2(3000) path 'XferAddRs/Status/ErrorDesc'
    , AsOfDate varchar2(3000) path 'XferAddRs/Status/AsOfDate'
    , AsOfTime varchar2(3000) path 'XferAddRs/Status/AsOfTime'
    , RqUID1 varchar2(3000) path 'XferAddRs/RqUID'
    , SPRefId varchar2(3000) path 'XferAddRs/SPRefId'
    pipe row ( rec );
    end loop;
    dbms_lob.freetemporary(tmp_file);
    return;
    end;
    end;
    ============================================
    Many Thanks,
    Ramesh.

  • Infopath systemuser() method is not working in infopath view @extrant site .

    We have a sharepoint webapplication with infopath views .We have controlled the switch view with authenticating login use id .It is working perfectly in intranet.
    When we are publishing the site to internet using public ip @ that time initially infopath forms were not opening so i have used Alternate access mapping and published the infopath forms in ip instead of server name .
    Now infopath forms are getting opened but system user() rule is not working and infopath edit forms are not working .Even list view web part with assigned to filtration is also not working . 
    I am stuck on the issue since Monday . Please suggest how to make it possible . it is very urgent.
    We want our customer to access using ad authentication.

    Jeeva,
    Did you create this form in InfoPath itself or you are modifying a list into InfoPath?
    The first screenshot shows you have selected Total "is not equal to" Jan+Feb….
    You can simply add Total field with “TextBox” and double click on it and select default value button.
    Once it will open up a pop up select “fx” button in value and insert all fields like, Jan, Feb…and then put a “+” sign in between
    This will auto populate value once you enter it into any of the month filed.
    Also it you have copied fields for several month in InfoPath it won’t work. You have to insert each field separately
    Let us know your results
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Data Tracking not working as expected

    Hi,
    I have created a report on a universe which is based on a BEx Query. When I run the WebI report in InfoView saved data shown, I then select tracking and select the current data (fixed) as the reference data. I then enter a key date for the data (which effively looks at data at a point in time) and the data changes but the changes are not marked. However, the reference date at the bottom of infoview is the saved data date.
    I then refresh the data again and change the key date to a different date and changes are shown based on the data which I refreshed in the report NOT the saved data. I have had a look at the bottom of infoview and the data tracking reference date changed to the REFRESHED data. I then refreshed it again and the reference date remains as the refreshed data.
    Just to re-confirm I did select use Fixed reference data.
    Any ideas why I am having this problem?
    Thanks

    Hi,
    The key date is in the SAP BW BEx Query which the universe is created on. The WebI report is then created on that universe. The key date changes the data.
    I have just tried loading the data into SAP BW so that the data changes. I then went to the WebI report which is showing the old data and has tracking on by default when the report was created. the fixed data date at the bottom says the old date. I then refresh the new data is shown and the fixed data date changes....tracking is still not working as we expect.
    Any ideas
    Thanks

  • Data Slice With Variables- not working

    Dear All,
    We are in BI 7.0.
    We have tried the data slice with variables approach and it is not working for us.
    We need to lock the plan data for the past periods. For  this, We have created a data slice (selection) with variable of type customer exit for fiscalyear/period.  How to populate this variable with the past month's data?. For Bex variables, this can be done in the cmod exits. Can we use the same cmod exits for populating data slice variable too?. If yes, then how this works?.( In case of Bex variable, the variable will be used in the characterics restriction (like fiscper) and hence this is getting filled up by the exit. How this works for the data slice variable?.
    Thanks for any suggestions/help.
    Regds
    velu

    Thanks for your response. Let me clarify one more thing related to this. I have 10 characterstics with a kf 0amount at my Aggregation level and i want to create a data slice to restrict the user not to change the data for the older periods. So, do i have to use all characterstics like my agg level or do i have to use only the fiscal year period?
    and the other thing is that it won't let me use a variable when i select the exit function for the fiscal year period when i created my data slice? where i can specify the variable name? is that at the settings tab or some where else?
    Thanks,
    Srini

Maybe you are looking for