GeekInterview.com
Series: Subject: Topic:

AOL Interview Questions

Showing Questions 1 - 20 of 34 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

How can we delete a concurrent program which is already registered?

Asked By: Shrin | Asked On: May 22nd, 2007

Answered by: Lakshmi L on: Feb 1st, 2013

We can delete the Concurrent Program from Back End.

begin
FND_PROGRAM.delete_executable(executable_short_name=>xxexe,application=>XXMZ Custom);
commit;
end;

begin
FND_PROGRAM.DELETE_PROGRAM(program_short_name=>XXCONC,application=>XXMZ Custom);
commit;
end;

Answered by: sunilkaswan on: Aug 20th, 2011

From front end we can not delete the concurrent program. We can only enable or disable the program.
We can delete the concurrent program from back end.

fnd_program.delete_program('Short Name', 'Application');
fnd_program.delete_executable('Short Name', 'Application');

Regards,

Sunil Kaswan

What is the role of applsys and applsyspub

Asked By: Karthikeyan | Asked On: Jul 7th, 2007

Answered by: Lakshmi L on: Feb 1st, 2013

Applsys Schema : Consists of files starts with FND, ALR, WF and AD.

Applsyshub Schema : Contains a collection of all public synonyms of all FND Tables, which are used for user verification.

Answered by: skylabudin on: Nov 22nd, 2007


All the technical products' database objects are consolidated into a single schema called Applsys

Applsyspub is used for authentication by having read only views

How to schedule the concurrent programs from back end(PL/SQL) -not from srs form.

Asked By: kav | Asked On: Aug 30th, 2007

Answered by: Sreenivas on: Oct 2nd, 2011

We also can able to submit from back end by using API called 'fnd_request.submit_request',it consist following
program,Description,arguments .Before this we must initialize by using fnd_apps.global_intialize

Answered by: diyareplies on: Apr 21st, 2011

You can try FND_REQUEST.SET_REPEAT_OPTIONS to run at specific times

How do I submit a sherie of requests from PL/SQL?

Asked By: marianna | Asked On: Oct 26th, 2006

Answered by: suneel.jinka on: Sep 20th, 2011

we can submit 2 or more programs from backend by using below FND

FND_CONCURRENT.WAIT_FOR_REQUEST

Answered by: suneel on: Sep 20th, 2011

if we need to submit 2 or more programs serieally
we need to submit from back end by using below FND

FND_CONCURRENT.WAIT_FOR_REQUEST

Table for independent value set

Asked By: sateesh.talanki | Asked On: May 21st, 2008

In which fnd table independent value set will be stored?

Answered by: sunilkaswan on: Aug 20th, 2011

The name of the table where value set stores:-
1) fnd_flex_value_sets

The name of the table where values stores:
2) fnd_flex_values
3) fnd_flex_values_tl

Regards,

Sunil Kaswan

Answered by: VidyaPrem on: Jul 8th, 2009

If you want the base table where the name of the value set is stored then it is
FND_FLEX_VALUE_SETS.

How can I disabled and enabled the standard button's in Apps window?

Asked By: devesh | Asked On: Dec 29th, 2005

Answered by: suryajosh on: Jan 12th, 2011

Forms personalization is the best way to enable and disable the standard button's in apps window. The other option is using by logical apps rules.

Answered by: Gajanan Wayal on: Jan 25th, 2006

You can do this with Custom.pll and if ur using apps version greater that 11.5.9 then you can do this with form personlization too.Gajanan

How do you create calender value set?

Asked By: sreeraghava.nara | Asked On: Jun 16th, 2008

All are known creating of date,number,varchar2 by using we can create lov's. Similar that can we create& attach calender ?

Answered by: jith_in on: Feb 26th, 2010

Field must be DATE type.
In the KEY_LIST_VAL trigger you must add the code:
CALENDAR.SHOW;

In the properties of the field, you should set "Validate from List" to 'No'.

Answered by: manveshv on: Jan 11th, 2010

We can do this in Apps Forms.Prerequisite: We need to load all the predefined plls for example, APPDAYPK for calendars.Once we have all the dll's required, Assign the key list lamb LOV to th...

What is the difference between organization id and master organization id?

Asked By: santhosh sankaran | Asked On: Apr 26th, 2006

Answered by: Adi_phaniK on: Oct 7th, 2009

If the enterprise has a multi org structure then it would have a Master org and inv/child orgs. All items should have an entry in Master org before they can be assigned to inventory orgs. The items in...

Answered by: avinash singh on: Aug 18th, 2008

Whenever an item receives in an operating unit then it will receive in master orgnization id only after that we assigns the items to take different orgnization ids. Therefore there must be an unique master orgnization id and can be multiple orgnization ids with in an operating unit.

What is us directory under any top?

Asked By: geetha24 | Asked On: Jul 13th, 2006

Answered by: jvquestions on: Sep 20th, 2008

US directory is one directory for save the reports or forms or programs to be used in US language, if you want to use Spanish language option you should save the programs in ESA directory. It mea...

Answered by: Vinod on: Jan 5th, 2007

Forms and reports directories contains the language directories,

Means which language apps is using, apps supports multiple languages.

US is the standard language used by Oracle.

 

vinod.

How do I recover the responsibility in Apps if it is disabled?

Asked By: devesh | Asked On: Oct 19th, 2005

Post your answer

Answered by: Brinda on: Jul 24th, 2006

Here is the API script which add the System Administrator responsibility through which you add the other responsibility.DECLARECURSOR c1_cur IS SELECT u.user_name      &n...

Answered by: Manoj on: May 2nd, 2006

Please run the following concurrent program

Workflow Directory Services User/Role Validation

Define shipping parameters

Asked By: mchitluri | Asked On: Mar 6th, 2008

What is the process of defining shipping parameters in om

Answered by: damus.sajja on: Mar 16th, 2008

This is detail about Shipping Parameters..for OM.. The below details are breifly descripb u.. If any clarifications plz.. go to India Local Order Management>> Shipping>> Setup>>...

How do I open a form in query-only mode?

Asked By: Interview Candidate | Asked On: Apr 8th, 2005

Navigate to the form functions form (application->function) query the particular form and add the parameter query_only=yes not all forms will accept this parameter however.

Answered by: Shaik_fayaz on: Dec 8th, 2007

go to applcation developer responsibilitynavigation->Application/function.query the function name then goto form tab then goto parameters field then write the following code in that fieldQUERY_YES="YES"save the changes and then see the forms get affected in query only mode.

What is a concurrent program and a concurrent request set ?

Asked By: Jay | Asked On: Apr 23rd, 2007

Answered by: sri on: Oct 22nd, 2007

Concurrent program is nothing but instance of execution file along with parameters and incompatabilities.

By using concurrent request set we can submit multiple programs at a time through srs window.

after creation of request set we can attach it to request group.

Answered by: Rajasekaran on: May 16th, 2007

A concurrent program is an executable file that runs simultaneously with other concurrent programs and with online operations, fully utilizing your hardware capacity. Typically, a concurrent program i...

How do I submit a concurrent request from PL/SQL?

Asked By: Interview Candidate | Asked On: Apr 8th, 2005

Use fnd_request.Submit_request example: req_id := fnd_request.Submit_request('fnd', 'fndscaru'); note that this can only be called from a concurrent program see the coding standards for parameter details

Answered by: kirankumar.oluguri on: Aug 2nd, 2007

Hi Usha,If you wanna find out the USER_ID, ORG_ID, RESP_ID, RESP_APPL_ID, connect to the system and open any window and flow the below mentiioned navigation to find the values..Help -> Diagnostics ...

Answered by: Usha on: Jul 31st, 2007

I am not able to see the userid or org-id going to the home page of applications under the help menu.  There is no diagnostics menu at all when I expand it...I don't know where to see it atll.

Thanks,

Usha

How do I check if multi-org is installed?

Asked By: Interview Candidate | Asked On: Apr 8th, 2005

Select multi_org_flag from fnd_product_groups;

Answered by: t1.venki on: Jul 17th, 2007


SELECT MULTI_ORG_FLAG FROM FND_PRODUCT_GROUPS

y --THIS IS MULTIORG INSTALLED
n--MULTIORGNOT INSTALEED

BUSINESSGROUPS->LEGALENTITEIS->SETOFBOOKS->OPERATINGUNIT->INVENTORYORGANIZATION

Answered by: Bonthu N Reddy on: Feb 13th, 2006

U can check whether  Multi - org is installed or not by using following query.

Select multi_org_flag from fnd_product_groups ;

If the result is

' Y ' then it is set to be multi - org.

' N ' then it is not set to be multi - org.

Cheers,

Bonthu.

How do I generate a message file (usaeng.Msb)?

Asked By: Interview Candidate | Asked On: Apr 8th, 2005

Use: fndmdcmf applsys/pwd 0 y app usaeng where: applsys/pwd is the applsys user and password and app is the short name of the application (like PO or inv)

Answered by: Vicky on: May 28th, 2007

It can be generated through submission of Concurrent Program from Application Developer responsibility.

Answered by: J on: Jan 13th, 2006

use adadmin

What is quick code? Why is it called a quick code?What is steps of defining a quick code?

Asked By: jimmy | Asked On: Mar 31st, 2006

Answered by: Sunil on: Dec 27th, 2006

Quick Code or Lookup Code are short names given to some field values. an example is two letter codes given to Country names.

Answered by: suryaram on: Jul 4th, 2006

quick code is that where we can hurry up the process of getting services and extended warranties quickly.

surya

Where do concurrent request log files and output files go?

Asked By: Interview Candidate | Asked On: Jul 6th, 2005

The concurrent manager first looks for the environment variable $applcsf if this is set, it creates a path using two other environment variables: $appllog and $applout it places log files in $applcsf/$appllog output files go in $applcsf/$applout so for example, if you have this environment set: $applcsf...

Answered by: Saurabh Sarkar on: Dec 9th, 2006

The output of the command below is the answer

select LOGFILE_NAME, OUTFILE_NAME

from fnd_concurrent_requests

Saurabh

Hindalco

Answered by: raghavendran on: Jul 6th, 2005

solution is good at the beginnner level .  
 
can be still more infromative

How do I cancel a running concurrent request?

Asked By: Interview Candidate | Asked On: Apr 8th, 2005

Navigate to the concurrent request summary form select a request in character, do a quickpick on the status column you can select cancel or hold in gui, use the cancel or hold buttons the sysadmin responsibility can cancel or hold any running request

Answered by: kishore on: Nov 18th, 2006

Please open below package & see the coments.

FND_REQUEST.submit_svc_ctl_request

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.