Quantcast
Channel: SCN: Message List - Reporting and Printing
Viewing all 2719 articles
Browse latest View live

Re: Addon stops when trying to Print

$
0
0

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


Re: Addon stops when trying to Print

$
0
0

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.

How can I group By Card Code? I get an error so not sure how to Group by

$
0
0

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

Re: How can I group By Card Code? I get an error so not sure how to Group by

$
0
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

Re: Item Master Creation time in UDF - List of Items

$
0
0

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

Error While running crystal report

$
0
0

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

Re: Error While running crystal report

Re: How can I group By Card Code? I get an error so not sure how to Group by

$
0
0

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.


Re: Need to Add Invoice table OINV to Collection report

$
0
0

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.

Re: Need to Add Invoice table OINV to Collection report

$
0
0

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.

Re: Need to Add Invoice table OINV to Collection report

$
0
0

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

Re: How can I group By Card Code? I get an error so not sure how to Group by

$
0
0

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

Re: Error While running crystal report

$
0
0

Hi,

 

Can you post the screen shot over here

 

Thanks

Taruna

Re: Ageing Report

$
0
0

Dear Experts

 

Please help me in Getting Ageing report  with Business Partners 's State Name

 

 

 

Regards

 

 

AM

Re: How can I group By Card Code? I get an error so not sure how to Group by

$
0
0

I am not getting an error but I am not getting any grouping.


Re: How can I group By Card Code? I get an error so not sure how to Group by

$
0
0

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

Inventory query

$
0
0

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??

Re: Inventory query

$
0
0

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

Re: Error While running crystal report

$
0
0

Hi Pratap,

 

         Upgrade Crystal Report 2011 if your SAP B1 Version is above 8.82

Re: Error While running crystal report

$
0
0

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

Viewing all 2719 articles
Browse latest View live