Best Of
Re: Employee work center reporting
Thanks for the info David, I have cobbled together a rough solution to get us live, as per below.
cheers, Ravi
--1. insert distinct list of ppsrk into temp table
IF OBJECT_ID('tempdb..#temp_EDI_WC_Error_IDs') IS NOT NULL
DROP TABLE #temp_EDI_WC_Error_IDs;
select distinct ZMPPSRK into #temp_EDI_WC_Error_IDs
from JDE_DEVELOPMENT.testDTA.F01131
join JDE_DEVELOPMENT.testDTA.F01131M on ZZSERK=ZMPPSRK
where Zzdti>=((DATEPART(yy, getdate()) - 1900) * 1000 + DATEPART(dy, getdate())) -20
and (ZZTSV like '%R47500%' or ZZTSV like '%R47131%' )
and (ZMMSGP like '%Error%' or ZMTSV like '%|SO|%')
--2. insert distinct list of errors into temp error table
IF OBJECT_ID('tempdb..#temp_EDI_WC_Errors') IS NOT NULL
DROP TABLE #temp_EDI_WC_Errors;
select distinct zmmsgp as [Error], ZMPPSRK as [Error ID], FORMAT(DATEADD(dd, (ZMDTI % 1000) - 1, DATEADD(yy, ZMDTI / 1000, 0)), 'd', 'en-gb' ) as [Run Date]
into #temp_EDI_WC_Errors from JDE_DEVELOPMENT.testDTA.F01131M where ZMPPSRK in (select ZMPPSRK from #temp_EDI_WC_Error_IDs) and zmmsgp <>''
insert into #temp_EDI_WC_Errors ([Error], [Error ID],[Run Date])
select distinct ZMTSV as [Error], ZMPPSRK as [Error ID], FORMAT(DATEADD(dd, (ZMDTI % 1000) - 1, DATEADD(yy, ZMDTI / 1000, 0)), 'd', 'en-gb' ) as [Run Date]
from JDE_DEVELOPMENT.testDTA.F01131M where ZMPPSRK in (select ZMPPSRK from #temp_EDI_WC_Error_IDs) and ZMTSV <>''
--3.select for PowerBI
select * from #temp_EDI_WC_Errors order by [Error ID] desc
Re: EDI R47171 (F47171/F47172/F47173) Link to F40R10/F40R11
Amanda,
Since this is a new question and this thread is over a year old, could you please create a new thread in MOSC?
Thank you,
Michael
Re: Issue with PAY034 and other SQR to PDF after upgrading HR to tools 8.61.12
There are a couple of known defects for non-unicode SQR installations after upgrade to 8.61.09. One of the known defects shows a particular SQR error message (i.e. "SQR 4705") and the other known defect has to do with the SQR program running to ERROR status but there is no specific error logged in the ".out" file and logging appears to just stop at some point.
The following article talks about the issue with the SQR error message and also includes the bug for the other issue that is still on-going but close to resolution.
See … E-SQR: SQR Reports Using Barcodes/Translate/Concat/Convert/Insert/Special Characters Functions are Failing with the Error "(SQR 4705) Program Line Too Long; Maximum Is 511" (Doc ID 3074025.1)
Customer Tested Alternative Solution: Replace current 8.61 SQR "BINW" folder with "BINW" folder from SQR 8.61.08 installation (known to resolve both issues and likely best option until a permanent fix is available from development)
Regards,
Tony
Re: OLVM - yum install ovirt-guest-tools-iso
Hi @lolix ,
Are you able to open&read OLVM: Installing Guest Agent on Oracle Linux and Microsoft Windows Guest VMs (Doc ID 2560639.1) ?
Rgds
Tedd

