Direct read PLPOD in SQ01

LTXA2 Field in Table PLPOD (i.e.Routing)
i'm not sure how the thread above was able to query PLPOD?  i receive a direct read not possible message in SQ01.  there are some major discrepancies in MRP because routing from CA03 is not consistent with MRP1 making plant settings.  what other info sets or logical databases should i consider to find the base quantities (PLPOD-BMSCH)?
also, when faced with something that can not be directly read from SQ01, what route(s) can you take to research an area that can be read?  SE11 ?

plpo, coffee break

Similar Messages

  • Can I use APEX directly read/sync with the Oracle Tables ?

    We have a Oracle Database to manage the design data.I am trying to setup a web-based front end using APEX to manage & monitor the parts ordering & logisitics.I want to drive the master data directly from the database without any export or data transfer ? Can I directly read or Link an Oracle tables from APEX application.
    Also,once this is setup,I am looking for setting up some data entry fields to enter Purchasing & Logistics information.Hope I can achieve this using APEX !
    Look forward for the appropriate response.
    Thanks,
    Sham

    Tony,
    Thanks & Appreciate your Quick response.
    Glad that I can use the existing Oracle db schema with APEX.I am not sure if there is any information as how I can connect or link my production schema to the APEX ! I was able to import .csv files & use XL data to create some test databases & play with APEX..but,I did try to go thru most of the instructions & guides to find how to use the production oracle tables,but,could not find anything particular...Please send me a link or material info.
    I suppose I can then use which ever attribute or table data that is required to build the queries ! I am planning to use the production data to build the ordering & logistics application using APEX.Assume I can create new fields & columns for parts that will be ordered & capture/record the purchasing information like Purchase order numbers/Supplier Info/Target Delivery dates etc...
    - Am on very tight schedules to get this application up & running ! Is there any support team or a technical support team that I can call upon if I need any help ?
    Thanks,
    Sham

  • Force direct read instead of memory

    hi,
    is it possible via a hint or something to force oracle not to put a sql's blocks to buffer cache and read from directly from disk every time ? it is for a test issue.
    thanks all

    elcaro wrote:
    thanks a lot Alexander, perfect answer for me.Good.
    Keep in mind that only full scans (table, index, matview) can work in direct-path read.
    Also if you test queries which will work in usual (cached) mode you maybe just need to flush buffer cache before you tests, instead of direct reads
    alter system flush buffer_cache;obviously for test environments only

  • Sequential reads vs Direct reads

    Hello gurus,
    Could you please let me know what are the main difference between direct reads and sequential reads in terms of performance?
    Thanks and best regards,

    Mainly, Direct Read refers to accesses in which a maximum of one line is returned by the database, otherwise Sequential Read refers to all other read database accesses, in which there may be more than one line returned.
    In case of Sequential Read, when you perform a trace on these queries you will see that index is used in most cases. However Direct Read have better performance than Sequential.

  • Sequential read vs direct read master data in Query

    Hey all,
    I use class cl_rsr_request to get data from a query in ABAP.
    When I look at SM50 when executing my code, I see the following
    Report action table
    "CL_RSDM_READ_MASTER_DATA======CP"   "Sequential read" "/BIC/SZINSTALL"
    Why is this a sequential read?
    I would expect a direct read, sequential read are much slower ....
    Other tables have a direct read, example /BIC/PZADDR_NUM.
    P-tables are masterdata tables and S-tables are SID tables, is this correct?
    Steven

    Hi,
    a sequential read may be necessary due to wrong or not exisitng indexes on the SID table. In RSRV you can check your characteristic or in SE11 goto indexes. There you can see which indexes are active and generated. DOes ZINSTALL have attributes and you may want to read not all fo ZINSTALL but only where certain attributes are filled. For this you may need a special index.
    You rifht P table are master data tables with all attributes of your characterisitc, S-tables are the sid tabels.
    Regards,
    Juergen

  • Cannot directly read PDFs

    I can open Adobe Reader via its shortcut, then open a PDF from there. However, I cannot open a PDF "directly" by right-clicking on its icon and telling it to open with Adobe Reader. When I try to do that, Adobe Reader opens for a split second and then immediately exits.

    The usual things to try...
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    If you cannot open Reader by itself, try to disable Protected Mode in the registry; download, unzip, then run the attached registry script
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • Is it possible to directly read a barcode into Labview?

    I  have a barcode reader that reads codes into Notepad as expected, but I'm having no luck reading a code into Labview 8.6. Is it possible to read a code directly into Labview using a bar code reader. The reader I'm using is a Symbol DS6708.   Thank you.
    Solved!
    Go to Solution.

    A bit off topic, and I believe it's been discussed int he Feedback board before.
    But this marking of the wrong post seems to happen very often.  Why do the users  have a tendency to mark their thank you message as the solution rather than the actual helpful message?  Is it a difficult concept?  Something about the wording of solution or the layout of the messages that leads them to it?
    I would go so far as to suggest that users are unable to mark their own messages as the solution.  While it can be perfectly legitimate and there are instances where people solve their own problem, it seems to happen very rarely compared to how often people are wrongly marking their own message.

  • Can RandomAccessFile directly read a Zip/Gzip file without unzip

    Hi;
    Is it possible using RandomAccessFile to process (read/write) a Zip or Gzip file directly without unzipping the file?
    Thanks,
    Fred

    Is it possible using RandomAccessFile to process ...Sure.
    Of course I can't see any useful way that you could do anything with the binary data unless you fully understand the entire structure of a zip file. And to get to the real data you are going to have to uncompress it anyways. And that means you will need the algorithms.

  • Directly read to StringBuffer?

    I am looking for a way to read a small external file into StringBuff from BufferedReader. The way I did is that first I read it into a char array with the read method of BufferedReader, then append the char array on the string buffer. But I hope I can read into the string buffer direclty.
    final static int buffSize = 1024 * 10;
    String filename = null;
    FileReader fr = null;
    BufferedReader br_fr = null;
    char[] charBuff = new char[buffSize];
    StringBuffer strBuff = new StringBuffer();
    fr = new FileReader(filename);
    br_fr = new BufferedReader(fr, buffSize);
    int in = 0;
    in = br_fr.read(charBuff, 0, buffSize);
    strBuff.append(charBuff, 0, in);
    It worked! But in order to improve the performance of the program, I hope there is a way to read the data from the BufferedReader directly to strBuff rather than through charBuff.
    Any ideas?

    You said it was a "small" file. And you will only be reading this file once in your program, correct? If those statements are both true, then trying to speed this up is not a good use of your time. Prime Directive of optimization: Don't sweat the small stuff.

  • Why can I not direct reader to a specific directory?

    Why?

    I suggest that you uninstall the current Reader version using http://labs.adobe.com/downloads/acrobatcleaner.html
    then download and run the installer from http://get.adobe.com/reader/enterprise/
    This installer will let you install Adobe Reader anywhere you want.

  • Direct read causing locks in Table - NRIV

    Hi Guys,  since the kernel upgrade the system has been having a huge number of dumps & the performance has gone down drastically.  did some checking on SM50 & DB01, i can see so many locks on the NRIV table.
    Has anyone come across this issue before ?
    Thanks in advance
    Chris
    Termination occurred in the ABAP program "SAPLSNR3" - in "READ_NRIV".
    The main program was "RBDAPP01 ".
    In the source code you have the termination point in line 245
    of the (Include) program "LSNR3F01".
    The program "SAPLSNR3" was started as a background job.
    Job Name....... "Z_AUTOBILL"
    Job Initiator.. "BATCHADM"
    Job Number..... 15174905
    The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
    procedure "READ_NRIV" "(FORM)", but it was neither handled locally nor declared
    in the RAISING clause of its signature.
    The procedure is in program "SAPLSNR3 "; its source code begins in line
    240 of the (Include program "LSNR3F01 ".
    >>>>>     SELECT SINGLE FOR UPDATE * FROM NRIV WHERE
      246                                      OBJECT    = P_OBJECT
      247                                  AND SUBOBJECT = P_SUBOBJECT
      248                                 AND NRRANGENR = P_NR_RANGE_NR
      249                                  AND TOYEAR    = '0000'.

    Hi Chris,
    unfortunately, this is "normal" and a typical application issue.
    NRIV is "THE" number buffering table. If you do have locks there, you have to investigate the currently running and failing applications. One of them will not work properly with the number rage table.
    Perhaps, it might be an option, to buffer the table for the "row in problem" - but this needs to be discussed with the application people, because sometimes, this is forbidden.
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Direct Path Read

    Hi everyone,
    I am experiencing High Direct path reads and every time i run the query I see there is no decrease in physical reads.
    I have come across in the docs that this could be if the blocks are directly read into PGA instead of SGA, what will be the cases for this to be true and how can i overcome the disk reads.
    Please advice.
    Thanks in advance for your help.

    user8710159 wrote:
    Hi everyone,
    I am experiencing High Direct path reads and every time i run the query I see there is no decrease in physical reads.
    I have come across in the docs that this could be if the blocks are directly read into PGA instead of SGA, what will be the cases for this to be true and how can i overcome the disk reads.
    Please advice.
    Thanks in advance for your help.I would ask why do you want to overcome the disk reads.
    And you may want to share your query as well as details which told you it is doing direct path reads every time.

  • Regarding 'Direct Path Read' waits

    As we all know, direct path read waits is a new feature in Oracle 11g. From Oracle Documents or others' articles, when it is full table scan, direct path read occured. But why it occured?  I don't know clearly.
    Below is Oracle Document description:
    http://docs.oracle.com/cd/E18283_01/server.112/e17110/waitevents003.htm#sthref3849
    During Direct Path operations the data is asynchronously read from the database files. At some stage the session needs to make sure that all outstanding asynchronous I/O have been completed to disk. This can also happen if during a direct read no more slots are available to store outstanding load requests (a load request could consist of multiple I/Os).
    Question:
    1. During Direct Path operations the data is asynchronously read from the database files.  >> what does this statement mean? what's ''asynchronously read'?
    2. describe above description for me in details.
    3. who can clearly explain 'why direct path read waits occur' for me?
    Thanks in advance.
    Lonion

    Lonion wrote:
    Question:
    1. During Direct Path operations the data is asynchronously read from the database files.  >> what does this statement mean? what's ''asynchronously read'?
    2. describe above description for me in details.
    3. who can clearly explain 'why direct path read waits occur' for me?
    If you want to get very technical, Frits Hoogland has written lots of stuff about the implementation:
    http://fritshoogland.wordpress.com/2013/05/09/direct-path-read-and-fast-full-index-scans/
    http://fritshoogland.wordpress.com/2013/01/04/oracle-11-2-and-the-direct-path-read-event/
    http://fritshoogland.wordpress.com/2012/12/27/oracle-11-2-0-1-and-the-kfk-async-disk-io-wait-event/
    http://www.ukoug.org/what-we-offer/library/about-multiblock-reads/about-multiblock-reads.pdf
    Regards
    Jonathan Lewis

  • Select count(*) from table in oracle 11g with direct path read takes time

    select count(*) from table takes long time, even more than couple of hours..
    direct path read is the wait event which is almost is at 99%..
    can u someone provide some info on this.. on solution.. thankx

    knowledgespring wrote:
    table has millions of records... 130 millions..
    select count(*) from BIG_SIZE_TABLE; --- executed in sql plus command prompt.
    Rows     Execution Plan
    0  SELECT STATEMENT   MODE: ALL_ROWS
    0   SORT (AGGREGATE)
    0    TABLE ACCESS   MODE: ANALYZED (FULL) OF 'BIG_SIZE_TABLE' (TABLE)
    Elapsed times include waiting on following events:
    Event waited on                             Times   Max. Wait  Total Waited
    ----------------------------------------   Waited  ----------  ------------
    SQL*Net message to client                       1        0.00          0.00
    enq: KO - fast object checkpoint                1        0.01          0.01
    Disk file operations I/O                       18        0.00          0.00
    direct path read                            58921        0.34        418.54direct path read time waited is : 58921 total time waited: 418.54
    That 418 seconds - not the hours you reported earlier. Is it possible that your connection to the database broke ?
    On a typical system, by the way, you can usually turn one direct read for tablescan into 1MB, so your scan seems to have covered about 59 GB, which seems to be in the right sort of ballpark for 130M rows.
    we have another query and when we test the query execution using v$sql, is_bind_sensitive =N, how to make is_bind_sensitive=Y all the time.. There is a hint /*+ bind_aware */ - I'd have to check whether or not it's documented at present. It might help.
    I would be interested in hearing why you think the hint should be bind sensitive when the optimizer doesn't.
    Regards
    Jonathan Lewis

  • Direct Path Reads instead of Sequential Reads for index range scan

    Database is 11.2. I have two development schemas, with the same table loaded in each schema - a 5 million row table. The execution path for the sql statement is the same against both tables; it's doing an index range scan.
    But it would appear Oracle performs a direct path read against one schema, and performs sequential reads against the other schema. I don't understand why I'm seeing different behavior when the execution plan is the same. Any ideas? These are two different schemas in the same database.

    There is not enough information.So you even these tables located same database and you gathered statistics it is not mean both run time wait event statistics must be same.Really they are different tables.If both query use INDEX RANGE SCAN the it is not mean these plans are same.What about table and their index statistics? are they same? for example num_row or num_blocks of both tables are same? also about indexes.In additionally if you want to get exact reason you can enable sql trace(using dbms_monitor or setting sql_trace parameter to true according session) and need analyze result trace file using tkprof utility.In additionally in 11g here when query execution time oracle automatically choose direct read path(serial) based on size of tables and size of buffer cache(also here is available some hidden parameter to controlling this behavior).

Maybe you are looking for

  • Problem Installing SQL Server 2012

    Hello,  I am currently trying to install SQL Server 2012 and I'm having a problem.  When I try to install a "New SQL Server stand alone installation..." from the SQL Server Installation Center, it gives me the error: An error occurred during the inst

  • Amarok: Could not find any collection plugins

    Hello, after some recent updates, my amarok refuses to start giving the message that no collection plugins where found due to an incompatible KDE library version. Searching the internet revealed no cure... All other KDE apps are working fine, the sys

  • PO Document types

    Dear Team, We have a current Procurement Process in Place. Our Management is going to create a new Company Code in furture.This new company will have the same Procurement Processes as that of the existing Company Code. From the Configuration Point of

  • I want to be a Java Certified

    Dear All I want to be a Java Certiffied but I don't know what is the Path. I am expert in java. what is the first exam SCJP or SCJD. where can I found the practice questions which can help me.

  • Stock transfer between Batch and Non Batch managed Plants

    Hi Plant A is Batch Managed and Plant B is not batch managed. When I do STO, I want the Batch data from Plant A to be stored in some custom tables (when Inbound delivery is received in Plant B) as it is required for any recall and outbound purposes.