Simple: 0RECORDMode field in ods

I am working to extract the data from 0FI_AA_11 datasource to ods, but i do not see the ROCANCEL FIELD in r/3 datasource to map it to 0recordmode field in ods.
1. please confirm if it is required to generate that field in datasource by activation of any BADI or what should i map to 0recordmode. and
2. please tell if any of the ods does not have 0recordmode then what is the impact?
3 i checked in ods where i will find or add the 0recordmode in ods wether it should be in data field or key fields
please tell me if it is a must to have this 0recordmode in ods if i have ods in my design and i use delta if yes what to map it if ro cancel is not there in r3 datasource
Thanks
Soniya

I think it delivers after images only, so no 0recordmode and not suited for direct cube load

Similar Messages

  • Select query based on Simple Type field in JDT

    Hello Experts,
    We have a JDT table consisting of a field "CONSUMPTION_ID" which refers to a Simpletype.So at oracle level the datatype of the field shows as CLOB instead of String. I am unable to use this simple type field in the WHERE clause in my bean .
    Following are the queries i have tried and the errors i have got executing them :
    Query1 -  SELECT * FROM TEST_TABLE WHERE CONSUMPTION_ID <> 'RT'
    Error - com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM "TEST_TABLE " WHERE "REF_MAT_DOC_NO" = ? AND "REF_MAT_DOC_YEAR" = ? AND "CONSUMPTION_ID" <> 'RT'" contains the semantics error[s]: - 1:84 - type check error: the expression >>"CONSUMPTION_ID"<< (CLOB) is not comparable and must not be used with "<>"
    - 1:84 - type check error: the left hand side >>"CONSUMPTION_ID"<< (CLOB) and the right hand side >>'RT'<< (CHAR) of a comparison operator are not comparable
    Query 2 - SELECT * FROM TEST_TABLE WHERE to_char(CONSUMPTION_ID) <> 'RT'
    Error - com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM TEST_TABLE  WHERE REF_MAT_DOC_NO = ? AND REF_MAT_DOC_YEAR = ? AND to_char(CONSUMPTION_ID) <> 'RT'" contains the syntax error[s]: - 1:91 - SQL syntax error: the token "(" was not expected here
    Please let me know if any one has used WHERE clause on fields which refer to a simpletype in JDT, or any other solution to the above problem
    Regards,
    Virag

    Hello Experts,
    We have a JDT table consisting of a field "CONSUMPTION_ID" which refers to a Simpletype.So at oracle level the datatype of the field shows as CLOB instead of String. I am unable to use this simple type field in the WHERE clause in my bean .
    Following are the queries i have tried and the errors i have got executing them :
    Query1 -  SELECT * FROM TEST_TABLE WHERE CONSUMPTION_ID <> 'RT'
    Error - com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM "TEST_TABLE " WHERE "REF_MAT_DOC_NO" = ? AND "REF_MAT_DOC_YEAR" = ? AND "CONSUMPTION_ID" <> 'RT'" contains the semantics error[s]: - 1:84 - type check error: the expression >>"CONSUMPTION_ID"<< (CLOB) is not comparable and must not be used with "<>"
    - 1:84 - type check error: the left hand side >>"CONSUMPTION_ID"<< (CLOB) and the right hand side >>'RT'<< (CHAR) of a comparison operator are not comparable
    Query 2 - SELECT * FROM TEST_TABLE WHERE to_char(CONSUMPTION_ID) <> 'RT'
    Error - com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM TEST_TABLE  WHERE REF_MAT_DOC_NO = ? AND REF_MAT_DOC_YEAR = ? AND to_char(CONSUMPTION_ID) <> 'RT'" contains the syntax error[s]: - 1:91 - SQL syntax error: the token "(" was not expected here
    Please let me know if any one has used WHERE clause on fields which refer to a simpletype in JDT, or any other solution to the above problem
    Regards,
    Virag

  • Is there any simple way to create ods files (OpenOffice Calc)?

    Is there any simple way to create ods files (OpenOffice Calc) using ResultSet (from java.sql)?

    Mabe, you can create CVS files (plain text) Ej...
    ====test.cvs=====
    1, "aaa"
    2, "bbb"
    3, "ccc"
    ===============
    Using a "BufferedWriter"

  • How do I enter a simple entry field into my design?

    How do I enter a simple entry field into my design?

    Hi,
    Please elaborate your issue. If possible, please provide us a working example.
    Regards,
    Aish

  • Creating a Simple Number Field

    I want to basically create a JTextField only instead of text, numbers including decimals. I tried putting number into a text field but java won't see them as double. I tried the tutorial example with a formatted text field, however, they explain abstract and listeners for validating which I could care less about. I also tried the following code from the tutorial which doesn't work.
    JFormattedTextField ftf = new JFormattedTextField();
    ftf.setValue(new Number(100));
    The compiler says Number cannot be instantiated as it is abstract. How can the tutorial do it? I have had the same problem with other examples in the tutorial such as the Border examples for creating compound borders. The examples don't work because the compiler says Border is not instantiable. It is frustrating. Any help with a simple number field for setting and getting the int or double values as numbers. Thanks.

    Read this section from the Swing tutorial. It does exactly what you want and provides code as well:
    http://java.sun.com/docs/books/tutorial/uiswing/components/textfield.html

  • Simple input field

    quick question:
    How can I avoid upper case conversion when getting value from a simple input field?
    I binded input field to a node and when I get values from the node they are in upper case. I tried to look for alpha conversion field but I didn't see nothing like normal dynpro.
    thanks in advance
    Gabriele

    Hi Gabriele,
    Keep your attribute of type String...... this wont convert whole text in uppercase....
    regards
    Pranav

  • Access to unmapped field of ODS in the update rule of CUBE

    Hi Gurus,
    I have 8 fields in ODS out of which only 5 are mapped to the characteristics in the CUBE. I have to write a start routine in the update rules of the cube. But, I need to access one field, which is in ODS but not mapped to characteristic in the cube.
    So, is it possible to use that field in the logic of start routine. Or do I have to create a new characteristic in the CUBE for that 6th field also.
    Thanks,
    Regards,
    aarthi
    [email protected]

    Hi
    You certaily should insert your infobject field in the cube to populate it. After This you can choose if populate it by direct mapping or by routine.(start routine or transfer routine)
    A classic example of start routine to populate infobject from master data
    tables : /bi0/pcostcenter.
    data : lt_data_package like DATA_PACKAGE occurs 0 with header line,
    lt_costcenter like /bi0/pcostcenter occurs 0 with header line.
    select * from /bi0/pcostcenter into table lt_costcenter.
    lt_data_package[] = DATA_PACKAGE[].
    loop at lt_data_package.
    read table lt_costcenter with key costcenter = comm_structure-costcenter.
    if sy-subrc = 0.
    lt_data_package-/bic/zpcaccgh = lt_costcenter-/bic/zpcaccgh.
    modify lt_data_package.
    endif.
    endloop.
    DATA_PACKAGE[] = lt_data_package[].

  • Addition of a field in ODS

    Hello
               Can anybody tell me how can i add a field to a ODS.
    Regards
    Tarun

    Also consider that the position where you add the new infoobject is important for the runtime of transport into another system, where the ODS object already contains (huge amounts) of data.
    If you change the ODS structure in a development system and transport it to a production system, the underlying database will perform a simple extend if you add new infoobjects at the end. If the new infoobjects are inserted somewhere in the middle, the database will perform an export (to file), deletion in the table, insertion of fields, and import from file again. This has a significant impact on the runtime (factors...).
    Best regards,
    Steen

  • Tracking source system table name for a field in ODS

    Hi Guys,
    I know this is pretty simple for many of you, Being a newbie, pls clarify for me :
    Consider field1 in ODS1. I want to know the database table which is updating that field. From transfer rules i can see which is the source system filed name but from which table that is coming???
          Thanks in advance!!!

    You can find the name of the data source if you right click on the ODS and click on Show Data Flow -- > You will be able to see the flow and get the data source name.
    Once you have the data source name ,  go to transaction RSO2 and see if the data source is based on a table or view or FM ..once you have this info you can analyze the table or the FM to find the source table and field..
    Hope it helps,
    Ashish..

  • Key Fields and Data Fields in ODS

    Hi Guru's ,
    Can u Explain what are Key Field's and Data Field's in ODS,and How they work.
    Thanx in Advance.

    Hi Pradeep,
    An ODS’ key fields forms a unique combination of chars according to which data in the ODS will be summed up. Data fields are additional fields, chars or key figures.
    For example, you have the following key fields:
    Doc No, Doc line item (item no in the doc) and you load the following data:
    Doc# Item# Amount CALDAY
    1234  1        100       26.09.2005
    1234  1        150       27.09.2005
    1234   2        300      27.09.2005
    1235   1        400      27.09.2005
    The first two rows with the same key fields (1234-1) will be aggregated and into ODS will go amount of 250.
    What I said is true if for Amount key figure the ‘Add’ option is set.
    But if you set an ‘Overwrite’ option, then the second record will overwrite the first one and only amount of 150 will go to ODS!
    But if CALDAY is also a key field, then into ODS will go all records without any aggregation, because key fields combination is different for all records.
    So, ODS’ key fields choice and KFs settings are very important for data aggregation in the ODS.
    Best regards,
    Eugene

  • Addition of fields in ODS/Cube till Datasource

    Hi All
    Assuming, I hv a Datasource/copa Datasource replicated and connected till Cube/ODS with data in it,,and Now I am in a need to add extra fields in this pipeline, So plz guide me, on to add these extra fields starting from Datasources,Infosources,Info objects, Transformations(BI 7.0),TransferRules/Update Rules(BW 3.5) if any,,,and then finally Data targets.(ODS & CUBE)??
    THANKS

    Please search in SDN u will get lot of threads which are already discussed about the same....
    Khaja

  • Not getting data for 1 field in ODS

    Hi BW Experts,
    I am loading the data from R/3 to BW.I have loaded the data through PSA.The data is available in New data field. After activating the ODS, for 1 field the data is not uploaded and in the report, the values are not displaying.
    I have checked the Transformations also. it is mapped correctly.But still i am not getting data for that field.
    Thanks,
    Siva.

    Thanks for the Update
    1. What is your Service Pack Level?
      Service Pack is 0016
    2. Are you able to see the data in PSA?
       Yes I can see the data in PSA
    3. After load, are you able to see the value in New table?
       Yes i can able to see the data in New data table
    4. Anywhere, are you doing the SORTING of Data Package?
       No I have not sorted the data Package.I have not written any coding on this
    I have not written any coding in transformation also.
    Thanks,
    Siva.

  • Adding a new field to ODS?

    Hi folks,
    May i know the procedure as to how to add a new field to already existing ODS?
    Thanks in advance
    Dubbu

    >
    Dubbu wrote:
    > Thanks alll for your swift replies,
    >
    > How can i add to the end of the list.?
    > Do the infosource and the updates rules gets effected by changing the structure of the ODS. ?
    >
    > thanks in advance
    > dubbu
    As Siggi suggested you need to add as last element in the DSO if you have data in DSO.
    Just drag and drop your field as the last field.
    Do the infosource and the updates rules gets effected by changing the structure of the ODS. ?
    Your update rule will go inactive as this new field will need mapping.
    You may need to get the vaue for this field from datasource (hence need to manipulate infosource) or you can write routine etc in the udpate rules itself (if thats the req).
    All these change attached to transport should go in fine to your production/Test environment.

  • Hiding a field in ODS

    HI experts,
               may i know how do i hide an Info Object in ODS. I have some confidential data in this field which i dont my report writers to view, is it possible for me to hide this field.
    Thank You,
    John.

    Hi John
    You may try this little thing and let us know if this works(since i haven't done this). In the IC or MP there is an option -Structur-Specific Info object properties(Menu-Extras). You can set this to 'No Display'. I believe this prevents your Report writers to view the data.
    If you want to have this kind of restriction even for Backend developers (eg: SSN num), i think we can make it Authorization relavant and limit the Developer access. But i am not really sure this may cause some other problems..like Developer may not be able to see the entire Row from Cube(SSN EmpName Emp Sal etc)
    Experts please throw some light on this.
    Thanks
    Kalyan Kolli

  • Remove fields from ODS objects with data

    Hi
    Is there a smartway to delete the infoobjects from an ODS without deleting contents? These fields are just added to ODS, and activated the ODS. But, now we donot want them and want to delete these objects from ODS. Any ideas???
    Thanks

    Hi,
    If it will not be possible for you to reload the data to the ODS after deleting, you can try to create a copy of this ODS, move the data from original to copy, delete data in original, make changes and reactivate, and then move data back from copy to original.
    Hope this helps...

Maybe you are looking for

  • Desktop items moving randomly around

    Whenever I interchange my macbook pro with retina from using an external thunderbolt display or not, sometimes my desktop sticky notes will move randomly around the screen. I have them all nicely placed beside each other up in the top left corner, bu

  • How to limit the number of movie clips on stage?

    I am making a game where tempEnemy in an array of enemies gets made on random. Every time the player advances a level, more insects appear. This is how I want it to be, but when the user is high on a level, too many enemies get made that are impossib

  • AirPort Base Station disk username and password not working

    I got a new AirPort Base Station the other day and everything worked fine until I started to set up the networked disk. On my mac it works fine, it just pops up when I connect to the network ( woot for macs ). On my windows it asks for the username a

  • PREQ/PO Header Field Text

    Hi Gurus, I have a situation here, "Can  we add a new text field in the header of the Prequisition and PO? I would like to create a new text field on the Preq called "Approver Notes". I would like the contents of this field to transfer over to the PO

  • Confused with JList...

    Ok... I'm working on a section of code for my GUI app that requires a JList (or something comparable). I've read the tutorials and API, and I'm getting confused on how to do what I want. From what I gather, I need to use a ListModel and a listener, b