AP_INVOICE_DISTRIBUTIONS table is blank

Hi
I have uploaded "STANDARD" and "PREPAYMENT" invoices using ap_invoices_interface and ap_invoice_lines_interface tables and run the concurrent. Everything is imported successfully but the ap_invoice_distributions table is blank while data is appearing on invoice line level distribution window.
Please guide me what is exactly happening?
Thanks & Best Regards
Waqas Hassan

Hi
We have the same issue after import ap invoice. Now, we need to validate the invoice after import and ap_invoice_distributions data will be created.
I think it is because the invoice with the tax line, please try to remove tax line and use tax_code to replace tax_line.

Similar Messages

  • Data in active table showing blank value.

    Hello All,
    I am loading the data from write opt DSO to DSO.
    I have written an END Routine to populate a field (zfield)
    when i load the data to the ODS , an dcheck the data in the new table of ODS it shows the data for the zfield.
    But after activating the data for ODS it becomes blank.
    Why does it happens?
    Thanks.
    Vinay

    Hi Vinay,
    I am not very sure but I guess we will have to do some mapping (kind of dummy e.g. constant 1) for the fields we are populating in END routine.
    I guess you must have done that coz you are getting data in new table..even then check once.
    Gaurav

  • Why "Modify itab index sy-tabix." makes internal table content blank?

    We have an internal table itab which looks like to have the following content:
    A---B---C
    1----3----
    2----2----
    We would like to get the column C value in this internal table itab by summing Column A and Column B, and then fill C column values into this internal table. We know that the program would looks like:
    Loop at itab into wa_itab.
        wa_itab-C = wa_itab-A + wa_itab-B.
        Modify itab index sy-tabix.
    EndLoop.
    But after executing the above code, all itab becomes blank. Through debugging, find it's caused by the statement "Modify itab index sy-tabix.".  Could any ABAP expert here let us know the reason and we will give you reward points!

    hi,
    what you tried is correct.but instead of using
    modify itab index sy-tabix
    use
    modify itab index sy-tabix from wa_itab.
    the reason for blank data is you are not mentioning from where that record is to be updated.your specifying the record using index.one thing is no need to use index also because in a loop you are modifying so automatically it will take you to the record.
    try the following code.
    types:begin of it,
         a type i,
         b type i,
         c type i,
         end of it.
    data:itab type standard table of it.
    data:wa_itab type it.
    wa_itab-a = 3. wa_itab-b = 4.
    append wa_itab to itab.
    Loop at itab into wa_itab.
        wa_itab-C = wa_itab-A + wa_itab-B.
    Modify itab index sy-tabix from wa_itab.
    *you can use Modify itab from wa_itab.
    EndLoop.
    loop at itab into wa_itab.
    write:wa_itab-a,wa_itab-b,wa_itab-c.
    endloop.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Apr 8, 2008 5:49 PM

  • Spry Table displaying blank in IE9

    Spry table created in XML using CS5 (SpryData.js - version 0.52 - Spry Pre-Release 1.6.1) at http://www.jacquipatterson.com.au/slideshow_celebrant.html
    The table displays as required in Firefox, Chrome, Navigator but draws a blank page with IE9. I have searched all over for a similar case but to no avail.
    I would be most praisefull if someone has a solution to this annoying problem or has a suggestion on how to get around it.

    Change line 35 to
    var slides_120609 = new Spry.Data.XMLDataSet("http://www.jacquipatterson.com.au/Slideshowjune.xml", "Root/Row", {sortOnLoad: "venue", sortOrderOnLoad: "ascending"});
    and remove line 195
    Gramps

  • Data type could be same base on source table for blank column

    We have an employee table as mentioned structure.
    EMPNO NUMBER(4),
    ENAME VARCHAR2(10),
    JOB VARCHAR2(9),
    MGR NUMBER(4),
    HIREDATE DATE,
    SAL NUMBER(7,2),
    COMM NUMBER(7,2),
    DEPTNO NUMBER(2)
    I want to create a view base on the same/exact structure data type-length. So is there any way we can define Data type while creating view.
    Actually, I need to create a view base on above structure but only want to get deptno and sum of salary column from emp table and rest of column will remain blank.
    Thanks

    Something like this???
    CREATE OR REPLACE VIEW v_tmp AS
         SELECT NULL empno,
                NULL ename,
                NULL job,
                NULL mgr,
                NULL hiredate,
                sal sal,
                dept_no
           FROM employees
       GROUP BY dept_no;
       Cheers,
    Manik.

  • Viewing custom Z tables with blank authorization group

    I'm trying to view all the Z tables without any authorization group (blank) in TDDAT.  It only displays Z tables with &NC& or other valid groups we assign.  Is there another table I can query to show ALL Z tables without an auth group?
    Thanks.

    > It only displays Z tables with &NC& or other valid groups we assign. 
    Oops, sorry. Martin had already mentioned this.
    &NC& is not a valid group, it is a symbolic group which is the equivalent of a blank for the table - except that a view had been created for it and during that process no authorization group was set either. This also used to be the default, which doesn't really make sense... hence all the values.
    If you take a look at FM VIEW_AUTHORITY_CHECK then you will see how it works and which tables are used.
    Cheers,
    Julius
    Edited by: Julius Bussche on Feb 13, 2010 10:01 AM

  • JApplet of table drawing blank screen

    Hi,
    I got a simple table applet which is supposed to show the table in accordance with the specs set in the applet. However, when I am running this applet it is showing blank gray screen. Cannot figure out where the problem is. Any help is appreciated in advance. Thanks.
    THE CODE:
    // Imports
    import java.awt.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    import javax.swing.border.*;
    public class SimpleTable extends Applet {
    private JPanel topPanel;
    private JTable table;
    private JScrollPane scrollPane;
    public void init()
    setSize( 300, 200 );
    setBackground( Color.gray );
    //Create a panel to hold all other components
    topPanel = new JPanel();
    topPanel.setLayout( new BorderLayout() );
    // Create columns names
    String columnNames[] = { "Column 1", "Column 2", "Column 3" };
    // Create some data
    String dataValues[][] =
    { "12", "234", "67" },
    { "-123", "43", "853" },
    { "93", "89.2", "109" },
    { "279", "9033", "3092" }
    // Create a new table instance
    table = new JTable( dataValues, columnNames );
    // Add the table to a scrolling pane
    scrollPane = new JScrollPane( table );
    topPanel.add( scrollPane, BorderLayout.CENTER );
    }

    Like I said before. You forgot to add your topPanel to the applet.
    Be patient. Don't cross-post.
    http://forum.java.sun.com/thread.jsp?forum=54&thread=298900

  • AGR_HIER table has blank entries for type SAP_BW_BTMP

    Hi
    Normally I can find out which Web Templates are available from which role by looking in table AGR_HIER and select Extended name=SAP_BW_BTMP.
    When I look in the table now, the Unique ID field is blank for the newest added entries. Has SAP changed the way these informations are stored? Where can I find the information now?
    Kind regards
    Morten Ellgaard

    I've previously used table AGR_BUFFI as this includes URL links of the form
    <bsp_protcl>://<bsp_server>/sap/bw/BEx?cmd=ldoc&template_id=Z0QUERY_TEMPLATE_ORIGINAL
    Would searching for the &template_id= values give you the info you are looking for?
    I can see what you were looking for in AGR_HIER via Extended name = SAP_BW_TEMPLATE on our BI systems which are on BI 7, so still seem to holding such info.
    If I compare AGR_HIER with AGR_BUFFI I can see such info via AGR_BUFFI, which as it only holds the links and not the full menu structure seems a bit clearer to me.
    Edited by: Chris Haigh on Jan 26, 2010 10:51 AM

  • AP Invoices Records Rejected but Error Table is blank

    Hi,
    I am uploading total 300 AP Invoices using following Interfaces:
    ap_invoices_interface
    ap_invoice_lines_interface
    but only 22 invoices are being rejected.
    But the tension is the ap_interface_rejections is blank.
    how could I trace the errors?

    I got the error. It's a Bug, following is the exact reference:
    Bug 8739726: PAYABLES OPEN INTERFACE IMPORT 'REJECTS' THE RECORDS, BUT DOESN'T DISPLAY ERRORS

  • Removing (blank) from Pivot Tables Populated from Data Connection

    It took me a long while to fix this one (and a long time to search, because it's a funny one to try to use boolean logic for) and I thought I would share because I've seen a score of folks out there looking for this.
    If you have a pivot table with blank values in the row/column area instead of values, Excel automatically populates the cell with (blank).  The word blank shows up in any cell that doesn't have a value, but what if you don't want all those ugly (blank)
    values showing up in your report?
    If you're pulling the data from an outside source, like a SQL server (in my case from the Project Server Reporting database) then you can't just change the source data, so you seem pretty stuck.
    My coworker and I came up with the following fix:
    Select the entire sheet.  Use conditional formatting to find all cells that contain the text (blank).  Then for the format, go to "Number" and "Custom".  In the custom field, enter ;;;.  Apply the conditional formatting and those pesky
    (blank) values turn into real blanks.  This even works when copying pasting the data into another sheet or application.  And if the value changes the next time you refresh your data, the new data appears.
    I found this very valuable in my reporting and just wanted to put it out there for the rest of the community.

    Hi,
    Thank you for sharing your experience and post here.

  • How to make blank value as null in table using DQS

    Hi
    I am using DQS in SSIS. It makes null value from source table as blank in destination table by DQS_NULL feature.
    I want to make that null value as 'Null' in the destination table after applying DQS.
    How is it possible.
    Thanks
    Nidhi

    Thanks for the reply.
    When I am using (Coulmn) == "" ? NULL(DT_WSTR,225) : Coulmn for making blank as null it is working fine.
    But it is making null as string, but I don't want to use null as string. As I am using Null in my stored procedure to load sub region data where "country is null".
    If I will use above expression of derived column it will make it as string which is not recommended in my case.
    Do you have any solution for it.

  • How can i display blank table if data not present

    hi all,
    i have problem here.
    i need to display one blank table if there is no data. in default, it just show column name box.
    now i need to add blank box under column name.
    please if you have any advice, let me know.
    regards,
    dityo

    hi,
    the solution that i get is create two similar table with if condition.
    if condition for table A : <?if:count(G_PARTS) > 0?> . G_PARTS is name of group. table A will showed if data present.
    if condition for table B (blank table) : <?if:count(G_PARTS) = 0?>. this blank table will showed if no data.
    if
    table A
    end if
    if
    table B
    enf if
    hope this help.
    rgrds,
    tyo

  • Difference between YVBUK and XVBUK tables

    Hello,
       Can somebody explain me the user of Y* and X* tables for application tables such as VBUK, LIKP etc. in user exits?
    According to note 415716 Y* tables store the condition of the record currently in the database and X* tables stores the changed value. But what happens if its a new record (UPDKZ = I), shouldnt Y* table be blank?
    We have the following code in the user exit
      INCLUDE YVUEPRZ1_DOC_SAVE_PREP_CARRIER                             *
    perform update only if insert or update carrier
    UPDKZ : Update indicator
    DATA : ls_vbpa LIKE xvbpa.
    LOOP AT xlikp.
      v_index = sy-tabix.
      CLEAR ls_vbpa.
      READ TABLE xvbpa INTO ls_vbpa
                       WITH KEY vbeln = xlikp-vbeln
                                parvw = 'SP'.
      CASE ls_vbpa-updkz.
        WHEN 'I' OR 'U'.
          MOVE-CORRESPONDING xlikp TO likp.
          MOVE-CORRESPONDING xlikp TO likpd.
    *--   Prepare changes of the delivery header
          PERFORM likp_bearbeiten_vorbereiten(sapfv50k).
          likp-yylfnr = ls_vbpa-lifnr.
    *--   Check and confirm changes
          PERFORM likp_bearbeiten(sapfv50k).
          MOVE-CORRESPONDING likp  TO xlikp.
          MOVE-CORRESPONDING likpd TO xlikp.
          MODIFY xlikp INDEX v_index.
          IF t180-trtyp = 'V'. "Modification
            xvbuk-uvk03  = 'D'.
            xvbuk-updkz  = 'U'.
            MODIFY xvbuk TRANSPORTING uvk03 updkz WHERE vbeln = xlikp-vbeln.
          ENDIF.
        WHEN 'D'.
          MOVE-CORRESPONDING xlikp TO likp.
          MOVE-CORRESPONDING xlikp TO likpd.
    *--   Prepare changes of the delivery header
          PERFORM likp_bearbeiten_vorbereiten(sapfv50k).
          CLEAR likp-yylfnr.
    *--   Check and confirm changes
          PERFORM likp_bearbeiten(sapfv50k).
          MOVE-CORRESPONDING likp  TO xlikp.
          MOVE-CORRESPONDING likpd TO xlikp.
          MODIFY xlikp INDEX v_index.
          IF t180-trtyp = 'V'. "Modification
            xvbuk-uvk03  = 'D'.
            xvbuk-updkz  = 'U'.
            MODIFY xvbuk TRANSPORTING uvk03 updkz WHERE vbeln = xlikp-vbeln.
          ENDIF.
      ENDCASE.
    ENDLOOP.
    Now the problem is that SAP is saying that the table YVBUK also has to have the same record as XVBUK but I think its absurd for UPDKZ = I since there will be no database image for that.
    thanks

    To answer Peluka's question there are no entries in Y* table when UPDKZ = I or UPDKZ = U
    and I dont quite understand what Ferry Lianto is saying but I think its pretty much the same as above
    thanks for your help

  • Rename of table column messed up field in Edit Screen

    I renamed a table column. I have a report page with an edit form page tied to it based on this table. I changed the SQL statement in the Region Source on the report. The appropriate column value is displayed in the report. I changed the Page Item name on the Edit Form page. I changed the Source Value to match the new field name.
    The problem I am running into is when I run the Edit Form page and change the value in the item of the renamed column, the field in the database table is blanked out. Even if I change the value to be the same value, the column is blanked out.
    What did I miss in renaming the table column?

    I've had a similar problem. I added a couple of new columns to a table and attempted to manually add the fields to an existing form. However, as described above, whatever value was entered on the screen, a NULL was stored on the database.
    I created a new form using the Form Wizard and copied the columns between pages and got them working. In the process, I tracked the problem down to the variable name.
    For example: for the column PRC_SCHEDULABLE, a item named P5_SCHEDULABLE works but any other item name produces the NULL problem.

  • Issue in workflow binding of Table in send mail step

    Hi All,
    I am working on a Travel Management workflow where mail needs to be sent to the manager along with the trip details.
    We are displaying data in tables (html format). Now i need to add another such table with details into this already existing workflow but i am facing issues in binding.
    Issue: For already existing tables, the binding is like this,
    Export to task,
    &TRIP& --> &T_SUMMARY##&
    Import to w/f,
    &T_SUMMARY##& <--- &T_SUMMARY##&.
    But when i am trying to add my table in binding as, &TRIP& --> &T_MILEAGE##&,
    I am getting a binding error, &T_MILEAGE##& is not available in the container.
    I checked the container both in workflow and in task, both contain multiple declarations of the variable &TRIP& which is of type the BO.
    Kindly help me how to proceed further.
    Regards,
    Jose

    Hi Anjan,
    The status of  note  1658491 is also cannot not be implemented.
    I checked the correction given in this note. All changes exists into system.
    Following is code of method SEND ( (CL_SWF_UTL_MAIL_FACADE)
    *- check if document has recipients at all
           lt_recipients = lo_send_request->recipients( ).
           if lt_recipients is initial.
             lo_send_request->delete( ).
             ls_t100msg-msgid = 'WZ'.
             ls_t100msg-msgty = 'E'.
             ls_t100msg-msgno = 619.
             raise exception type cx_swf_run_wim
               exporting
                 t100_msg = ls_t100msg.
           else.
    *-       Send document
             call method lo_send_request->send( ).
           endif.
    The exception is thrown, because lt_recipients table is blank.
    With same parameter the workflow is running successfully if 'Long mail title' is not set in SWPA.
    When is field is active, workflow returns message Document <> could not be sent
    The method "SELFITEM->SendTaskDescription" does not send mail if Long Mail Title" indicator is set .   
    Thanks & Regards,
    Mounj K

Maybe you are looking for

  • Addition of a field in vendor master table at company code level

    Hi Champs, My requirement is to add a field in LFB1 table. I have added the field in the table using append structure, that was fine. I need to add the same for input/output on the screen 215 of program SAPMF02K (for the screen of Payment transaction

  • Outboun ucce 7.5

    can anyone tell me me if that field or account number is possible to shown in Layout of ctios toolkit agent for campaign outbound? exist any reports of outbound with AHT statistics? what reports exist for to says a supervisors of reason for customer

  • Can I use gmail as default client for sharing photos from camera roll or links from safari?

    I use the Gmail app for my Gmail stuff (my normal default email address).  I use yahoo with apples mail app.  When I try to send a link from safari or share a photo I have taken from my camera roll, it sends using my yahoo email.  I would prefer Gmai

  • INVOKER'S RIGHT ( ORACLE 8I NEW FEATURE )

    제품 : PL/SQL 작성날짜 : 2000-05-31 INVOKER'S RIGHT ( ORACLE 8I NEW FEATURE ) ==============================================      AUTHID와 SQL_NAME_RESOLVE에 대해 CURRENT_USER, DEFINER를 지정      8.1 현재 버젼에서는 AUTHID = CURRENT_USER 일때는 SQL_NAME_RESOLVE = CURRENT_

  • Premiere Pro 6/Mac - 5.1 audio mixer master channel order

    The channel order of the audio mixer 5.1 master channel appears to be L, R, Ls, Rs, C, LFE. Can this be changed to one of the more common standards esp. L, R, C, LFE, Ls, Rs so that I don't have to reconfigure channels for every 5.1 clip I bring into