Date not coming correctly in date field

Hi all
I have added a field on a screen of type dats (8 char)
So if user gives date as 10/11/2009 he can only update the field with 10/11/09
If i change the length to 10 then if user gives date in a wrong format also like abcdefg
then also it will be updated ?
how can thsi be resolved?

Hi,
if you are using selection screen then try the code given below..
parameters :
p_date like sy-datum.
write p_date.
otherwise if you are using screens,
then instead of drawing the input field and assigning the dats value to it,
use dictionary fields by pressing F6 on the layout of the screen,
from the table syst, select the field datum...
this works for sure...
regards,
Siddarth

Similar Messages

  • Data is not coming correctly through delta from DSO to Cube

    HI All,
    When there is change in Org. Unit, Job or any characteristic of employee then the the delta of data source picks that change records.
    I have used DSO before Cube. Now in DSO active table have one record against the Employee and same Schedule hours as ECC have.
    But while loading to the cube, this data of schedule hours will get added to existing schedule hours  of Cube , which makes the schedule hours double for that Employee. For exmaple.
    DSO Data.
    Emp NO.     Date Org. Unit     Sch. Hrs
    1                    ABC                              16
    CUBE Data
    Emp NO.     Org. Unit     Sch. Hrs
    1                    ABC               16
    Now Employee Org. Unit get changed to XYZ.
    DSO Data.
    Emp NO.     Org. Unit     Sch. Hrs
    1                    XYZ               16
    CUBE Data
    Emp NO.     Org. Unit     Sch. Hrs
    1                    ABC               16
    1                    XYZ               16
    I need data as it is in the DSO.
    Please help, thanks in advance.
    Arvind

    Hi Arvind,
    DSO and Infocube works different for char values......you can define Key Fields in DSO...
    whereas in Infocube each Characteristic value work as Key Field.....that's the reason if there is any change in any characteristic value ...
    DSO Active data will not change if Key field has not change..... the newly updated Data field value will be available in DSO Active Table.....whereas in Infocube... it will create a new entry......
    In order to get the updated value each time you need to explore some other options .....like complete deletion of Info cube data and full load everyday.......
    Other options depends on design and data volume and other parameters.
    Hope this helps........
    Regards
    Mayank

  • Output not coming correct

    Hi,
    I had developed this code and after all modifications and alterations in it ,i am pasting here bcoz it is still giving the problem that the values of ITAB does not contain the correct data as it keep on repeating the same value for the data in ITFINAL.
    Plzz go through this code and help me out as i tried whole day and still it is not coming right.
    My job is online bcoz if it start displaying correct data then i have to make addition in other code also. plzz helpme out as help will be definately rewarded.
    here's the code:-
    TABLES: BKPF,MKPF,BSIK.
    DATA: BEGIN OF ITBKPF OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITBKPF.
    DATA: BEGIN OF ITMKPF OCCURS 0,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          END OF ITMKPF.
    DATA: BEGIN OF ITAB OCCURS 0,
          BELNR LIKE BSIK-BELNR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          BUKRS LIKE BSIK-BUKRS,
          GJAHR LIKE BSIK-GJAHR,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITAB.
    DATA: BEGIN OF ITFINAL OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          END OF ITFINAL.
    *PARAMETERS: P_BUKRS LIKE BKPF-BUKRS,
               P_GJAHR LIKE BKPF-GJAHR,
               S_LIFNR LIKE BSIK-LIFNR.
    SELECT-OPTIONS: P_BUKRS FOR BKPF-BUKRS,
                    P_GJAHR FOR BKPF-GJAHR,
                    S_LIFNR FOR BSIK-LIFNR.
          SELECT ABUKRS ABELNR AGJAHR AAWTYP AAWKEY ABUDAT INTO TABLE ITBKPF FROM BKPF AS A
          WHERE  AAWTYP = 'MKPF' AND ABUKRS IN P_BUKRS AND A~GJAHR IN P_GJAHR.
          IF NOT ITBKPF[] IS INITIAL.
          SELECT AMBLNR AMJAHR INTO TABLE ITMKPF FROM MKPF AS A FOR ALL ENTRIES IN ITBKPF WHERE A~MBLNR = ITBKPF-AWKEY(10).
          SELECT ABELNR AWRBTR ALIFNR ABUKRS AGJAHR BBUDAT FROM BSIK AS A
          INNER JOIN BKPF AS B ON BBELNR = ABELNR
          INTO TABLE ITAB
          WHERE
          A~LIFNR IN S_LIFNR.
          ENDIF.
    SORT ITAB BY BELNR.
    LOOP AT ITBKPF.
    CLEAR ITMKPF.
    READ TABLE ITMKPF
    WITH KEY MBLNR = ITBKPF-AWKEY+(10)
              MJAHR = ITBKPF-AWKEY+10(4).
    CHECK sy-subrc EQ 0.
    ITFINAL-BELNR = ITBKPF-BELNR.
    ITFINAL-GJAHR = ITBKPF-GJAHR.
    ITFINAL-AWKEY = ITBKPF-AWKEY.
    READ TABLE ITAB
    WITH KEY BUKRS = ITBKPF-BUKRS.
    CHECK sy-subrc EQ 0.
    ITFINAL-WRBTR = ITAB-WRBTR.
    ITFINAL-LIFNR = ITAB-LIFNR.
    APPEND ITFINAL.
    CLEAR ITFINAL.
    ENDLOOP.
    LOOP AT ITFINAL.
    WRITE: / ITFINAL-BELNR , ITFINAL-GJAHR, ITFINAL-AWKEY+(10),ITFINAL-WRBTR ,ITFINAL-LIFNR .
    ENDLOOP.

    Hi,
    I had checked the all Interenal Tables and each and every table is having the desiered data except ITFINAL.,it is storing the value of ITAB
    i.e. displaying the same record for the data coming from the ITBKPF ,now my problelm is how to display the correct data from ITAB to the ITFINAL which is not able to store this coreect data,plzz help me out in solving this problem .
    The code in am using right now is:-
    TABLES: BKPF,MKPF,BSIK.
    DATA: BEGIN OF ITBKPF OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITBKPF.
    DATA: BEGIN OF ITMKPF OCCURS 0,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          END OF ITMKPF.
    DATA: BEGIN OF ITAB OCCURS 0,
          BELNR LIKE BSIK-BELNR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          BUKRS LIKE BSIK-BUKRS,
          GJAHR LIKE BSIK-GJAHR,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITAB.
    DATA: BEGIN OF ITFINAL OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          END OF ITFINAL.
    *PARAMETERS: P_BUKRS LIKE BKPF-BUKRS,
               P_GJAHR LIKE BKPF-GJAHR,
               S_LIFNR LIKE BSIK-LIFNR.
    SELECT-OPTIONS: P_BUKRS FOR BKPF-BUKRS,
                    P_GJAHR FOR BKPF-GJAHR,
                    S_LIFNR FOR BSIK-LIFNR.
          SELECT ABUKRS ABELNR AGJAHR AAWTYP AAWKEY ABUDAT INTO TABLE ITBKPF FROM BKPF AS A
          WHERE  AAWTYP = 'MKPF' AND ABUKRS IN P_BUKRS AND A~GJAHR IN P_GJAHR.
          IF NOT ITBKPF[] IS INITIAL.
          SELECT AMBLNR AMJAHR INTO TABLE ITMKPF FROM MKPF AS A FOR ALL ENTRIES IN ITBKPF WHERE A~MBLNR = ITBKPF-AWKEY(10).
          SELECT ABELNR AWRBTR ALIFNR ABUKRS AGJAHR BBUDAT FROM BSIK AS A      "
          INNER JOIN BKPF AS B ON BBELNR = ABELNR
          INTO TABLE ITAB
          WHERE
          ALIFNR IN S_LIFNR.    "ABUKRS = B~BUKRS.
          ENDIF.
          SORT ITAB BY BELNR.
         SELECT ABELNR AWRBTR ALIFNR ABUKRS A~GJAHR FROM BSIK AS A INTO TABLE ITAB
         FOR ALL ENTRIES IN ITBKPF
         WHERE
         ABUKRS = ITBKPF-BUKRS AND ALIFNR = S_LIFNR.
         ENDIF.
    LOOP AT ITBKPF.
    CLEAR ITMKPF.
    READ TABLE ITMKPF
    WITH KEY MBLNR = ITBKPF-AWKEY+(10)
              MJAHR = ITBKPF-AWKEY+10(4).
    CHECK sy-subrc EQ 0.
    ITFINAL-BELNR = ITBKPF-BELNR.
    ITFINAL-GJAHR = ITBKPF-GJAHR.
    ITFINAL-AWKEY = ITBKPF-AWKEY.
    SORT ITAB[] BY BELNR GJAHR BUKRS.
      READ TABLE ITAB
      WITH KEY
    BELNR = ITBKPF-BELNR
      GJAHR = ITBKPF-GJAHR
      BUKRS = ITBKPF-BUKRS
      BINARY SEARCH.
    CHECK sy-subrc EQ 0.
    ITFINAL-WRBTR = ITAB-WRBTR.
    ITFINAL-LIFNR = ITAB-LIFNR.
    APPEND ITFINAL.
    CLEAR ITFINAL.
    ENDLOOP.
    LOOP AT ITFINAL.
    WRITE: / ITFINAL-BELNR , ITFINAL-GJAHR, ITFINAL-AWKEY+(10),ITFINAL-WRBTR ,ITFINAL-LIFNR .
    ENDLOOP.
    Edited by: abaper2008 on May 29, 2008 6:35 AM
    Edited by: abaper2008 on May 29, 2008 9:21 AM

  • Wagetype calculation not coming correctly

    Hi
    Whenever we run a transfer action in between the payroll period wagetypes which we have maintained in 14 Infotype are not calculating correctly.
    Ex: Performance pay wagetype is there Amt is Rs 1000  start date 01.04.2008 and end date 31.12.9999. If we run transfer action on 15.04.2008 at the end of the payroll period i.e., 30.04.2008 Payout in this particular wagetype should be 1000 but it is coming as Rs 500
    What we have do suggest please
    Thanks
    Mahantesh

    Hi
    Amount whatever it is calculating is taking in to account the Loss of pay days is correct.
    Problem is when we transfer the employee in between the payroll period while we getting the payout for the period for the earliest record
    Ex Employee 1001 holding Postion X from 01.01.2008, on 15.04.2008 transfered to  postion Y.
    This employee is getting the payout from 15.04.2008 to 30.04.2008 for tht particular month.
    Again in the next month from 01.05.2008 to 31.05.2008 he will get the correct payout
    whenever we run action in between the payroll period this problem is coming
    Thanks

  • Witholding tax amount is not coming correct in FBL1N report.

    The WHT amount in vendor line item report in column withholding tax is being displayed without a minus(-) sign indicating a debit amount, but this amount is in fact not a debit amount, when this column is sum up it gives incorrect total.
    Regards
    Abhisekh Mandal

    Dear Abhisekh,
    SAP note 363309 says,
    "Remove the field which contains the withholding tax information
    from your display variant.
    If you want to display the withholding tax information, double-click on
    the document number and subsequently choose 'Withholding tax' button."
    (BSEG-QSSKZ, BSEG-QSSHB, BSEG-QBSHB) field is not relavent for
    Extended withholding tax and not suppose to use in report FBL1N.
    It basically does not make any sense to use the withholding tax fields
    of the document line items (BSEG-QSSKZ, BSEG-QSSHB, BSEG-QBSHB) with the
    activated extended withholding tax.
    I'm sorry not to help You further.
    Mauri

  • Difference is not coming correct

    Hi guys,
    i have two measure a and b
    i am doing total by at month level and also a have a calculated column c=a-b
    but it is not giving correct result as
    a b c
    122 123 34 this is total by result.
    it should give -1 for c.
    so how can i resolve this problem.

    Hi,
    Create a dummy column [C](drag and drop any column and Rename it into CalumnC) in your report and edit the formula for your columnC
    and the do your calculation like IfNull(Tablename.columnA,0) - IfNull(Tablename.ColumnB,0) and
    set Aggregation Rule is Server Determined
    Thanks,
    Balaa...

  • Customer prices are not coming correctly!!!

    Hi Experts,
    Question: "Changes made in customer prices in ECC, how it gets replicated to ECO ISA application?".
    We have maintained customer specific condition records in ECC. Also, list prices have been maintained in product catalog.
    WIth replication of product catalog to TREX, we can see latest list prices in webshop product catalog.
    But changes done in customer specific pricing condition records are not appearing in web shop.
    Now, If we restart VMC then we can see latest customer prices in web shop. But this is not solution as we cannot restart VMC on every change of customer pricing condition record.
    Please explain process on how webshop access customer pricing condition records?
    (We know that webshop gets prices with using pricing procedure determination using rfc call, then why it could not able to access correct condition record after change in condition record?).
    Please help.
    Thank you,
    Dhanraj

    Dear Friends,
                    Thanks for your reply. In copy control from delievery to billing,settings are as follows,
             Pricing type:- G
             Coping requirement:-004
             Data VBRK/VBRP:-007
      Users enter prices manually when they prepare sales order.Condition category is empty in condition type.
      Looking forward for your reply.
    Regard,s
    Abhijeet

  • User name not displaying correctly in history fields in Sharepoint on Office365

    The issue is for this one user on any form with history instead of the display name it shows his SharePoint user ID.   Everywhere else for that user it shows correctly.    For all other users they show correctly in the history as displayname
    date/time comment.   I know that somehow a field on his user got changed and we need to know what field it is under that user's account so either we can manually change it back or the correct procedure to correct this issue.
    I can recreate it by simply creating a new list and select multiple lines of text and select append text to yes
    Then in InfoPath select that list item and drag it on the page along with a submit button that writes the data and closes the webpage.
    Then open a new item on that list with any other user it creates that item and shows their name time/date and the comment that they made.   With the user that is having an issue it shows his user ID time/date and the comment.

    Got it.

  • SSD based on ATP rule is not coming correctly

    HI,
    We have issue with one of the item for which Sheduled ship date based on ATP is going out of planning horizon, eventhough we have supplies available for it.
    Issue in details:
    1. We are creating manual IR and ISO for that item, by giving need by date say 3-Jan-15, but the ISO is having the SSD outside the planning horizon.
    2. Checked for the available supply in ASCP planner workbench for the Org where ISO is getting booked and it is having enough supplies in the form of onhand, intransit shipments, planned orders. Checked for the onhand and it is pegged to Forecast demands and it is available to reserve and transact.
    3. Checked for the item attribute for this part no, it has check ATP value as 'Material Only'
    4. No ATP rule is defined in the item attribute for this item, also ATP component is having value as  'None'
    5. Checked for the MRP item attributes and it is End assembly/soft pegging
    6. Checked for the BOM and it has only single component in its BOM with the ATP flag unchecked for that component item in BOM and also at Org attribute level the ATP value is 'none' for component.
    I am not able to figure out the reason why the SSD is going out of planning horizon eventhough there is enough supplies aviable in the ATP enabled ASCP plan.
    Could you please help me for more checkpoints?
    Thanks,
    Avinash

    HI Abhishek,
    Thanks for the feedback, we have ATP results based on planning output. (Profile: INV:Capable to Promise=ATP/CTP Based on Planning output at site level)
    We can see many exception messages generated for this item in ATP enabled ASCP plan:
    1. Late supply pegged to Forecast
    2. Orders with compression days
    3. Past due Orders
    4. Orders to be rescheduled in
    5. Sourcing split percentage violated
    Please check below screenshot for the same:
    Also,
    this plan has demand scheduled attached as Forecast sets
    Thanks,
    Avinash

  • Multple page not coming correctly when using "Control Levels"

    Hi,
    There is a situation wherein "Control Levels" is required to be used. However, the output is not as expected. Some of the problems with this are
    1. Some of the data is being lost
    2. Some pages are blank
    3. The data is overlapping/overwriting on the footer section
    and others issues..
    Has anybody come across similar issues? If yes, could you suggest a solution
    Thanks in Advance.
    Thanks,
    Jayant

    Having raised this message with OSS, we got to know that the issue was with the generated XML file. The line is BOLD needs to be added between the lines as shown below.
    <template xmlns:xliff="urn:oasis:names:tc:xliff:document:1.1" xmlns="http://www.xfa.org/schema/xfa-template/2.4/">
       <?layout streamLineLayout 1?>
      <subform layout="tb" locale="fr_CH" name="data">
    Not sure of the real purpose of this. But it works

  • File read write program output not coming correct

    this code is compiling without issues but the output is not what i am expecting .. the contents of delta.txt are as follows
    *4014254420*
    *2897449776*
    *4207405601*
    and the output thats coming is
    +4014254420+
    +40142544204207405601+
    +4207405601+
    its not reading the 2nd line somehow
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.File;
    import java.io.*;
    import java.io.FileWriter;
    import javax.swing.*;
    import java.util.Scanner;
    public class testloop
              static int i;                                             
               static char c;                                               
               static int j = 1;     
                    static String filename;                                                  
      public static void main(String[] args)  throws IOException 
    try {
         FileReader fmi = new FileReader("delta.txt");
         FileWriter fmo = new FileWriter("Updated.txt");
         BufferedReader br = new BufferedReader(fmi);
                   String temp=null;
                        do{
                        temp = br.readLine();
                        if(temp.startsWith("*"))
                             String tempc = temp.substring(1);                         
                             System.out.print(tempc+"\n");
                            long tp = Long.valueOf(tempc);
                             System.out.print(tp);                    
                   else
                   fmo.write(temp);
                        }while((temp=br.readLine()) != null);
                   fmi.close();
                   fmo.close();
                   }catch (FileNotFoundException e){ System.out.print("not found");     }
                   catch (IOException e){System.out.print("io"+e);
                   e.printStackTrace();
        also if i use the following delta.txt
    **4014254420*
    **2897449776*
    **4207405601*
    mmm+
    i get the output as
    +4014254420+
    +40142544204207405601+
    +4207405601Exception in thread "main" java.lang.NullPointerException+
    at testloop.main(testloop.java:33)*
    its not writing the text to the file updated.txt
    Edited by: adhiraj on Nov 27, 2007 6:58 AM

    You are getting the next line twice.
    do{
                        temp = br.readLine();
                        if(temp.startsWith("*"))
                             String tempc = temp.substring(1);                         
                             System.out.print(tempc+"\n");
                            long tp = Long.valueOf(tempc);
                             System.out.print(tp);                    
                   else
                   fmo.write(temp);
                        }while((temp=br.readLine()) != null);You need to change your code around so that you only call
    temp=br.readLine();once per iteration of the loop.

  • Report output not coming correctly

    Hi All,
    my query is like
    select 'gggohpoopiokoljmkjjg@@@@@' record from dual;
    where record string's length is more than 2000 characters.
    I am using oracle report for this purpose as i have some other validations associated with it.
    i am printing the report output in a flat file.i want ALL THE OUTPUT SHOULD COME IN ONE LINE.
    but this is not happenning so...for the string lengths more than 1000 it's coming in diff line.
    How can i make sure that my output file WILL BE IN SINGLE LINE.
    i tried in unix vi editor i can give 3000 charecters but it doesn't go to the second line.
    any help on this issue will be helpful
    thanks in advance

    If there's no easy way to do it, you may use a "special character", like chr(xx), as your long line delimiter to chop a line into a couple of lines. Then you write a very simple C program to post-process the report output file to remove these "special character".
    If all characters are possible in your report file, you may use a string as the delimiter.

  • Grand Total not coming correctly in Tabular report

    Hi,
    When I extract in Answers the following information:
    Dimension 1
    Dimension 2
    Dimension 3
    Metric 1 (sum)(sum i defined in RPD)
    Metric 2 (count distinct)(count is defined in RPD)
    When doing this, I get the right result for every value of the dimension, but the total of the summation metric is not correct in tabular report
    Can someone help me, please?

    Hi,
    Try this........
    Add this <ReportAggregateEnabled>true</ReportAggregateEnabled> somewhere inside your <ServerInstance> and </ServerInstance>
    on instance config and restart the presentation services.
    Cheers,
    Aravind

  • Signature status not coming correct during silent printing. Bug?

    Am using javascript inside my plugin to get the signature status in Acrobat 9.3.  Below is the code.
    sprintf(jsScript,"var f = this.getField('%s').signatureInfo(); event.value = f.status; ",strSigField);ASBool bRet = AFExecuteThisScript (gPDDoc, jsScript, &pReturnValue);
    This is working fine, except during slient printing.  Everytime including normal print, am getting the status as '4' i.e. signed which is correct.
    However, while printing silently in Acrobat either via code or manually by Right-clicking on the pdf in Explorer and selectting Print, am getting '1' i.e. unknown status for signed signature fields.
    Have also tried executing the menu item "Advanced->Sign & Certify->Validate All Signatures" before trying to get the status but am getting the same result.
    Please let me know if anyone else has also experienced the same issue and what is the cause/resolution of the same or this is a bug in Acrobat?

    Irosenth,
    Submitted a bug report and uploaded the sample pdf at http://www.megaupload.com/?d=Z5P8STOL.
    Let me know if any further information is required.

  • Pdf file is not coming correctly

    Hi,
    User came up with an issue as follows:
    "PDF invoices in CS language are incorrectly generated, Czech characters are missing. "
    Can any one suggest wht can be done.

    check doc is converted to perticular language or not..if it is converted then then i think that pertiacular word is not able to convert to the language.
    rewards if useful.....
    regards
    sachhi

Maybe you are looking for

  • Why is this usb to ethernet adapter so cheap?

    Hi, I need an enthernet Adapter for my macbook air and found this one: http://www.ebay.de/itm/USB-2-0-Adaptor-Ethernet-Adapter-Apple-Macbook-Air-brandn eu-Top-Qualitat-/170717342238?pt=Apple_Zubeh%C3%B6r&hash=item27bf8bea1e#ht_2389w t_982 is it origi

  • Creating a DVD from FCEHD

    I have just completed a 50 minute project (3.62GB) in FCEHD v3.0 on a G-4 Mac with OS 10.4.3 and want to burn it onto a DVD. The program contains 8mm movie clips, scanned photos and video clips with voice over and/or music background. There are no ch

  • Insufficiant for performing this operationwhen try to connect to the sharepoint site

    Dears, I have an issue when i try to open the SharePoint site from the report builder to save the report or get the data source  it gives :unable to open or save the file the permissions granted to the 'Nt Authority\Anonymous logon' are insufficient

  • Question about Personal Hotspot

    First of all, apologies if I have posted this to the wrong place - I am new to this! I have limited knowledge about how the Personal Hotspot feature on the iPhone works. Yesterday I used it for the first time. I connected to a friend's personal hotsp

  • Tracking deleted pricing condition records

    Hello, I Have a condition record for a condition type with a  particular price of USD 100 with validity date from 1.10.09 to 30.10.09. Now we create another condition record for the same condition type with a new price of USD 50 with same valid date