on ‎2013 Jul 03 5:36 AM
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.
Request clarification before answering.
Hi,
I have gone through the note.
Few questions :
As this note is very old so you need to check on the same as well.
You have to ignore the start routine part and follow the routines written in communication structure.
Hope it gives some idea.
Regards,
AL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Anshu,
1 . My Inventory data flow is in 7.x flow
2 . Bw Release - 731 , SP- level - 0004 , Support package - SAPKW73104
3 . I have a report for non - moving inventory where I need to capture receipt value having movement 101 . Now the problem that I am facing is that if there is a movement type 101 and stockcat =v and stocktyp =v the particular record is deleted at transformation level because of the code as mentioned below :-
* 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
Now the Note 571669 tells a workaround solution for the same . I wanted to know how to implement that solution code-wise as I am not able to understand the solution thoroughly.
Hi,
First of all the code given in that note is for 3.x flows and not for 7.x.
You need to comment the start routine part in case you are planning to capture material consumption value and quantity.
Enhance your cube with the 2 keyfigures as mentioned in that note.
Replace comm_structure with source_fields in case of 7.x.
Map all the fields stated above with your newly created keyfigure and write the field level routine.
Hope this helps.
Regards,
AL
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.