Backend table update need everytime to check consistency in Admin tool

OBI 11.1.1.7.1
Admin tool 11.1.1.7.1
DB 11g R2
When i update some column in database from back end, the updated value doesn't appear in bi reports even if i refresh metadata.
I've to open Admin tool then check consistency in Physical and business model then it update the values in BI report. Why such ? any idea?
Regards!

Thanks Srini.
I did this but still no luck. we are daily loading data from Informatics 9.0 about a 100 rows all.
but i see today, drilling down to date, it showed only data till 21-Nov.(last date i did refresh for other things). i had to refresh again only to see the updated data till yesterday.
what could be the reason?
Regards!

Similar Messages

  • Update backend table from WebDynpro?

    Hi,
    I need to create entries in the backend table HRUS_D2.  I found that the FM used for this table is RH_UPDATE_SUBST_LIST_SERVER.
    I want to write a Java WebDynpro application display all the fields on the webpage which represents above table and update the backend table, how do I do it? 
    Do I need to get any more information about the table like BADI or BAPI or write something to update table HRUS_D2? 
    Please let me know.
    Praveen

    Hi Praveen
    You can refer the sample tutorials available in SDN. Things you require to execute the BAPI from WD Java is JCO and Backend access.
    You will find lot of sample tutorials here [/docs/DOC-8661#section10 [original link is broken] [original link is broken]|/docs/DOC-8661#section10 [original link is broken] [original link is broken]]
    Refer this [PDF|https://www.sdn.sap.com/irj/scn/logon?redirect=https%3a%2f%2fwww.sdn.sap.com%2firj%2fsdn%2fgo%2fportal%2fprtroot%2fdocs%2flibrary%2fuuid%2fa00f7103-6790-2a10-ac9c-fcac7c5b18a3]
    Abhinav
    Edited by: Abhinav Sharma on Aug 25, 2009 2:29 PM

  • BCALV_EDIT_03 - Need the table update function

    I am fairly new to OO programming and have worked through the various sample programs. I am currently using BCALV_EDIT_03 and _04 to write a table maintenance program.
    I kind of have figured out how the delete and insert function works but unfortunately in sample program _03 the final table update function is missing.
    What I am after is that I get all the changed records from the grid and update the external table just with those records.
    Could somebody post some sample update code that I could check out?
    Thanks in advance.
    Gerd

    Table update as in, database table update or ALV table update ?
    ALV Table update will be done automatically, in case you have used the method : set_table_for_first_display
    As you also quote that you are checking out BCALV_<b>EDIT</b>_03, I will just clarify this point, all changes made to the table are triggered by the EVENT DATA_CHANGED and this event has the necessary fields, from which you can come to know which rows and what values have changed. You need to use this DATA_CHANGED event and update your internal table. This is then shown in SET_TABLE_FOR_FIRST_DISPLAY in PBO.
    In case you are talking about database update and if it is a custom table, then you have to use the direct update.
    In case it is a SAP table, you might let us know which table it is, and probably some of the experts here can let you know the Function Module, BAPI or any method of a class to use.
    In case you need a good tutorial help, you can find it in Serdar Simsekler's
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an easy reference for alv grid control.pdf
    Let me know if I am way tangent here or I could be of help to you.
    Regards,
    Subramanian V.

  • How check table update program, FM etc..

    Hi ,
    I need to prepare a document for table the KNB5, the table contain 11 fields, need to prepare a document for all the fields how they are updating and what Programs, Fucntion Module, Module Pool/enhancement etc.. involved for table updating .
    I will use where used list for each field and get list programs, Fucntion Module, Module Pool/enhancement etc. involved but in what basis, I will confirm weather this program or FM really using table updates or not.
    Shall I search with update command or with table? is any other way?
    Thanks in advance.
    Mahhe

    This is kind of tricky. KNB5 is customer dunning data table which (as far as i know) is updated by transaction XD01/XD02.
    So, you might want to run a SQL trace and modify/update the data. Then you need to analyze the trace to see how it is being updated. Then again, you need to put break points and see what is going by running the same again.
    Just an fYI..... Check out customer master XD02 and company code data - Correspondence tab for dunning info and fields.
    good luck

  • I need to add check whether 21 fields of a internal table are empty or not.

    Hello,
    I need to add check whether 21 fields of a internal table are empty or not.How can we write a code for the same wand what would be the correct syntax for it.
    I tried entering all the fields in the IF loop with AND condition but its giving syntax error.Perhaps this is because the lenght of the IF condition would be more than the allowed one.

    Hi,
    After the select quiery.
    If not itab is initial.
    Message 'Table is not empty'    type 'I'.
    Endif.
    Regards,
    Jagadish.

  • Update table a columns using columns from table b (values of 2 columns of table b need to taken from table c)

    Guys,
    I need to update table A columns col3, col4, col5 and col6 by table b columns col3, col4, col5 and col6 however table b col5 and col6 values need to come from table c col1.
    Means table b col5 and col6 have values in it however i need to replace them with value from table c col1 and need to update table a col5 and col6 accordingly.
    table a and table b has col1 and col2 in common.
    i am trying something like this.
    Update a
    a.col3 = b.col3,
    a.col4 = b.col4,
    a.col5 = (select col1 from table_c c where c.col2=b.col5),
    a.col6 = (select col1 from table_c c where c.col2=b.col6)
    from table_A a inner join table_b
    on  a.col1=b.col1 and a.col2=b.col2
    can someone help me reframe above update query?
    thanks in advance for your help.

    Try the below:(If you have multiple values, then you may need to use TOP 1 as commented code in the below script)
    create Table tableA(Col1 int,Col2 int,Col3 int,Col4 int,Col5 int,Col6 int)
    Insert into tableA values(1,2,3,4,5,6)
    create Table tableB(Col1 int,Col2 int,Col3 int,Col4 int,Col5 int,Col6 int)
    Insert into tableB values(1,2,30,40,50,60)
    create Table tableC(Col1 int,Col2 int,Col3 int,Col4 int,Col5 int,Col6 int)
    Insert into tableC values(100,50,30,40,2,2)
    --Insert into tableC values(200,50,30,40,2,2)
    Insert into tableC values(100,60,30,40,2,2)
    Select * From tablea
    Update a Set
    a.col3 = b.col3,
    a.col4 = b.col4,
    a.col5 = (select col1 from tablec c where c.col2=b.col5 ),
    a.col6 = (select col1 from tablec c where c.col2=b.col6 )
    from tableA a inner join tableb b
    on a.col1=b.col1 and a.col2=b.col2
    --Update a Set
    --a.col3 = b.col3,
    --a.col4 = b.col4,
    --a.col5 = (select Top 1 col1 from tablec c where c.col2=b.col5 Order by c.Col1 asc),
    --a.col6 = (select Top 1 col1 from tablec c where c.col2=b.col6 Order by c.Col1 asc)
    --from tableA a inner join tableb b
    --on a.col1=b.col1 and a.col2=b.col2
    Select * From tablea
    Drop table tablea,Tableb,TableC

  • Updated to IOS 8.02 everytime I check e-mail it deletes everything in my inbox.  Help

    Updated to ISO 8.02 and everytime I check my e-mail it deletes my entire inbox.  Help please

    What type of mail account is this (POP, IMAP, .Mac)? Who is the provider? Do you access it from more than one computer? How do you know it’s Mail that’s deleting those messages and not some other agent? More info, please...

  • HT1338 I have a Mac OS X 10.5.8 running verrry slowly. The HD still has 113.3 GB free.  Could I need a Safari update or Flash update? No updates found when I check. ??Thanks.

    I have a Mac OS X 10.5.8 running verrry slowly. The HD still has 113.3 GB free.  Could I need a Safari update or Flash update? No updates found when I check. ??Thanks.

    Is it slow with everything you do, or just with Safari?

  • Auto update of Ztable when ever BSID or BSAD tables updated

    Auto update of Ztable when ever DB table updated     
    Hi experts
    I want my Ztable get updated automatically when ever a record is created or updated in BSID or BSAD tables.
    Here clear requirement
    Generally using Company code & Allocation number  ( 18 char ) my programs access BSID & BSAD tables it is taking very long time for execution almost more than 30 minutes ( data in millions ).
    Step 1.
    I created a new Ztable with limited fields Company Code, Customer, Document, Allocation Number and Posting date.
    Step 2.
    Before look into BSID or BSAD my program searches Ztable for Customer number & Document number using Allocation field and Company code.
    Step 3.
    Once get the Customer & Document numbers accessing BSID & BSAD table is very easy (now just taking less than 1 minute).
    Created a new program to update Ztable every day but BSID and BSAD are live table so I want my Ztable get updated immediately when any entry posted in BSID or BSAD
    Please help me
    Satya
    Singapore

    You need to check what is the procedure (T-Code) from which the data gets updated into these tables.
    For example
    when we craete a material from MM01 the data gets updated in the corresponding table i.e. EKPO.
    In same way you need to find the process and then you can use BTE (Busineess transaction events) for that process. BTE are only for FI module and these tables are also related to FI .

  • How to send the PDF file to FAX will the nast table updates

    Hi all,
    How to send the PDF file to FAX. Will the nast table updates ( which fields updates ).
    Need is once fax is send for that delivery, again it should not fax again. Will the nast table helps to check the sent fax.
    Please give me sutable suggessions....

    Have you checked Forums » Community Discussions » Code Snippets 
    I believe there were some examples on converting/sending PDF.
    Or check FM 'SO_DOCUMENT_SEND_API1' and documentation for it.

  • Add validations to z table update view

    Hi all,
    i have a z table updated by a z transaction that uses an update view generated in se11. The view inserts and/or updates one field of several registers and i need to check if the sum of them is less than certain value.
    Thanks in advance for any help.

    Hi Ebaristo,
    You would need to use table maintenance events "01" and "05" so that the check will be executed when you changes an existing entry as well as when you create a new entry.
    There is good article in SDN on how to use events: at http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8129f164-0a01-0010-2a8e-8765287250fc?quicklink=index&overridelayout=true
    Regards,
    Ramnivas

  • Chnage pointers table updation

    Hello,
    I am updating the EKPO-Netpr field using programm.After updation i am trying to extract the data for BW.But there is no change pointer are created for this table updation.
    Can you please clarify,How to create change pointers for table updation?
    Best regards,
    Shyam

    Hi ,
    You need to create a change document object for that from transaction SCDO .
    After that you need to call the automatically created function module (during creation of change Doc. Object)
    from your program where you wrote the update or insert statement after those statement.
    Now those changes will reflect on the database table CDPOS and CDHDR .
    Please check the link  - -
    [https://wiki.sdn.sap.com/wiki/display/ABAP/Change+Document]
    Regards
    Pinaki

  • Need to Perform Check again and again in Oracle Workflow

    Hi All,
    I have one requirement in Oracle Workflow where if there is any hold applied on any Invoice and if the hold is released then workflow should get cancel immediately.
    I have one workflow activity which can check the current status on workflow by querying AP_HOLDS_ALL table.
    How I can perform the same check again and again to check the current status so that I can immediately cancel the workflow?? Please suggest if anybody has any idea like do-while Loop etc to achieve the requirement.
    Thanks.
    Viswas

    WF Definition loops are expensive for the background process and take good amount of data in wf_item_activity_statuses and wf_item_activity_statuses_h. I would recommend defining a business event to be raised from the form/module where the base table is updated. Then you create a subscription to that event and the function associated to that subscription can abort the workflow process.
    So there would not be a need to constantly check for a condition.
    Regards,
    Alejandro

  • Checkbox onClick table updates

    Hello,
    Ok, I'm struggling here. I have a list. The first item is a checkbox, I can check/unckeck the box without any trouble. What I can NOT do is update the table based on when the box is unchecked. I've created a Tabular Form and want to update a column on the record being reported on this form based on weather the box is checked or unchecked.
    If the box is currently checked, based on the data in the table, and the user un-checks the box, I need to update the value in the table. Since Oracle only returns checked items, that won't work. I don't want to update the entire table every time a user unchecks record.
    I'm sure it has to do with the onClick procedure, I just can NOT seem to get this to work.
    What I need is: If the box was not originally checked but the user clicks the checkbox so that it is checked then update the record with this primary-key-value marking the yes-no column with a 'Y'. If the box was originally checked and the user unchecks the box, mark it with a 'N'.
    Please help.
    Thanks,
    Don.

    Don:
    Make these modifications.
    For the query ,modify the checkbox item's value to be a concatenated string of
    EMP_ID.<Team_Member_Status>.<team_member>
    select apex_item.checkbox(1,EMP_ID||'.'||decode(team_member,'1','Y.Y' ,'N.N')
    ,decode(team_member,'1','CHECKED' ,Null) || ' onClick=setVal(this)') "On Team",
    apex_item.text(2,Fullname)
    from employees;Add the Javascript below to your page
    <script>
    function setVal(cb) {
    // split the value of the chekbox
    vals=cb.value.split('.');
    //set third element of the chekbox value string to indicate users new selection
    if (cb.checked)
       vals[2]='Y'   
    else
       vals[2]='N';
    // put the value of checkbox together
    cb.value=vals[0] + '.' + vals[1] + '.' + vals[2]
    function setAll() {
    cbs=document.forms[0].f01;
    // set all checkboxes so that each can be refereced in the g_f01 array
    for (i=0;i<cbs.length;i++){
        cbs.checked=true;
    // submit the form
    doSubmit('SUBMIT')
    </script>
    Set the SUBMIT button of your page to re-direct to the URL
      javascript:setAll
    Now, your after submit process can access each checkbox (via the g-f01 array)
    and the value of the checkbox will be a concatenated string formatted as
    <emp_id>.<original value of team member>.<new value of team member>
    You can now split the concatenated string into its components. Comparing the old and new settings of the 'team member' components will let you decide whether the record corresponding to the 'empid' needs to be updated or not.
    Hope this works for you.
    Varad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Why do Apps on my iPhone show updates but when I check there are no updates?

    Why do Apps on my iPhone show updates but when I check there are no updates?
    I check my Apps on my MacBook and it says there is 1 update but when I check that there are none.
    Then I sync my iPhone with my MacBook and my iPhone says there are 7 updates for my Apps.
    This is very confusing.  I wish someone could fix this and make it simple and accurate to use.

    Sometimes the update notification comes on but updates themselves do not appear if the iOS is not appropriate for the update.  For example, I have an original iPad, thus limited to iOS 5.1.1, but an app I use has an update that requires iOS 6.1.3.  So I have a consistent update notification but cannot get the update.  So, check your iOS and see if it is up to date.

Maybe you are looking for