MIRO issue (urgent!), amount and quantity fields are not captured from PO

Hi,
When we try to post thought MIRO using PO as reference, quantity and amount fields are not captured. We do MIGO first and then MIRO.
GR based invoice verification in the vendor master is selected and the check mark GR-based in the PO is selected too.
We're getting this MIRO issue for "all" PO and Service Entry Sheet.
We'll appreciate your recommendation in order to fix this critical issue as soon as possible.
Thanks in advance.

I was looking for copy controls and other functions. Glad this is now resolved. You need to award yourself points!
Cheers.

Similar Messages

  • Runtime error in Dynamic internal table with AMOUNT and Quantity Fields..

    Dear friends,
    I am attempting write a dymanic Select Statement (with joins).
    And the sleect query looks like this..
      SELECT (LT_SEL_LIST)
      INTO CORRESPONDING FIELDS OF
      TABLE <DYN_TABLE>
      FROM (LT_FROM_LIST)
      WHERE (LT_WHERE3).
    Here the into table is a dynamically created internal table..
    which is created by ...this
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = IT_OUTPUT2[]
        IMPORTING
          EP_TABLE        = DY_TABLE.
    the it_output2 contains the the fieldcatlog information of dynamically given fields :-
    like:-
           TABNAME
           FIELDNAME
           DATATYPE
           LENG
           INTTYPE
           ROLLNAME
           DECIMALS
           REFTABLE
           REFFIELD
    i mean the internal table is constructed with reference to all the bove metadata.
    Problem:- This query run fine with all the fields Except AMOUNT AND QUANTITY fields....
    When the selection list contain VBAK-NETWR or MSEG-MENGE..It throws a runtime error.
    "The data read during a SLECT access couldnt be inserted into the target field,either conversion is not supported for
    the target field's type or the target field is too short."
    after this I even tried to construct the dynamic table with CFILEDNAME and QFIELDNAME in the Fieldcatalog.
    so now my fieldcatlog looks like this:---
    LOOP AT IT_DD03L..
      IF IT_DD03L-DATATYPE = 'CURR'.
           TABLEFIELD-CFIELDNAME = IT_DD03L-FIELDNAME .
           ENDIF.
       IF IT_FIELDCAT3-DATATYPE = 'QUAN'.
           TABLEFIELD-QFIELDNAME = IT_DD03L-FIELDNAME .
      ENDIF.
           TABLEFIELD-TABNAME     = IT_DD03L-TABNAME.
           TABLEFIELD-FIELDNAME   = IT_DD03L-FIELDNAME.
           TABLEFIELD-DATATYPE    = IT_DD03L-DATATYPE.
           TABLEFIELD-INTLEN      = IT_DD03L-LENG.
           TABLEFIELD-INTTYPE     = IT_DD03L-INTTYPE .
           TABLEFIELD-ROLLNAME    = IT_DD03L-ROLLNAME.
           TABLEFIELD-DECIMALS    = IT_DD03L-DECIMALS.
           TABLEFIELD-REF_TABLE   = IT_DD03L-REFTABLE.
           TABLEFIELD-REF_FIELD   = IT_DD03L-REFFIELD.
    APPEND TABLEFIELD.
    CLEAR TABLEFIELD.
    ENDLOOP.
    Note:- this is a test code so ignore performance issues...
    Please help me with some code ...to avoid the Runtime erorr.
    Thanks,
    jeevan.

    Hi Jeevan,
    Why are moving only few fields from DD03L table to your field catalog? Why don't you use move-corresponding? The following code works for me in ECC6.0.
    data: it_dd03l type table of dd03l initial size 0,
          ls_dd03l type dd03l,
          lt_fldcat TYPE lvc_t_fcat,
          ls_fldcat TYPE lvc_s_fcat,
          ls_where(72) TYPE c,
          lt_where LIKE TABLE OF ls_where,
          lt_fld LIKE TABLE OF ls_where,
          lt_data_dy TYPE REF TO data.
    field-symbols: <ft_data> TYPE STANDARD TABLE.
    select * into table it_dd03l from dd03l
        where tabname = 'VBAK'
          and ( fieldname = 'VBELN' or fieldname = 'NETWR' ).
    check sy-subrc eq 0.
    loop at it_dd03l into ls_dd03l.
      move-corresponding ls_dd03l to ls_fldcat.
      append ls_fldcat to lt_fldcat.
      move ls_dd03l-fieldname to ls_where.
      append ls_where to lt_fld.
      if ls_dd03l-fieldname = 'VBELN'.
        clear ls_where.
        concatenate ls_dd03l-fieldname ' <> ''''' into ls_where.
        append ls_where to lt_where.
      endif.
    endloop.
    check not lt_fldcat is initial.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
          EXPORTING
            it_fieldcatalog           = lt_fldcat
          IMPORTING
            ep_table                  = lt_data_dy
          EXCEPTIONS
            generate_subpool_dir_full = 1
            OTHERS                    = 2.
        IF sy-subrc <> 0.
          RAISE no_configuration_data.
        ENDIF.
        ASSIGN lt_data_dy->*  TO <ft_data>.
    check sy-subrc eq 0.
    select (lt_fld) from VBAK into corresponding fields of table
        <ft_data>
        where (lt_where).
    Thanks
    Bala

  • Amount and Quantity field during MIR7

    Hello Experts,
    My client wants to keep Amount and Quantity field in display mode for particular user during parking of Invoice(MIR7)
    Is there any way to achieve this.
    Thanks and Regards
    Gyanesh

    go for varients
    in SHD0 transaction
    here you can try to make fields display mode

  • Upgraded to IOS 8 and now documents are not syncing from mac to IOS devices

    Hello,
    I upgraded to IOS 8 on iPhone 5 and iPad 2 and now documents are not syncing from the  mac to IOS devices.
    How can restore document sharing  functions to the iCloud pre-IPOS 8?
    Thank you
    Don

    Okay, so we're moving forward now.  no problem.   while waiting for a response I noticed that both NUMBERS and PAGES sync-ed to the iCloud on iphone5.   However, I am still waiting for the iPad to sync. post IOS8.   Should I go get a cup of coffee or is there a way to expedite the sync process?
    don

  • Date and time fields are not getting updated in database

    Hi,
    I am Using the bapi SD_SHIPMENT_HEADER_CHANGE in my program ...
    I  am using bapi_shipemnt_create for creating shipment document but, trying to enter the date fileds using this bapi .
    can anybody please tell me how shud i pass this variables exactly ...
    i tried giving test data and checked this bapi .. the result in changing parameters is also appearing but in databade itself the date fields are not getting reflected ...
    The fields ate DTDIS ,UZDIS, DATEN,UATEN. ( i am trying to map these fields in changing parameters)
              gw_vttkvb_new-mandt = sy-mandt.
              gw_vttkvb_new-tknum = gw_return-message_v1(passing shipment number )
              gw_vttkvb_new-dtdis = gi_ship_doc-dtdis.
              gw_vttkvb_new-daten = gi_ship_doc-daten.
              gw_vttkvb_new-uzdis = gi_ship_doc-uzdis.
              gw_vttkvb_new-uaten = gi_ship_doc-uaten.
              APPEND gw_vttkvb_new TO gi_vttkvb_new.
              CALL FUNCTION 'SD_SHIPMENT_HEADER_CHANGE'
              EXPORTING
                i_tvtk                             =  '
              I_DESTINATION                      =
              I_DEPARTURE                        =
              OPT_DIALOG                         = 'X'
            IMPORTING
              E_SERV_AGENT_FROM_DELIVERY         =
              E_ROUTE_FROM_DELIVERY              =
              E_LEG_DETERMINATION_DONE           =
              E_NUMBER_OF_CHANGED_LEGS           =
                 TABLES
                   c_xvttk                            = gi_xvttk
                   c_yvttk                            = gi_yvttk
                   c_xvttp                            = gi_xvttp
                   c_yvttp                            = gi_yvttp
                   c_xvtts                            = gi_xvtts
                   c_yvtts                            = gi_yvtts
                   c_xvtsp                            = gi_xvtsp
                   c_yvtsp                            = gi_yvtsp
                   c_xvbpa                            = gi_xvbpa
                   c_yvbpa                            = gi_yvbpa
                   c_xvbadr                           = gi_xvbadr
                   c_yvbadr                           = gi_yvbadr
                   i_xtrlk                            = gi_vtrlk
                   i_xtrlp                            = gi_vtrlp
              I_DEPARTURE_SEQUENCE               =
              I_XVTFA                            =
              I_YVTFA                            =
                 CHANGING
                   c_xvttk_new                        = gi_vttkvb_new
                EXCEPTIONS
                  invalid_change                     = 1
                  route_insert_failed                = 2
                  tdlnr_insert_failed                = 3
                  status_planned_failed              = 4
                  status_registrated_failed          = 5
                  status_loading_start_failed        = 6
                  status_loading_end_failed          = 7
                  status_completion_failed           = 8
                  status_shipment_start_failed       = 9
                  status_shipment_end_failed         = 10
                  OTHERS                             = 11.
              IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
             ELSE.
                 **** Save shipment created
               CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
             WAIT          =
                  IMPORTING
                    return        = gw_return.
              ENDIF.
    Regards,
    shilpa talluri .

    Hi,
    Try this
    DATA: wa TYPE zvariant.
    wa-mandt     = sy-mandt.
    wa-z_var     = 'test'.
    wa-projid      = 'test'. 
    wa-relid        = 'test'.
    wa-srtf2       = 'test'.
    wa-clustr      = 'test'.
    wa-clustd     = ''test'. 
    INSERT zvariant CLIENT SPECIFIED FROM wa.
    Raul Natu

  • BDC for CKECP- Item fields are not captured

    Hi all
    I recorded transaction CKECP using shdb.
    In that if we click 'Show/hide item view' the item wise details to be entered appears.
    items were entered. Transaction recorded.
    But the item fields are not appearing in the recording.
    Can somebody explain to me ?
    Vijaya Chamundi

    you can use BAPI
    2044                           BAPIs for Business Object Cost Estimate
    BAPI_COSTESTIMATE_ALLOW_MARK   Grant Marking Allowance for Costing
    BAPI_COSTESTIMATE_ALLOW_MA_GET Determine Organizational Measures
    BAPI_COSTESTIMATE_CREATE_SPLIT Create Cost Estimate with Cost Component Split
    BAPI_COSTESTIMATE_DELETE       Delete Cost Estimate
    BAPI_COSTESTIMATE_DELETE_MULTI Delete Cost Estimates
    BAPI_COSTESTIMATE_GETDETAIL    Determine Detailed Information for a Cost Estima
    BAPI_COSTESTIMATE_GETEXPLOSION Determine BOM Explosion for a Cost Estimate
    BAPI_COSTESTIMATE_GETLIST      Determine Cost Estimate Lists
    BAPI_COSTESTIMATE_ITEMIZATION  Determine Itemization for a Cost Estimate
    BAPI_COSTESTIMATE_MARKING      Marking Standard Cost Estimate
    BAPI_COSTESTIMATE_RELEASING    Release of Marked Standard Cost Estimates
    BAPI_COSTESTIMATE_UPDATE_PRICE Update of Prices in Material Master
    BAPI_SHIPMENT_COST_ESTIMATE    Calculate Shipment Costs of Different Forwarding

  • Presence the phone and mobile field entries not coming from LDAP

    I tested by changing name and all...working fine changes happening
    But the phone field is not coming at all
    ANY IDEA????

    I'm sorry if I misunderstood you. But it looks like there's some confusion here.
    Confusions and mistakes are usually caused by false assumptions.
    CUPC gets LDAP attributes from LDAP directly. CUPC does not retrieve those attributes from CUPS.
    If you're troubleshooting double-click on CUPC, the CUPS presence viewer doesn't help at all.
    When you double-click a contact in CUPC, CUPC dials the number in "BusinessPhoneNumber". By default "BusinessPhoneNumber" is mapped to "telephoneNumber" in Active Directory.
    If you cannot double-click a contact to dial, that's because "BusinessPhoneNumber" was blank.
    Michael
    http://htluo.blogspot.com

  • Sales office and sales group are not copied from quotation to sales order

    Hi All,
    I have maintained sales office and sales group in quotation maually at header level.while  coping to sales order sales office and sales group are missing.
    Please let me know what would be reason for missing those twoand whether i should check anything in copy controls.
    Regards
    Mohan

    As its a standard functionality to have the Sales Group & Sales Office from Quotation to Order. But in your case, check the Copy Control settings at Header Level .
    DataT 051 General header data       Copying requirements 001 Header-same customer
    DataT 101 Header business data
    DataT 001 Partner header
    In case , they are also same, then check if any Logic is added in the Existing Routine.
    Best Regards,
    Ankur

  • In iCloud control panel the mail, calender and contact fields are not selectable.

    Hi,
    I have a Windows7 pro 64bit with outlook 2010, latest version of iTunes and iCloud control panel.
    My mobilMe account is working in Outlook, notes from my iPone and iPad are shared, but there 's no entry for contacs or agenda.
    When I open iCloud control panel the checkbox for mail, contact and agenda are grayed out.
    To be honnest I had the same problem with the mobileMe contol pannel, and never had it working. (I logged out mobilme contol panel)
    What do I need to do to share my iCloud agenda in outlook and copy my outlook contacts in iCloud?
    so... Help please!
    Mario

    Appreciate the response.  I am familiar with the server settings.  I used them to manually make things work for a short amount of time.  Then problem re-started.
    My PW is correct.  I can log into iCloud from the web and it works on my other Apple devices.
    Not sure what else to try.  SOme posts suggest others having a similar problem.

  • Requirement quantity and quantity withdrawn are not matching

    From a production order the requirement quantity of one component is 4 and for another component, it is 2. But the withdrawn quantity for the first component is 5 and for the 2nd component it is 0. This has caused a COGI error.
    Also the total quantity and the delivered quantity is shown as 6.
    How can this be corrected and prevented from happening in the future.

    Hi Jeby,
                Thanks very much for your reply.
    Batch management is not used for both the components.
    For both the components the storage location is mentioned in the components overview of the production order. When I checked in the material master the same storage location is existing in the materiala master also

  • Number of query values and destination fields are not the same.

    Hey can any one help me out with this. I have no idea where i'm going wrong.
    String query_beg="insert into [insert$] values('"+rs1.getString("USERID")+"','"+rs1.getString("NAME")+"','"+beg_1+"','"+beg1_1+"','"+rs1.getTime("LOGINTIME")+"','"+rs1.getString("CLIENT_TIMEZONE")+"')";
    int num = stmnt2.executeUpdate(query_beg);Thanks in advance!
    Cheers

    I think it�s missing some field in your values

  • I got a new phone and my games are not updating from the Game Center. How do I fix it?

    I can see my achievements in Game Center, but when I open the games it's like I've never played. How do I get them to sync back?

    Hello
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Using Game Center
    http://support.apple.com/kb/ht4314
    If the issue persists, or certain features of a game aren't working as expected (leaderboards, achievements, and so on), use the App Store to report the problem to the developer
    Best of luck,
    Mario

  • Amount and quantity of the item in MIRO

    Dear Experts,
    i had a case when i want to make invoice (MIRO) based on PO that had not been received; the amount and quantity are blanked when i already referenced the PO number - for this case i already put the tick box blank for GR-Bsd IV in the related PO. Please help me why the amount and quantity field are blank while sometimes some PO that had a case like this (non GR-Bsd IV) the amount and quantity is automatically filled out in MIRO.
    Regards,
    Aditya Utama

    its as sap std process
    qty and amount will only appere is u have done GR
    if u have not done GR than this amount will not come
    logic is that
    when u have done GR system know that what is the qty or amount must be the invoice of
    in case where GR is not done system dont know how much the invoice would have come.
    hope this is clear

  • Amount and quantity to be proposed from PO in case of IR of PO before GR

    i have a case when i want to make invoice (MIRO) based on PO before doing GR, the amount and quantity are blank when i reference the PO number in MIRO- GR based IV is unchecked in PO.
    Please help me why the amount and quantity field are blank and is it possible through some setting that in case of IR of PO without GR the amount and quantity should be proposed from PO
    Regards,
    Garima

    I don't think in standard process it is possible...one way is to do the GR before custom miro but logically & technically it willbe a wrong process
    Regards,
    Indranil

  • Can u pls tell what r the currency and quantity fields in detail.

    hi to all can u pls teell
    can u pls tell what r the currency and quantity fields in detail.
    what is reference table .and reference fields .why we r giving theese reference table names while creating the currency fields .

    Hi,
    Currency amount fields and quantity fields are numeric fields which each have a currency or unit field assigned to them. The correct interpretation of the values in these fields depends on its currency or unit of measure. Therefore, you can decide whether you want their corresponding currency/unit of measure to be displayed before or after the field, or not at all. Proceed as follows:
    1. Select the field.
    2. Choose one of the options from the window on the lower left (before, No currency field/unit, or after).
    3. Choose Apply.
    For more information check the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/0b/5da4e42cf511d5b692006094192fe3/frameset.htm
    Following are system variables of currency:
    SY-CCURS
    R/2 - exchange rate and result field for CURRENCY CONVERSION. Not filled in R/3.
    SY-CCURT
    R/2 - table exchange rate for CURRENCY CONVERSION. Not filled in R/3.
    SY-CDATE
    R/2 - exchange rate date for CURRENCY CONVERSION. Not filled in R/3.
    SY-CTABL
    R/2 - exchange rate table for CURRENCY CONVERSION. Not filled in R/3.
    SY-CTYPE
    R/2 - exchange rate type for CURRENCY CONVERSION. Not filled in R/3.
    SY-DCSYS
    Dialog system of the R/2 System. Not filled in R/3.
    SY-WAERS
    Formerly the company code currency after reading a posting segment. Not filled in R/3.
    Regards,
    Bhaskar

Maybe you are looking for

  • Video for progressive download - workflow works for CS3 but not CS4

    I don't understand what I'm doing wrong with the new Flash CS4. When I used Flash CS3 I would use the following steps to create a Flash video to view online: Make a folder for all flash content In the folder I put the "video".flv file encoded from Qu

  • MY BB DESKTOP WONT RECOGNIZE MY BB

    HELLO I HAVE A MACBOOK PRO AND A BB CURVE9360, MY BB DESKTOP SOFTWARE WONT RECOGNIZE THE DEVICE AND I NEED TO BACK IT UP ASAP! THE ONLY THINK THAT I CAN DO IS CLICKING ON THE DEVICE OPTONS BUT I CANT BACK IT UP OR RESTORE IT. IF I CONNECT ANOTHER BB

  • HT201363 How to reset security questions?

    HI everyone, i want to reset my security questions but i cant do so because it wont let me send it to my rescue email address ... and im really ticked off about it!! Have any of you had this probelm before and now how to fix it wothout ringing?

  • Iphone 4s..my itunes is after wiping all my contact and photo!HELP

    i plugged my phone into itunes for the 1st time and its after puting all my ipod stuff on to my phone but deleted all contacs and photo,,can any 1 help?

  • Material Recieved date

    Hi, Scenario:suppose we are delivering material to customer on (10.03.2008) , and actual material received date by customer is (20.03.2008) - is there any field where we can enter this material received date by customer ie. 20.03.2008 so that we can