I have to use document numbering for journal entries by using sequences i m defining and assigning the sequences n also setting the profile option document sequential numbering to the sequence created and always used. i m getting the document number field when entring new journal but it is giving error that sequence is set to always used goto assign screen and set it for the given parameters
I have run a request and it is in pending status since one hour and got completed as normal in two seconds time. My question is :why the request was in pending state for one hour as it was not scheduled also. Also ther where only a few requests running that time.... there was no load on managers also..what could be the possible reasons?
Hi all,when i am creating budget journal the following error is displaying when i press the "Check Funds" tab in create budget juornal screen. what i have to do to rectify the error. please any one give solution for this."Error: APP-SQLGL-08016: A fatal error occured during the funds check process. please contact your system administrator"RegardsChandra Sekhar V
Hi all,when i am creating budget journal the following error is displaying when i press the "Check Funds" tab in create budget juornal screen. what i have to do to rectify the error. please any one give solution for this."Error: APP-SQLGL-08016: A fatal error occured during the funds check process. please contact your system administrator"RegardsChandra Sekhar V
"Routine FDFRKS: Unknown structure ID 53515 for fl"Hi Friends,I have created a position hierarchy and created a po and used position hierarchy to approve this PO. but in notifications it it is giving the above error. can any one help me out to resolve this issue in oracle applications.Other details of error : "Document Manager Failed With Error Number 3 while processing Standard Purchase Order 30 " Thanks,Ramarao.
I developed the Project Timesheet form in PA module.it working fine.what is the problem is first time i enter the data on specific date.it will be accepted.next i am trying to enter data on same date it shows the error message and data will be updated.how resolve that problem
Hi can any one help regarding this error! When I am trying to run the procedure in apps through Concurrent Program I am getting this error The error isORACLE ERROR 201000 IN FDPSTPcause:FDPSTP failed due to ORA-20100:file 00000388.tmp creation for fnd_file failedPlz help me in resolving this errorBye
While creating sales order the following problem has been faced. can any one help us to solve the same:This request finished with an error and produced the following completion message: ORACLE error 20100 in FDPSTPCause: FDPSTP failed due to ORA-20100: File o0049029.tmp creation for FND_FILE failed.You will find more information on the cause of the error in request log.ORA-06512: at "APPS.FND_FILE", line 394ORA-06512
Hi guys,I got this error when I am registering PL/SQL PROCEDURE program in APPS(11.5.9) and when I am submiting the Request from SRS window I am getting this error. The ERROR is-------------------------------------------------------Cause: FDPSTP failed due to ORA-20100: File o0028513.tmp creation for FND_FILE failed.You will find more information on the cause of the error in request log.ORA-06512: at "APPS.FND_FILE", line 378ORA-06512-------------------------------------------------------can
.... becoz of the fact that out parameters are write only ... we only can assign values to out parameters but we can't assign out parameters value to any variable inside the procedure or function....but in my case I had created a simple procedure and used out parameters in it let give me the example of the code first ....>create or replace procedure test_out_parameter(out_parameter out number) isv_temp number;beginv_temp := out_parameter;out_parameter :=10 ;dbms_output.put_line (out_parameter);end