Amount display transaction VK13

VK13.
I am looking at a certain condition record in transaction VK13, when i see the output in the table control in the amount field i have a percentage value e.g. 2 and in the unit fields i have '%'.
The amount value is picked from the table KONP-KBETR and unit reference field is KONP-KONWA.
the value in the table KONP for KBETR is 20 and for KONWA is '%'.
So when it display's on the screen instead of 20 it displays 2..... when i checked the sap standard table control behind it Program SAPMV13A screen 1912 for the amount field the reference field is RV13A-KONWA
RV13A-KONWA is populated as 3 at this point... during the display the vakue is converted,
My questions:
1. Where does it get the value 3 from ? and what is it about.
My problem..
I am picking up  the data and trying to display using alv grid..over there even if i use the reference field as the KONWA field.. i dont get 2 as a value?
So gurus i am sure someone has come across this before.. some light on this please ...
Thanks

SAP assigns hardcoded 3 to currency key incase of percentage assignments...
I should be able to assign 10 points to myself for this

Similar Messages

  • Table to display change logs for transaction VK13 with certain condition.

    Hi ,
    Please let me know if there is any table from which we can get the change log details of condition records with transaction VK13
    This is required to get information on old value and new updated value for the condition.
    Thanks
    Ravi Naik

    Hi,
    Use the program RV16ACHD (You can run this in SE38)
    View the code from there for more understanding.
    Tables are
    KONH, KONP and CDHDR
    In the CDHDR table you can view condition record changes under, Change doc. object = COND_A
    Anotehr option is to use the function module SD_CONDITION_CHANGE_DOCS_LOAD which is called in the program RV16ACHD and pass the correct parameters.
    Best regards,
    Anupa

  • Issue while uploading data from flatfile to Transaction(VK13).

    Hi All,
    I am facing an issue while uploading the data from flatfile to the transaction(vk13). My flat file is as shown below.
    SalesOrganization    DistributionChannel    Customer    Material    Releasestatus    Amount    Currency    Quantity    UOM    ValidFrom    ValidTo
    2000    01    0010029614    AT309739    A    20.00    USD    1    PC    09/11/2014    12/31/9999
    If I upload these data using the RV_CONDITION_COPY  FM it is succesfully uploading to the relevant tables(konh,konp) but in the tcode VK13  I am getting all values fine, except UOM. Instead of PC it is showning as ***. I did not understand why it is happening please give an idea to solve my issue.
    Regards,
    Chakradhar.

    Hi Raymond,
    Thanks for your reply.Yes,If I use CONVERSION_EXIT_CUNIT_INPUT in my program the issue is, Assume If the user is giving PC as value for UOM field in flat file and upload the flat file.It is successfully uploading the value PC to the UOM field in transaction VK13 but the in the database table(konp) it is showing the value as ST.
    Regards,
    Chakradhar.

  • PR05 - amount display wrong

    hi
    in transaction PR05 (travel), when my travel expense is in another currency eg. Ugandan Shilling, the 'amount' field displays wrong amount.  for eg:  if I enter my expense as 100, it displays as 10000 and if i enter 325.50, then it displays as 32550.  Can somebody tell me how to fix this issue.
    thanks.
    K

    hi Ashok,
    I checked SU3.  My default decimal notation is 1,234,456.89. But still this problem persists. 
    May be there is some kind of issue with the prorgram in RPRTEF00 - Travel Expenses standard form.  Does any one know any issue with this program that was doing similar amount display problem as I described.  Pl help.
    thanks
    K

  • Amount of transaction

    hi
    how can I know the amount of transaction in one table, or more than one tables.Is it possible to monitor transaction amount?
    I want to have an idea about which tables in the system applied transaction most !!!

    You can query global number of transactions at session level or instance level using the statistics 4 and 5 in 10g release 2:
    select statistic#, name from v$statname where name like 'user%';STATISTIC# NAME
             4 user commits
             5 user rollbacks
             6 user calls
            17 user I/O wait timeHowever, to get details at table level, you could also use LogMiner.

  • CALL TRANSACTION VK13 AND SKIP FIRST SCREEN

    Hi,
    I'm using ALV report and i want to call the the Tcode VK13 from alv and skip the screens.
    I have declared form user_command and calling from the "REUSE_ALV_LIST_DISPLAY".
    The actual issue is how to select the radio button in the pop up window and also skip the next screen to go the condition records screen when calling tcode VK13 by passing parameters.
    CALL TRANSACTION VK13 .
    Help is highly appreciated.
    Thanks,
    Kash

    Hello,
        As per the requirement I understood that you have to skip more than one screen in VK13 transaction.
    For this purpose, write a BDC (Upto the screen you want ) and use it in a call transaction .
    You have to do a partial BDC to the transaction VK13, providing all the data that is required to get to the screen you want and use the statement
    Call transaction 'VA03' using it_bdcdata mode 'E'...
    (IT_BDCDATA should have the information that is necessary to fill in the screens of VA03.)
    Eg:
    DATA: bdcdata_wa  TYPE bdcdata,
              bdcdata_tab TYPE TABLE OF bdcdata.
    CLEAR bdcdata_wa.
    bdcdata_wa-program  = 'SAPLSEOD'.        "Pass pgm name
    bdcdata_wa-dynpro   = '1000'.                    "Pass your screen you want to call
    bdcdata_wa-dynbegin = 'X'.
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.                                         "Optional
    bdcdata_wa-fnam = 'BDC_CURSOR'.                  "Optional
    bdcdata_wa-fval = 'SEOCLASS-CLSNAME'.        "Optional
    APPEND bdcdata_wa TO bdcdata_tab.              "Optional
    CALL TRANSACTION 'VK13' USING bdcdata_tab
                                MODE 'E'
                                UPDATE 'A'
                                MESSAGES INTO g_t_bdcmsgcoll.
    Regards,
    Lijo

  • MIRO : Click Event Link to PO Display transaction

    Hi
    I am using MIRO transaction.
    I have added new custom tab along with PO reference/GL account tab.
    In Custom tab i have called subscreen with table control and added few fields including
    PO number field. Now when i click PO number it has to go PO display screen like one already exist in PO reference tab.
    I followed below solution but does not work out.
    ->In subcreen PAI,i wrote
          FIELD WA_TC_LIV-EBELN    Module call_me23n.
    MODULE CALL_ME23N INPUT.
    GET CURSOR FIELD WA_TC_LIV-EBELN.
    if sy-subrc = 0.
    call transaction 'ME23N'.
    endif.
    ENDMODULE.    
    But when i click outside tab also its goes to display transaction. I need it to work only on
    Click of particular PO number.
    Pls advice.
    Regards

    Hi
    Thanks for support
    I solved myself doing below. just for reference
      data: cursorfield(30) type c,
            cursorline(30) type c,
            cursorvalue(30) type c.
      GET CURSOR FIELD CURSORFIELD LINE CURSORLINE VALUE CURSORVALUE.
      IF NOT CURSORVALUE IS INITIAL.
        CASE CURSORFIELD.
          WHEN 'WA_TC_LIV-EBELN'.
           SET PARAMETER ID 'BES' FIELD CURSORVALUE.
            CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
        ENDCASE.
      ENDIF.
    Edited by: princeck on Oct 14, 2011 7:45 AM

  • Columns in table control in display mode in display transaction

    Hi all,
    I have a table control in a custom screen .Now i have few columns in the table control which need to be input enbaled but should be dislay only when thetransaction mode is "display" e.g VL33N.
    I have written the follwoing lines of code:
    IF sy-tcode = 'VL33N'.
        IF g_trtyp = 'A'.
          LOOP AT tc01-cols INTO wa_tc01.
            IF wa_tc01-screen-group1 = 'G2'.
              wa_tc01-screen-input = 0.
              MODIFY tc01-cols FROM wa_tc01.
            ENDIF.
          ENDLOOP.
    ENDIF.
    ENDIF.
    However the specific olumns in table control are not displayed in display mode when in display transaction!
    Can anyone suggest what am i doing wrong?
    thanks.

    I would have answered if you followed forum rules (as I can see in your previous posts, missing feedback, closed without any info)

  • Field and Link T. Code selection for display transaction

    Hi,
    I want to know the transaction code with which we can customize whixh field to be disply when we execute  the display transaction like ME2L  ,ME2M  ,MB5B  , MB51 etc. and as when we click on PO in ME2M we directly switch to ME23N how to do configuration of all this.
    regards,
      zafar

    Hi
    Any report like ME2M, ME2K, ME2L, MB51 already link has been provided . If you click on the purchase order number, material etc., it will take to the dispaly of the particular screen.
    Thanks
    raman

  • Problem with amount displayed in local currency.

    Hi Experts,
    We have an invoice in XDR/PLN currency (exchange rate: 3,50).
    Then we are making a posting with clearing and in result we have a clearing document in EUR/PLN currency (exchange rate: 3,70).
    In one line item we are making a posting with an asterisk u2018*u2019 to clear selected open items.
    In this line item the amount in EUR currency shows for example 0,10 EUR and amount displayed in local currency (PLN) shows 100 PLN which is value not consistent with exchange rate.
    Line item which is causing such difference displayed in EUR shows u201Cnew amountu201D, but this line item displayed in local currency (PLN) shows u201Cold valueu201D from a XDR/PLN document.
    This issue causes 0,10 EUR -> 100 PLN u201Cdisplayingu201D problem in an asterisk u2018*u2019 line item.
    Why this line item shows the u201Cold valueu201D in local currency from XDR document ?
    Thanks in advance,
    Konrad Dobrowolski.

    Can anyone help ?
    I can provide more details if needed.
    Best regards,
    Konrad Dobrowolski.

  • Display Transaction Number

    Hi,
    Is there any way to display Transaction No, while processing Transaction. For, e.g
    Once I click on 'Add' button to process A/P invoice or A/R Invoice or A/R Credit Note, it should display 'Trans No'. This field is visible as Trans No in Journal Entry form.
    If so, can anyone help me in resolving this issue.
    Regards
    Ronald

    Hi Ronald,
    Answering your question you cannot invoke SHIFTF2 on Add.  SHIFTF2 is the key combination to fire the query manually which is saved in a particular field.
    There are only 2 ways to go about this.
    One creating a formatted search as Dinesh suggested and refresh the A/P invoice or A/R Invoice or A/R Credit Note with the transaction no.
    Two,  using the SBO_TransactionNotification Stored Procedure at the database level and updating this user field.  This will need some coding and you would need to identify the ObjectTypes for (A/P invoice or A/R Invoice or A/R Credit Note ) and update the user field with the transid
    Suda

  • FM to display transaction CN23

    Hi all,
    Is there any Function module which can display transaction CN23?
    If you have any inputs, please let me know.
    Thanks and regards,
    Ridhima

    Hi Ridhima,
    You don't need an Fm for this:
    you can simply do this:
    if you capture the network number into a variable, say v_network.
    set parameter id 'ANR' field v_network.
    call transaction 'CN23' and skip first screen.
    sample code:
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
        I_CALLBACK_PROGRAM                = W_REPID
        I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS'
        I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
    FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
                            P_SELFLD TYPE SLIS_SELFIELD.
    v_network = p_selfld-value.
    set parameter id 'ANR' field v_network.
    call transaction 'CN23' and skip first screen.
    ENDFORM.
    Regards,
    Ravi
    Message was edited by:
            Ravi Kanth Talagana

  • Advance amount display differently when used in program (HRTRV_IF_GET_TRIP)

    Hi ,
    When i test the function module HRTRV_IF_GET_TRIP to retrive the ADVANCE AMOUNT  for  TRIP transaction it giives me correct out put of table ADVANCE AMOUNTS. If i use the same function module inside the program but it gives advanca amount value multiplid by 100. (ex.10 HUF is displayed as 1000 HUF). It is also varying depends on the PERNR i am creating the TRIP. IF i use my personal number i get correc values populated in the FM. IF i use other PERNR  to create  the TRIP then it given me some other values.
    Please clarify.
    Regards,
    Richard A

    SAP assigns hardcoded 3 to currency key incase of percentage assignments...
    I should be able to assign 10 points to myself for this

  • Condition display in VK13

    Hi Friends,
    I'am trying to calcuate a percentage of Sales Value using A007 table.
    The problem is the condition is displayed as 5.5 % if I see through tcode VK13 and the condition is displayed as 55% if I see through table KONP (= A007-KNUMH).
    I could easily divide my KONP-KBETR by 10, but I'am trying to see the reason for the above display?
    Any ideas
    Thanks
    Andy

    Hi ,
    as per my knowledge , all condition amounts will be @ % of 1000 , not %100, so u need to convert if u are using in any ABAP objects.
    i.e 5.5%100 =  55%1000.
    regards
    Prabhu

  • Generate report for displaying transaction codes role wise

    hi,
    i want to generate a consolidated report in which all transactions codes are displayed role wise.In TR SUIM the report is generated using one role at a time.i want an option where i can fill the require roles and get the consolidated reports.is it possible.please help..
    thanx,

    Hi,
    Your question is not about SOA.
    You should ask you question in an appropriate forum (Security ?) where you will have more chances to get a useful answer.
    Regards,
    Olivier

Maybe you are looking for

  • Dynamically set report viewer report name

    <p>I have a CR4E application with several reports. I want to use the same viewer for each report in the app but need to change the report name based on the user's selection from a dropdown list on a form. How do I dynamically change the reportName in

  • How to make Currency Field of IT 0009 as Uneditable in the Portal

    Hi Experts, I have a requirement to make the Currency Field in IT 0009 as uneditable in the Portal. We are using transactional iView and standard Function Module to maintain IT 0009 in the portal. My query is, do I need to make changes in the FM to m

  • After iTunes update all playlists gone

    I updated my iTunes, now all my playlists are gone and it changed it´s destination folder (It used to be my external hd now its on C). My music files are still on my external hd. I tried system restore but that didn't reset anything. How do I get my

  • Logged in, but can't reply and page shows login/register

    Hi, Although the top of the forum page on the right shows me as logged in, I can't reply.  The page doesn't seem to recognize that I'm logged in several lines further down on the left. See png:      Screen shot 2011-10-11 at 15.17.18.png Clicking on

  • Saving Infoset DELETION to tranport Request

    Anyone know how this is done in SQ02? If you click delete it's gone immediately. I'm guessing I need to go into environment->transports first and get in into a transport request? I'm not sure what options to choose though, as there's various radio bu