on 2024 Jul 03 9:59 AM
Please provide me with a query for an 'Inventory in Warehouse Report' that allows for:
- Date-wise selection
- Item group selection
- Warehouse selection
The report should display the following details:
- Last purchase price
- Total value of the quantity in the warehouse
Additionally, it would be ideal if the report displays all items in a particular warehouse grouped by item groups, along with their totals.
Request clarification before answering.
Hello @Yatin_Talkar
I don't think you will find a single standard transaction suiting your needs. You'd rather need to combine data from a couple of reports:
Consider the note 453888 - FAQ: Reporting in purchasing, point 2 on how to activate ALV display in purchasing reporting with the user parameter ME_USE_GRID.
Best regards
Dominik Tylczynski
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this is not working properly
IF @object_type = '22' AND @transaction_type = 'U' BEGIN DECLARE @CurrentUserID INT -- Get the current SAP B1 user ID (not using INTERNAL_K) SELECT @CurrentUserID = USERID FROM OUSR WHERE USER_CODE = CURRENT_USER -- If the user is NOT allowed IF ISNULL(@CurrentUserID, -1) NOT IN (1, 17, 19) BEGIN IF EXISTS ( SELECT 1 FROM OPOR WHERE DocEntry = @List_of_cols_val_tab_del ) BEGIN SET @error = 10001 SET @error_message = 'You are not authorized to update Purchase Orders.' END END END
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 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.