499 Step Number for condition record?

Hello Everyone,
In ECC6,  Quotation print output AN00 is not showing price per unit for some items. I checked in debug, there seem to be a condition record with step number 499 (which does not have a condition type) that is missing values for XKOMV-KBERT. When I populate this value in debug, it shows up find in the output. Step number 499 is not in KONV.  What logic does SAP use to come up with these values for step number 499?
I know this may sound like an ABAP question but it is not. I think some pricing is not configured right. There is a calculation type condition but it is only populating field KWERT.
TIA,
Lyn

Hi lyn
Check in your piricing procedure V/08 wheather , in the step 499 what has been maintained any text type ? and if condition type has been maintained. , check wheather condition record has been maintained or not ? and also check wheather that  value is coming in the sales order or not .
check for the step 499 wheather in print feild it  has been checked or not .
Regards
Srinath

Similar Messages

  • Steps to maintain condition records for MB1B

    Hi all,
    i need complete steps to maintain condition records for
    T Code MB1B for stock transfer between storage locations for same plant with movement type 311
    Your help will be appreciated
    Siddharth

    Hi Siddharth,
    TP b/w st.locs of same plant there wont be any accounting documents generated..so ..no condition records required.....as such,,material will be in plant only...means same valuation area..
    Check the basic rules.....
    BR,
    Krishna

  • Number for every record that is retrieved from (query)

    Hello
    I wish to put a number for every record that is retrieved
    from the record that is output by this query
    For example
    For the first recored/row
    Generated number, ksnumber, date
    1, gg111 11/05/05
    2, oo235 12/06/05
    the query returned 2 records 1 and 2 are the number that is
    generated with this code.
    In addition if there is a built in function, where in the
    code do I put it???
    <cfquery name="gelov datasource="kl90">
    SELECT
    FROM
    WHERE
    ORDER BY
    <cfswitch expression="#Form.orderBy#">
    <cfks value="KSNUMBER">
    KS.KS_NBR
    </cfks>
    <cfks value="CREATIONDATE">
    KS.KREATDAT
    </cfks>
    </cfswitch>
    </cfquery>
    <!---html report--->
    <cfswitch expression="#Form.outputFormat#">
    <cfks value="HTML">
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Ctwye Kss Report</title>
    </head>
    <style type="text/css">
    table{
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px;
    td{
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px;
    th{
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px;
    h2{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    h3{
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px;
    </style>
    <body>
    <cfoutput>
    <table border="0" cellpadding="3" cellspacing="0">
    <tr>
    <td align="center">
    <h3>Ctwye Kss
    Report</h3><br><br></td>
    </tr>
    <tr>
    <td align="center">
    </h2>report returned #getCtwyeKss.RecordCount#
    records</h2></td>
    </tr>
    <tr>
    <td>
    <table border="1" cellpadding="2" cellspacing="0">
    <tr>
    <td width="160">Ks Number</td>
    <td>Creation Date</td>
    <!--- <td class="dataField">Address</td>
    <td class="dataField">Type</td>
    <td class="dataField">Description</td>--->
    </tr>
    <cfloop query="getCtwyeKss">
    <tr bgcolor="<cfif currentrow mod
    2>GHOSTWHITE<cfelse>WHITE</cfif>">
    <td>#KS_NBR#</td>
    <td>#dateformat(KREATDAT,"mm/dd/yyyy")#</td>
    </tr>
    </cfloop>
    </table>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    </cfoutput>
    </cfks>
    <cfks value="CSV">
    <CFHEADER NAME="Content-Disposition" VALUE="attachment;
    filename=ctwye.csv">
    <cfcontent type="application/msexcel">"Ks
    Number","Creation Date"
    <cfoutput
    query="getCtwyeKss">#ltrim(KS_NBR)#,"#dateformat(KREATDAT,"mm/dd/yyyy")#"
    <tr #IIF(getCtwyeKss.CurrentRow MOD
    2,DE(''),DE('backgroundColor="##999"'))#>
    <!---<tr bgcolor="<cfif currentrow mod
    2>##808080<cfelse>##ffffff</cfif>"> --->
    </cfoutput>
    </cfks>
    </cfswitch>

    <cfks> is not a Coldfusion tag. Use <cfcase>
    instead.
    The following code will print the row numbers
    <cfquery name="gelov" datasource="kl90">
    select ksnumber, date
    from yourTable
    </cfquery>
    <cfoutput query="gelov">
    #currentrow#, #ksnumber#, #date#<br>
    </cfoutput>

  • Number of Condition Records in Pur. Info Record

    I am trying to get the number of condition records in a purchase info record.
    using ME_GET_INFORECORD_CONDITIONS and also ME_GET_INFORECORD_CONDITIONS_1.
    ME_GET_INFORECORD_CONDITIONS_1 gives me the correct values when I try to test the FM.
    What is the diff between these 2 FMs.
    But when I use ME_GET_INFORECORD_CONDITIONS_1 in a report, it is not giving a correct value.
    Following is the code:
    DATA: IT_KONP TYPE KONP OCCURS 0 WITH HEADER LINE,
          WA_KONP TYPE KONP.
    DATA: coun TYPE i VALUE 0.
    "Get the number of condition record - should be useful in BDC call.
    CALL FUNCTION 'ME_GET_INFORECORD_CONDITIONS_1'
    EXPORTING
    I_EKORG       = 'U001'
    I_ESOKZ       = '0'
    I_INFNR       = '5300000320'
    I_LIFNR       = '200524'
    I_MATKL       = '001'
    I_MATNR       = '80141300'
    I_WERKS       = 'L001'
    *     I_VABME       =
    *     I_BSTME       =
    TABLES
    TKONP         = IT_KONP.
    LOOP AT IT_KONP.
    ADD 1 to coun.
    ENDLOOP.
    WRITE: / coun.
    The variable coun is always Zero.
    Reg

    The LIFNR in the input parameters should be L-Padded with zeros. In SE37 it does it by itself.
    reg

  • Additional Field for Condition Record ..............

    Hi Gurus
    Plz read the Question Properly
    I know that for adding a new field as key field for condition record , one needs to append the structure( main ) KOMPAZ so that the field appears in KOMP structure .
    Say want Shiiping Point as one of fields in Condition Records. ....VSTEL field
    Now when the field appears in KOMP , then we can CREATE CONDITION RECORD FOR THE SAME
    FOR EG: *SALES ORG - DISTRIBUTION CHANNEL-CUSTOMER-SHIPPING POINT-MATERIAL..... BASED MATERIAL PRICING
    WHAT I FAIL TO UNDERSTAND
    1.WHY WE PASS SHIPPING POINT ( VSTEL) FIELD FROM LIKP -VSTEL TABLE TO NEW FIELD DEFINED.
    2.LIKE SALES ORG/ DISTRIBUTION CHANNEL ALSO ARE DEFINED IN ENTERPRISE STRUCTURE AND VALUE IN CONDITION RECORD IS PICKED FROM THERE ONLY, WHY NOT SHIPPING POINT.
    WHY THIS ??????....
    Supply the new field you defined by including the following source code line in
    USEREXIT_PRICING_PREPARE_TKOMP:
    MOVE xxxx-VSTEL TO TKOMP-ZZVSTEL.
    In order processing you find the user exit in Include MV45AFZZ, and in billing document processing you find it in Include RV60AFZZ.
    Regards
    Rohit

    > Plz read the Question Properly
    I read the question properly ;-).
    > WHAT I FAIL TO UNDERSTAND
    >
    > 1.WHY WE PASS SHIPPING POINT ( VSTEL) FIELD FROM LIKP -VSTEL TABLE TO NEW FIELD DEFINED.
    The first thing you need to understand is that the condition records value is not based upon the the enterprise structure which you have defined. Rather it will pick value from the sales documents which we have created. The reason behind including this LIKP-VSTEL is that only, Just imagine, where you are using condition records??? in Sales order, in delivery, in billing..... and based on the data passed in these documents your condition records will be populated.
    Again for example : you have maintained record for Sales org 1000, DC 10, division 00 shipping point 1000 then the record will come into the document provided the document should fulfill these all.
    I hope this will make you understand this.
    > 2.LIKE SALES ORG/ DISTRIBUTION CHANNEL ALSO ARE DEFINED IN ENTERPRISE STRUCTURE AND VALUE IN CONDITION RECORD IS PICKED FROM THERE ONLY, WHY NOT SHIPPING POINT.
    No the records are only coming from the Sales documents. only.
    Thanks,
    Raja

  • Release procedure for condition record

    Hello Gurus,
          please tell me how to run release procedure for condition record. especially the function of the release status and process status.
    thanks very much!

    Hi,
    Please go through the following information.
    [Relase Procedure for Condition Record|http://help.sap.com/saphelp_47x200/helpdata/en/a4/af9e78e69611d2ace10000e8a5bd28/frameset.htm]
    [Release Procedure for PR|http://www.sap123.com/showthread.php?t=59]
    Reward if helpful.
    Thanks and Regards,
    Naveen Dasari

  • Authorization level check for Condition records.

    Hi,
    Hi Gurus,
    Pls help me out in the the following scenario.
    I want to activate Authorization level check for Condition records.
    For example, Product price PR00 is being entered by first level.
    After verification done by second level only, that condition record to be used for sales order processing.
    I have gone through Process status & Release Status. But once it is Blocked  i am not able to release it...
    Rgds,
    Amol

    Amol,
    Please confirm transaction code you are using in this scenario to release. I can help with this, just a little more detail.
    Thanks,
    Jay

  • Process Status & Release Status for Condition Record

    Hi Gurus,
    Pls help me out in the the following scenario.
    I want to activate Authorization level check for Condition records.
    For example, Product price PR00 is being entered by first level.
    After verification done by second level only, that condition record to be used for sales order processing.
    I have gone through Process status & Release Status. But not getting full clarity on this.
    Rgds,
    Senni.B

    Hi,
    Please go through the following information.
    [Relase Procedure for Condition Record|http://help.sap.com/saphelp_47x200/helpdata/en/a4/af9e78e69611d2ace10000e8a5bd28/frameset.htm]
    [Release Procedure for PR|http://www.sap123.com/showthread.php?t=59]
    Reward if helpful.
    Thanks and Regards,
    Naveen Dasari

  • I want to retrieve data for condition record during certain time period.

    Hi Experts,
    Please suggest me some T-Code for retrieving condition record date or Database Table where I can access the data with the  combination of Sales Organization, distribution channel, customer and plant.
    Looking for your expert comments....
    << Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    thanks in advance..
    With Best Regards,
    Bharat B
    Edited by: Rob Burbank on Jan 21, 2011 5:40 PM

    To search for data/all the relevant condition for a particular condition type(like for example PR00) for a particular date range you can got to VK13 and give that particular condition type for which you want the data for.After giving he condition type click on key combinations and choose for which condition you want the data for.
    Like for example I want to fetch the data for PR00 then I will go to VK13 ,give PR00 then choose the relevant combination and then take a F1 for the first field.by this I will be able to determine the table in which all the condition data is stored for the particular combination.Like for the combination of sales org./dist channel./customer/material we have the table A815.Now by going to SE16 and giving table as A815 i will be able to fetch all the relevant data.(in your case based upon the valid from and valid to date).You can also use table KONP for a particular condition record number details.

  • Functional SPEC  for  Condition record

    Suppose i am given a condition record for a Material PR00 as 200/- now i want to generate a report that disply  pr00 200/- for this i want how to write a functional SPEC to ABAP to generate a report.

    Hi Rama ,
                       The Functional Specification would be like this
    Input Screen
    Date to and from
    Mtaerial to and from .
    Logic would check for date and material in condition table for PR00 ( can be found from access sequence V/07 transaction ).
    Obtain the condition record number and enter that number in table KONP and get field kbetr and kwert that would rate and amount and display ..
    Please reward if it useful.

  • Mass change for  condition record

    I try to change the condition record for material with validity period of one year starting next year Jan 1st. Since that material is already exists in the system with validity period of current date to 12/31/9999, it is not saving my changes. When increase price by 5%, it is not giving any problem but when I display to see the changes "Environment-Changes-Per condition record", it is giving an popup box saying "Change documents for conditions not yet save are not possible"
    I try to delete material condition with longer period. It is deleting at that moment but when I come back and see still that material exists with longer period.
    how do I deal with this problem to solve?
    Fully rewarded for solution.
    Thanks,
    Manu.

    Hi Manu;
    At any given point in time you can have only one valid condition record with a validity period.
    1. Create a condition record with validity from today to 12/31/2007
    2. Create a condition record with validity from 01/01/2008 to ....
    You issue would be solved.
    Regards.

  • How to extract data for condition records with different valid periods

    Dear Gurus,
      There was an error in the recent condition records price upload. Now, i want to extract the data into excel file depending on different valid dates. Please let me know how can i do this... in the extracted file i would like to have fields like, valid on and valid to dates, condition type, price list type, material, condition record no. , last changed date, last changed user id etc., please suggest...thanks in advance..
    rgds
    suri

    hi suresh
    create a quick query (SQVI) and extract to excel table KONP
    only thing you need to take care is table join for fields datab ( valid from) and tatbi (valid to) you need to take from right table which are present A-table,
    Anil

  • Table for Condition Records

    Hi Gurus,
    In which table the Condition Records will be stored(vk11)...
    thanks in Advance

    Hi,
    Pls check this , if you need further assistance pls do get back to us.
    KONV : Conditions for Transaction data
    KONP : Conditions for items
    KONH : Condition Header.
    Regards,
    Vvieks

  • User exit for condition records in purchasing contracts

    I am looking for a user exit to track changes to condition records made in ME31K and ME32K (purchasing contracts) transaction. Any useful tips are welcome.
    Thanks,
    Shareen

    Hello ,
    Please check the below BADI defintion
    ME_DEFINE_CALCTYPE
    Method : DEFINE_CALCTYPE   :Determine pricing type after changes to EKKO or EKPO
    Hope it is helpfull .
    Regards,

  • Release Strategy for Condition Records

    Hi,
    This is a requirement from my client. The client needs to give 4 levels of release strategy for the condition records created. The selling price for the products will be entered by person 1. This has to be approved by the sales execute (person 2); then by the sales manager (person 3); finally by the General Manager (Person 4). The selling price of the products ranges from 10 lakhs to 40 lakhs. so, the release strategy is needed. This type of release strategy is available in MM for PR and PO. Please let me know whether similar facility is available in SD. Any alternative is also solicited.
    Regards,
    K Bharathi

    Hi,
    Thanks for your valuable reply.
    I defined 3 Processing status (Menu path: SPRO >> SD >> Basic Fn >> Pricing >> Define Processing status). They are EU-End user, KU-Key user, MD-Final authority. These processing statuses are assigned to Release status. First two processing status EU, KU were assigned to A (Blocked). The third processing status MD was assigned to Blank (Released). The purpose is: at processing status EU one person will upload the price master. Second person will check the price and will change the processing status to KU if he satisfies with the accuracy of the price master. The third person (final authority) will check the price and set the Processing status MD. Once the condition record gets the status MD, the prices can be used for creating sales order because it is released.
    In the condition record for PR00, when I enterthe processing status  EU or KU the release status shows 'Blocked' release statuses. When I enter MD in the processing status, the release status show 'released'.
    My question is how can assign the responsibilities of changing the processing statuses EU to KU, KU to MD to two different persons.
    Regards,
    K Bharathi

Maybe you are looking for

  • It takes a long time to open an app and sometimes it will just crash, any idea how to fix it?

    My four year old Macbook Pro couldn't start yesterday and after going through solutions and all, it worked. But now it's freaking laggy and whenever I want to open an app, it takes a long time or the app will just crash. Any idea how to fix it? I rea

  • Error in New Features Guide 12c Release 1 (12.1)

    Page 1-6 in the section: 1.1.2.2 Replacement of CSSCAN and CSALTER with DMU At the bottom of the section is a URL purportedly to the OTM DMU page... except that it isn't.  The first link is what's in the book.. and doesn't work. The second link is wh

  • How to restore onboard audio after SB Audigy 2 ZS Uninstall

    I moved my SB Audigy 2 ZS sound card to a new computer - all is fine there. I followed the directions in articles on uninstalling the software and drivers on the old computer (clean boot, etc.). That seemed to go OK. I would like to restore the opera

  • New Empty Rows in Planning Layout

    Hi All I am having a bit of a rough time with 2004S and planning layouts. In order to test that I am not doing something stupid (which is fairly likely) I have created a simplified model (IC, Aggr Level etc etc) with which to prototype. I have an Inf

  • Please review my jazz mix - Moonlight in Vermont

    Greetings and Happy Holidays, I finished recording Moonlight in Vermont where I play all the instrumental parts from the original 1952 recoding. Johnny Smith (guitar), Stan Getz (tenor sax) and Eddie Safranski (bass). I played these on live instrumen