Re: Barcode Printing
Please close your thread by marking helpful/correct answer. Thanks,Kennedy
View ArticleRe: Approval procedure
Please close your thread by marking helpful/correct answer. Thanks,Kennedy
View ArticleRe: Show last four digits of credit card
Please close your thread by marking helpful/correct answer. Thanks,Kennedy
View ArticleRe: Query with JOIN LIKE - question
Please close your thread by marking helpful/correct answer. Thanks,Kennedy
View ArticleRe: Journal Entry Number on PLD of General Ledger
Please close your thread by marking helpful/correct answer. Thanks,Kennedy
View ArticleRe: Drill Down in Crystal Reports
Please close your thread by marking helpful/correct answer. Thanks,Kennedy
View ArticleRe: Crystal Report 2011 SP4 APPCrash on Create New Connection
This is the explanation/solution!I've installed Crystal Reports 2013 (after installing previous versions and cleaning up) and then installed the crystal report integration package on top of that, plus...
View ArticleRe: Crystal Report 2011 SP4 APPCrash on Create New Connection
Hi Pieterjan, CR 2013 for B1 can be downloaded from Software Download Center : https://websmp106.sap-ag.de/support Choose SAP Business One from menu "Software Downloads" > expand from left side "SAP...
View ArticleHow to get Opening Balance for Stock Report in Crystal Report?
Dear Experts, I am using SAP B1 8.82.I am new to crystal report and now trying to do a monthly stock report with the following format: Species BatchNum OpeningBal QtyInKD QtyInRD QtyInCD...
View ArticleRe: Automatic roundup of Quantity in a Sales Order
Hi, Try this FMS and set auto refresh based on item code. SELECT CEILING(T0.[Quantity]/4.4)*4.4 as 'New Ordered Qty (metres)'FROM RDR1 T0 INNER JOIN ORDR T1 ON T0.[DocEntry] = T1.[DocEntry] WHERE...
View ArticleRe: Automatic roundup of Quantity in a Sales Order
Hi Nagarajan, I saved this query and set the FMS, however, my aim was when tabbing out of the quantity column for this to auto round up to the nearest 4.4 multiple which it is not doing yet. Also, if...
View ArticleProduction Order UDF
Anyone any idea how to auto populate a production order UDF with the item master data setup item group name? I guess a query followed by FMS but given that the group name is via a 3rd table, I am not...
View ArticleRe: How to Copy PLD from one DB to another in SAP 8.8, Patch-9
Thank a lot jeniffer, this worked for me.
View ArticleRe: Production Order UDF
Hi Try the below fms SELECT ItmsGrpNam FROM OITB INNER JOIN OITM ON OITB.ItmsGrpCod = OITM.ItmsGrpCod INNER JOIN WOR1 ON OITM.ItemCode = WOR1.ItemCode WHERE OITM.ItemCode = $[WOR1.ITEMCODE] With...
View ArticleRe: How to get Opening Balance for Stock Report in Crystal Report?
Hi Check the below discussion it may helps you Opening Stock Batchwise With Regards Balaji Sampath
View ArticleQuery
Hi, I am looking for query similar to sales analysis report but I need break down as per warehouse. My problem is for warehouse code I will have to include the inv1 which will repeat the data and I...
View ArticleRe: Automatic roundup of Quantity in a Sales Order
Hi Emly,can you check this one and see if it works? SELECT CEILING($[RDR1.Quantity.number]/4.4)*4.4 as 'New Ordered Qty (metres)'FROM RDR1 T0 INNER JOIN ORDR T1 ON T0.[DocEntry] = T1.[DocEntry]WHERE...
View ArticleRe: Production Order UDF
Hi Nagarajan, The purpose of this field is because we have two different colour production orders that we issue depending on the item group being Work in Progress or Finished Product. The aim was to...
View ArticleRe: Production Order UDF
Hi, Try this query. Set it auto refresh based product No. SELECT T1.[ItmsGrpNam] FROM OITM T0 INNER JOIN OITB T1 ON T0.ItmsGrpCod = T1.ItmsGrpCod WHERE T0.[ItemCode] = $[OWOR.itemcode.0] Thanks &...
View Article