Problem in collect stmt

hi all,
I am doing report in which there is opening stock , closing stock and all movement wise stock.
i am able to do all this for one material but when i am try for more than one material then value of last material is overwrite on other material.
I m using collect stmt to do sum for all movement.
plz help me.

hi all,
plz see my code look like this :
TABLES : MSEG , MKPF , MAKT , MBEW.
DATA : BEGIN OF ITAB OCCURS 0,
        LBKUM LIKE MSEG-LBKUM,
        LBKUM1 LIKE MSEG-LBKUM,
        MAKTX LIKE MAKT-MAKTX,
        LGORT LIKE MSEG-LGORT,
        BWART LIKE MSEG-BWART,
        ZEILE LIKE MSEG-ZEILE,
        MENGE LIKE MSEG-MENGE,
        MEINS LIKE MSEG-MEINS,
        MATNR LIKE MSEG-MATNR,
        WERKS LIKE MSEG-WERKS,
        SHKZG LIKE MSEG-SHKZG,
        MBLNR LIKE MKPF-MBLNR,
        BUDAT LIKE MKPF-BUDAT,
        SIGN(2),
        101_102 LIKE MSEG-MENGE,
END OF ITAB.
DATA : BEGIN OF ITAB_TOT OCCURS 0,
        MATNR LIKE MSEG-MATNR,
        LBKUM1 LIKE MSEG-LBKUM,
          TOTAL1 LIKE MSEG-MENGE,
        TOTAL1 TYPE P DECIMALS 3,
        CLO TYPE P DECIMALS 3,
        101_102 LIKE MSEG-MENGE,
END OF ITAB_TOT.
PARAMETERS : WERKS LIKE MSEG-WERKS DEFAULT 'BRHP' OBLIGATORY.
SELECT-OPTIONS : MATNR FOR MSEG-MATNR OBLIGATORY.
SELECT-OPTIONS: DAT  FOR MKPF-BUDAT.
SELECT-OPTIONS: LGORT FOR MSEG-LGORT.
START-OF-SELECTION.
  SELECT DISTINCT  MSEG~MATNR
         MSEG~LGORT
         MSEG~BWART
         MSEG~ZEILE
         MSEG~MENGE
         MSEG~MEINS
         MSEG~WERKS
        MSEG~LBKUM
         MSEG~SHKZG
         MKPF~MBLNR
         MKPF~BUDAT
         INTO CORRESPONDING FIELDS OF TABLE ITAB
         FROM MSEG
         INNER JOIN MKPF ON MSEG~MBLNR = MKPF~MBLNR
         WHERE MSEG~MATNR IN MATNR
        AND MSEG~LGORT IN LGORT
         AND MSEG~WERKS EQ WERKS
         AND mKPF~BUDAT IN DAT
         AND MSEG~ZEILE = 1
         order by mkpf~MBLNR.
LOOP AT ITAB.
    IF ITAB-SHKZG = 'S'.
      ITAB-SIGN = '+'.
      MODIFY ITAB.
    ELSE.
      ITAB-SIGN = '-'.
      MODIFY ITAB.
    ENDIF.
  ENDLOOP.
SORT ITAB BY MATNR.
LOOP AT ITAB.
   IF ITAB-BWART = '121' OR ITAB-BWART = '122' .
      SELECT  MENGE INTO (ITAB-121_122) FROM MSEG  WHERE MATNR =
    ITAB-MATNR
      AND MBLNR = ITAB-MBLNR
      AND LGORT = ITAB-LGORT
      AND WERKS = ITAB-WERKS.
     AND ZEILE = ITAB-ZEILE.
        MODIFY ITAB.
      ENDSELECT.
    ENDIF.
     LOOP AT ITAB.
    IF ITAB-SHKZG = 'H'.
        ITAB-121_122 = ITAB-121_122 * -1.
        MODIFY ITAB.
    ELSE.
        ITAB-121_122 = ITAB-121_122.
        MODIFY ITAB.
     ENDIF.
     ENDLOOP.
  ENDLOOP.
LOOP AT ITAB.
SELECT LBKUM INTO (ITAB-LBKUM) FROM MSEG WHERE MATNR = ITAB-MATNR
and
MBLNR = ITAB-MBLNR AND WERKS = ITAB-WERKS AND ZEILE = 1.
MODIFY ITAB.
ENDSELECT.
ENDLOOP.
SORT ITAB BY  matnr mblnr.
LOOP AT ITAB.
IF ITAB[] IS NOT INITIAL.
DELETE ADJACENT DUPLICATES FROM ITAB COMPARING MATNR .
MOVE ITAB-lBKUM TO ITAB-LBKUM1.
MODIFY ITAB.
*APPEND ITAB_TOT1.
ENDIF.
ENDLOOP.
LOOP AT ITAB .
  MOVE-CORRESPONDING ITAB TO ITAB_TOT.
  COLLECT ITAB_TOT.
ENDLOOP.
loop at itab_tot.
write : / itab_tot-matnr , itab_tot-121_122 , itab-lbkum.
endloop.
i am not getting correct value of 121_122.
what should i do?

Similar Messages

  • Problem with Collective billing

    Hi,
    I have problem doing collective billing for one of my sales order that consist of 2 item, one is a TAN and the other is a TAS. Because of the different business process, i have to combine the billing of a delivery note (for the TAN item) and the sales order (for the TAS item) into one invoice. However when i do so, i end up with 2 invoices. Pls advise.
    Just wondering if the BlCat is different, can the invoice be combine?

    Hi,
    Invoice split will happen if you have any of the following values are different.
    1.Payer
    2. Inco Terms
    3. Payment Terms
    4. Shipping Condition
    5.Country
    6.Transportation Group
    7. Exchange Rate
    Click on the Split analysis.You will come to know why the splitting is happening.
    The procedure for this split analysis is:
    Goto the T.Code "VF02".
    Enter the number of the first billing document that you want to compare. Click on  Environment --> Split analysis.
    Enter the number of the second billing document which you want to compare to the first in the dialog box given.
    Click on "Continue".
    The system displays the Billing document split analysis log.
    Regards,
    Krishna.

  • COLLECT stmt  - counter.

    Experts,
    Basically
    DATA : Count TYPE i.
    will work with COLLECT stmt as a counter.
    I have DB structure having filed as RKE2_VVQ09 (QUAN type) in 4.6 C which was used as a counter filed in COLLECT stmt.
    However in ECC 6.0, looks like is not working in COLLECT stmt as a counter.
    So DDIC team have changed it in the DB structure from RKE2_VVQ09 (QUAN type) to char20, however it is not either working  as a counter when we use COLLECT stmt (i did not test ).
    So could you please let me know Whether  RKE2_VVQ09 (QUAN type)  will work with COLLECT stmt in ECC ?
    or do I need to change this to INT4 ?
    I Could not change in DB structure and test it ...that why I am asking for your help.
    YOUR HELP WILL BE APPRECIATED.
    Thanks in advance.

    >
    sam kumar wrote:
    > I Could not change in DB structure and test it ...that why I am asking for your help.
    You don't have to change the DB structure. You could simply create an internal table that has fields of both types and see if either works.
    Rob

  • Problem with collection names getting replaced when creating new collections in Photoshop Elements 5.0

    We have been using Photoshop Elements 5.0 a lot lately to organize many photos into collections.  A new problem just arose when creating a new collection.
    As we named the new collection and clicked on "OK" it replaced another existing collection with the new name.  The photos from the old collection were still there but now under the new collection name.  This happened at least three or four times, each time a different "old" collection was renamed.  Does anyone know why this would happen?
    This past week we have added at least 20 new collections with no problem prior to this.  Adobe actually had to shut down when this happened.  Each time we reopened Adobe it would happen again randomly renaming a different "old" collection when we tried to add the new one.  Any insights would be much appreciated.

    Thank you - that was the problem and now it is working correctly
    again!
    Tom Z.
    >>> saurabh288 <[email protected]> 05/24/09 4:23 AM >>>
    It may be that the catalog has been corupted.Try repairing the
    catalog of PSE.

  • Problem in collect statement

    Hi,
    i have requirement to get all unique entries from table .if i am getting duplicate record then i need to add qunatity field which i have define like rlbes-anfme.
    my internal table is :
    11 name1 23.00
    22 name2 1,324.00
    11 name1 10.00
    I want output in this way
    11 name1  33.00
    22 name2 1,324.00
    i tried to use collect statement but the problem is its not working on character type field.
    if  i use packed field then i am not able to upload my file because i am getting quantity filed 1,2344.00 this way.( instead of 1325.00)
    please give me any solution.
    thanks,
    jack

    Hi,
    Try this..
    Create another internal table which has the same structure of your internal table.
    DATA: LT_COLLECT LIKE ITAB OCCURS 0 WITH HEADER LINE.
    DATA: V_QUANTITY TYPE MENGE_D.
    Sort the internal table.
    SORT ITAB BY field1 field2.    " Give the appropriate field names.
    <b>* process the internal table which has the records.</b>
    LOOP AT ITAB.
    Sum up the quantity.
       V_MENGE = V_MENGE + ITAB-ANFME.  " Quantity field.
    Move the first two fields.
       LT_COLLECT-FIELD1 = ITAB-FIELD1. 
       LT_COLLECT-FIELD2 = ITAB-FIELD2.
    At the end of the record..append the record.
       AT END OF FIELD2.     " Give the corresponding field name.
          LT_COLLECT-ANFME = V_MENGE.
          APPEND LT_COLLECT.
         CLEAR: V_MENGE.
       ENDAT.  
    ENDLOOP.
    Thanks,
    Naren

  • Apex 4 , problem with collection executions

    Hi ,
    I am having the following problem with the execution of one collection :
    Reference thread : Re: APEX 4 , executing a remote procedure and populating data using collection
    DBNAME ---> list item which I build from the DB links which I built ( as dynamic query in the shared components from a local table which holds entries of dblink names )
    USERLIST --> list item of users which should display dynamicaly the users of that db link I choose in DBNAME ( based on a collection )
    buttons CANCEL and SUBMIT
    4- Initial COLLECTION page process which is calculated before Header :
    DECLARE
    q varchar2(4000);
    BEGIN
    IF APEX_COLLECTION.COLLECTION_EXISTS(P_COLLECTION_NAME => 'QRY1') THEN
    APEX_COLLECTION.DELETE_COLLECTION(P_COLLECTION_NAME => 'QRY1');
    END IF;
    q := 'SELECT username , username FROM sys.dba_users@'||:P23_DBNAME ;
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    P_COLLECTION_NAME => 'QRY1',
    P_QUERY => Q);
    END;
    For USERLIST list item I am using the following in LIST OF VALUES DEFINITION :
    SELECT C001, C002 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QRY1'
    5 - to submit the values from the screen to the remote database procedure I am using the following submit process ON SUBMIT AFTER CALCULATIONS:
    DECLARE
    v_statement varchar2(255);
    BEGIN
    v_statement := 'begin
    Lock_User@&P24_DBNAME.(''&P24_USERLIST.'');
    insert into log values (1,''user locked'') ;
    commit ;
    end;';
    EXECUTE IMMEDIATE v_statement;
    END;
    The problem :
    The form runs sucessfully , where I the USERLIST changes dynamicaly when I change the DBNAME values , but as soon as I logout and login with another user1 , the collection does not execute and i get "ORA-01729: database link name expected".
    I login with user1 in edit mode and recreate the collection , run again , the collection executes successfuly .
    If I create a new user2 ( using the sample application pages ) and login with the new user2 , i have the same problem , thus I ho login with user2 in edit mode and try to run the collection .
    How can I control the collection to execute regardless of the application user logged in ??
    thanks in advance
    yousef

    Hi ,
    I am having the following problem with the execution of one collection :
    Reference thread : Re: APEX 4 , executing a remote procedure and populating data using collection
    DBNAME ---> list item which I build from the DB links which I built ( as dynamic query in the shared components from a local table which holds entries of dblink names )
    USERLIST --> list item of users which should display dynamicaly the users of that db link I choose in DBNAME ( based on a collection )
    buttons CANCEL and SUBMIT
    4- Initial COLLECTION page process which is calculated before Header :
    DECLARE
    q varchar2(4000);
    BEGIN
    IF APEX_COLLECTION.COLLECTION_EXISTS(P_COLLECTION_NAME => 'QRY1') THEN
    APEX_COLLECTION.DELETE_COLLECTION(P_COLLECTION_NAME => 'QRY1');
    END IF;
    q := 'SELECT username , username FROM sys.dba_users@'||:P23_DBNAME ;
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    P_COLLECTION_NAME => 'QRY1',
    P_QUERY => Q);
    END;
    For USERLIST list item I am using the following in LIST OF VALUES DEFINITION :
    SELECT C001, C002 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QRY1'
    5 - to submit the values from the screen to the remote database procedure I am using the following submit process ON SUBMIT AFTER CALCULATIONS:
    DECLARE
    v_statement varchar2(255);
    BEGIN
    v_statement := 'begin
    Lock_User@&P24_DBNAME.(''&P24_USERLIST.'');
    insert into log values (1,''user locked'') ;
    commit ;
    end;';
    EXECUTE IMMEDIATE v_statement;
    END;
    The problem :
    The form runs sucessfully , where I the USERLIST changes dynamicaly when I change the DBNAME values , but as soon as I logout and login with another user1 , the collection does not execute and i get "ORA-01729: database link name expected".
    I login with user1 in edit mode and recreate the collection , run again , the collection executes successfuly .
    If I create a new user2 ( using the sample application pages ) and login with the new user2 , i have the same problem , thus I ho login with user2 in edit mode and try to run the collection .
    How can I control the collection to execute regardless of the application user logged in ??
    thanks in advance
    yousef

  • Problem in collections:

    I am having a a problem here:
    Map<Integer, String> map = new ArrayList<Integer, String>();
    Collection<Integer> keys = map.keySet();
    for(String id : categories) {
         if(Collections.binarySearch(keys, Integer.valueOf(id)) > 0) { some code...}
    While compiling i am getting the following compile time error:
    AuthorProfileSaveEditAction.java:165: cannot find symbol
    symbol : method binarySearch(java.util.Collection<java.lang.Integer>,java.lang.Integer)
    location: class java.util.Collections
    if(Collections.binarySearch(keys, Integer.valueOf(id)) > 0) {}
    ^
    Can anyone help...

    I think this statement is also causing trouble:
    Map<Integer, String> map = new ArrayList<Integer, String>();
    You can't convert ArrayList to Map and ArrayList doesn't have a 2 argument constructor. You are mixing 4 types of collections!

  • Help me please : Serious problems with collection-mapping, list-mapping and map-mappi

    Hi everybody;
    I have serious problems with list-mapping, collection-mapping and map-mapping.
    Acording to specifications and requirements in a system I am working on it is needed to
    get a "list" of values or an indivudual value.I am working with ORACLE 9i Database,
    ORACLE 9i AS and ORACLE 9i JDEVELOPER.
    I tried to map a master-detail relationship in an entity-bean, using list-mapping.
    And this was very useful in order to get a "list" of details, ...but, when I wanted
    to get a single value I have some problems with persistence, something about "saving a state"
    despite I just want to get the value of a single detail.
    I decided to change it to map-mapping and the problem related with a single detail
    worked successfully, but I can get access to the whole bunch of details.
    May anyone of you help me with that?
    I am very confused I do not know what to do.
    Have any of you a solution for that problem?
    Thank you very much.

    Have you tried a restore in iTunes?

  • Problems with Collections

    I downloaded the Demo of Lightroom yesterday and have been experimenting with it. I've created various collections, and had no problem dragging pictures into them. I was dragging some pictures into a collection this afternoon, and somehow, the entire library got selected. So I deselected everything, and now I can no longer drag pictures into the collections. I think I'm suppose to be able to drag pictures to rearrange them in the thumbnail window, but I can't do that either. I also can't rearrange pictures in the collections. If I select multiple pictures, the 1st one is highlighted brighter than all the other ones. I've restarted Lightroom multiple times, I've restarted the computer, I threw away the only preference file I could find for Lightroom (com.adobe.Lightroom.plist), and I've tried re-installing Lightroom. I'm totally stumped. Anybody have any ideas?
    thanks
    Mac 10.4.8, 2 gigs of ram, PowerPC iMac

    > Of course, now I have read what the answer is - selecting the picture and not the border - it is soooo obvious.
    Thats funny, because I had the same problem, but in the opposite way.
    Normally in windows, when you Shift-Click or Ctrl-Click to select
    multiple items, and then if you do a regular click on one of the items,
    the rest of the items will be deselected. Well, I've been suffering from
    the problem of it NOT behaving like that. It's kind of annoyed me, but I
    just do a Ctrl-D (deselect all) and then click. Now that I read your
    post, I realize that if I click on the border instead of the picture, it
    WILL behave the way I expect it.
    I don't know how Mac user interfaces should behave, but in windows, if
    you have multiple selections, then a normal click without a drag will
    deselect everything except the item you clicked, but if you press the
    mouse button and start dragging before you release the button, it's NOT
    treated as a deselect. It is treated as a drag and drop. If you drop it
    onto something that doesn't make sense (like dropping it onto the
    filmstrip) then it leaves everything just the way it was and pretends
    like you never clicked anything. That would be the proper way to do it
    to be consistant with Windows interface standards.
    Of course, being able to click within a selection without deselecting
    everything else has advantages too. For instance, if you select a bunch
    of images, you can then go through them and choose the one you intend to
    be your primary selection for purposes of syncing settings or metadata.

  • Problem with collections

    hello all,
    i am getting the systex error (multiple markers at the line 3)
    from the following code, (i am using java 1.5 and eclipse 3)
    import java.util.*;
    public class FindDups {
        public static void main(String args[]) {
            Set <String> s = new HashSet<String>(); //ine 3
            for (String a : value){
                if (!s.add(a))
                    System.out.println("Duplicate detected: "+a);
            System.out.println(s.size()+" distinct words detected: "+s);
    }thanks
    daya

    thanks for replay,
    values come from command line (command line parameter)
    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
         Syntax error on token "<", invalid AssignmentOperator
         Syntax error on token "=", != expected
         Syntax error on token "<", ( expected
         Syntax error on token "(", invalid Expression
         Syntax error on token(s), misplaced construct(s)
         Syntax error on token ")", : expected
         at collection.FindDups.main(FindDups.java:18)

  • Problem with Collect statement

    Hi Experts,
    I am facing a peculiar problem. Please go through the code below and it is not giving the aggregate of it_ekbe_642_pgi-menge for the same it_ekbe_642_pgi-ebeln and it_ekbe_642_pgi-ebelp.
    LOOP AT it_ekbe_642_pgi.
        it_ekbe_642_pgi_tot-ebeln =   it_ekbe_642_pgi-ebeln.
        it_ekbe_642_pgi_tot-ebelp =   it_ekbe_642_pgi-ebelp.
        it_ekbe_642_pgi_tot-budat =   it_ekbe_642_pgi-budat.
        it_ekbe_642_pgi_tot-xblnr =   it_ekbe_642_pgi-xblnr.
        it_ekbe_642_pgi_tot-menge =   it_ekbe_642_pgi-menge.
        COLLECT it_ekbe_642_pgi_tot.
      ENDLOOP.
    Please suggest.
    Thanks....
    Shibaji.

    Hi Shibaji Maitra ,
    Since you are aggregating the it_ekbe_642_pgi-menge for the same it_ekbe_642_pgi-ebeln and it_ekbe_642_pgi-ebelp.
    For using the Collect statement the order of the fields should be
    in proper order i.e. all the char fields come up & then after that
    all the numeric fields.Please check the sequence in your internal
    table and also the fields type of menge field.
    LOOP AT it_ekbe_642_pgi.
      it_ekbe_642_pgi_tot-ebeln = it_ekbe_642_pgi-ebeln.
      it_ekbe_642_pgi_tot-ebelp = it_ekbe_642_pgi-ebelp.
    it_ekbe_642_pgi_tot-xblnr = it_ekbe_642_pgi-xblnr.
    it_ekbe_642_pgi_tot-budat = it_ekbe_642_pgi-budat.
    it_ekbe_642_pgi_tot-menge = it_ekbe_642_pgi-menge.
    COLLECT it_ekbe_642_pgi_tot.
    ENDLOOP.
    Rewards points if helpful.
    Regards
    Manoj Kumar

  • Problem in Select stmt in loop

    Hi all,
    Pls provide your suggestions for the following code.
    LOOP at ITAB.
    select * from zxyz into corresponding fields of table ITAB_FINAL
    where fromdate eq date1
              todate eq date2
              MATNR eq ITAB-matnr.
    ENDLOOP.
    My question is that for a particular entry in itab , select stmt is executed and some 5 to 6 line item is selected into itab_final. Now in second loop , again select stmt is executed and again some line item will be selected , BUT will this selection will replace the earlier entry in ITAB_FINAL OR the entry in SUCCESSIVE loop will be APPENDED ?
    Please suggest your valuable suggestion on this problem
    Thanks in advance,
    Regards,
    Vivek

    Hi,
    There is no need to loop if you are using FOR ALL ENTRIES
    select * from zxyz into corresponding fields of table ITAB_FINAL
    for all entries in itab
    where matnr eq itab-matnr
    and fromdate eq date1
    and todate eq date2.

  • Problem in using stmt- getFloat()

    Hi,
    I have an application which makes use of OCCI for connectivity with the Oracle 9i..
    My application is able to perform updation insertion etc..
    But when I get a problem with the following sql statement..
    Before I write the code let me explain what it does, the query tries to get the result from a stored procedure function...
    I shall paste below the code:
    stmt = conn->createStatement("select stored_proced.foo('abcd') from table1");
    ResultSet *rset = stmt->executeQuery ();
    cout<<rset->status()<<endl; // I am getting as ' 1 '
    float flt_retval = rset->getFloat(1); // My sequence of execution is coming to a stand still on reaching this statement..
    Note: The return value on playing the above query in PL/SQL Developer is float and the query returns only one and only one value..
    Any help would be appreciated,
    Rgds,
    Wg
    Any suggestions would be appreciated..

    hi venkat,
    la_PLANTDATA-plant = '5530'.
    la_PLANTDATAX-plant = 'X'.
    in this for plantdatax plant is of component type WERKS_D
    with length 4 so u have to pass la_PLANTDATAX-plant = '5530'.
    it wil solve the problem.
    i hope this wil help to u
    thanks,
    dilip

  • Refresh problem with collection

    Hello, apologize my English, I have got problem with refresh collections. Follow:
    1) I have got two classes which have got dependency together.
    2) First class has got collection of objects from second class.
    3) I call query "findXXX" which fill collection first class.
    4) I create new object second class and again call query "findXXX" to get actual collection. But collection contain old values a I have to close and open web browser to get actual data.
    I think It is problem with TopLink cache, but I do not know how solve this.
    Can you help me, please?

    The cached data is probably stale.
    There are many ways to solve this. (see the caching section of the docs)
    - there is a refresh option on the query
    - you can set a descriptor to be isolated (Cache.shared=false)
    - you can set a descriptor to always refresh
    - there is a cache invalidation option on descriptor
    - there is a cache synchronization option on session
    If the cache is stale, but the database was not accessed outside the application, it may be that your application is not maintaining relationships correctly. You must ensure you set both sides of a bi-directional relationship.
    -- James : http://www.eclipselink.org

  • Problem With Collection

    I am having problems populating a collection.
    I have created my collection on page load of Page 7 using
    BEGIN
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'PEOPLE');
    END;The user then clicks on the "Copy" button that takes them to Page 13.
    It is here that I am trying to populate my collection, by clicking the Add link in the People report.
    for x in (select * from gus_people_2 where id = :P13_ID)
    loop
      apex_collection.add_member(p_collection_name => 'PEOPLE',
        p_c001 => x.id,
        p_c002 => x.rank,
        p_c003 => x.first_name,
        p_c004 => x.surname,
        p_c005 => x.dob,
        p_c006 => x.job,
        p_c007 => x.disp_seq);
    end loop;Once added, the member of the collection should appear in the Populated Collection report.
    select c001, c002, c003, c004, c005, c006, c007, 'Remove' remove
    from apex_collections
    where collection_name = 'PEOPLE'I am using Apex 4.1 on the Oracle web site
    http://apex.oracle.com/pls/apex/f?p=4550:1:0:::::
    Workspace: GUSCRIGHTON
    Username : [email protected]
    Password: terminator
    Application Name: EXCEL_UPDATE_TEST
    Same username and password as above.
    It is probably something really obvious, but I cannot spot it today.
    Any help appreciated.
    Gus

    hI gUS,
    Now run your page, it will work,.
    Thanks,
    Loga
    Add Collection Process
    Request =exp1
    'ADD' - removed single quotation
    Remove Collection process
    Request =exp1
    DEL - I have given this string.
    Later you will add with link or button .
    Edited by: Logaa on May 18, 2012 6:04 AM

Maybe you are looking for

  • Any function modules or user exit for confirmation mail

    Hi,     I am in SAP system , there is data distribution happening with SAP and non SAP system through middleware XI system. pls help me suppose there is an error happens how SAP can send an email to nonsap system or suppose data updated it should be

  • Zoom only works on outer parts of photo

    Very strange thing happening in LR5.6. When I go to zoom in on an image it only works on the outer 2/3s of the photo. it seems I can't zoom when clicking in the center. Same goes for when it is zoomed and I want to click the centre and drag to move t

  • How to use Flex fields

    Hi , I am using ODI 10.1.3.5.4 with Oracle to Oracle data transfer. I tried to create Flex Field. I have followed following steps: 1. In security Manager, Objects Tab, I selected Data Server and added a Flex field as SOURCE_DATABASE_LINK_NAME. 2. In

  • HT4623 backed up from itunes iphone 4 but do not have any new iphone 5s

    Ihave a new iphone 5s and upgraded from iphone 4, plugged in to computer and downloaded my backup from itunes, now i have not got any content off 5s

  • Setting up gmail as an exchange account on my iPad

    I have followed the instructions for setting up my gmail account as an exchange account on my iPad.  However now my gmail mail is not loading on my iPad at all.  Please help