Extracting Values of a Field from a Database Table in SAP ECC System

Hi,
I downloaded Extracting Values of a Field from a Database Table in SAP ECC System Using MII 12.0
senario from sdn. I'm trying to do that senario in MII 12.05. But I have problem with section 6 in page 7 (you can supply senario from sdn)
"6- Under the loop of Repeater, use action u2018Rowu2019 to append just the string part of the WA which will display only values for field u2018Batchu2019"
I did not find WA elemen in Output element of Repeater_0
How can I create WA element?
Thanks.

Cemil,
Set up a SAP JCo Interface action block.  Use the RFC name RFC_READ_TABLE.
In the link editor map the table to "MARA", set RowCount to something small (20 is good sample size) and create an xml transaction property named FIELDS and copy the following into it:
<?xml version="1.0" encoding="UTF-8"?><FIELDS>
      <item>
        <FIELDNAME>MATNR</FIELDNAME>
        <OFFSET/>
        <LENGTH/>
        <TYPE/>
        <FIELDTEXT/>
      </item>
      <item>
        <FIELDNAME>MTART</FIELDNAME>
        <OFFSET/>
        <LENGTH/>
        <TYPE/>
        <FIELDTEXT/>
      </item>
      <item>
        <FIELDNAME>BSTME</FIELDNAME>
        <OFFSET/>
        <LENGTH/>
        <TYPE/>
        <FIELDTEXT/>
      </item>
      <item>
        <FIELDNAME>XCHPF</FIELDNAME>
        <OFFSET/>
        <LENGTH/>
        <TYPE/>
        <FIELDTEXT/>
      </item>
      <item>
        <FIELDNAME>DATAB</FIELDNAME>
        <OFFSET/>
        <LENGTH/>
        <TYPE/>
        <FIELDTEXT/>
      </item>
    </FIELDS>
Then link the Transaction.FIELDS to SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/TABLES/FIELDS}.  You may run into problems with two other fields and optionally they can be removed (set link type to remove xml).  I usually remove them initially for testing.  The two fields are:
SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/NO_DATA}
SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/DELIMITER} (or you can set this to something like a semicolon,";" or tilda,"~".  I find it easier to caclulate position by length, but that is my own idiosyncrasy.)
Once you get this one working, we can explore how to do filtering on the dataset.  Your output should be something like this:
<?xml version="1.0" encoding="utf-8"?>
<RFC_READ_TABLE>
  <INPUT>
    <DELIMITER />
    <NO_DATA />
    <QUERY_TABLE>MARA</QUERY_TABLE>
    <ROWCOUNT>20</ROWCOUNT>
    <ROWSKIPS>0</ROWSKIPS>
  </INPUT>
  <TABLES>
    <DATA>
      <item>
        <WA>000000000000000023ROH 00000000</WA>
      </item>
      <item>
        <WA>000000000000000038HALB 00000000</WA>
      </item>
      <item>
        <WA>000000000000000043HAWA 00000000</WA>
      </item>
      <item>
        <WA>000000000000000058HIBE 00000000</WA>
      </item>
      <item>
        <WA>000000000000000059HIBE 00000000</WA>
      </item>
      <item>
        <WA>000000000000000068FHMI 00000000</WA>
      </item>
      <item>
        <WA>000000000000000078DIEN 00000000</WA>
      </item>
      <item>
        <WA>000000000000000088FERT 00000000</WA>
      </item>
      <item>
        <WA>000000000000000089FERT 00000000</WA>
      </item>
      <item>
        <WA>000000000000000098HALB 00000000</WA>
      </item>
      <item>
        <WA>000000000000000170NLAG 00000000</WA>
      </item>
      <item>
        <WA>000000000000000178NLAG 00000000</WA>
      </item>
      <item>
        <WA>000000000000000188NLAG 00000000</WA>
      </item>
      <item>
        <WA>000000000000000288HALB 00000000</WA>
      </item>
      <item>
        <WA>000000000000000358HAWA 00000000</WA>
      </item>
      <item>
        <WA>000000000000000359HAWA 00000000</WA>
      </item>
      <item>
        <WA>000000000000000521HAWA 00000000</WA>
      </item>
      <item>
        <WA>000000000000000578FERT 00000000</WA>
      </item>
      <item>
        <WA>000000000000000597HAWA 00000000</WA>
      </item>
      <item>
        <WA>000000000000000598VERP 00000000</WA>
      </item>
    </DATA>
    <FIELDS>
      <item>
        <FIELDNAME>MATNR</FIELDNAME>
        <OFFSET>000000</OFFSET>
        <LENGTH>000018</LENGTH>
        <TYPE>C</TYPE>
        <FIELDTEXT>Material Number</FIELDTEXT>
      </item>
      <item>
        <FIELDNAME>MTART</FIELDNAME>
        <OFFSET>000018</OFFSET>
        <LENGTH>000004</LENGTH>
        <TYPE>C</TYPE>
        <FIELDTEXT>Material Type</FIELDTEXT>
      </item>
      <item>
        <FIELDNAME>BSTME</FIELDNAME>
        <OFFSET>000022</OFFSET>
        <LENGTH>000003</LENGTH>
        <TYPE>C</TYPE>
        <FIELDTEXT>Purchase Order Unit of Measure</FIELDTEXT>
      </item>
      <item>
        <FIELDNAME>XCHPF</FIELDNAME>
        <OFFSET>000025</OFFSET>
        <LENGTH>000001</LENGTH>
        <TYPE>C</TYPE>
        <FIELDTEXT>Batch management requirement indicator</FIELDTEXT>
      </item>
      <item>
        <FIELDNAME>DATAB</FIELDNAME>
        <OFFSET>000026</OFFSET>
        <LENGTH>000008</LENGTH>
        <TYPE>D</TYPE>
        <FIELDTEXT>Valid-From Date</FIELDTEXT>
      </item>
    </FIELDS>
    <OPTIONS />
  </TABLES>
</RFC_READ_TABLE>
Add a repeater sourced on:
SAP_JCo_Interface_0.Response{/RFC_READ_TABLE/TABLES/DATA/item}
Link your repeater output to a tracer with this:
Repeater_0.Output{/item/WA}
What you will see in each tracer message is a single line of data with all the fields contents concatenated together.  You can look up what each field in the string represents by the length of the field as returned in the Response segment of the RFC_READ_TABLE rfc.  Then you can parse out the data you are interested in.
Give this a try and let me know how you succeeded.
By the way, I could not find the scenario you referred to.  Can you post a link?
Regards,
Mike
Edited by: Michael Appleby on Jan 12, 2009 5:16 PM

Similar Messages

  • Extract a value of a fields from an internal table

    hello everyone,
    i need to extract a value of a fields from an internal table, the fields is in a postion "sy-tabix" that i know, so i need to pick this value without using a loop
    thank you.

    Like this?
    DATA: FIELD1 TYPE C,
               FIELD2 TYPE C.
    READ TABLE T_TAB INDEX 3.
    FIELD1 = T_TAB-FIELD1.
    FIELD2 = T_TAB-FIELD2.
    Greetings,
    Blag.

  • Populating multiple text fields from a database table...

    I have a database table with several fields e.g. drawing_no, title, date_entered etc..I have a form that has the same fields. I want to be able to input a value into drawing_no field, and have it retrieve all the other values from the database - if they exist, or return blanks/nulls if it does not exit. I know how to do this for a single field, but not for retrieving multiple fields

    Hi ,
    You can create a before header page process and fetch all the fields from database, or you can take a look at in-built process Automated Row Fetch.
    For e.g. lets say u have field1, field2, field3, field4 and field5 based on col1, col2, col3, col4, col5 from table tab1
    Now create a page process of type PL-SQL and give a meaningful name to the process and accept the default as on Load Before header. In the "Enter PL/SQL Page Process" block enter a code similar to this one
    DECLARE
    BEGIN
    IF :drawing_no IS NOT NULL THEN
      SELECT col1, col2, col3, col4, col5 INTO :field1, :field2, :field3, :field4, :field5
      FROM tab1 WHERE drawing_no = :drawing_no ;
    END IF;
    EXCEPTION WHEN NO_DATA_FOUND THEN
               NULL;
    END;The above block will fetch the records into input fields every time u refresh the page.
    Hope this helps.
    Thanks,
    Manish

  • Delete a content of field from a database table

    Hi All,
    i want to delete a content of field mtart from mara where matnr = 0000001.
    plz help me out  ASAP plz also provide a piece of code for doing so....
    Thanks and Regards.
    Ashu Singh.

    Hi,
    You Can Do Like This,
    Parameters p_matnr type mara-matnr.
    Delete from mara where matnr eq p_matnr.
    Try This

  • To replace values of one of the field in the database table

    How to replace values of one of the field in the database table with a new values? Pls help to solve

    Hi
    You can use the UPDATE command to update one of the field value in a table
    see the UPDATE syntax and use it
    but in real time you should not do like this
    Regards
    Anji

  • How to delete data from single field in a database table?

    Hi guys,
         Plz suggest me How to delete data from single field in a database table?
    thnks,
    pavan

    hi
    in addition to abv details..chk this:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3aef358411d1829f0000e829fbfe/content.htm
    http://dev.mysql.com/doc/maxdb/en/34/ee7fbd293911d3a97d00a0c9449261/content.htm
    regards,
    madhu

  • I am trying to pass the value of a field from the seeded page /oracle/apps/

    I am trying to pass the value of a field from the seeded page /oracle/apps/asn/opportunity/webui/OpptyDetPG. The value I want is in the VO oracle.apps.asn.opportunity.server.OpportunityDetailsVO and the field PartyName.
    I have created a button on the page whose destination URL is
    OA.jsp?OAFunc=XX_CS_SR_QUERY&CustName={#PartyName}
    It opens the correct page, but in the URL it shows this
    http://aa.com:8005/OA_HTML/OA.jsp?OAFunc=XX_CS_SR_QUERY&CustName=&_ti=1897289736&oapc=177&oas=x5E2TIfP1Y0FykBt1ek4ug..
    You can see that &CustName is not getting the proper value. Do I need to do something different?

    You cannot call the form with OA.jsp . This is applicable only for OAF based pages registered as a function.
    For calling a Form, use the below example:
    You have to change the application responsibility key and form function name .
    "form:PN:PN:STANDARD:XXPNTLEASE:QUERY_LEASE_ID={@QueryLeaseNumber}"
    Regards,
    Sudhakar Mani
    http://www.oraclearea51.com

  • Populating a html form with fields from a database

    Ok, basically ive got fields in a db, for example:
    name
    decription
    time
    weather
    mood
    Ive got a html form that also has these fields.
    When the user clicks a button the homepage of the site, it should bring up a form in a popup window that has all the fields in based on the entries in the database - lets pretend there is only 1 entry in the database, so the form will be the same for every user.
    Any ideas how i could do this?
    BTW I'm using jsp and mysql as db.
    Thx peeps

    Hi,
    Are all the fields from the same table? if so you can construct a class say Test.java with the follwing attributes.
    <code>
    public string m_strName=null;
    get and set methods
    </code>
    You can repeat for all the fields in the DB. If you have primary key for the table you can set the ID of the class as the primary key. so in your JSP you get the class with ID (whichever you wish to) and use the class in the JSP like this
    <code>
    Test test = JDBCAccess.get("ID of the table");
    <%=test.getName();%>
    </code>
    This is an example of OR(object relational mapping).
    Hope this helps.
    thanks
    shyam

  • ATWRT field is from which database table.

    Hi Gurus,
        I need to see the field name ATWRT(Manufac Method) for the particular material number.from which database table can i access both the data.Please help me .
    Thanks in advance.
    Points will be rewarded.
    Thanks & Regards,
    A.Ashok kumar.

    Hi
    these are the tables where atwrt exists:
    ABAUSP
    AFFV
    AFFVB
    AFFVD
    APICAWN
    API_CAWN
    API_CCHAR
    API_VALI
    API_VALUE
    API_VAL_IN
    CCIHS_IHPRIOT
    CCRCS_EHS_SVT_MA
    CLGO_MULTIPLE
    CLRS_OBJ_KEYS
    CLRS_OBJ_VALUES
    CLSELSTATISTICS
    CLS_CHARAC
    COFIV
    COFV
    COFVP
    COME
    COMEP
    COMER
    COMSE
    COMW
    COVLP
    CRMT_IC_SCRIPT_M
    CSIM_ST_DETAIL
    CTBW_VALUE_TEXT
    CTIH_01
    CTMSEXIT001
    CTMS_02
    CUCD_CONF
    CUD0_02
    CUGEN_SIMPLE_LIT
    CUGEN_SIMPLE_SIN
    CUGEN_VALUE
    CURTO_CU_GEN_SIMPLE_L
    CURTO_CU_GEN_SIMPLE_S
    CUSL_01
    CUSL_02
    CUSL_05
    CUSL_06
    CUSTOMER_FILTER_CHAR
    CUXREF
    CUXR_OBJ
    CUX_EXP_VALUE
    DDB_AW
    DDB_C01
    DDB_C02
    DDB_C03
    DDB_C04
    DDB_C06
    DDB_C07
    DESCR
    DIWPS_ATINN
    DIWPS_CA
    DIWPS_CONF
    DIWPS_CONF_MARK
    DIWPS_RV_ATINN
    DIWPS_RV_CA
    DIWPS_RV_CONF
    DIWPS_RV_CONF_MARK
    DIWPS_RV_NAV
    DIWPS_WA_WORKPACKAGE
    DIWPS_WPID_CONF
    DIWPS_WP_NAV
    E1AUSPM
    E1CAWNM
    E1CUV1M
    E1EDL12
    E1EDL15
    E1ISU_SDORD_POS_CONF
    E1WBB17
    DIWPS_ATINN
    DIWPS_CA
    DIWPS_CONF
    DIWPS_CONF_MARK
    DIWPS_RV_ATINN
    DIWPS_RV_CA
    DIWPS_RV_CONF
    DIWPS_RV_CONF_MARK
    DIWPS_RV_NAV
    DIWPS_WA_WORKPACKAGE
    DIWPS_WPID_CONF
    DIWPS_WP_NAV
    E1AUSPM
    E1CAWNM
    E1CUV1M
    E1EDL12
    E1EDL15
    E1ISU_SDORD_POS_CONF
    E1WBB17
    E1WTADDI12
    E2AUSPM
    E2CAWNM
    E2CUV1M
    E2EDL12
    E2EDL15
    E2WBB17
    E3AUSPM
    E3CAWNM
    E3CUV1M
    E3EDL12
    E3EDL15
    E3WBB17
    ECONF_OUT
    EHQMSAPIM1
    Regards
    Preeti
    <b>
    Reward if useful</b>

  • To modify a field in a database table based record identification by primar

    hi
    i want to to modify a field in a database table based record identification by primary key filed and two more fields
    ie customer (primary key
    i want to modify record from intenal table the record existing with primary key field customer
    the status field needs to be mofied as " value rolled"
    the below code is happening
    loop at it_record into wa_Record
    wa_inv-customer (primary key) = wa_Record=custome
    wa_inv-date = wa_Record-date
    ...so one
    append wa_inv to it_invest
    clear wa_inv
    endloop.
    if not it_invest  is initial
    modify TABle1 ( this table is data base table which needs to be mofified) based on the primary key field
    and also date field and status field which is not primary key.
    regards
    arora

    Hi there.
    Your requirement is to update a Z Database table from your internal table, right? You have several options:
    LOOP AT it_invest INTO wa_inv.
      UPDATE dbtable
         SET date = wa_inv-date
       WHERE prim_key = wa_inv-prim_key
         AND any_field = wa_inv-any_field.
    ENDLOOP.
    or
    LOOP AT it_invest INTO wa_inv.
      UPDATE dbtable FROM wa_inv. "if wa_inv of same type of dbtable
    ENDLOOP.
    In the first example, I wrote any field because you can update dbase table, filtering for fields that don't belong to the primary key. However, remember that you will change all records that respect the key you used (so, in your case, use the primary key).
    Regards.
    Valter Oliveira.

  • Combining data from 2 database tables to convert numberID to text? ASP/VB

    Hi.
    I have the following two database tables:
    Orders Table
    orderID
    customerID
    collectionregion (numerical)
    deliveryregion (numerical)
    Regions Table
    regionID
    regionname
    On my ASP page I have a recordset (rsOrders) which displays
    the order
    details.
    When this is displayed, the collectionregion and
    deliveryregion fields
    display as a numerical value, as they should.
    This numerical value ties in with the regionID field from the
    regions table,
    to indicate what region the collection/delivery is in.
    I would like to be able to display the region name as opposed
    to the number.
    I created a third recordset on the page, which goes like
    this:
    SELECT * from tblRegions WHERE regionID = regionvar
    regionvar 1 rsOrders.Fields.Item("deliveryregion")
    Now, this works great when I DON'T have the rsOrders
    information in a Repeat
    Region, but when I add the repeat region, it simply displays
    the region name
    for the first record for every record. Why would it not work
    in the repeat
    region?
    What can I do to resolve this?
    Any help offered would be greatly appreciated. Thanks.
    Regards
    Nath.

    Hi,
    Ok, thinking out loud has helped a little! My Repeat Region
    is for the
    rsOrders recordset so simply dropping a value from a second
    recordset into
    this existing repeat region won't cause the second recordset
    to repeat which
    is why I'm seeing the first records values in every record!
    Still leaves me with the problem though.
    The thing that's confusing me is that both the
    collectionregion and
    deliveryregion fields in the Orders table hold an ID value
    that ties in with
    the Regions table primary key field (regionID) however
    because they are not,
    themselves, called regionID I can't seem to do an Inner Join
    in a database
    query like I normally would if there was just one field that
    tied in with
    the regionID.
    Would appreciate some guidance. Much appreciated. Thanks.
    Regards
    Nath.
    "Nathon Jones" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi.
    >
    > I have the following two database tables:
    >
    > Orders Table
    >
    > orderID
    > customerID
    > collectionregion (numerical)
    > deliveryregion (numerical)
    >
    > Regions Table
    >
    > regionID
    > regionname
    >
    > On my ASP page I have a recordset (rsOrders) which
    displays the order
    > details.
    >
    > When this is displayed, the collectionregion and
    deliveryregion fields
    > display as a numerical value, as they should.
    > This numerical value ties in with the regionID field
    from the regions
    > table, to indicate what region the collection/delivery
    is in.
    >
    > I would like to be able to display the region name as
    opposed to the
    > number.
    >
    > I created a third recordset on the page, which goes like
    this:
    > SELECT * from tblRegions WHERE regionID = regionvar
    >
    > regionvar 1 rsOrders.Fields.Item("deliveryregion")
    >
    > Now, this works great when I DON'T have the rsOrders
    information in a
    > Repeat Region, but when I add the repeat region, it
    simply displays the
    > region name for the first record for every record. Why
    would it not work
    > in the repeat region?
    >
    > What can I do to resolve this?
    > Any help offered would be greatly appreciated. Thanks.
    > Regards
    > Nath.
    >

  • To fetch Data from multiple database tables!

    How to fetch Data from fields of multiple database tables!
    Give me one example!

    use <b>join....</b>
    c the SAPHELP docs...
    FROM tabref1 [INNER] JOIN tabref2 ON cond
    Effect
    The data is to be selected from transparent database tables and/or views determined by tabref1 and tabref2. tabref1 and tabref2 each have the same form as in variant 1 or are themselves Join expressions. The keyword INNER does not have to be specified. The database tables or views determined by tabref1 and tabref2 must be recognized by the ABAP Dictionary.
    In a relational data structure, it is quite normal for data that belongs together to be split up across several tables to help the process of standardization (see relational databases). To regroup this information into a database query, you can link tables using the join command. This formulates conditions for the columns in the tables involved. The inner join contains all combinations of lines from the database table determined by tabref1 with lines from the table determined by tabref2, whose values together meet the logical condition (join condition) specified using ON>cond.
    Inner join between table 1 and table 2, where column D in both tables in the join condition is set the same:
    Table 1                      Table 2
    A
    B
    C
    D
    D
    E
    F
    G
    H
    a1
    b1
    c1
    1
    1
    e1
    f1
    g1
    h1
    a2
    b2
    c2
    1
    3
    e2
    f2
    g2
    h2
    a3
    b3
    c3
    2
    4
    e3
    f3
    g3
    h3
    a4
    b4
    c4
    3
    |--|||--|
        Inner Join
        |--||||||||--|
        | A  | B  | C  | D  | D  | E  | F  | G  | H  |
        |--||||||||--|
        | a1 | b1 | c1 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a2 | b2 | c2 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a4 | b4 | c4 | 3  | 3  | e2 | f2 | g2 | h2 |
        |--||||||||--|
    Example
    Output a list of all flights from Frankfurt to New York between September 10th and 20th, 2001 that are not sold out:
    DATA: DATE   LIKE SFLIGHT-FLDATE,
          CARRID LIKE SFLIGHT-CARRID,
          CONNID LIKE SFLIGHT-CONNID.
    SELECT FCARRID FCONNID F~FLDATE
        INTO (CARRID, CONNID, DATE)
        FROM SFLIGHT AS F INNER JOIN SPFLI AS P
               ON FCARRID = PCARRID AND
                  FCONNID = PCONNID
        WHERE P~CITYFROM = 'FRANKFURT'
          AND P~CITYTO   = 'NEW YORK'
          AND F~FLDATE BETWEEN '20010910' AND '20010920'
          AND FSEATSOCC < FSEATSMAX.
      WRITE: / DATE, CARRID, CONNID.
    ENDSELECT.
    If there are columns with the same name in both tables, you must distinguish between them by prefixing the field descriptor with the table name or a table alias.

  • Displaying fields from a Z Table on CRM UI

    Hello Experts
    I am trying to display fields from a custom table onto a CRM UI form view.
    1. I created a custom GENIL root object & Search object ie. ZCUSTOMER. & ZCUSTSEARCH
    2. Tested this in the GENIL BROWSER to ensure that I could enter update values to the table and retrieve it via the search object.
    3. Created a custom component ZCUSTOMER
    4. Created a view with this component ZCUSTOMER using the wizard -
         Model Name - CUSTINFO
         BOL Entity - ZCUSTOMER
         No links to the custom controller or higher level objects.(as I do not want to tie this to any standard components)
    Type of view - Form view
    7. Created a Context node for the component controller with the same info as I did for the view.
    8. Performed the binding of the view context node with the component controller context node.
    9. Configured 1 field CUST_NAME to be displayed on the view.
    10. Configured the run time repository to display the view.
    Now the issue is..
    When the view gets displayed, the field is displayed with the error "CUST_NAME not bound"
    What am i missing?
    Thanks
    RLX

    Hi Swati,
    Thanks for the feedback. I re-viewed the WD_CREATE_CONTEXT method of the view controller implementation class and I see the following code in there already-
    method WD_CREATE_CONTEXT.
      create the context
        context = cl_bsp_wd_context=>get_instance(
              iv_controller = me
              iv_type = 'ZL_ZCUSTOMER_BSPWDCOMPONEN_CTXT' ).
        typed_context ?= context.
    endmethod.
    Does that look right or do I need to modify it?
    Thanks once again for the help.
    RLX

  • How to compare two fields from the same table in the select statement

    Hi, friends
    I try to compare tow fields from the same table, but no result,
    For example, this
    data: cptotchek tyep i.
    select count(*) into cptotchek
    from aufk where erdat = aufk-idat2 .
    The result is  cptotchek = 0, but there are the records in aufk , where,  aufk-erdat = aufk-idat2.
    Please, help me, i don't use the loop statement for optimize my program.
    Regards

    Hi  ,
           it will not return  any value   when you are using   column of same table 
           such as Date Field   , Because  while Using Aggregate Function  it will not check with self column
    .      For that you have to take data in one internal table and then you can work on it  .
         And if you are worried about Performance  it will not affect  , untill you are selecting only required data  .
    you can try this way  .
    data: cptotchek type i.
    types : begin of  w_aufk.
            include structure aufk  .
          types : end of  w_aufk .
    data : it_aufk type standard table of w_aufk with header line  .
    select * into corresponding fields of table it_aufk
    from aufk  .
    loop at it_aufk .
    if it_aufk-erdat  = it_aufk-idat2 .
    write : / it_aufk-erdat , it_aufk-idat2 .
    else .
    delete it_aufk .
    endif  .
    endloop.
    Regards
    Deepak.

  • How to select alternate entries from the database table

    Hi Experts,
    can u help me, how to select alternate entries from the database table.
    Thanks

    As there is no concept of sequence (unless there is a field specifically included for the purpose), there is no meaning to "alternate" records.
    What table do you have in mind, what data does it hold, and why do you want alternate records?
    matt

Maybe you are looking for

  • Running forms and deleting default tables in oracle 9i

    i am presently running,the oracle 9i enterprise edition along with the forms on a single machine. do i have to also install the client side of the oracle 9i for the forms to run,because i am having errors when running the form, even though it tries t

  • BOM explosion in chracteristic Plng

    Hi I am trying to map a scenario by characteristic plng. scenario is like, i have steel industry product which is differentiated on basis of grade, dia, shape (major characteristics). and my major objective with plng of finished good is to aggregate

  • Xcode 2.5 on Leopard

    Most of the books I've come across on Cocoa illustrate how to build GUI apps using Xcode 2.5. I'm using Leopard and Xcode 3.0, so it's hard to follow along because Interface Builder is so different from 2.5. So my question is can I install and use Xc

  • My tv show i bought will not play

    i bought it a while ago and used to be able to watch it fine and i went to watch it today and now i can not watch it it says the play button is pushed but the screen is just black

  • New iphone with fail software

    it say i must connect to iTunes but i reboot my iphone its works again about a min, my iphone no signal then it say i must connect to iTunes again i have restore it twice but it still isn't work who can help me?