<< < 104 105 106 107 108 109 110 111 112 113 114 > >>   Sort: Date

What is GWYUID ?
What is GWYUID ? GWYUID , stands for Gateway User ID and password. Usually like APPLSYSPUB/PUB
2011-11-30, 3400👍, 0💬

What is OCI. What are its uses?
What is OCI. What are its uses? OCI is Oracle Call Interface. When applications developers demand the most powerful interface to the Oracle Database Server, they call upon the Oracle Call Interface (OCI). OCI provides the most comprehensive access to all of the Oracle Database functionality. The new...
2011-09-20, 3397👍, 0💬

The keyword ‘int’ maps to one of the following .NET type ...
The keyword ‘int’ maps to one of the following .NET type ... The keyword ‘int’ maps to one of the following .NET types * System.Int16 * System.Int32 * System.Int64 * System.Int128 System.Int32
2014-06-12, 3395👍, 0💬

Will the following program execute? C++
Will the following program execute? C++ Will the following program execute? void main() { void *vptr = (void *) malloc(sizeof(void)); vptr++; } Answer1 It will throw an error, as arithmetic operations cannot be performed on void pointers. Answer2 It will not build as sizeof cannot be applied to void...
2012-03-23, 3395👍, 0💬

What is US directory in $AD_TOP or under various product TOP's .
What is US directory in $AD_TOP or under various product TOP's . US directory is defauly language directory in Oracle Applications. If you have multiple languages Installed in your Applications then you will see other languages directories besides US, that directory will contain reports, fmx and oth...
2011-10-11, 3392👍, 0💬

Why are JSP pages the preferred API for creating a web-based client program?
Why are JSP pages the preferred API for creating a web-based client program? Because no plug-ins or security policy files are needed on the client systems(applet does). Also, JSP pages enable cleaner and more module application design because they provide a way to separate applications programming f...
2013-07-09, 3390👍, 0💬

How to confirm if Report Server is Up and Running ?
How to confirm if Report Server is Up and Running ? Report Server is started by executable rwmts60 on concurrent manager Node and this file is under $ORACLE_HOME/bin .execute command on your server like ps -ef | grep rwmts60 You should get output like applmgr ....... rwmts60 name=REP60_VISION
2011-12-16, 3388👍, 0💬

What is the difference between a copy constructor and an overloaded assignment operator?
What is the difference between a copy constructor and an overloaded assignment operator? A copy constructor constructs a new object by using the content of the argument object. An overloaded assignment operator assigns the contents of an existing object to another existing object of the same class.
2012-03-16, 3383👍, 0💬

Can a function take OUT parameters. If not why?
Can a function take OUT parameters. If not why? yes, IN, OUT or IN OUT.
2011-10-20, 3381👍, 0💬

Differences of C and C++ Could you write a small program that will compile in “C” but not in “C++”?
Differences of C and C++ Could you write a small program that will compile in “C” but not in “C++”? In C, if you can a const variable e.g. const int i = 2; you can use this variable in other module as follows extern const int i; C compiler will not complain. But for C++ compiler u must write extern...
2012-04-03, 3374👍, 0💬

How to force a page to go to another page using JavaScript?
How to force a page to go to another page using JavaScript? &lt;script language="JavaScript" type="text/javascript" >&lt;!-- location.href="http://newhost/ newpath/newfile.html";//-->&lt;/script>
2011-06-14, 3369👍, 0💬

How do I replace every &lt;TAB&gt; character in a file with a comma?
How do I replace every &lt;TAB&gt; character in a file with a comma? perl -pi.bak -e 's/\t/,/g' myfile.txt
2013-09-18, 3359👍, 0💬

Design and implement a String class that satisfies the following:
Design and implement a String class that satisfies the following: * Supports embedded nulls * Provide the following methods (at least) o Constructor o Destructor o Copy constructor o Assignment operator o Addition operator (concatenation) o Return character at location o Return substring at location...
2012-04-18, 3359👍, 0💬

Which of the following operations can you NOT perform on an ADO.NET DataSet?
Which of the following operations can you NOT perform on an ADO.NET DataSet? Which of the following operations can you NOT perform on an ADO.NET DataSet? * A DataSet can be synchronised with the database. * A DataSet can be synchronised with a RecordSet. * A DataSet can be converted to XML. * You ca...
2014-07-28, 3355👍, 0💬

Which package has light weight components?
Which package has light weight components? javax.Swing package. All components in Swing, except JApplet, JDialog, JFrame and JWindow are lightweight components.
2012-07-16, 3351👍, 0💬

What are between database triggers and form triggers?
What are between database triggers and form triggers? Database triggers are fired whenever any database action like INSERT, UPATE, DELETE, LOGON LOGOFF etc occurs. Form triggers on the other hand are fired in response to any event that takes place while working with the forms, say like navigating fr...
2011-09-13, 3344👍, 0💬

How can I convert numbers to strings (the opposite of atoi)? Is there an itoa function?
How can I convert numbers to strings (the opposite of atoi)? Is there an itoa function? Just use sprintf: sprintf(string, "%d", number); (Don't worry that sprintf may be overkill, potentially wasting run time or code space; it works well in practice.) You can obviously use sprintf to convert long or...
2015-08-24, 3340👍, 0💬

Where is appsweb.cfg or appsweb_$CONTEXT.cfg stored and why its used ?
Where is appsweb.cfg or appsweb_$CONTEXT.cfg stored and why its used ? This file is defined by environment variable FORMS60_WEB_CONFIG_FILE This is usually in directory $OA_HTML/bin on forms tier. This file is used by any forms client session. When a user try to access forms , f60webmx picks up this...
2011-10-19, 3338👍, 0💬

There are lot of DBC file under $FND_SECURE, How its determined that which dbc file to use from $FND_SECURE ?
There are lot of DBC file under $FND_SECURE, How its determined that which dbc file to use from $FND_SECURE ? This value is determined from profile option "Applicationss Database ID"
2011-12-14, 3334👍, 0💬

If APPS_MRC schema is not used in 11.5.10 and higher then How MRC is working ?
If APPS_MRC schema is not used in 11.5.10 and higher then How MRC is working ? For products like Payable, Recievables which uses MRC and if MRC is enabled then each transaction table in base schema related to currency now has an assoicated MRC Subtables.
2011-12-01, 3333👍, 0💬

What' is Java?
What's Java? Java is an object-oriented programming language developed initially by James Gosling and colleagues at Sun Microsystems. The language, initially called Oak (named after the oak trees outside Gosling's office), was intended to replace C++, although the feature set better resembles that o...
2012-05-15, 3332👍, 0💬

.Write a short code using C++ to print out all odd number from 1 to 100 using a for loop
Write a short code using C++ to print out all odd number from 1 to 100 using a for loop for( unsigned int i = 1; i &lt; = 100; i++ ) if( i & 0x00000001 ) cout &lt;&lt; i&lt;&lt;",";
2012-04-18, 3332👍, 0💬

Define precondition and post-condition to a member function. C++
Define precondition and post-condition to a member function. C++ Precondition: A precondition is a condition that must be true on entry to a member function. A class is used correctly if preconditions are never false. An operation is not responsible for doing anything sensible if its precondition fa...
2012-01-11, 3328👍, 0💬

When does a name clash occur? C++
When does a name clash occur? C++ A name clash occurs when a name is defined in more than one place. For example., two different class libraries could give two different classes the same name. If you try to use many class libraries at the same time, there is a fair chance that you will be unable to ...
2012-01-04, 3297👍, 0💬

<< < 104 105 106 107 108 109 110 111 112 113 114 > >>   Sort: Date