Hi,
Please refer SAP note:
1766733 - Cannot Access External Data when opening dashboards
Thanks & Regards,
Nagarajan
Hi,
Please refer SAP note:
1766733 - Cannot Access External Data when opening dashboards
Thanks & Regards,
Nagarajan
Dear Mr. Kennedy,
Thanks for your replay.
But i can't find out any type of help from your mentioned threads.
In Bills of Material Table, there isn't any type of DocKey fields are available.
I used Product Code as an Parameter but the problem is Product Code is an String type not a number so, it will always ask to enter parameter.
I think you exactly understand my problem.
Thanks & Regards,
Nishit Makadia
Here is a Crystal Reports check layout you could use: http://goo.gl/tVPVai
Here is the PLD system variable guide (http://goo.gl/4jBUwm) but I don't see exactly what you are looking for. I have had some success using the system information, holding my mouse over the field I want and then using the "Variable" number there but not always.
Try my Crystal Reports cheque layout. It is much more flexible than the PLD layout. Available free here: Crystal Reports Check / Cheque Layout for SAP Business One - YouTube
If you want a Crystal Reports cheque layout you can get it here: https://www.youtube.com/watch?v=-_J9sK9dylw&feature=youtu.be
Much more flexible than the PLD ones.
Hi,
You may check:
http://scn.sap.com/thread/3162402
http://scn.sap.com/thread/1542896
http://scn.sap.com/thread/1475349
Thanks,
Gordon
corrected the URL Message was edited by: Paul Finneran
Dear Experts,
Kindly provide RG 23 A Part II Register Query based Report.
Regards
Amol
Hi David...
Try This
SELECT T0.[ItemCode], T0.[ItemName], SUM(T3.[Quantity]) AS ' Qty Sold', T2.[OnHand]
FROM OITM T0
INNER JOIN OITW T2 on T0.ItemCode = T2.ItemCode
Inner JOIN INV1 T3 ON T0.ItemCode = T3.ItemCode
WHERE (T2.[WhsCode] = '01' OR T2.[WhsCode] = '01A') AND T0.ItemCode Like '[%0]%%' AND T3.DocDate > '[%1]' AND T3.DocDate < '[%2]'
GROUP BY T0.[ItemCode], T0.[ItemName], T2.[OnHand]
Order BY T0.[ItemCode]
Regards,
Kennedy
Hi All,
User perform an activity (printing BoEs and sending them to customers) every Wednesday and every week gets the same error message.
Generate 1 spool number, but there are 2 outputs (instead of 1) and 1 of them is every week in error. The image below is expanding F5 status.
How to resolve this issue permanently??
Thanks
Many thanks for your input, however, both suggestions are going towards what I am trying to get away from.
Perhaps I didn't quite fully explain. We need to see the current stock level for ALL itemcodes that meet the criteria given BUT just for warehouses 01 and 01A (why we can't use the built in reports). Against the current stock level we need to be able to see the number of stock sold in the given date range, and if no stock sold either show a blank (null) or a 0.
It is this last bit that I struggle with. Where there is an Itemcode code, with say current stock of 24, if nothing has been sold within the date range then the whole itemcode row is suppressed from the query output and my Stock Manager will not know the current stock of that item. Being able to what is in stock gone unsold in a whole month is very important.
I have tried to use a Case statement on the SUM(T3.[Quantity]) so that if null it can show a 0 but this doesn't work either due to the SUM aggregate function. This is why I am thinking along the lines of a sub query to almost tack on the extra SOLD column. I think the Date range criteria linking to INV1 table will omit query result where nothing has been sold.
My SQL writing skills are 3 years rusty so any help appreciated.
Hi everybody!
I use Crystal Reports 2008 to develop reports.
The reports are run from within SAP B1 (ver 8) (Preview External Crystal Reports File)
The reports use a SQL Stored Procedure as DataSource
I have a parameter in CR2008 called "DateRange1" and I set "Allow Range Values" to TRUE
My aim is to get a Selection Criteria Screen showing something like this when I run the report in SAP B1
Date Range From ...... To ......
I can do this when my datasource is a View.
But if my datasource is a Stored Procedure, the option "Allow Range Values" is grayed, so I cannot set it to True.
My stored procedure has an input parameter called @DateRange1
-------------
I read the SAP Publication "How to work with Crystal Reports in SAP Business One".
It seems that this can be done, but I don't know if it works together with a Stored Procedure.
-------------------------------------
Anyone has any idea or suggestion? Or it it impossible?
Thanks
Leon Lai
Hi David..
Try This
SELECT T0.[ItemCode], T0.[ItemName],
isnull((select SUM(T3.[Quantity]) from inv1 t3 where t3.itemcode=t0.itemcode),0) AS ' Qty Sold', T2.[OnHand]
FROM OITM T0
INNER JOIN OITW T2 on T0.ItemCode = T2.ItemCode
WHERE (T2.[WhsCode] = '01' OR T2.[WhsCode] = '01A') AND T0.ItemCode Like '[%0]%%' AND T3.DocDate > '[%1]' AND T3.DocDate < '[%2]'
GROUP BY T0.[ItemCode], T0.[ItemName], T2.[OnHand]
Order BY T0.[ItemCode]
Regards,
Kennedy
Hi Kennedy,
Not quite but got me to the solution so many thanks, just had to move the docdate criteria into the sub query:
SELECT T0.[ItemCode], T0.[ItemName],
isnull((select SUM(T3.[Quantity]) from inv1 t3 where t3.itemcode=t0.itemcode AND T3.DocDate > '[%0]' AND T3.DocDate < '[%1]'),0) AS ' Qty Sold', T2.[OnHand]
FROM OITM T0
INNER JOIN OITW T2 on T0.ItemCode = T2.ItemCode
WHERE (T2.[WhsCode] = '01' OR T2.[WhsCode] = '01A') AND T0.ItemCode Like '[%2]%%'
GROUP BY T0.[ItemCode], T0.[ItemName], T2.[OnHand]
Order BY T0.[ItemCode]
Dave A.
Hi Sriram Patro...
You have posted in the SAP Business One - Place please check the correct place and post..
Close the Thread here
Regards
Kennedy
Hi JohnSmith..
You have posted in the SAP Business One - Place please check the correct place and post..
Close the Thread here
Regards
Kennedy
Thanks Nagarajan for reply.
I was reported this issue with SAP and here is SAP reply.
The dashboard designer tool, formerly known as excelcius was supported for designing B1if based dashboards. For our solution SAP Business One, version for SAP HANA, we have our own in built dashboard designer which has data sources such as the UDQ ( user defined query) , HANA models ( attribute, analytic, calculation views) etc. Hence the reported request is beyond the support scope of the SAP Bu siness One version for SAP HANA, hence we would request you to kindly utilize the current dashboard designer and for further information contact your local product expert or solution architect for you r region for SAP Business One.
Thanks
Raj
Can anyone suggest a report to get vendor consignment spend, by period and factory location.
Standard reports seem to work off GR quantities and the value in SAP at that point . As consignment posting have no value at that point the reports return no value.
The problem was solved with new Version of SAP.
Well Why dont you try a sbuquery for that ?
I mean you can add a subquery or function like this:
Select
[Field A],
[Field B],
[Field C],
[SELECT [FIELD X] FROM O.... INNER JOIN I... WHERE ...],
OR
Select
[Field A],
[Field B],
[Field C],
Function_Name (Values),
so you can use Results from query in this two ways and find what you ned with out dulicity ...
let us know.