‎2011 Sep 29 2:06 PM
I have internal table with around 1000 records(it is XML format..i am writing the code in one of the BADIs),it is store of TYPE dmee_output_file...in one of the lines there is <ReqdExctnDt>2011-04-28</ReqdExctnDt>
how can i get the value in between these 2 </ReqdExctnDt>...as these 2 are constants..but the date in between them will be changing...i want the date..how to achieve it
‎2011 Sep 29 2:08 PM
Find the end position of the first constant and the start position of the second one. Everything in between is what you want.
Rob
‎2011 Sep 29 2:15 PM
‎2011 Sep 29 2:17 PM
‎2011 Sep 29 2:42 PM
‎2011 Sep 29 3:04 PM
I think you can use regular expressions for this. If not, check the documentation for CS and the other comparison operators.
Rob
‎2011 Sep 30 10:33 AM