Jump directly to the previous record

Hi Everyone,
i am using oracle 9i and i have 20,000 records in my table and i have to do some manual changes in my address column. in the meanwhile i sort my data with respect to anyother column, after sort operation, i want to go back to that specific record where i was befroe sort operation. is there any way to get to that record if i didnt remember the idx adn anyother text. My concern is there any current record operation or anyother function which shuld directly take us to that record.
Best Regards,

The two biggest performance killers in Oracle in my experience are:
1. not using bind variables
2. treating data as records that needs to be processed on a row-by-row basis
What you describe sounds like #2. Not dealing with data sets, but with records. And doing multiple passes through the table do read and process and then re-process the exact same rows - again.
I/O is the single most expensive operation on a database computing platform. Why would you want to do multiple I/Os for processing and then re-processing the very same row?
This row-by-row processing method we used back in the old days (with languages lke Cobol) to open a file (or magnetic tape), read a record, process a record and repeat. Often with control breaks (a concept lost on many programmers today), writing new records to a new tape.
This is a very wrong approach in any RDBMS platform.
The very idea that you want to revisit a row that you already have processed says that there is something wrong with your approach. Says that you are using PL/SQL to process data row-by-row and not using SQL to process it as a data set.
And this method is an excellent way to kill performance.
I suggest that you carefully think of what your process needs to do and then determine how to do it correctly in a RDBMS like Oracle - where the resulting code will be performant and will be able to scale with increased data volumes.

Similar Messages

  • I'm attempting to sync several albums from itunes to iphoto.  When select to sync all albums it copies over the previous recorded album.  I tried to sync the Albums individually and the same thing happens.  Any ideas on how to sync my albums?

    I'm attempting to sync several albums from itunes to iphoto.  When select to sync all albums it copies over the previous recorded album.  I tried to sync the Albums individually and the same thing happens.  Any ideas on how to sync my albums?

    Hi NWL1,
    Thanks for the question. If I understand correctly, the iPhone won't update and is stuck. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support
    Thanks for using Apple Support Communities.
    Have a great day,
    Mario

  • UDF: how to get a value in the previous record when lopping over records?

    Hello
    I have this challenge:
    Source message:
    <row>
      <ID>111</ID>
      <Score>200</Score>
      <Date>2010-01-01</Date>
    </row>
    <row>
      <ID>111</ID>
      <Score>230</Score>
      <Date>2010-01-02</Date>
    </row>
    <row>
      <ID>112</ID>
      <Score>230</Score>
      <Date>2010-01-03</Date>
    </row>
    etc...
    Now the case is, that IF the value of ID of the current record (row) is equal to the value of the ID of the previous record AND the Score value of the current record is bigger than the Score value of the previous record THEN a record in the target message must be created with these values:
    Target Message:
    <row>
      <ID_target> value of source ID </ID_target>
      <Score_yesterday> Score value of previous record (day) </Score_yesterday>
      <Score_current_date> Score value of current record </Score_current_date>
      <Date_current> Date of current record  </Date_current>
    </row>
    I am thinking of using GlobalContainer to store the previous values but am note sure how to maintain these previous values. In addition, I am thinking about using a UDF on the target row record, which will just create the row, if conditions are met (result.addValue("");) and then just make a simple mapping of the ID_target, Score_current_date and Date_current fields and make an other UDF for the Score_yesterday field where I get the Score for the previous record using the GlobalContainer value, that I stored in the other UDF.
    BUT:
    Should I use "All values of context" or "All values of Queues" in the UDF used on the row record and how do I make sure, that the Score_yesterday global container value is maintained correctly? I am planning of setting it in the UDF used on the Target row record but will it then be in sync with the consuming UDF of the Score_yesterday field?
    Java code to go into the UDF would be very much appreciated
    Mikael

    int tmp1;
    int tmp2;
    int len = ID.length;
    for(int i =0;i< len;i++)
         if( i!= len-1)
             tmp1 = Integer.parseInt(Score<i>);
             tmp2 = Integer.parseInt(Score[i+1]);
                   if(tmp2 >tmp1)
                     if (TARGET[0].equals("ROW"))
                              result.addValue("");
                          else if (TARGET[0].equals("ID_TARGET"))
                              result.addValue(ID[0]);
                         else if (TARGET[0].equals("SCORE_YDAY"))
                              result.addValue(Score<i>);
                         else if (TARGET[0].equals("SCORE_CDAY"))
                             result.addValue(Score[i+1]);
                         else
                             result.addValue(DT[i+1]);
    I got the following results for the set of data that you provided.
    Target-XML
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_TestingTGT xmlns:ns0="http://monsanto.com/CIC">
       <Row>
          <ID_TARGET>571515198310502207</ID_TARGET>
          <SCORE_YDAY>1000</SCORE_YDAY>
          <SCORE_CDAY>1010</SCORE_CDAY>
          <CURRENT_DATE>2010-03-02 00:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502207</ID_TARGET>
          <SCORE_YDAY>1000</SCORE_YDAY>
          <SCORE_CDAY>1050</SCORE_CDAY>
          <CURRENT_DATE>2010-03-04 00:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502207</ID_TARGET>
          <SCORE_YDAY>1050</SCORE_YDAY>
          <SCORE_CDAY>1080</SCORE_CDAY>
          <CURRENT_DATE>2010-03-05 00:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502108</ID_TARGET>
          <SCORE_YDAY>2000</SCORE_YDAY>
          <SCORE_CDAY>2040</SCORE_CDAY>
          <CURRENT_DATE>2010-03-03 05:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502108</ID_TARGET>
          <SCORE_YDAY>2000</SCORE_YDAY>
          <SCORE_CDAY>2040</SCORE_CDAY>
          <CURRENT_DATE>2010-03-05 05:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310302203</ID_TARGET>
          <SCORE_YDAY>3000</SCORE_YDAY>
          <SCORE_CDAY>3020</SCORE_CDAY>
          <CURRENT_DATE>2010-03-05 00:00</CURRENT_DATE>
       </Row>
    </ns0:MT_TestingTGT>

  • HOW TO COPY THE PREVIOUS RECORD TO THE CURRENT RECORD

    Hi all,
    i am using form 6i.
    i have one multi record block. the user has to enter all the values and store it to the table.
    My requirement is - if user is in some blank record, if user clicks the button then all the previous record values should be coppied to the record where the user has placed the cursor.
    please help me..
    Thanks..

    user13329002 wrote:
    Except these columns all other columns should be copied when i press the button.So? Use duplicate_record and set the columns you don't want to copy to null or a value you want?
    duplicate_record;
    :my_block.creation_date := sysdate;
    :my_block.modiefied_date := null;cheers

  • How can I get the previous record's field value in a VO

    Hi I would like to know how can I get the previous record's field value in a VO
    For example : I have a VO porequisitionlinesvoimpl, and it contains 5 records (porequisitionlinesvoimpl.getRowCount() = 5). How can I search all records in the VO and get the field (attribute3) for all records?
    Many thanks anyone can help
    Lawrence

    Hi ,
    U can loop through the VO to get the value of attribute3,
    need to extend the controller ,use below code
    OAViewObject vo = (OAViewObject)oawebbean.getApplicationModule (VO1);
    OARow row = null;
    int fetchedRowCount = vo.getFetchedRowCount();
    RowSetIterator Iter = vo.createRowSetIterator("Iter");
    if (fetchedRowCount > 0)
    Iter .setRangeStart(0);
    Iter .setRangeSize(fetchedRowCount);
    for (int i = 0; i < fetchedRowCount; i++)
    row = (OARow)Iter .getRowAtRangeIndex(i);
    String value = (String)row.getAttribute("Atrribute3");
    Thanks
    Pratap

  • How to get the previous record value in the current record plz help me...

    In my sql how to get the previous record value...
    in table i m having the field called Date i want find the difference b/w 2nd record date value with first record date... plz any one help me to know this i m waiting for ur reply....
    Thanx in Advance
    with regards
    kotresh

    First of this not hte mysql or database forum so don;t repeate again.
    to get diff between two date in mysql use date_format() to convert them to date if they r not date type
    then use - (minus)to get diff.

  • Employees  has the same cost center long text as the previous record

    Hiiii Experts,
                          in ABAP-HR 2 employees have got the same cost centr text (kostl) with different perner.we shouldnt get  the same cost centres long text for diff pernr(employee numbers). please solve this.
    thanks and regards,
    Vishal

    Employee 01605429 has the same cost center long text as the previous record.
    01605304;A;MIKE.GESSLERMichael;Gessler;19000101;0500192745;;NUSA;NUSA SLS Solon Prepared Foods Sales;CD SOLON HQ
    01605429;A;DANA.SHERMAN;Dana;Sherman;19000101;0500193070;;NBSNA;NBS Solon Employee HR Services;CD SOLON HQ
    There are records in the file with no const center which should not be included in the file.  We need to know why they were extracted and why
    don't they have a cost center. See below.
    10252768;A;CHARISSA.HALFORD1Charissa;Halford;19000101;;;NPFC;;
    10252770;A;MATTHEW.CANADAY1;Matthew;Canaday;19000101;;;NPFC;;

  • Consider the previous record i on-commit

    Hi,
    I wrote a trigger on-commit:
    if :SYSTEM.CURRENT_BLOCK='SQTIPO' then
    if :SQTIPO_DET.MANSIONEC is null then
         message('Making the data on SKILL.');
         message('Making the data on SKILL.');
    end if;
    end if;
    commit;
    but if I move within the first and post a new record makes me enter without SQTIPO_DET.MANSIONEC values seen that only the control of the last record and not on the previous ones.
    What can I do?
    Thank you.

    When I create a new record result in an on-commit trigger :
    if :SYSTEM.CURRENT_BLOCK='SQTIPO' then
    if :SQTIPO_DET.MANSIONEC is null then
    message('exploit the data on SKILL.');
    message(' ');
    end if;
    end if;
    commit;
    but if they create no value to the other blocks of detail and in the end unless I'm in error asks me if I want to save your changes.
    If I can confirm I no longer go out until I say so.
    The error that I see is:
    INSERT INTO SQTIPO_DET(SQTIPOC,MANSIONEC,NUM_UOM,PERCINIZIO,PERCFINE,CODICE_ROLE) VALUES (:1,:2,:3,:4,:5,:6)
    ORA-02291: integrity constraint (MARIA.FK_SQTIPO_DET_SQTIPO) violated - parent key not found
    thanks ;)

  • Find the previous records of max record

    Dear sir,
    ID     Date Ind
    2222 11/01/2006
    1111 13/01/2006
    1111 12/01/2006
    3333 14/01/2006 Y
    here ind ='Y' record is
    3333 14/01/2006
    my requirement is
    1111 12/01/2006
    just previous record of ind='Y'
    Please help me.

    user10069916 wrote:
    Dear sir,
    ID     Date Ind
    2222 11/01/2006
    1111 13/01/2006
    1111 12/01/2006
    3333 14/01/2006 Y
    here ind ='Y' record is
    3333 14/01/2006
    my requirement is
    1111 12/01/2006
    just previous record of ind='Y'
    Please help me.Hi,
    You should describe better your problem. When you have a record with ind='Y' is always going to be the last (in date order) or you can have also records with ind = NULL after that?
    i.e.: Could you have a situation like this one?
    Id      date     Ind
    2222 11/01/2006
    1111 13/01/2006
    1111 12/01/2006
    3333 14/01/2006  Y
    6666 15/01/2006 
    2222 16/01/2006   or like this?
    Id      date     Ind
    2222 11/01/2006
    1111 13/01/2006
    1111 12/01/2006
    3333 14/01/2006  Y
    6666 15/01/2006 
    2222 16/01/2006  Y
    8888 17/01/2006  In the cases above what do you want to select?
    Remember also when you post a question to post CREATE TABLE and INSERT statements to have sample data.
    Please read SQL and PL/SQL FAQ
    Additionally when you put some code or output please enclose it between two lines starting with {noformat}{noformat}
    i.e.:
    {noformat}{noformat}
    SELECT ...
    {noformat}{noformat}
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • An update statement to use cumulative columns from the previous record

    I need to create a update statement which updates a record based on a column from previous record and its column where they are grouped by another columns and ordered by date in ASC. Note that I need answer from SQL 2005+.
    Suppose I have records:
    TransactionID  ProductID    TransactionDate    Quantity        QuantityOnHand
    1                          1                1/2/2014             
    2                     ?  2
    2                          1                1/3/2014 
               3                     ? 5 = 3+2
    3                          1                1/4/2014 
               1                     ? 6 = 5 + 1
    4                          1                1/5/2014 
            9                     ? 15 = 6 + 9
    I wrote this statement but did not work:
    UPDATE it2 SET it2.QuantityOnHand =it2.Quantity + ISNULL(it1.QuantityOnHand,0)
    FROM IT it1
    LEFT JOIN (SELECT TransactionID,ProductID, Quantity,QuantityOnHand FROM IT GROUP BY ProductID ORDER BY TransactionDate)  it2 ON It2.TransactionID>it1.TransactionID
    WHERE It2.ProductID=it1.ProductID
    This means update the record and get the QuantityOnHand from its previous record if any grouped by the ProductID that are ordered by TransactionDate.  Note that in this example there is only one product ID. Here the QuantityOnHand column should be updated
    and TransactionDate is in ordered!
    Mike
    DDL:
    CREATE TABLE [dbo].[IT](
        [TransactionID] [int] NOT NULL PRIMARY KEY,
        [ProductID] [int] NULL,
        [TransactionDate] [datetime] NULL,
        [Quantity] [float] NULL,
        [QuantityOnHand] [float] NULL
    ) ON [PRIMARY]
    DML:
    INSERT INTO [dbo].[IT] VALUES (1 ,1,'1/2/2014',2,NULL)
    INSERT INTO [dbo].[IT] VALUES (2,1,'1/3/2014',4,NULL)        
    INSERT INTO [dbo].[IT] VALUES(3 ,1 ,'1/4/2014' ,2,NULL)
    INSERT INTO [dbo].[IT] VALUES(4 ,1 ,'1/5/2014' ,9,NULL)

    Hi
    please replace this text (which is not records but just text, and therefore we can not query it):
    TransactionID  ProductID       Quantity        QuantityOnHand
    1                          1                     
    2                     ?  2
    2                          1                     
    3                     ? 5 = 3+2
    3                          1                     
    1                     ? 6 = 5 + 1
    4                          1                     
    9                     ? 15 = 6 + 9
    with a DDL+DML queries to help us help you.
    >> DDL+DML are queries to create your relevant table and a query to insert the sample data.
    Thanks
    [Personal Site] [Blog] [Facebook]

  • How to get the previous record in the select statement

    I am trying to update the parent part number as a parent for component part number. I can assign the main part with level 1 as a parent and it looks like this.
    PART_NUMBER     PART_LEVEL     PART_PARENT
    1140000000T     3     1140001755L
    1140001755D     2     1140001755L
    1140001755L     1     
    A1010000139     5     1140001755L
    A1010015001     4     1140001755L
    A1010000139I     4     1140001755L
    A40210062     2     1140001755L
    A1010001579     4     1140001755L
    but, I need to assign the previous level part as the parent part instead of level 1. I can add a new column to store this value. I need the structure as
    PART_NUMBER     PART_LEVEL     PART_PARENT
    1140001755L     1     
    1140001755D     2     1140001755L
    A40210062     2     1140001755L
    1140000000T     3     A40210062
    A1010015001     4     1140000000T
    A1010000139I     4     1140000000T
    A1010001579     4     1140000000T
    A1010000139     5     A1010001579
    We might have multiple parts at the same level, so I need to make sure that correct parent is assigned to the part. Anybody has any idea?
    Thanks

    spooHi,
    How to do that depends on your data.
    Post a little sample data (CREATE TABLE and INSERT statements) and the results you want from that data (formatted, within \ tags), if it's not the reuslts you already posted.   If you can show what your problem is using commonly available tables (like scott.emp), then you don't have to post any sample data; just the results.
    Post your existing query, too;.  Always say what version of Oracle you're using.
    It looks like you're currently doing something like this:SELECT     ename
    ,     LEVEL
    ,     CONNECT_BY_ROOT ename     AS root_ename
    FROM     scott.emp
    START WITH     mgr     IS NULL
    CONNECT BY     mgr     = PRIOR empno
    which produces this output:ENAME LEVEL ROOT_ENAME
    KING 1 KING
    JONES 2 KING
    SCOTT 3 KING
    ADAMS 4 KING
    FORD 3 KING
    SMITH 4 KING
    BLAKE 2 KING
    ALLEN 3 KING
    WARD 3 KING
    MARTIN 3 KING
    TURNER 3 KING
    JAMES 3 KING
    CLARK 2 KING
    MILLER 3 KING
    where the last column shows the ancestor *farthest* above the current row.
    If I understand you, you want to have output that shows the *nearest* anacestor, like this:NAME LEVEL PARENT_ENA
    KING 1
    JONES 2 KING
    SCOTT 3 JONES
    ADAMS 4 SCOTT
    FORD 3 JONES
    SMITH 4 FORD
    BLAKE 2 KING
    ALLEN 3 BLAKE
    WARD 3 BLAKE
    MARTIN 3 BLAKE
    TURNER 3 BLAKE
    JAMES 3 BLAKE
    CLARK 2 KING
    MILLER 3 CLARK
    You can do that by changing a single line:SELECT     ename
    ,     LEVEL
    ,     PRIOR ename          AS parent_ename          -- Changed
    FROM     scott.emp
    START WITH     mgr     IS NULL
    CONNECT BY     mgr     = PRIOR empno

  • Removing Duplicate Records  and Merging with the previous record

    Hi
    Can any one help me in doing this..
    I want to delete a duplicate record from the current table.If there is one more record of the same kind. Compare the two records and fill the columns which are empty. Then Merge it. and Remove the duplicate record...Before deleting the record move it into the backup table..
    with regards
    srikanth

    I understand conceptually what you're after. At a detailed level, though, you're going to have to enunciate some specific rules to enforce.
    1) What makes row A a duplicate of row B? Is it just the Name column? Some combination of columns? Something else?
    2) What is the exact rule for merging rows? Among other questions
    - If you have multiple non-NULL values for a particular column, which column wins? If you have one row that is Manchester, NH and one that is Nashua, NH, which would you keep?
    - Does the merge logic depend on the particular column (i.e. perhaps you want the city & state to come from one row whereas first and last name can come from different rows)
    Justin

  • Validating record by checking all the previous records

    hi all
    i have a tabular form where i have values like
    from_acc to_acc
    100 200
    200 300
    400 450
    now when i enter a new record everytime i want to check the values from the firs record
    i want to make i a record level validation
    i want to know in which trigger can i write the code because in when validate record go_record is not allowed
    can any one help me how to go about it
    hi i want to make sure that the new record that user enters does not overlap any of the values of the from_acc and to_acc hence i need to navigate from the first record to the second last record .
    thanks
    mandar
    Message was edited by:
    bindok mulga

    U can use this type of code in when-validate-item trigger.
    (Here I am validating country name of countries table)
    declare
         vc_country varchar2(1);
    begin
         select 'x'
         into vc_country
         from countries
         where upper(country_name) = upper(:countries.country_name);
         message('Duplicate');
         raise form_trigger_failure;
    exception
         when no_data_found then
          null;
    end;
    Also when-new-record-instance-trigger has(countries datablock level) the code
    post;
    But I prefer to go for when-validate-item trigger combined with Kevin's method..                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • When I move to the next record on a form it shows the entries for the previous record even though the record is actually null

    I have a form that logs fibre analysis for asbestos analaysis. Let's say I am analysisng 2 samples. I log all the details for the first sample and hit save. Now I use the scroll button to move to the next sample. When the screen refreshes all the entries for the first sample are still showing on the screen. But these are just phantom entries, when I look at the back-end database there are of course no entries against the second sample. This does not occur with any other browser.
    I have tried clearing the cache to no avail.
    Any ideas?

    Is Firefox filling the form via the cache or via saved form data?
    If this data still gets filled when "Remember search and form history" is disabled the Firefox fills it from the cache.
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": "Remember search and form history"
    In such a case a hard refresh via Ctrl + F5 might help to reset the form data.

  • Update the previous records for the same customer.

    Hi All,
    I want to update the columns when the status = 'Processed'. And for the last 4 months.
    Create table
    cust_loans
    ( cust_id number(12),
      year_month  varchar2(20),
      status varchar2(20),
      c_info varchar2(20)      
      address varchar2(20),
      loan_type varchar2(20),
      vin_num varchar2(20)     
    cust_id        year_month     Status       c_info       address       loan_type        vin_num
    456789     201005                             W               
    456789     201006                             N               
    456789     201007                             Y               
    456789     201008                             Y               
    456789     201009                             N               
    456789     201010     Processed                              Austin     Auto     ajkd3323
    456789     201011     Processed                              Austin     Auto     ajkd3324
    456789     201012     Processed                             Austin     Auto     ajkd3325
    256712     201005                            W               
    256712     201006                            N               
    256712     201007                            Y               
    256712     201008                            Y               
    256712     201009                            N               
    256712     201010                            Y               
    256712     201011     Processed                         Minnesota     Auto     erer334
    256712     201012     Processed                         Minnesota     Auto     erer335
    Output Expected     
    456789     201005                           W               
    456789     201006                           N                  Austin     Auto     ajkd3323
    456789     201007                           Y                  Austin     Auto     ajkd3324
    456789     201008                           Y                 Austin     Auto     ajkd3325
    456789     201009                           N                 Austin     Auto     ajkd3326
    456789     201010     Processed                                                     Auto                    ajkd3323
    456789     201011     Processed                                     Austin     Auto                     ajkd3324
    456789     201012     Processed                                      Austin     Auto                     ajkd3325
    256712     201005                          W               
    256712     201006                          N               
    256712     201007                          Y             Minnesota     Auto     erer334
    256712     201008                          Y            Minnesota     Auto     erer335
    256712     201009                          N            Minnesota     Auto     erer336
    256712     201010                          Y            Minnesota     Auto     erer337
    256712     201011     Processed                                 Minnesota    Auto                     erer334
    256712     201012     Processed                                 Minnesota   Auto                    erer335Thanks.
    Edited by: AJR on Mar 26, 2011 12:03 PM
    Edited by: AJR on Mar 26, 2011 12:03 PM

    Hi Try this and see if you get your output,
    UPDATE cust_loans cl1
       SET vin_num = NVL ((SELECT vin_num FROM (SELECT * FROM (SELECT year_month,cust_id,vin_num
                                                                     ,MIN (year_month) OVER (PARTITION BY cust_id) ym
                                                        FROM cust_loans WHERE status = 'Processed')
                                                WHERE year_month = ym) cl2
                   WHERE cl1.cust_id = cl2.cust_id AND cl1.c_info IN ('Y', 'N')
                         AND TO_DATE (cl1.year_month, 'YYYYMM') >= ADD_MONTHS (TO_DATE (cl2.year_month, 'YYYYMM'), -4)
                         AND TO_DATE (cl1.year_month, 'YYYYMM') <  TO_DATE (cl2.year_month, 'YYYYMM')),cl1.vin_num)
    WHERE cl1.year_month > (SELECT NVL (MAX (year_month), cl1.year_month)
                               FROM cust_loans cl3
                              WHERE NVL (c_info, 'W') = 'W' AND NVL (status, 'x') != 'Processed' AND cl1.cust_id = cl3.cust_id)
    AND NVL (status, 'x') != 'Processed'G.

Maybe you are looking for

  • Help in transformation routine

    I have to put an indicator for delivery block in transformation routine. Logic: if headed delivery block 'LIFSK' is not blank, result is 'X'. Here is my code which is not working: IF SOURCE_FIELDS-LIFSK NE ''.       RESULT = 'X'.     ENDIF. But this

  • How to display image in the view

    hi friends I created one small webdynpro application it contains one default view. Now I want display one image on that view.(image is located in my local machine) i am new to webdynpro help me out. thanks ram.

  • Importing and organizing video clips

    I have a question about iMovie. I've made a few movies with it but am no pro. I am really anal about organizing my photos, music, videos, etc. and for that I love iPhoto. If i've just taken some pictures on my digital camera but don't quite have a us

  • Leading Zeros of Consumption in historical time series are not considered

    We are using VM MRP Type and weighted average model to calculate forecast value using historical consumption values. I have 36 historical periods(months) but have consumption incurred only in last period i-e "1". I have choosen a weighted group 01 (2

  • Outline verification failed  error

    Hi, I have a user defined table, from which X dimension is getting populated and x1, x2 and x3 rolls up to X But, my requirement is, only x1 and x2 should roll upto X. Is it possible to have consolidation operator as '+' for x1 ans x2 and '~' for x3