Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This promise is immense; every day and every night, we are trying our best to fulfill it by helping others, leaving something worthwhile behind us, and living for a purpose that is "Enrich & Spread knowledge everywhere".
How to check if a list is empty Python?
use isempty()
use isempty()
See lessREP-52262 Diagnostic output is disabled when using oracle reports 11g
Hi @albert To fix this error, you will need to apply the following: Go to %DOMAIN_HOME%\config\fmwconfig\servers\WLS_REPORTS\applications\reports_11.#\configuration and open rwservlet.properties (make a backup first). Add the following parameter below the <inprocess> parameter: <!–webcommanRead more
Hi albert
To fix this error, you will need to apply the following:
Operating Units Merge
Dear Isa, I hope you are having single instance, even under single instance unfortunately this is not possible in oracle, if you want to merge the LE it's like re-implementation. I came across one of the company (eprentise) who claim they "offers software for merging LEs. The reorganization softwareRead more
Dear Isa,
I hope you are having single instance, even under single instance unfortunately this is not possible in oracle, if you want to merge the LE it’s like re-implementation.
I came across one of the company (eprentise) who claim they “offers software for merging LEs. The reorganization software lets you move and merge Ledgers or Sets of Books, Operating Units,and Inventory Organizations. It takes care of all history and transactions in the subledgers.” (Sic)
You can connect with them @ http://www.eprentise.com
Best Regards,
Syed Mustafa Shah
See lessOracle Alert Error – APP-ALR-04150 –
Hello @mahendra try this code now : SELECT DISTINCT PAA.ABSENCE_ATTENDANCE_ID ,PAA.ABSENCE_ATTENDANCE_TYPE_ID ,PAA.ABS_INFORMATION1 ,PAA.PERSON_ID ,PAPF.FULL_NAME FNA ,PAPF.EMAIL_ADDRESS EM ,PAA.REPLACEMENT_PERSON_ID ,PAPF1.FULL_NAME FNR ,PAA.AUTHORISING_PERSON_ID ,PAPF2.FULL_NAME FNAUT ,PAA.DATE_NORead more
Hello mahendra try this code now :
but in the next time you create a question could you please leave more details about what you are trying to do or the error text along with error code you face to be able to help you efficiently.
See lessWhat is the difference between searched case and simple case in oracle pl/sql?
1 difference I can c is, when using case <expression> when ….(i.e simple case), u'll do an exact comparison (like a=b). e.g case <expression> when value1 then... when value2 then...etc (i.e ur checking if expression = value1 or expression = value2 & so on) for case when <expreRead more
1 difference I can c is, when using case <expression> when ….(i.e simple case), u’ll do an exact comparison (like a=b). e.g case <expression> when value1 then… when value2 then…etc (i.e ur checking if expression = value1 or expression = value2 & so on)
for case when <expression> then .. (i.e searched case), u’ll do at least 2 comparisons i.e >= x and <=y case when variable >= x & <=y then.. when variable between a and b then…
there may b other differences.. eager 2 know
How to list all OAF customizations of a particular instance ?
Hi @Chandra You can use this query to list all customizations across all modules SELECT PATH.PATH_DOCID CUSTM_DOC_ID, JDR_MDS_INTERNAL.GETDOCUMENTNAME (PATH.PATH_DOCID) CUSTM_DOC_PATH FROM JDR_PATHS PATH WHERE PATH.PATH_DOCID IN (SELECT DISTINCT COMP_DOCID FROM JDR_COMPONENTS WHERE COMP_SEQ = 0 ANDRead more
Hi Chandra
You can use this query to list all customizations across all modules
and if you want to get only specific module you can use following query:
See lessWhat is the difference between i++ and ++i in Java?
They both increment the number with value 1 but but ++i increment the number before the current expression is evaluted, whereas i++ increment the number after the expression is evaluated for example int i=5; int z=i++; //z equals 5 here int x=++i; //x equals 6 here
They both increment the number with value 1
but but ++i increment the number before the current expression is evaluted, whereas i++ increment the number after the expression is evaluated
for example
int i=5;
int z=i++; //z equals 5 here
int x=++i; //x equals 6 here
Difference between staticmethod and classmethod in python ?
Maybe a bit of example code will help: Notice the difference in the call signatures of foo, class_foo and static_foo: class A(object): def foo(self, x): print "executing foo(%s, %s)" % (self, x) @classmethod def class_foo(cls, x): print "executing class_foo(%s, %s)" % (cls, x) @staticmethod def statRead more
Maybe a bit of example code will help: Notice the difference in the call signatures of
foo
,class_foo
andstatic_foo
:Below is the usual way an object instance calls a method. The object instance,
a
, is implicitly passed as the first argument.With classmethods, the class of the object instance is implicitly passed as the first argument instead of
self
.You can also call
class_foo
using the class. In fact, if you define something to be a classmethod, it is probably because you intend to call it from the class rather than from a class instance.A.foo(1)
would have raised a TypeError, butA.class_foo(1)
works just fine:One use people have found for class methods is to create inheritable alternative constructors.
With staticmethods, neither
self
(the object instance) norcls
(the class) is implicitly passed as the first argument. They behave like plain functions except that you can call them from an instance or the class:Staticmethods are used to group functions which have some logical connection with a class to the class.
foo
is just a function, but when you calla.foo
you don’t just get the function, you get a “partially applied” version of the function with the object instancea
bound as the first argument to the function.foo
expects 2 arguments, whilea.foo
only expects 1 argument.a
is bound tofoo
. That is what is meant by the term “bound” below:With
a.class_foo
,a
is not bound toclass_foo
, rather the classA
is bound toclass_foo
.Here, with a staticmethod, even though it is a method,
a.static_foo
just returns a good ‘ole function with no arguments bound.static_foo
expects 1 argument, anda.static_foo
expects 1 argument too.And of course the same thing happens when you call
static_foo
with the classA
instead.source: stackoverflow
author: unutbu
How to find dbc file in oracle apps ?
Hello @chandra to find dbc file in release 11i $FND_TOP/secure and to find dbc file in release 12 $INST_TOP/appl/fnd/12.0.0/secure hope this help.
Hello Chandra
to find dbc file in release 11i
and to find dbc file in release 12
hope this help.
See lessWhat does this sign operator “+=” do in java?
Hi @Olivier, it common that z += 5.6 are equivalent to z = z + 5.6, it's one the assignment operators it takes the value of z then add 5.6 to it and at the end store the new result into z ex: double z = 5.5 z += 0.1 // the result of z now is : (5.6) but be careful in java because if "z" is not of tyRead more
Hi Olivier,
it common that z += 5.6 are equivalent to z = z + 5.6, it’s one the assignment operators it takes the value of z then add 5.6 to it and at the end store the new result into z
ex:
but be careful in java because if “z” is not of type double you will get an compilation error.
hope this help.