Wednesday, December 17, 2014

ABAP RAW String not updating

If you have created a field of RAWSTRING type and while checking you will be seeing that when appending into the table and check in SE11 tcode, you may see that the field data is not visible.

Don't get panic, check once in SE16N and still its not visible then try by moving the field in the last in the SE11.

Monday, October 13, 2014

Add first line to field symbol

Issue : When Internal table is empty and no workarea is avalable, how to append workarea
Sol : APPEND INITIAL LINE TO it_tab ASSIGNING <fs>.

Thursday, December 19, 2013

Add Spaces at the end of the file


Issue : To add spaces at the end of the file
Sol : 
Adding spaces at the end of the file can be of two types
  1. By declaring any temporary field with "cl_abap_conv_in_ce=>uccp( '00a0' )"
  2. By adding Uni-code space in editor (Alt+255).

Wednesday, December 12, 2012

Friday, December 7, 2012

Adobe reader problem


Issue : Problem with Adobe
Sol :
Goto the link here

Use Secondary Index in program to fetch data


Issue : To make the program to pick the data from the database using the secondary index
Sol :
%_HINTS ORACLE 'INDEX("table" "table name~index name")'.