DBA Data[Home] [Help]

APPS.WSH_DOCUMENT_PVT dependencies on FND_REQUEST

Line 3175: -- call FND_REQUEST.SUBMIT_REQUEST to run the WSHRDPAK.rdf report

3171:
3172: -- initialize API return status to success
3173: x_return_status := WSH_UTIL_CORE.g_ret_sts_success;
3174:
3175: -- call FND_REQUEST.SUBMIT_REQUEST to run the WSHRDPAK.rdf report
3176: l_conc_request_id := FND_REQUEST.SUBMIT_REQUEST
3177: ( 'WSH'
3178: , 'WSHRDPAK'
3179: , 'Packing Slip Report'

Line 3176: l_conc_request_id := FND_REQUEST.SUBMIT_REQUEST

3172: -- initialize API return status to success
3173: x_return_status := WSH_UTIL_CORE.g_ret_sts_success;
3174:
3175: -- call FND_REQUEST.SUBMIT_REQUEST to run the WSHRDPAK.rdf report
3176: l_conc_request_id := FND_REQUEST.SUBMIT_REQUEST
3177: ( 'WSH'
3178: , 'WSHRDPAK'
3179: , 'Packing Slip Report'
3180: , NULL

Line 4302: -- COMMENT : This procedure is called before calling fnd_request.submit to

4298:
4299: ------------------------------------------------------------------------------
4300: -- PROCEDURE : set_template PUBLIC
4301: -- VERSION : 1.0
4302: -- COMMENT : This procedure is called before calling fnd_request.submit to
4303: -- set the layout template so that pdf output is generated.
4304: -- Template is obtained from shipping parameters based on the
4305: -- organization_id.
4306: -- PARAMETER LIST :

Line 4417: l_status := fnd_request.add_layout

4413: wsh_debug_sv.log(l_module_name, 'language ', l_language);
4414: wsh_debug_sv.log(l_module_name, 'territory ', l_territory);
4415: END IF;
4416:
4417: l_status := fnd_request.add_layout
4418: ('WSH',
4419: l_report_template,
4420: l_language,
4421: l_territory,

Line 4424: wsh_debug_sv.log(l_module_name,'Return Status After Calling fnd_request.add_layout ',l_status);

4420: l_language,
4421: l_territory,
4422: 'PDF');
4423: IF l_debug_on THEN
4424: wsh_debug_sv.log(l_module_name,'Return Status After Calling fnd_request.add_layout ',l_status);
4425: END IF;
4426: IF (l_status=FALSE) THEN
4427: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;
4428: wsh_util_core.add_message(x_return_status,l_module_name);