cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hello Gurus,

I have a requirement where I need to show values for materials whose (BSTAUS) = V and(BSTTYP) = V .The values are there at PSA level but I saw in the transformation for 2LIS_03_BF that the values for such scenarios are getting deleted , so it is not getting reflected at the cube level . I refered to NOTE 571669 but I didn't understood how to implement the solution.

Can someone guide me about how to implement the solution code wise.

0 Likes
View Entire Topic
RamanKorrapati
Active Contributor
0 Likes

Hi Nagendra,

Implementing note means you may need  install some patches. its not manual kind of work.

Thru note you find advantages and effect if any. inform the same to your supervisors and get approval to implement.

once you got approvals from respective supervisors, take basis team help and implent on sand box or dev system. check the data flow once and values how its loading to target from psa.

if everything looks fine then move to qualitya and do some test case and next moce to prod thru transport request.

If you don't have OSS id to check what OSS Note have, you can t code SNOTE.

further more details, look the below blog which made by mate Suman.

http://scn.sap.com/community/data-warehousing/netweaver-bw/blog/2013/05/19/how-to-download-a-sap-not...

Thanks

Former Member
0 Likes
Hi Raman,
Thanks for the swift response.
The note 571669 implements the below solution which I can see at the start routine for 2LIS_03_BF .
* INSERT BEGIN
loop at DATA_PACKAGE.
if DATA_PACKAGE-stockcat eq 'V' or
DATA_PACKAGE-stocktype eq 'V'.
delete DATA_PACKAGE.
endif.
endloop.
* if abort is not equal zero, the update process will be canceled
ABORT = 0.
* INSERT END
But what I want is to get the values for materials having stockcat and stocktype =V . The note gives a workaround solution for getting those values . The issue that I am facing is how to implement the workaround solution mentioned in the note which mentions about creating two key figures ZVERWERT and ZVERMENGE and updating those with some code mentioned in the NOTE.
RamanKorrapati
Active Contributor
0 Likes

Hi Nagendra,

As said by AL,

please check the version. for which version that note will applciable. if your system details(version, patches) are the same, then you can go ahead with the same note.

Note saying to use routines, take ABAP exepert help and maintian logic and check the data load once. on dev system.

bit kind of abap related thing, explain the same to abaper and he will help you how to pull data into ZVERWERT and ZVERMENGE .

Thanks