Help : logistics extraction

Hi - can someone pls. help me understand this ?
In the LO extraction process, the definitions of V1, V2 & V3 updates are mentioned as  
V1 - Sync. update (STATISTICS UPDATE and DOCUMENTS UPDATE takes place at a time)
V2 - Async. update (Statistics update and Document Update take place in different timings according to which completes first).
V3 - Batch Async update (follows the V2 and after complete it waits in queue(LBWE) for collective run).
I also read in the forums that:
V1 updates are used for Document (Appl. tables) updates  and
V2 updates for Statistical tables updates and
V3 updates for Update tables for BW Queues for deltas
Is my understanding correct ? If Yes, then how could V1 (as in the definition) be used for updating both Documents as well as Statistical tables at the same time. Or does the term "Synchronous Update" simply mean that it's a real time process ?
Thank you
Anu.

Hi - thank you for the docs and the informative links. And more importantly thank you for taking time to help.
1. Going by definition (Synchronous Update (simultaneous processing) / Asynchronous update (updates at different times), V1 & V2 updates are two whole processes which are mutually exclusive.
2. When we choose V3 direct delta method (V2 independant), V1 is heavily burdened. And V2 and V3 are separated from V1 as these are not as realtime critical (updating statistical data). If all these updates were put together in one LUW, system performance (concurrency, locking etc) would be impacted.
This gives an impression that these are just tasks (V1 for updating the Application tables and providing the data for the BW delta Queue, V2 for Updating the Statistical tables,, and so these tasks can be put together in one LUW because they are different tasks)
So, are V1 & V2 actually processes or just tasks ?  Which one of these is the correct one ?
1A. (If we have the option of choosing within the V1 & V2 updates (because of the pros & cons), is it the responsibility of R3 group to set these up (since what BW requires is only the deltas by scheduling the V3 updates) ?
Thank you very much. I will award as many points as I can.
Anu.

Similar Messages

  • Help requires_A Safety Belt for Logistics Extraction Queues

    Hi All,
    I have read the Blog "A Safety Belt for Logistics Extraction Queues" and it is very useful for taking the backup data from Extraction Queue.
    I have a set of Queues related to this BLOG.
    1. Suppose, i have created the Backup table for the Particular Application (Ex 03).And i am scheduling the Job from the JOb Control of LBWE.Will it pull the data from Backup table or with the Standard Table. How can i pull data based on our needs.
    Pls suggest on this.
    Thanks,
    Jelina.

    Dear All,
    Anybody has tried performing the Backup of LBWQ data in ECC. How to pull data from backup table to RSA7.
    Pls suggest.
    Thanks,
    Jelina.

  • Logistics extractions

    Hi Experts,
    We have to extract Logistics data from ECC to BI (7.0) system. Here I am looking the sequence for pulling Logistics extraction (Like first Sales order then Delivery then Billing)..
    I would like to get over all view about Logistics extraction for any BW project.
    Regards,
    Learner

    Hi
    This topic has been discussed several times in SDN.  Search the forum example: LO extraction
    R3 settings are still same in ECC 5 and ECC 6 for LO.
    Thanks

  • Logistics Extraction Structures Customizing Cockpit, (URGENT)

    Can someone give me a step by step way of how to use and apply Logistics Extraction Structures Customizing Cockpit. Eric Thanks.

    Pls have a look at the engagement rules of this forum:
    /thread/117232 [original link is broken]

  • Need Help To Extract Logo from Flash File .swf

    I have an attached Flash file that is in
    .swf format. There is a N64 logo within this file that I'm
    trying to extract as a
    .png with a transparent background. I've been able to open
    it in a program called
    Flash Decompiler Trillix and in the sub-menus it has the
    logo listed as a frame.
    This is about as far as I have gotten and I'm stuck. Perhaps
    someone else knows how to do this a little easier. I just need to
    find a way to extra the logo that already has a transparent
    background and save it in
    .png format.
    Any help here would be hot." ;)
    Logo Flash
    File .swf

    Hello,
    I ran into a similar problem a few months ago. I have the
    Sothink Flash Decompiler and what I did was turn the SWF back into
    a FLA. I then opened it in Flash and then exported what I wanted as
    a PNG image.
    Decompilers can extract the actual image whether it be jpeg,
    gif, png, etc. But when it's listed as a frame(as you mentioned
    above) then the method above is probably the best way to get it.
    Good luck

  • Need help in extracting value from an xml tag.

    Hi ALL,
    Good Morning to all, i have problem in fetching a value from a xml tag. I have created a xml schema based on the schema i have created a xmltype table and inserted a value to the table. When i am trying to fetch a value from a particular tag i am unable to do so.. Kindly help me to solve this. Here by i am posting all the workings i have done...
    I am using the following client:
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jan 31 11:44:59 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ////////////////////////////////// XML Schema ///////////////////////
    begin
    dbms_xmlschema.registerSchema(
    'http://www.oradev.com/chipsxml.xsd',
    '<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oradev.com/chipsxml.xsd"
    xmlns:samp="http://www.oradev.com/chipsxml.xsd"
    version="1.0">
    <element name="Field1">
    <complexType>
    <sequence>
         <element name="UTI">
              <complexType>
              <sequence>
              <element name = "U01" type = "string"/>
              <element name = "U02" type = "string"/>
              <element name = "U03" type = "string"/>
              <element name = "U03a" type = "string"/>
              <element name = "U03b" type = "string"/>          
              <element name = "U03c" type = "string"/>          
              <element name = "U04" type = "string"/>                    
              <element name = "U05" type = "string"/>                    
              </sequence>
              </complexType>
         </element>
    </sequence>
    </complexType>
    </element>
    </schema>',
    TRUE, TRUE, FALSE, FALSE);
    end;
    ////////////////////////// Table which has multiple Column //////////////////////////
    CREATE TABLE chipsxmltable1 (
    id number, XMLDATA XmlType)
    XMLTYPE XMLDATA STORE AS OBJECT RELATIONAL
    XMLSCHEMA "http://www.oradev.com/chipsxml.xsd"
    ELEMENT "Field1";
    ///////////////////////////////// Insert Query in chipsxmltable //////////////////////////
    INSERT INTO chipsxmltable VALUES(
    xmltype.createxml('<?xml version="1.0"?>
    <samp:Field1 xmlns:samp="http://www.oradev.com/chipsxml.xsd" >
    <UTI>
    <U01>No</U01>
    <U02>Y</U02>
    <U03>Y</U03>
    <U03a>Y</U03a>
    <U03b>Y</U03b>
    <U03c>Y</U03c>     
    <U04>Y</U04>
    <U05>Y</U05>          
    </UTI>
    </samp:Field1>'));
    To show the data as a field with structure:
    1. Query:
    Select * from chipsxmltable1;
    Output:
    ID XMLDATA
    1 <?xml version="1.0"?>
    <samp:Field1 xmlns:samp="http://www.oradev.com/chipsxml.xsd">
    <UTI>
    <U01>No</U01>
    <U02>No</U02>
    <U03>Y</U03>
    <U03a>Y</U03a>
    <U03b>Y</U03b>
    <U03c>Y</U03c>
    <U04>Y</U04>
    <U05>Y</U05>
    </UTI>
    </samp:Field1>
    2. Query: (Both the query displays the same Output)
         SELECT X.xmldata.getClobVal() "XMLDATA" FROM chipsxmltable1 X;
         select extract(XMLDATA, '/Field1').getstringval() "XMLDATA" from chipsxmltable1 x;
    Output:
    XMLDATA
    <?xml version="1.0"?>
    <samp:Field1 xmlns:samp="http://www.oradev.com/chipsxml.xsd">
    <UTI>
    <U01>No</U01>
    <U02>No</U02>
    <U03>Y</U03>
    <U03a>Y</U03a>
    <U03b>Y</U03b>
    <U03c>Y</U03c>
    <U04>Y</U04>
    <U05>Y</U05>
    </UTI>
    </samp:Field1>
    To show the data as a single string without structure using "getstringval()":
    3. Query
         select extract(XMLDATA, '//text()').getstringval() "CHIPS - XML" from chipsxmltable1 x;
    OUtput:
    CHIPS - XML
    NoNoYYYYYY
    To show the data as a single string without structure using "getclobval()":
    4.Query
         select extract(XMLDATA, '//text()').getClobVal() "CHIPS - XML" from chipsxmltable1 x;
    Output:
    CHIPS - XML
    NoNoYYYYYY
    To show the data in a particular tag with/Without structure (Which is not working) using "EXTRACT" function:
    6.Query:
         select extract(XMLDATA, '/Field1/text()').getstringval() "XMLDATA" from chipsxmltable1 x;
         select extract(XMLDATA, '/Field1/UTI').getstringval() "XMLDATA" from chipsxmltable1 x;
         select extract(XMLDATA, '/Field1/UTI/U01').getstringval() "XMLDATA" from chipsxmltable1 x;
         select extract(XMLDATA, '/Field1/UTI/U01/text()').getstringval() "XMLDATA" from chipsxmltable1 x;
    Output:
    CHIPS - XML
    The above queries are not fetching the value.
    To show the data in a particular tag with/Without structure (Which is not working) using "EXTRACTVALUE" function:
    7. Query:
         select extractValue(XMLDATA, '/Field1/UTI') "XMLDATA" from chipsxmltable1 x;
         select extractValue(XMLDATA, '/Field1/UTI/U01') "XMLDATA" from chipsxmltable1 x;
    Output:
    X
    The above queries are not fetching the value.
    My question is:
    How to fetch values from xml tag when the value are inserted through xml schema?
    Apologies if the description is not clear. Kindly let me know if further details are needed. Many thanks for your help.
    Very best regards,
    Godwin Jebakumar C.V.

    Hi,
    You need to declare the namespace of each element used in the XPath expression, like this :
    SQL> select extractvalue( XMLDATA
      2                     , '/samp:Field1/UTI/U01'
      3                     , 'xmlns:samp="http://www.oradev.com/chipsxml.xsd"' ) "XMLDATA"
      4  from chipsxmltable1 x
      5  ;
    XMLDATA
    No
    SQL> select extract( XMLDATA
      2                , '/samp:Field1/UTI'
      3                , 'xmlns:samp="http://www.oradev.com/chipsxml.xsd"'
      4                ).getstringval() "XMLDATA"
      5  from chipsxmltable1 x
      6  ;
    XMLDATA
    <UTI>
      <U01>No</U01>
      <U02>Y</U02>
      <U03>Y</U03>
      <U03a>Y</U03a>
      <U03b>Y</U03b>
      <U03c>Y</U03c>
      <U04>Y</U04>
      <U05>Y</U05>
    </UTI>
    Please see EXTRACT and EXTRACTVALUE documentation :
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions051.htm#i1006712
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions052.htm#SQLRF06173
    BTW, "XMLDATA" is a pseudo-column used by Oracle. I don't know if it'll ever cause any conflict but maybe you should rename your column.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/pseudocolumns010.htm#SQLRF00256
    Regards.

  • Help needed extracting information from command output using sed

    I want to be able to pipe the output of:
    playerctl metadata
    into sed and extract only the relevant information. I have a working knowledge of regular expressions but I'm not how to get sed to only output the matched text. For reference, this is an example output of the playerctl command:
    {'mpris:artUrl': <'http://open.spotify.com/thumb/ddf652a13affe3346b8f65b3a92bd3abfdbf7eca'>, 'mpris:length': <uint64 290000000>, 'mpris:trackid': <'spotify:track:0xqi1uFFyefvTWy0AEQDJ7'>, 'xesam:album': <"Smokey's Haunt">, 'xesam:artist': <['Urthboy']>, 'xesam:autoRating': <0.23000000000000001>, 'xesam:contentCreated': <'2012-01-01T00:00:00'>, 'xesam:discNumber': <1>, 'xesam:title': <'On Your Shoulders'>, 'xesam:trackNumber': <6>, 'xesam:url': <'spotify:track:0xqi1uFFyefvTWy0AEQDJ7'>}%
    I'm trying to get the track name and artist name and combine them into one string. Perhaps sed isn't the tool for the job but I'm not really sure what else to try. Any help is very appreciated.

    If that was valid json, which it doesn't appear to be, you could use jshon to query it.
    Are you sure that is the exact output of the command? It looks sort of off...
    In the meatime, this is pretty hacky:
    awk 'BEGIN { RS=","; FS="'\''" }; /artist/ { artist = $4 }; /title/ { title = $4 } END { print artist": "title }' file
    Urthboy: On Your Shoulders

  • Seeking help in extracting data from partitioned table"YEARWISE".

    Hi Experts,
    I need a favour in extracting data YEARWISE like 'from 1999 to 2000.
    Table is partitioned with around 40 partitions, and data I want to extract with sign ',' separating columns.So that I can move it to application as text file directly.
    Plateform : Wind2k
    Oracle Version : 8i
    nls_date_format ...shows nothing..
    sysdate is in : dd-mm-yyyy format
    Here is my script, but so far it didn't yield anything...It looks like it is running, but I can see spool file with just 0 bytes.
    Please check the script "May be I m doing something wrong" , help me out.
    Let me also inform you that column  ENDRETTID is with datatype DATE, so I put this column for sorting.
    ===========================================================================================
    connect / as sysdba
    spool e:\dumps\frdz_fintrans_txt.log
    set heading off;
    set pagesize 0;
    set feedback off;
    set echo off;
    set pause off;
    set termout off;
    select BATCHID||','||
    PRODUKTKODE||','||
    OKODATO||','||
    SAKSBEHANDLERID||','||
    PRODDATO||','||
    KJOPSDATO||','||
    FRABINNR||','||
    POSENTRYMODE||','||
    ARSAKSKODE||','||
    BELOPVAL||','||
    BELOP||','||
    BRANSJEKODE||','||
    BRBREGNR||','||
    BINNR||','||
    POSTNR||','||
    TRANSKODE||','||
    FIRMANR||','||
    KJOPSTYPEID||','||
    KHBREGNR||','||
    SENTRALNR||','||
    REIMBURSMENTKODE||','||
    AUTORISERT||','||
    VALUTAKODE||','||
    PRECARIND||','||
    PAYMENTIND||','||
    ATMACCOUNT||','||
    POSTERMCAP||','||
    POSPINCAP||','||
    MAILTLFIND||','||
    SPESCOND||','||
    PROVISJON||','||
    LANDKODE||','||
    DATOID||','||
    CHIDMETHOD||','||
    ENDRETTID||','||
    TERMINALID||','||
    BRAND||','||
    KURSPASLAG||','||
    MCGEBYR||','||
    ACQBIN||','||
    LAND||','||
    CARDTYPE||','||
    DEBCRE||','||
    DOMAIN||','||
    CHIP||','||
    REGION from vdv.fintrans WHERE ENDRETTID >= to_date('01-01-1999','DD-MM-YYYY') and ENDRETTID <=to_date('01-01-2000','DD-MM-YYYY');
    spool off
    exit

    No Sir, no indexing on that column. Please help me with some easiest way to extract the data Yearwise.
    COLUMN_NAME    
    COLUMN_POSITION TABLE_NAME
    BATCHID                      
    1 FINTRANS
    KHBREGNR                     
    1 FINTRANS
    PRODDATO                     
    1 FINTRANS
    SQL>
    ======================
    Description of the table is as:
    SQL> desc vdv.fintrans;
    Navn                                      Null?    Type
    BATCHID                                   NOT NULL NUMBER
    PRODUKTKODE                                        VARCHAR2(1)
    OKODATO                                            NUMBER(8)
    SAKSBEHANDLERID                                    VARCHAR2(8)
    PRODDATO                                           NUMBER(8)
    KJOPSDATO                                          NUMBER(8)
    FRABINNR                                           VARCHAR2(19)
    POSENTRYMODE                                       VARCHAR2(2)
    ARSAKSKODE                                         NUMBER(2)
    BELOPVAL                                           NUMBER(14)
    BELOP                                              NUMBER(14)
    BRANSJEKODE                                        NUMBER(4)
    BRBREGNR                                           NUMBER(4)
    BINNR                                              NUMBER
    POSTNR                                             NUMBER(4)
    TRANSKODE                                          NUMBER(2)
    FIRMANR                                            NUMBER(11)
    KJOPSTYPEID                                        NUMBER(2)
    KHBREGNR                                           NUMBER(4)
    SENTRALNR                                          NUMBER(3)
    REIMBURSMENTKODE                                   VARCHAR2(2)
    AUTORISERT                                         NUMBER
    VALUTAKODE                                         NUMBER(3)
    PRECARIND                                          VARCHAR2(1)
    PAYMENTIND                                         VARCHAR2(1)
    ATMACCOUNT                                         VARCHAR2(1)
    POSTERMCAP                                         VARCHAR2(1)
    POSPINCAP                                          VARCHAR2(1)
    MAILTLFIND                                         VARCHAR2(1)
    SPESCOND                                           VARCHAR2(2)
    PROVISJON                                          NUMBER(10,2)
    LANDKODE                                           VARCHAR2(2)
    DATOID                                             NUMBER(8)
    CHIDMETHOD                                         VARCHAR2(1)
    ENDRETTID                                          DATE
    TERMINALID                                         VARCHAR2(8)
    BRAND                                              VARCHAR2(1)
    KURSPASLAG                                         NUMBER(14)
    MCGEBYR                                            NUMBER(14)
    ACQBIN                                             NUMBER(6)
    LAND                                               VARCHAR2(2)
    CARDTYPE                                           VARCHAR2(2)
    DEBCRE                                             VARCHAR2(1)
    DOMAIN                                             VARCHAR2(1)
    CHIP                                               VARCHAR2(1)
    REGION                                             NUMBER(1)
    =========
    Tried also to create new table for a month...but it is just going on without any table creation or data insertion...just hung kind of thing
    CREATE TABLE vdv.frdz AS (SELECT * FROM vdv.fintrans WHERE ENDRETTID >=to_date('01-01-1999','DD-MM-YYYY') AND ENDRETTID <=to_date('01-02-1999','DD-MM-YYYY'));

  • Tcode vf01 versus Tables / Help on Extraction

    In R3, with the tcode vf01, I entered a billing number and was able to see under Item Details for an Item #20, the Billed Quantity, Net Weight, Gross Freight and Pricing Date.
    Also, under the Conditions tab, I saw Profit Margin and, Shipping and Handling.
    1. While in R3, is there a way to see the name of the table which contains all the fields mentioned above, the invoice Number, item Number and Material Number.
    I suspect this will be EKKO of EKPO but if I did not know this through readings, is there a way to see the particular table while in the tcode vf03?
    2. So, for testing purposes on the development system, I want to extract only the above mentioned fields into an ODS in BW. Can you give me the steps in your own words since some documents I have see already from SAP are too detail and I find it difficult to follow.

    Hi Toylee.
    For (2), to get the field name in R/3, simple click on the required field, press F1 and click on the 'Technical Information' button.
    For conditions, you will see the structure KOMV and field KBETR. To get the underlying tables for Conditions are a bit more difficult, since they are stored in condition records spread across several tables. For this purpose, SAP has delivered Standard Content to extract Conditions on item Level in 0SD_O05. Use this standard content and you will probably avoid having to extract information from all these tables.
    For (1), EKKO and EKPO are tables for purchasing, while VF01 is a Sales and Distribution (SD) transaction. If you are looking at the purchasing information for the material, these are the correct tables. If you want the sales order or billing document details for the material, tables:
    VBAP: Sales Doc header
    VBAP: Sales Order Item
    VBRK: Billing Document: Header Data
    VBRP: Billing Document: Item Data
    Again, there is standard content for all this information. However, if you need to extract from these tables where SAP does not provide a specific field, you can create a generic datasource and extract from that. The steps are:
    1 - Create a view of the required tables with transaction SE11. You will need to add the tables and join fields.
    2 - Create the Generic Datasource with transaction RSO2. Select transaction data and enter the required name.
    2a - Select the application component, in this case SD, enter the description and then add your table/view.
    2b - Create a generic delta for the extract if you plan to do delta loads.
    3 - Replcate the datasources in BI.
    4 - Create your DSO/Cubes, transformations etc in BI on this generic datasource.
    Hope this helps. Let me know if you have more questions.
    Please award points if helpful.
    L.

  • Help needed: Extract Ccontact Persons for 0CUSTOMER or 0CUST_SALES

    Hi,
    I've to extract the contact persons (name,...) per customer from R/3 to BW (3.5).
    On R/3 side this information is stored in table KNVK. Is there any business content scenario to do so?
    Thank you very much for your help!
    Best regards,
    Markus Svec

    Seems like 0CONSUMER_ATTR data source is solving the problem.

  • Logistics extraction for QM - qRFC problem

    Hi,
    I have problem with LO extraction for QM - with delta.
    There are several records in 2 ques (MCEX05 and MCEX05_1), but the job for moving them into BW delta always ends with errors (Message_type_x).
    I'm thinking about deleting this que and start reconstruction for application 05 again.
    Would this help?
    The structure of one DS (2lis_05_qe2) has been changed with append structure, maybe this could also be a problem.
    There is also one doubt:
    does deleting qRFC (transaction LBWQ) affect any other area then just BI extractors for particular application? I'm affraid to harm some ERP processes?
    Thank you,
    Tom

    Hi
    If I got your question properly, If you are trying to change the Data Source (LO) then it would be locked for the users to report on the same.
    Appending / enhancing will break the Delta Runs also some times. Thats the reason whenever we are planning for the Strcture change we will run the Delta and make sure that the Queue has no runs.
    But deleting LBWQ would not effect on ERP Process as it picks up only New/changed Delta Records.
    Hope it helps and clear

  • Pls help with extracting dates

    I wish to produce the output in table customer1 based on the customer table DOP field.
    The values in DOP (0030500) indicates wed and fri, (0000007) indicates sunday.
    how can i extract all the dates for wed and fri (0030500) between the period ST_DT and ED_DT (23/02/2005) to (20/03/2005).
    SQL> select * from customer;
    CUSTOMER_ID ST_DT ED_DT DOP
    429100 23/02/2005 20/03/2005 0030500
    428950 14/03/2005 02/04/2005 0000007
    SQL> select * from customer1;
    CUSTOMER_ID ST_DT ED_DT DOP DT
    429100 23/02/2005 20/03/2005 0030500 23/02/2005
    429100 23/02/2005 20/03/2005 0030500 25/02/2005
    429100 23/02/2005 20/03/2005 0030500 02/03/2005
    429100 23/02/2005 20/03/2005 0030500 04/03/2005
    429100 23/02/2005 20/03/2005 0030500 09/03/2005
    429100 23/02/2005 20/03/2005 0030500 11/03/2005
    429100 23/02/2005 20/03/2005 0030500 16/03/2005
    429100 23/02/2005 20/03/2005 0030500 18/03/2005
    428950 14/03/2005 02/04/2005 0000007 20/03/2005
    428950 14/03/2005 02/04/2005 0000007 27/03/2005
    pls help, thanks.

    SQL> select * from customer;
    CUSTOMER_ID ST_DT     END_DT    DOP
         429100 23-FEB-05 20-MAR-05 0030500
         428950 14-MAR-05 02-APR-05 0000007
    SQL> select a.customer_id,a.st_dt,a.end_dt,a.dop,a.st_dt+b.tita
      2  from customer a,(select rownum-1 tita from user_objects) b
      3  where a.st_dt+b.tita <= a.end_dt
      4  and instr(a.dop,decode(to_char(a.st_dt+b.tita,'d')-1,0,7,to_char(a.st_dt+b.tita,'d')-1))>0
      5  order by a.customer_id,a.st_dt+b.tita;
    CUSTOMER_ID ST_DT     END_DT    DOP     A.ST_DT+B
         428950 14-MAR-05 02-APR-05 0000007 20-MAR-05
         428950 14-MAR-05 02-APR-05 0000007 27-MAR-05
         429100 23-FEB-05 20-MAR-05 0030500 23-FEB-05
         429100 23-FEB-05 20-MAR-05 0030500 25-FEB-05
         429100 23-FEB-05 20-MAR-05 0030500 02-MAR-05
         429100 23-FEB-05 20-MAR-05 0030500 04-MAR-05
         429100 23-FEB-05 20-MAR-05 0030500 09-MAR-05
         429100 23-FEB-05 20-MAR-05 0030500 11-MAR-05
         429100 23-FEB-05 20-MAR-05 0030500 16-MAR-05
         429100 23-FEB-05 20-MAR-05 0030500 18-MAR-05
    10 rows selected.
    SQL> Assuming the date range does not exceed the number of user objects :-)

  • Help with extraction from 0CO_OM_CCA_9

    Hello Experts,
    I need your help urgently.
    I’am doing CO extraction with the 0CO_OM_CCA_9 DataSource.
    I have made one append to the extraction structure and filled the fields in function module EXIT_SAPLRSAP_001.
    Everything worked fine till this moment.
    My problem is that I can’t retrieve data only in productive system. In development and Quality systems the append fields are filled.
    I have transported everything one more time, but the problem remained.
    I have Go Live next Monday, and I would appreciate your help on this.
    Best Regards,
    João Arvanas

    Hi Jaya,
    The problem is solved.
    Thank you for your suggestion.
    The problem was with the Package in which the Exit was included.
    I have awarded points.
    Best regards.

  • Requesting help in extracting user comments from a forum ( HTML WEBSITE)

    hello experts,
    As i m new to java and i got this college project in hand which has to completed in few days i require some expert advise.
    Basically what my job is to extract all the user comments from a forum and make a text file.. for example this is one of the website http://www.gsmarena.com where user have posted many reviews and comments about mobile phones . ex : http://www.gsmarena.com/nokia_n97-reviews-2615p2.php .
    now looking at source code , all user comment are inside <P class="uopin"> tag under <DIV class="user-thread"> element.
    So i want to ask if there is any method in java that can extract all contents from class "uopin" directly ?
    i have no problem opening URL connection and reading the webpage but i m not able to extract that specific content . please enlighten me in this regard.
    Actually i m searching this forum since last 3 hours trying to find an answer and i found that i have to learn Regex , indexOf() subString() , HTMLEditorKit() etc.
    I ma planning to learn them in detail but as i have very less time ( 2 days to be specific) , i want help from you experts to solve this problem. plz guide me with some code snippets .
    Thankyou for your advises in advance :)

    ok.. sorry for asking that way.
    Here is my work till now....
    i wrote this code :
    import java.io.*;
    import java.io.Console;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.URL;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class MyRobot3
         public static void main(String[] args) throws IOException
              BufferedReader in = new BufferedReader(new FileReader("MyRobot3.txt"));
              String inputLine , nextLine,kutta;
            FileOutputStream out; // declare a file output object
            PrintStream p; // declare a print stream object
              out = new FileOutputStream("myfile3.txt");
              p = new PrintStream( out );
                 while ((inputLine = in.readLine()) != null)
                             Pattern p1 = Pattern.compile("(<p\\sclass=\"uopin\">)(.*$)" );          
                        //     Pattern p1 = Pattern.compile("(<p\\sclass=\"uopin\">)(.*$\r\n.*$)" , Pattern.MULTILINE | Pattern.UNIX_LINES);    //not working
                        //Pattern p1 = Pattern.compile("(<p\\sclass=\"uopin\">)(.*\\s)" , Pattern.MULTILINE );
                             Matcher m1 = p1.matcher(inputLine);
                             boolean found = false;
                             while (m1.find())
                             p.println(m1.group(2));
    }I am testing with a little file MyRobot3.txt which contains
    <p class="uopin">Although they didn't announce any winner here. But to me the winner is <br/>
    N900. Then opera is in second position. (overall averare result)</p>And i am getting output in a file : myfile3.txt
    Although they didn't announce any winner here. But to me the winner is <br/>which is just the first line , but i need to match that line break also. i m not able to figure it out .please help me fixing this code so that it can match all the text and remove the <br> tag ..

  • Help in extracting internal css

    I'm new to DW CS4 and want to extract internal css rules to
    an external CSS. I'm sure it's a simple task but I can't find out
    anything in help.
    Thanks in advance.
    jon

    jon a wrote:
    > I'm new to DW CS4 and want to extract internal css rules
    to an external CSS. I'm sure it's a simple task but I can't find
    out anything in help.
    Type "move styles rules" into the Search for Help box at the
    top right
    of the CS4 workspace and press Enter/Return. It will lead you
    to this
    page in the help:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSD152C40D-CCA8-4901-BD43-FB9F1471A986a .html
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

Maybe you are looking for