Alert for Sales Order
Hi Experts I need Query Based Alert for sales order . when Sum of Quantity reaches 55500 when process equal to some X process in a particular month then it should pop an Alert Ex: SELECT...
View ArticleRe: Alert for Sales Order
Hi, Check This SELECT SUM(T1.[Quantity]) FROM ORDR T0 INNER JOIN RDR1 T1 on T0.DocEntry = T1.DocEntryWHERE T0.[U_Process] = 'PEACHING' and Datediff(DD,T0.[DocDate],getdate())='0' Having...
View ArticleRe: Printing Reports generated by CR
Hi, Please Check this Administration--> System Initialization --> Print preferences --> Per Document Thanks,Nithi
View ArticleRe: Alert for Sales Order
Hi Jennifer, Check this code. DATA : Qty type RDR1-Quantity. SELECT SUM( T1~Quantity ) INTO Qty FROM ORDR AS T0 INNER JOIN RDR1 AS T1 ON T0~DocEntry = T1~DocEntry WHERE T0~U_Process = 'PEACHING'...
View ArticleRe: Alert for Sales Order
Hi, Try this: SELECT SUM(T1.[Quantity]) FROM ORDR T0 INNER JOIN RDR1 T1 on T0.DocEntry = T1.DocEntryWHERE T0.[U_Process] = 'PEACHING' Having SUM(T1.[Quantity]) = '555000' Thanks & Regards,Nagarajan
View ArticleRe: Printing Reports generated by CR
Everything looks to be set up correctly. Not sure what could be causing the extra reports to print. Thanks,
View ArticleRe: Printing Reports generated by CR
Hi, Please Check AR down payment Print Preferences Thanks,Nithi
View ArticleRe: Printing Reports generated by CR
Hi, Please check SAP note: 1101980 - US_CA_Printing Orders connected to Including Down Payment and Payment Thanks & Regards,Nagarajan
View ArticleCrystal Report always prints blank page
Hi! I'm having a weird scenario in which when my client prints from SAP B1, it always displays blank page even if there is a layout during Print Preview. However, when the client are exporting the...
View ArticleRe: Printing Reports generated by CR
When I click the link it asks for username and password. I put it in but it doesn't do anything. I just get a blank white page.
View ArticleProblem with connection when preview Crystal Reports 2013 form in SAP HANA
Hi, When preview or print layouts created in Crystal Reports in SAP Business One HANA, we are facing the following error: Fail to open the connection. In Crystal Reports, when we go to 'Add Ins' in...
View ArticleInvoices sent via email
Hi All, I would like to set up my system to automatically send certain customers their invoices via email. I'm not familiar with code and have basic knowledge of SAP. Is there a way to set up the...
View ArticleRe: Invoices sent via email
Hi, Please refer this thread http://scn.sap.com/thread/3516167 Thanks & Regards,Nagarajan
View ArticleRe: Problem with connection when preview Crystal Reports 2013 form in SAP HANA
Hi, Please post screen shot of above error message from crystal report preview. Thanks & Regards,Nagarajan
View ArticleRe: Crystal Report always prints blank page
Hi, Is it happening for all form or only particular document form? Thanks & Regards,Nagarajan
View ArticleRe: Problem with connection when preview Crystal Reports 2013 form in SAP HANA
Hi Nagarajan, Thank you for your reply. I show you the screen shots of the success in Preview in crystal: The error in preview the addin from CR to SBO: The error in preview in SBO: Best regards,Pedro...
View ArticleRe: So Who is Hiding the PLD_VARS.xls File (version 2007 A Mar 2007)???
You can send me the file. I need this document for report PLD . I don't have my number for market place, my partner don't send me quickly. my email is angeles804@gmail.com
View ArticleRe: Alert for Sales Order
Hi Jennifer, Check this code. DATA : Qty type RDR1-Quantity. SELECT SUM( T1~Quantity ) INTO Qty FROM ORDR AS T0 INNER JOIN RDR1 AS T1 ON T0~DocEntry = T1~DocEntry WHERE T0~U_Process = 'PEACHING' and...
View Article