Skip to main content

Query to get details of concurent program along with parameter details

Query to get details of concurent program along with parameter details

--------------------------------------------------------------------------------------------------------------------------------------

SELECT   cp.user_concurrent_program_name "Program Name",
         cp.concurrent_program_name "Short Name",
         ap.application_name "Application", cp.description "Description",
         cp.enabled_flag "Enabled", cp.output_file_type "Output Format",
         cx.executable_name "Executable Short Name",
         lv.meaning "Executable Method",
         cx.user_executable_name "Executable Name",
         df.column_seq_num "Sequence", df.end_user_column_name "Parameter",
         df.description "Desciption", df.enabled_flag "Parameter Enabled",
         df.required_flag "Parameter Required",
         df.security_enabled_flag "Enable Security",
         df.display_flag "Parameter Display",
         fvs.flex_value_set_name "Value Set", df.default_type "Default Type",
         df.DEFAULT_VALUE "Default Value"
    FROM apps.fnd_concurrent_programs_vl cp,
         apps.fnd_executables_form_v cx,
         apps.fnd_application_vl ap,
         apps.fnd_descr_flex_col_usage_vl df,
         apps.fnd_flex_value_sets fvs,
         apps.fnd_lookup_values lv
   WHERE cp.executable_id = cx.executable_id
     AND cp.application_id = ap.application_id
     AND fvs.flex_value_set_id = df.flex_value_set_id
     AND lv.lookup_type = 'CP_EXECUTION_METHOD_CODE'
     AND lv.lookup_code = cx.execution_method_code
     AND cp.user_concurrent_program_name LIKE
                               'Retry Errored Workflow Activities'
     AND df.descriptive_flexfield_name =
                                        '$SRS$.' || cp.concurrent_program_name
     AND lv.LANGUAGE = 'US'
ORDER BY df.column_seq_num



--------------------------------------------------------------------------------------------------------------------------------------

Comments

Popular posts from this blog

FND_PROFILE API In Oracle Apps

 FND_PROFILE API In Oracle Apps --------------------------------------------------------------------------------------------------- FND_PROFILE API is used very frequently in oracle apps development. The major purpose of this API is to: ·                      Retrieve user profile values for the current run-time environment ·                      Set user profile values for the current run-time environment FND_PROFILE API has different procedures and functions which are most frequently used. Following are the brief explanation of them: 1. FND_PROFILE.PUT:  This can be used to put a value to the specified user profile option. Example:  FND_Profile.Put(‘PROFILE_NAME’, ‘New_Value’) FND_Profile.Put(’USERNAME’, Usr_Name) FND_Profile.Pu...

PO Matching Setting in Purchase Order Shipment Line(2-way,3-way,4-way)

[PO] Matching Setting in Purchase Order Shipment Line Invoice matching can be set in five different areas of Oracle Purchasing: In the list below, a setting at any level will override the settings above it. 1. Oracle Purchasing Options a. Navigate to: Setup > Organizations > Purchasing Options b. Select Default Alternative Region 2. Supplier Information a. Navigate to: Supply Base > Suppliers b. Query on specific supplier c. Click on Open d. Select Receiving Alternative Region 3. Line Types a. Navigate to: Setup > Purchasing > Line Types b. In the Receipt Required field: Yes = 3-way, No = 2-way 4. Items a. Navigate to: Items > Master Items b. Query on specific item c. Select Purchasing Alternative Region d. In the Invoice Matching section: Yes = 3-way, No = 2-way 5. Purchase Order Shipments a. Navigate to: Purchase Orders > Purchase Orders b. Enter (header and) line information c. Click on Shipments button d. Select More Alternative Region Ramification of Invoice ...

Query To get the SMTP Server Details for a database server

Query To get the SMTP Server Details for a database server -------------------------------------------------------------------------------------------------------------------------------------- select fscpv.parameter_value "SMTP Host Name"       --SMTP protocol uses default port number 25 for outgoing emails       ,25                    "SMTP Port Number"       ,fscpt.description   from fnd_svc_comp_params_tl fscpt       ,fnd_svc_comp_param_vals fscpv  where fscpt.parameter_id = fscpv.parameter_id    and fscpt.display_name = 'Outbound Server Name' --'Inbound Server Name'    and fscpt.language = 'US'; --------------------------------------------------------------------------------------------------------------------------------------