Hello Umut,
got the same problem.
As soon as I add a SAP system form to my VS10 project (c# or vb), the AddOn stops while try to print. Even if I don´t write any code.
Did you found a solution for this issue?
Regards
Hans
Hello Umut,
got the same problem.
As soon as I add a SAP system form to my VS10 project (c# or vb), the AddOn stops while try to print. Even if I don´t write any code.
Did you found a solution for this issue?
Regards
Hans
Hello Hans,
There is an SAP Note; numbered 1999292. The note suggests that this will be fixed later but there is a workaround involving EventFilters.
I hope that this will help.
SELECT T0.[CardCode], T0.[CardName], T0.[CreateDate],T0.[Balance],T1.[Name],T1.[FirstName], T1.[LastName], T1.[Position], T1.[E_MailL], T1.[U_TWBS_CWCnType], T1.[U_TWBS_CWRptDel] FROM OCRD T0 INNER JOIN OCPR T1 ON T0.CardCode = T1.CardCode WHERE T0.[Balance] <> 0
Hi,
Try this :
SELECT T0.[CardCode], T0.[CardName], T0.[CreateDate],sum(T0.[Balance]), T1.[Name],T1.[FirstName], T1.[LastName], T1.[Position], T1.[E_MailL],T1.[U_TWBS_CWCnType], T1.[U_TWBS_CWRptDel]
FROM OCRD T0 INNER JOIN OCPR T1 ON T0.CardCode = T1.CardCode
WHERE T0.[Balance] <> 0
group by T0.[CardCode], T0.[CardName],T0.[CreateDate],T1.[Name],T1.[FirstName], T1.[LastName], T1.[Position], T1.[E_MailL]
Thanks & Regards,
Nagarajan
Hi,
Add below query in your UDF and don't it auto refresh. After assigning this query, just press shift + F2 to display item with creation date.
SELECT T0.[ItemCode], T0.[ItemName], ADD YOUR UDF FROM OITM T0
Thanks & Regards,
Nagarajan
Dear All,
i have some crystal reports in SAP.while opening any crystal report its through some error like "Error While running crystal report ".
Kindly suggested me how to do this .
Thanks&Regards,
P.Pratap
This is giving me the same error I was getting "TWBS... is invalid in the select list because it is not contained in either an aggregate function or the Group BY Clause.
Hi Richard,
The answer appears to be that SAP can't handle the problem. The only solution is to start from scratch and write a crystal report. In this case it's too hard and not worth the effort.
Hi Saad,
The answer appears to be that SAP can't handle the problem. The only solution is to start from scratch and write a crystal report. In this case it's too hard and not worth the effort.
Hi In other words SAP cannot handle the problem.
If the table is not in the original drop down list adding other tables is unlikely to work proerly.
Thanks for your help
Hi,
Try this:
SELECT
T0.[CardCode], T0.[CardName], T0.[CreateDate],T0.[Balance],T1.[Name],T1.[FirstName], T1.[LastName], T1.[Position], T1.[E_MailL], T1.[U_TWBS_CWCnType], T1.[U_TWBS_CWRptDel]
FROM
OCRD T0 INNER JOIN OCPR T1 ON T0.CardCode = T1.CardCode
WHERE T0.[Balance] <> 0
group by T0.[CardCode], T0.[CardName], T0.[CreateDate],T0.[Balance],T1.[Name],T1.[FirstName], T1.[LastName], T1.[Position], T1.[E_MailL], T1.[U_TWBS_CWCnType], T1.[U_TWBS_CWRptDel]
Thanks & Regards,
Nagarajan
Hi,
Can you post the screen shot over here
Thanks
Taruna
Dear Experts
Please help me in Getting Ageing report with Business Partners 's State Name
Regards
AM
I am not getting an error but I am not getting any grouping.
Hi,
Please advice your UDF types means text or numeric or alphanumeric.
OR post screen shot of above UDF with values from OCPR table.
Thanks & Regards,
Nagarajan
I am trying to get a query that contains the following fields from each table.
OITM
itemcode
U_EXT_DESC
OITW
whscode
onhand
iscommited
OSRN
U_stated_cost
location
U_suggested_price
I have multiple warehouses, so I only want items that have qty 1 or more on hand value from MAIN or TECH warehouse to appear in this list
If the onhand value is 0, then I do not want it to appear on this report.
If the location and stated cost and suggested prices are duplicate lines, I want to consolidate to just be ONE row.
Can someone please help me write this query??
Hi,
Add your UDF in below query:
SELECT T0.[ItemCode], T0.[ItemName], T1.[WhsCode], T1.[OnHand], T1.[IsCommited], T2.[Location] FROM OITM T0 left JOIN OITW T1 ON T0.ItemCode = T1.ItemCode left JOIN OSRN T2 ON T0.ItemCode = T2.ItemCode WHERE T1.[OnHand] >0 and T1.[WhsCode] IN ('01','02') GROUP BY T0.[ItemCode], T0.[ItemName], T1.[OnHand], T1.[IsCommited], T2.[Location], T1.[WhsCode]
Thanks & Regards,
Nagarajan
Hi Pratap,
Upgrade Crystal Report 2011 if your SAP B1 Version is above 8.82
Hi All,
Thanks for your reply,
already i close this Issue.
they have one addon for crysatl report .so it show error like Error while Running crystal report
thanks&Reagrds,
P.Pratap