DBA Data[Home] [Help]

APPS.INV_CACHE dependencies on FND_API

Line 596: | x_return_status - fnd_api.g_ret_sts_success, if succeeded |

592: | Team |
593: | Input Parameters: |
594: | p_client_id - The client ID for which the record needs to be passed. |
595: | Output Parameters: |
596: | x_return_status - fnd_api.g_ret_sts_success, if succeeded |
597: | fnd_api.g_ret_sts_error, if error occurred |
598: | x_client_parameters_rec - It returns the record of mtl_client_parameters |
599: | for the passed client_id |
600: | and can be queried in the following format |

Line 597: | fnd_api.g_ret_sts_error, if error occurred |

593: | Input Parameters: |
594: | p_client_id - The client ID for which the record needs to be passed. |
595: | Output Parameters: |
596: | x_return_status - fnd_api.g_ret_sts_success, if succeeded |
597: | fnd_api.g_ret_sts_error, if error occurred |
598: | x_client_parameters_rec - It returns the record of mtl_client_parameters |
599: | for the passed client_id |
600: | and can be queried in the following format |
601: | Dbms_Output.put_line('Client ID -'||ct_rec.client_rec.client_id) |

Line 617: x_return_status := fnd_api.g_ret_sts_success;

613: IS SELECT * FROM MTL_CLIENT_PARAMETERS
614: WHERE client_id = p_client_id ;
615:
616: BEGIN
617: x_return_status := fnd_api.g_ret_sts_success;
618: IF ct_table.EXISTS(p_client_id) THEN
619: x_client_parameters_rec := ct_table(p_client_id);
620: ELSE
621: FOR client_rec_new IN client_info(p_client_id)

Line 630: x_return_status := fnd_api.g_ret_sts_error;

626: END IF;
627:
628: EXCEPTION
629: WHEN OTHERS THEN
630: x_return_status := fnd_api.g_ret_sts_error;
631: END get_client_default_parameters;
632:
633: /* End of changes for LSP Project */
634: