How to reconcile records with r/3

Hi gurus,
i did a data load into the data target and it was successful. the was comming from R/3. now my question is how do i reconcile the data in the data targets and r/3, i mean how do i know the number of records which are loaded into bw are the same as R/3. any help is appreciated, and thanx in advance.
Kind Regards
Naveen

Hi Naveen
and welcome on board!
Try to do a search in these forums cause a lot of threads are about this issue...
generally speaking what do you want to do depends a lot from your specific flow!
RSA3 in R/3 helps to reconcile only PSA data with R/3 (if you don't have any modification in the user exit).
About comparison between PSA and provider take a look to the specific document already suggested in the past!
Re: data in cube is different from psa in the production system
Hope it helps!
Bye,
Roberto
(and please don't forget to assign some points to the answers...it's THE way to say thanks here!)

Similar Messages

  • How to show records with zero on dashboard

    hi expert,
    if I have a dimension table product,
    a fact table
    if in the db, there are records with zero values of product A.
    if the logical column for the fact is SUM(...).
    how to show records with zero values on dashboard.
    Use the outer join?
    or other method?
    I dont wanna use outer join because it makes the PRD be so complicated

    hi,
    Pull all the columns to criteria ,it will show NULL for a product
    To get zero,on the fact column use IFNULL(fact_col,0)
    which will look like this
    http://a.imageshack.us/img180/6616/ifnull.jpg
    thanks,
    saichand.v

  • How can I record with GarageBand 1.3 in the background using other app?

    How can I record with GarageBand 1.3 in the background using other app?
    I use iPad 2 with iOS 6 and GarageBand v1.3.
    I'd like to play an other app like Sunrizer synth while the GarageBand is recording in the background in a track.
    By now I can do it only using the build-in mic of iPad, but this is not the point.
    Can I record other apps in a GarageBand track?
    Thanks a lot for your time.

    I suspect you are probably correct about the reasoning, although there are already a myriad of ways to do that.
    Don't get me wrong - I never said I like this. But it is consistent with other Apple applications, that are similar restrictive; you cannot take a screenshot, when dvd-player is running for example.
    That are the moments, when I am glad that MacOS X is a unix system under the hood

  • How-To allow records with Overlapping Time from SAP R/3

    Hi guys,
    Made reference to SAP Note 336229.
    Maintained my Transfer Rules of <b>Data Source 0HR_PA_PA_1</b> to <b>Info Source 0HR_PA_PA_1</b> and all is green! Unfortunately, still <b>NO</b> data and error IDOC message is " <i>The data request was a full update. In this case, the corresponding table in the source system does not contain any data</i>."
    "<i>The extractor of the DataSource reads the master data tables of the Employee (0EMPLOYEE) and person (0PERSON) InfoObjects and makes changes to these time-dependent attributes available as headcount changes</i>"...<b>says SAP</b>
    Info Object person (0PERSON) works!!!, however Info Object(0EMPLOYEE) is giving me problem whereby <b>in SAP R/3</b> Data Source (Employee - Education and Training) 0EMPLOYEE_0022_ATTR <u>allows</u> time overlapping of records, <b>BUT BW</b> generates an error " The time interval ['99991231'/'19930104'] & (from/to) for the data records 46 and 47 overlaps in characteristic 0EMPLOYEE "
    For example, lets assume there is Employee X with the following entry in SAP R/3.
    Begin Date||| End Date ||| SubType
    01.09.2003||| 01.09.2004||| Professional Cert.
    01.09.2003||| 01.09.2006||| Degree
    SAP R/3 allows this overlapping of time records however, BW does NOT. How can I tackle this overlapping issue in SAP BW?
    With much appreciation!

    Hi guys,
      Please assist to resolve this.
      I attempted to assigned 0DATETO and 0DATEFROM to my attributes of 0EMPLOYEE, but it gives me the following error
    <b>  Characteristic 0EMPLOYEE: Attribute 0DATETO cannot be used w. time-dependent attribte</b>
    <b>  InfoObject 0DATETO cannot be used as an attribute if attibutes already exist that are time-dependent. Attribute 0ANSALARY is such an attribute. A field in the InfoObject 0DATETO is automatically generated in the master data table.</b>
      Once again, what I want is to be able to allow the Records with HighDate in R/3 into my BW Cubes.
      Please please assist !

  • How to display record with most recent date in sapui5?

    Hi
    I have a local json data with me, in which I have number of records.
    And in each record I have an "AENDATE" as a date property.
    Now I want to display the record with most recent date in the records.
    How I can I do it......????????
    Please help me with this.
    Thanks
    Sathish

    How about sorting your json model descending, and display only first (index:0) item?

  • How to insert records with LONG RAW columns from one table to another

    Does anybody know how to use subquery to insert records with columns of LONG RAW datatype from one table to another? Can I add a WHERE clause in the subquery statement? Thanks.

    Insert into ... Select statements are not supported for long or long raw. You will have to either use PL/SQL or convert your long raw to blobs.

  • How to Reconcile payment with invoice made gaainst down payment request

    Dear All,
    There is a down payment request against which an incoming payment has been made. The actual ar invoice is booked at a later date. Now How do I reconcile the payment made with this invoice. When I try to reconcile it with the invoice using internal reconciliation it gives an error, you cannot reconcile a payment made against down payment request from here.
    Please suggest if you know any solution for the same.
    Regards,
    Husein

    Hi Neeraj............
                   I think there is no need to reconcile as its already a linked with AR Invoice. WHen you do incoming payment on the basis of AR Down Payment then it that down payment reference you should give to AR Invoice. Have you given such link as its provision is there in SAP.......
    Regards,

  • How to fetch records with two recordset

    i want fetch records from the table using two recordset like
    ResultSet r1=stmt.executeQuery("select * from pf_data");
    i want to take another recodeset
    ResultSet r2=stmt.executeQuery("select * from finyr");
    I am using Microsoft SQL server as my database.
    I am also closing the recordset like r1.close();
    then i cannot take two recordset at the same time.

    Hi,
    This is an example of a Top-N problem, and here's one way to do it:
    WITH got_r_num AS
        SELECT  item_id, supp_id, rnk                         -- RANK is not a good column name
        ,       DENSE_RANK () OVER ( PARTITION BY  item_id    -- Just guessing
                                     ORDER BY      rnk
                                   )  AS r_num
        FROM    table_x
        WHERE   item_id  = 2      -- If desired
    SELECT    item_id, supp_id. rnk
    FROM      got_r_num
    WHERE     r_num    <= 2
    RANK is the name of a built-in function in Oracle, so it will cause lots of trouble if you use it as a column name.  (The RANK function is closely related to DENSE_RANK, used above.)
    I hope this answers your question.
    If not, post  a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Point out where the query above is giving the wrong results, and explain, using specific examples, how you get the correct results from the given data in those places.  If you changed the query at all, post your code.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • How to reterieve records with "&QUOT"

    Hi,
    I am trying to reterieve records where "&QUOT" exists in data, and replace this with single quote. i have used the following queries but it does not work.
    select idx,source,OFF_NAME,OFF_NAME_FORM, WEBSITE_FORM
    from TT
    where OFF_name_FORM like '%' || chr(38) || 'QUOT'
    select idx,source,OFF_NAME,OFF_NAME_FORM, WEBSITE_FORM
    from TT
    where OFF_name_FORM like '%' || '&' || 'QUOT'
    can anybody let me know how to get the required output.
    Thanks

    Sorry, I forgot to tag it. Please try this one
    SQL> set define off
    SQL> with tt as (
      2  select '&QUOT,IT FIGURES&QUOT' off_name_form from dual
      3  union all
      4  select '&QUOT,CRAZY PRICES&QUOT' off_name_form from dual
      5  union all
      6  select '&QUOT,UGG&QUOT, AUSTRALIA' off_name_form from dual
      7  union all
      8  select 'IAN &QUOT,SLIM&QUOT, MURRAY' off_name_form from dual
      9  union all
    10  select 'PRINTING &QUOT,R&QUOT, US' off_name_form from dual
    11  union all
    12  select 'EUROBAR ''N&QUOT, GRILL' off_name_form from dual
    13  union all
    14  select '&QUOT,WHAT EVER!&QUOT, CORP' off_name_form from dual
    15  )
    16  select replace(off_name_form, '&QUOT', '''') from tt
    17  where OFF_name_FORM like '%&QUOT%';
    REPLACE(OFF_NAME_FORM,'&QUO
    ',IT FIGURES'
    ',CRAZY PRICES'
    ',UGG', AUSTRALIA
    IAN ',SLIM', MURRAY
    PRINTING ',R', US
    EUROBAR 'N', GRILL
    ',WHAT EVER!', CORP
    7 rows selected.
    SQL> set define &Message was edited by:
    smoradi

  • How to suppress records with vzero value in a union report in OBIEE?

    Hi
    I have a Union report ,Rep1 union Rep 2,with a cloumn A in rep1 and a dummy column in place of column A in rep 2.
    I want to restrict the records where A= 0 in the union report.
    How to go abouth this.
    Thanks in advance !!

    hi,
    In report1 let the column be as it is ,why are you changing the f(x) to case statement.Did you check is data there in that column of report1.
    In the union report make tat dummy column as 0 or 1 accordingly as per your requirement.So it would retrieve all the values of column of report1.
    Check the join conditions established and play with the joins like give a full outer join and check if the data is coming including 0's if so then you can pply filter on that column saying column not equal to 0,so the remaining values gets populated.
    Cheers,
    KK
    Edited by: Kranthi.K on May 18, 2011 2:03 AM

  • How do I record with presenter notes in view?

    I want to develop and rehearse a presentation by recording it.
    The ideal way to do that would be by having the presenter display visible while I record it. That would allow me to view my notes, next slide and timing as I record.
    However, the default seems to be the full slide display. Is there anyway to change this?
    Would having a secondary display make a difference?
    Also is there a way to rerecord only one slide at a time?
    Thanks.
    Paul

    Not sure you can do it with just one display. I tried and can't figure out a way. However, it's a snap with two displays.
    First go to your system preferences and open up displays and make sure to UNCHECK mirror displays.
    Then go to keynote preferences and under slide show check the box to present on primary or secondary display (depending on how you have arranged them in sys prefs) then under presenter display you can use the alternate display to view the presenter info.
    This is always the way I give presentations. I use the projector to show to audience and my laptop as the presenter display. I can always see my notes and what is coming next, the time, etc, but the audience only sees the current slide.
    As a side note by NOT mirroring your displays you can create a "clean wallpaper" on the projector and you audience can't see what you doing on your primary screen. This is great if you want to cue something up but don't want your audience to see it before you are ready.

  • How to Reconcile FI with COPA

    Hi,
    I need to do Reconciliation between FI -COPA. But bothe the values are not matching with each other. I have executed COPA Assessment Cycle and settled All Orders.
    Now why the differance amount is coming between FI-COPA?
    how to analyze the differance? Kindly guide me in this regard.
    Thanks
    Surya

    Hi
    Try T-code KEAT. This transaction monitors the integration among CO-PA, SD and PCA. It shows the differences between the modules how to trace them (for example it shows the items (invoices) that were not transferred to CO-PA or that are transferred with different values. It shows how the information flows to the value fields in CO-PA.
    Another thing that should be taken into account when comparing CO-PA and PCA is that there may be certain items - direct postings from FI, that without the proper customising (linking to the value fields in CO-PA), could not appear in CO-PA. Do you have manual postings to COGS, say for adjustments of COGS in FI?
    If the above does not help, you can make the reconciliation manually, by comparing the line items in PCA and CO-PA,. For example with VLOOKUP in Excel - you can compare the total amounts by separate invoices,  by plants, or by products or whatever, whcih can help you identify the reason for the difference. I suppose other methods might work as well.
    Regards

  • How to display records with radio buttons

    Well,
    <b>This is what I have right now:</b>
    When I execute  the Sales Orders report, it takes me to a selection screen with fields (VBELN, AUDAT, UNAME,....). I have Display, Create and Edit buttons below the selection criteria. The database table will have a DELETE FLAG.
    <b>This is what I need to do:</b>
    When I click on Edit button, it should take me to a new screen (this screen will have 3 buttons: Change, Delete, Undelete) with records based on the selection criteria. Also each record should have radio button.
    So if I select a record and <u>click on CHANGE</u> button it should take me to a new screen with only that record and the fields should be editable. Upon changing the fields, the records should be updated in the database.
    If I <u>click on DELETE</u> button it should set the DELETE FLAG in the database, so that when I click on Display button in main screen it shouldn't show me this record next time.
    If I <u>click on UNDELETE</u> button it should reset the DELETE FLAG.
    <b>This is what you get:</b>
    Reward points if helpful

    You can use AT SELECTION-SCREEN OUTPUT event to capture the dynamic screen changes like selecting the radio buttons, once you captured the user action then you can call the other screen and you can work on that.
    regards,
    Dj
    reward, if its useful

  • How to Insert Record with multiple rows

    Hello alls,
    i want to ask something... how to use insert record server behavior -  php myysql, to insert multiple rows from textfiled?
    thanks.

    It would have been more helpful if you had shown me your existing code. However, this shows the basic principles.
    First of all, the name of each input field in the form needs to end in an empty pair of square brackets like this:
    <input type="text" name="field_name[]" . . .
    This results in $_POST['field_name'] being treated as an array of the values in each input field. Change field_name to the actual name of the input field. Without the square brackets, only the last value is submitted by the form.
    The Insert Record server behavior code looks like this:
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO my_table (field1, field2) VALUES (%s, %s)",
                           GetSQLValueString($_POST['field1'], "int"),
                           GetSQLValueString($_POST['field2'], "text"));
      mysql_select_db($database_connAdmin, $connAdmin);
      $Result1 = mysql_query($insertSQL, $connAdmin) or die(mysql_error());
      $insertGoTo = "another_page.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    You need to amend it like this:
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      mysql_select_db($database_connAdmin, $connAdmin);
      // loop through the input values
      for ($i = 0, $len = count($_POST['field1']); $i < $len; $i++) {
          $insertSQL = sprintf("INSERT INTO my_table (field1, field2) VALUES (%s, %s)",
                                GetSQLValueString($_POST['field1'][$i], "int"),
                                GetSQLValueString($_POST['field2'][$i], "text"));
          $Result1 = mysql_query($insertSQL, $connAdmin) or die(mysql_error());
      } // end loop
      $insertGoTo = "another_page.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    This uses a for loop (see http://docs.php.net/manual/en/control-structures.for.php) to access each element of the $_POST['field1'] and $_POST['field2'] arrays (see http://docs.php.net/manual/en/language.types.array.php).

  • How to select records with certain fields unique while others not

    Hi,
    For example, I have table with 6 columns, called 'A', 'B', 'C', 'D', 'E', 'F'. There's no unique constraint built-in, and I would like to select records that have both column 'A' and 'B' unique. What should the sql statement look like?
    Columns 'C', 'D', 'E', 'F' can have same data in different records or null, not a concern.
    Thanks.

    select A, B, max(C), max(D), max(E), max(F) from <your_tab>
    group by A, B
    select * from (select t.*, row_number() over (partition by A,B order by null) rn from <your_tab> t)
    where rn=1they are not the same, but seem to meet your needs both.

Maybe you are looking for

  • New ipod User 60GB

    Hello fellow ipodians! I just purchased a black 5th Gen 60gb ipod with video a few days ago. I love it so far. Nice piece of equipment. I've been experimenting with the whole itunes transfer to the ipod, transferring a few videos I had in my vid libr

  • Oracle Financial Services Balance Sheet Planning Installables

    Hi Everyone Can anyone let me know where can we find Oracle Financial Services Balance Sheet Planning Installables (Software to install) I am not able to find in Oracle e delivery -> Oracle enterprise management Can you please navigate me to that sof

  • Indesign Scripting Object Model

    Hi, Is there some reference documentation that provides detailed information on the Indesign object model as exposed to the scripting interface (javascript)? I have done fair amount of scripting in Illustrator so I was looking for the Indesign equiva

  • OEL 5 mouse problem

    Newbie question: I have OEL 5 istalled on vmware and there is a problem with the mouse wheel: at scroll down it works fine, but at scroll up it goes fast at the bottom of the page (web page, pdf, txt, etc...) It seems that the mouse is not configured

  • I want to update my software from 10.5.8

    I want to update my software but everytime it say i need at least v10.6, i'm running off OS X 10.5.8 but can't find 10.6 on here just 10.6.1?