Best Of
Re: When can we expect a patch for Ireland on the Auto-Enrolment Retirement Savings Scheme
Hi Mariana ,
Is there any update on the Patch above ?
Thanks & Regards
Srihari.
Re: PeopleSoft error - File: E:\PT858P19B_2203300501-retail\peopletools\src\pssys\msgget.cppSQL error.
Hello Mandla,
Please add this variable in your psprcs.cfg file in the given section:-
[Database Options]
OracleUseLobLocators=0
Using PSADMIN, reconfigure process scheduler server.
Clean CACHE & IPC resources.
Retest your issue.
This Table is having Long field and if field into which this is copied is not Long then problem has been reported in the past.
Thanks,
Akash
Re: AWE - how to Pushback the transaction to originator for making changes. how to do this?
Hi - Refer below document.
E-AWE: How Would Pushback Functionality Work On First Approval in Approval Chain (Doc ID 1575795.1)
Excerpt from document…
No, it is not possible for current Approver to Pushback the Voucher to the original Approver. In the scenario described, the Step is still the first Step in the Approval Process, so there is no where to Push Back the transaction. Had the Approval process been further along, assigned to next Approver, Pushback may have been feasible.
The only way to reassign back to original Approver is via the Monitor Approvals page, logged in as the User with the Admin Role on the VoucherApproval Process Definition.
This works as designed.
-Velu
Re: Rename the field conditionally
Hi NadeemAlhamdan,
Please use Page and Field Configurator provides the flexibility to configure fields and pages, in any component, without having to customize delivered application pages or fields.
Thanks,
Bhuvana
Re: G40R : demand scheduling execution in 9.2
Dear User_31RO3,
I actually split your follow up question into a new thread:
I provided the following answer to your question:
The R47171 knows to process firm or planned demand based on the setup in the P40R21 (Demand Cross Reference). The customer will send in demand type/period in the F47173 data, which is cross referenced with the setup in the P40R21. We change the demand type/period to values that are used in E1 for the R40R010 to determine if a sales order (firm) should be created or a forecast (planned) would be created.
Thank you,
Michael
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


