Unable to Create Quotations in Oracle Apps with named PL/SQL Block

Dear All,
I got struced while creating Qotations from the backend using oracle API in a Procedure.But the same API working fine in Anonymous block and creating Qutations in apps.But the in parameters are same in anonymous and named bolck.i have done Debugging also and its returning in parameter values.but quotations not created in apps.
I am sending the both scripts(named plsql and anonymous blocks) please anybody knows about this correct me where iam doing mistake.
*******anonymous bolck*********
DECLARE
X_ROWID VARCHAR2(200) :=NULL;
X_PO_HEADER_ID NUMBER :=NULL;
X_AGENT_ID NUMBER :=25;
X_TYPE_LOOKUP_CODE VARCHAR2(200) :='QUOTATION';
X_LAST_UPDATE_DATE DATE :=SYSDATE;
X_LAST_UPDATED_BY NUMBER :=1318;
X_SEGMENT1 VARCHAR2(200) :=2477;
X_SUMMARY_FLAG VARCHAR2(200) :='N';
X_ENABLED_FLAG VARCHAR2(200) :='Y';
X_SEGMENT2 VARCHAR2(200);
X_SEGMENT3 VARCHAR2(200);
X_SEGMENT4 VARCHAR2(200);
X_SEGMENT5 VARCHAR2(200);
X_START_DATE_ACTIVE DATE;
X_END_DATE_ACTIVE DATE;
X_LAST_UPDATE_LOGIN NUMBER :=45786;
X_CREATION_DATE DATE :=SYSDATE;
X_CREATED_BY NUMBER :=1318;
X_VENDOR_ID NUMBER :=5;
X_VENDOR_SITE_ID NUMBER :=6;
X_VENDOR_CONTACT_ID NUMBER :=181;
X_SHIP_TO_LOCATION_ID NUMBER :=204;
X_BILL_TO_LOCATION_ID NUMBER :=207;
X_TERMS_ID NUMBER :=10013;
X_SHIP_VIA_LOOKUP_CODE VARCHAR2(200) :='UPS';
X_FOB_LOOKUP_CODE VARCHAR2(200) :='Origin';
X_PAY_ON_CODE VARCHAR2(200);
X_FREIGHT_TERMS_LOOKUP_CODE VARCHAR2(200) :='Due';
X_STATUS_LOOKUP_CODE VARCHAR2(200) :='A';
X_CURRENCY_CODE VARCHAR2(200) :='USD';
X_RATE_TYPE VARCHAR2(200);
X_RATE_DATE DATE;
X_RATE NUMBER;
X_FROM_HEADER_ID NUMBER;
X_FROM_TYPE_LOOKUP_CODE VARCHAR2(200);
X_START_DATE DATE;
X_END_DATE DATE;
X_BLANKET_TOTAL_AMOUNT NUMBER;
X_AUTHORIZATION_STATUS VARCHAR2(200);
X_REVISION_NUM NUMBER;
X_REVISED_DATE DATE;
X_APPROVED_FLAG VARCHAR2(200);
X_APPROVED_DATE DATE;
X_AMOUNT_LIMIT NUMBER;
X_MIN_RELEASE_AMOUNT NUMBER;
X_NOTE_TO_AUTHORIZER VARCHAR2(200);
X_NOTE_TO_VENDOR VARCHAR2(200);
X_NOTE_TO_RECEIVER VARCHAR2(200);
X_PRINT_COUNT NUMBER;
X_PRINTED_DATE DATE;
X_VENDOR_ORDER_NUM VARCHAR2(200);
X_CONFIRMING_ORDER_FLAG VARCHAR2(200);
X_COMMENTS VARCHAR2(200);
X_REPLY_DATE DATE;
X_REPLY_METHOD_LOOKUP_CODE VARCHAR2(200);
X_RFQ_CLOSE_DATE DATE;
X_QUOTE_TYPE_LOOKUP_CODE VARCHAR2(200) :='CATALOG';
X_QUOTATION_CLASS_CODE VARCHAR2(200) :='CATALOG';
X_QUOTE_WARNING_DELAY_UNIT VARCHAR2(200);
X_QUOTE_WARNING_DELAY NUMBER :=7;
X_QUOTE_VENDOR_QUOTE_NUMBER VARCHAR2(200);
X_ACCEPTANCE_REQUIRED_FLAG VARCHAR2(200);
X_ACCEPTANCE_DUE_DATE DATE;
X_CLOSED_DATE DATE;
X_USER_HOLD_FLAG VARCHAR2(200);
X_APPROVAL_REQUIRED_FLAG VARCHAR2(200);
X_CANCEL_FLAG VARCHAR2(200);
X_FIRM_STATUS_LOOKUP_CODE VARCHAR2(200);
X_FIRM_DATE DATE;
X_FROZEN_FLAG VARCHAR2(200);
X_SUPPLY_AGREEMENT_FLAG VARCHAR2(200) :='L';
X_GLOBAL_AGREEMENT_FLAG VARCHAR2(200);
X_ATTRIBUTE_CATEGORY VARCHAR2(200);
X_ATTRIBUTE1 VARCHAR2(200);
X_ATTRIBUTE2 VARCHAR2(200);
X_ATTRIBUTE3 VARCHAR2(200);
X_ATTRIBUTE4 VARCHAR2(200);
X_ATTRIBUTE5 VARCHAR2(200);
X_ATTRIBUTE6 VARCHAR2(200);
X_ATTRIBUTE7 VARCHAR2(200);
X_ATTRIBUTE8 VARCHAR2(200);
X_ATTRIBUTE9 VARCHAR2(200);
X_ATTRIBUTE10 VARCHAR2(200);
X_ATTRIBUTE11 VARCHAR2(200);
X_ATTRIBUTE12 VARCHAR2(200);
X_ATTRIBUTE13 VARCHAR2(200);
X_ATTRIBUTE14 VARCHAR2(200);
X_ATTRIBUTE15 VARCHAR2(200);
X_CLOSED_CODE VARCHAR2(200);
X_USSGL_TRANSACTION_CODE VARCHAR2(200);
X_GOVERNMENT_CONTEXT VARCHAR2(200);
X_GLOBAL_ATTRIBUTE_CATEGORY VARCHAR2(200);
X_GLOBAL_ATTRIBUTE1 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE2 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE3 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE4 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE5 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE6 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE7 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE8 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE9 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE10 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE11 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE12 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE13 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE14 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE15 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE16 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE17 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE18 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE19 VARCHAR2(200);
X_GLOBAL_ATTRIBUTE20 VARCHAR2(200);
X_MANUAL BOOLEAN;
X_PRICE_UPDATE_TOLERANCE NUMBER;
P_SHIPPING_CONTROL VARCHAR2(200);
P_ENCUMBRANCE_REQUIRED_FLAG VARCHAR2(200);
BEGIN
APPS.PO_HEADERS_SV11.INSERT_PO(X_ROWID ,
X_PO_HEADER_ID ,
X_AGENT_ID ,
X_TYPE_LOOKUP_CODE ,
X_LAST_UPDATE_DATE ,
X_LAST_UPDATED_BY ,
X_SEGMENT1 ,
X_SUMMARY_FLAG ,
X_ENABLED_FLAG ,
X_SEGMENT2 ,
X_SEGMENT3 ,
X_SEGMENT4 ,
X_SEGMENT5 ,
X_START_DATE_ACTIVE ,
X_END_DATE_ACTIVE ,
X_LAST_UPDATE_LOGIN ,
X_CREATION_DATE ,
X_CREATED_BY ,
X_VENDOR_ID ,
X_VENDOR_SITE_ID ,
X_VENDOR_CONTACT_ID ,
X_SHIP_TO_LOCATION_ID ,
X_BILL_TO_LOCATION_ID ,
X_TERMS_ID ,
X_SHIP_VIA_LOOKUP_CODE ,
X_FOB_LOOKUP_CODE ,
X_PAY_ON_CODE ,
X_FREIGHT_TERMS_LOOKUP_CODE ,
X_STATUS_LOOKUP_CODE ,
X_CURRENCY_CODE ,
X_RATE_TYPE ,
X_RATE_DATE ,
X_RATE ,
X_FROM_HEADER_ID ,
X_FROM_TYPE_LOOKUP_CODE ,
X_START_DATE ,
X_END_DATE ,
X_BLANKET_TOTAL_AMOUNT ,
X_AUTHORIZATION_STATUS ,
X_REVISION_NUM ,
X_REVISED_DATE ,
X_APPROVED_FLAG ,
X_APPROVED_DATE ,
X_AMOUNT_LIMIT ,
X_MIN_RELEASE_AMOUNT ,
X_NOTE_TO_AUTHORIZER ,
X_NOTE_TO_VENDOR ,
X_NOTE_TO_RECEIVER ,
X_PRINT_COUNT ,
X_PRINTED_DATE ,
X_VENDOR_ORDER_NUM ,
X_CONFIRMING_ORDER_FLAG ,
X_COMMENTS ,
X_REPLY_DATE ,
X_REPLY_METHOD_LOOKUP_CODE ,
X_RFQ_CLOSE_DATE ,
X_QUOTE_TYPE_LOOKUP_CODE ,
X_QUOTATION_CLASS_CODE ,
X_QUOTE_WARNING_DELAY_UNIT ,
X_QUOTE_WARNING_DELAY ,
X_QUOTE_VENDOR_QUOTE_NUMBER ,
X_ACCEPTANCE_REQUIRED_FLAG ,
X_ACCEPTANCE_DUE_DATE ,
X_CLOSED_DATE ,
X_USER_HOLD_FLAG ,
X_APPROVAL_REQUIRED_FLAG ,
X_CANCEL_FLAG ,
X_FIRM_STATUS_LOOKUP_CODE ,
X_FIRM_DATE ,
X_FROZEN_FLAG ,
X_SUPPLY_AGREEMENT_FLAG ,
X_GLOBAL_AGREEMENT_FLAG ,
X_ATTRIBUTE_CATEGORY ,
X_ATTRIBUTE1 ,
X_ATTRIBUTE2 ,
X_ATTRIBUTE3 ,
X_ATTRIBUTE4 ,
X_ATTRIBUTE5 ,
X_ATTRIBUTE6 ,
X_ATTRIBUTE7 ,
X_ATTRIBUTE8 ,
X_ATTRIBUTE9 ,
X_ATTRIBUTE10 ,
X_ATTRIBUTE11 ,
X_ATTRIBUTE12 ,
X_ATTRIBUTE13 ,
X_ATTRIBUTE14 ,
X_ATTRIBUTE15 ,
X_CLOSED_CODE ,
X_USSGL_TRANSACTION_CODE ,
X_GOVERNMENT_CONTEXT ,
X_GLOBAL_ATTRIBUTE_CATEGORY ,
X_GLOBAL_ATTRIBUTE1 ,
X_GLOBAL_ATTRIBUTE2 ,
X_GLOBAL_ATTRIBUTE3 ,
X_GLOBAL_ATTRIBUTE4 ,
X_GLOBAL_ATTRIBUTE5 ,
X_GLOBAL_ATTRIBUTE6 ,
X_GLOBAL_ATTRIBUTE7 ,
X_GLOBAL_ATTRIBUTE8 ,
X_GLOBAL_ATTRIBUTE9 ,
X_GLOBAL_ATTRIBUTE10 ,
X_GLOBAL_ATTRIBUTE11 ,
X_GLOBAL_ATTRIBUTE12 ,
X_GLOBAL_ATTRIBUTE13 ,
X_GLOBAL_ATTRIBUTE14 ,
X_GLOBAL_ATTRIBUTE15 ,
X_GLOBAL_ATTRIBUTE16 ,
X_GLOBAL_ATTRIBUTE17 ,
X_GLOBAL_ATTRIBUTE18 ,
X_GLOBAL_ATTRIBUTE19 ,
X_GLOBAL_ATTRIBUTE20 ,
X_MANUAL ,
X_PRICE_UPDATE_TOLERANCE ,
P_SHIPPING_CONTROL ,
P_ENCUMBRANCE_REQUIRED_FLAG );
END;
***************************plsql named block****************
CREATE OR REPLACE Procedure p6(p_row_id IN OUT VARCHAR2
,p_po_header_id IN OUT NUMBER
,p_segment1 IN OUT VARCHAR2
,p_Type_Lookup_Code IN VARCHAR2
                         ,p_agent_id IN NUMBER
,p_vendor_id IN NUMBER
,p_vendor_site_id IN NUMBER
,p_Ship_To_Location_Id IN NUMBER
,p_Bill_To_Location_Id IN NUMBER
,p_terms_id IN NUMBER
,p_fob_lookup_code IN VARCHAR2
,p_Freight_Terms_Lookup_Code IN VARCHAR2
,p_Currency_Code IN VARCHAR2
--,p_Start_Date IN DATE
                         ,p_Quote_Type_Lookup_Code IN VARCHAR2
--,p_quote_warning_delay IN VARCHAR2
--,p_Vendor_Quote_Number IN VARCHAR2
,p_last_update_date IN DATE
,p_last_updated_by IN NUMBER
,p_last_update_login IN NUMBER
,p_creation_date IN DATE
,p_created_by IN NUMBER
,p_Ship_Via_Lookup_Code IN varchar2
                         ,p_Vendor_Contact_Id IN NUMBER
--,p_res_ship_via IN VARCHAR2
,p_Comments IN VARCHAR2
,P_Supply_Agreement_Flag IN VARCHAR2
,p_organization_id IN VARCHAR2
--,p_procurement_channel IN VARCHAR2
--,p_Manual IN BOOLEAN
--,p_return_status OUT VARCHAR2
,P_Authorization_Status IN VARCHAR2
                         -- ,p_error_msg OUT VARCHAR2
                    ,p_Summary_Flag in varchar2
                    ,p_Enabled_Flag in varchar2
                    ,p_Status_Lookup_Code in varchar2
                    ,p_Quotation_Class_Code in varchar2
                    ,p_Approval_Required_Flag in varchar2
                    --,X_shipping_control VARCHAR2 -- <INBOUND LOGISTICS FPJ>
--,X_encumbrance_required_flag VARCHAR2
                    ) AS
v_segment1 varchar2(50):=null;
v_po_header_id number:=null;
v_row_id varchar2(50):=null;
BEGIN
po_headers_sv11.insert_po(X_Rowid => v_row_id --VARCHAR2
,X_Po_Header_Id => v_po_header_id --NUMBER
,X_Agent_Id => p_agent_id --NUMBER
,X_Type_Lookup_Code => p_Type_Lookup_Code
,X_Segment1 => v_segment1 --VARCAHR2
,X_Summary_Flag => p_Summary_Flag
,X_Enabled_Flag => p_Enabled_Flag
,X_Vendor_Id => p_vendor_id --NUMBER
,X_Vendor_Site_Id => p_vendor_site_id --NUMBER
,X_Ship_To_Location_Id => p_Ship_To_Location_Id --NUMBER
,X_Bill_To_Location_Id => p_Bill_To_Location_Id --NUMBER
,X_Terms_Id => p_terms_id --NUMBER
,X_Fob_Lookup_Code => p_fob_lookup_code --VARCHAR
,X_Freight_Terms_Lookup_Code => p_Freight_Terms_Lookup_Code --VARCHAR
,X_Status_Lookup_Code => p_Status_Lookup_Code -- Active
,X_Currency_Code => p_Currency_Code --VARCHAR
,X_Start_Date =>NULL--p_start_date --DATE
,X_Reply_Date => NULL--p_Start_Date --DATE
,X_Quote_Type_Lookup_Code => p_Quote_Type_Lookup_Code --VARCHAR
,X_Quotation_Class_Code => p_Quotation_Class_Code
,X_Quote_Warning_Delay => NULL--p_quote_warning_delay --VARCHAR
,X_Quote_Vendor_Quote_Number => NULL--p_Vendor_Quote_Number --VARCHAR
,X_Approval_Required_Flag => p_Approval_Required_Flag
,X_Last_Update_Date => p_last_update_date --DATE
,X_Last_Updated_By => p_last_updated_by --NUMBER
,X_Segment2 => NULL
,X_Segment3 => NULL
,X_Segment4 => NULL
,X_Segment5 => NULL
,X_Start_Date_Active => NULL
,X_End_Date_Active => NULL
,X_Last_Update_Login => p_last_update_login --NUMBER
,X_Creation_Date => p_creation_date --DATE
,X_Created_By => p_created_by --NUMBER
,X_Vendor_Contact_Id => p_vendor_contact_id --NUMBER
,X_Ship_Via_Lookup_Code => p_Ship_Via_Lookup_Code
,X_Pay_On_Code => NULL
,X_Rate_Type => NULL
,X_Rate_Date => NULL
,X_Rate => NULL
,X_From_Header_Id => NULL
,X_From_Type_Lookup_Code => NULL
,X_End_Date => NULL
,X_Blanket_Total_Amount => NULL
,X_Authorization_Status => P_Authorization_Status
,X_Revision_Num => NULL
,X_Revised_Date => NULL
,X_Approved_Flag => NULL
,X_Approved_Date => NULL
,X_Amount_Limit => NULL
,X_Min_Release_Amount => NULL
,X_Note_To_Authorizer => NULL
,X_Note_To_Vendor => NULL
,X_Note_To_Receiver => NULL
,X_Print_Count => NULL
,X_Printed_Date => NULL
,X_Vendor_Order_Num => NULL
,X_Confirming_Order_Flag => NULL
,X_Comments => NULL
,X_Reply_Method_Lookup_Code => NULL
,X_Rfq_Close_Date => NULL
,X_Quote_Warning_Delay_Unit => NULL
,X_Acceptance_Required_Flag => NULL
,X_Acceptance_Due_Date => NULL
,X_Closed_Date => NULL
,X_User_Hold_Flag => NULL
,X_Cancel_Flag => 'N'
,X_Firm_Status_Lookup_Code => NULL
,X_Firm_Date => NULL
,X_Frozen_Flag => NULL
,X_Supply_Agreement_Flag => P_Supply_Agreement_Flag
,X_Global_Agreement_Flag => NULL
,X_Attribute_Category => NULL
,X_Attribute1 => NULL
,X_Attribute2 => NULL
,X_Attribute3 => p_organization_id
,X_Attribute4 => NULL
,X_Attribute5 => NULL
,X_Attribute6 => NULL
,X_Attribute7 => NULL
,X_Attribute8 => NULL
,X_Attribute9 => NULL
,X_Attribute10 => NULL
,X_Attribute11 => NULL
,X_Attribute12 => NULL
,X_Attribute13 => NULL
,X_Attribute14 => NULL
,X_Attribute15 => NULL
,X_Closed_Code => NULL
,X_Ussgl_Transaction_Code => NULL
,X_Government_Context => NULL
,X_Global_Attribute_Category => NULL
,X_Global_Attribute1 => NULL
,X_Global_Attribute2 => NULL
,X_Global_Attribute3 => NULL
,X_Global_Attribute4 => NULL
,X_Global_Attribute5 => NULL
,X_Global_Attribute6 => NULL
,X_Global_Attribute7 => NULL
,X_Global_Attribute8 => NULL
,X_Global_Attribute9 => NULL
,X_Global_Attribute10 => NULL
,X_Global_Attribute11 => NULL
,X_Global_Attribute12 => NULL
,X_Global_Attribute13 => NULL
,X_Global_Attribute14 => NULL
,X_Global_Attribute15 => NULL
,X_Global_Attribute16 => NULL
,X_Global_Attribute17 => NULL
,X_Global_Attribute18 => NULL
,X_Global_Attribute19 => NULL
,X_Global_Attribute20 => NULL
,X_Manual => NULL
,X_Price_Update_Tolerance => NULL
                         ,p_shipping_control=> NULL--X_shipping_control -- <INBOUND LOGISTICS FPJ>
,p_encumbrance_required_flag=> NULL--X_encumbrance_required_flag
                         commit;
dbms_output.put_line('agent_id:'||p_agent_id);
dbms_output.put_line('segment1:'||P_segment1);
dbms_output.put_line('SHIP_TO_LOCATION_ID:'||P_SHIP_TO_LOCATION_ID);
dbms_output.put_line('BILL_TO_LOCATION_ID:'||P_BILL_TO_LOCATION_ID);
dbms_output.put_line('VENDOR_SITE_ID:'||P_VENDOR_ID);
dbms_output.put_line('VENDOR_SITE_ID:'||P_VENDOR_SITE_ID);
dbms_output.put_line('SUPPLY_AGREEMENT_FLAG:'||P_SUPPLY_AGREEMENT_FLAG);
dbms_output.put_line('QUOTE_TYPE_LOOKUP_CODE:'||p_QUOTE_TYPE_LOOKUP_CODE);
dbms_output.put_line('FREIGHT_TERMS_LOOKUP_CODE:'||P_FREIGHT_TERMS_LOOKUP_CODE);
dbms_output.put_line('AUTHORIZATION_STATUS:'||P_AUTHORIZATION_STATUS);
dbms_output.put_line('ORGANIZATION_ID:'||p_ORGANIZATION_ID);
dbms_output.put_line('VENDOR_CONTACT_ID:'||P_VENDOR_CONTACT_ID);
dbms_output.put_line('Type_Lookup_Code:'||p_Type_Lookup_Code);
dbms_output.put_line('Summary_Flag:'||p_Summary_Flag);
dbms_output.put_line('Enabled_Flag:'||p_Enabled_Flag);
dbms_output.put_line('Comments:'||p_Comments);
dbms_output.put_line('Currency_Code:'||p_Currency_Code);
dbms_output.put_line('Authorization_Status:'||P_Authorization_Status);
dbms_output.put_line('Status_Lookup_Code:'||p_Status_Lookup_Code);
dbms_output.put_line('Quotation_Class_Code:'||p_Quotation_Class_Code);
dbms_output.put_line('Approval_Required_Flag:'||p_Approval_Required_Flag);
dbms_output.put_line('last_update_login:'||p_last_update_login);
dbms_output.put_line('created_by:'||p_created_by);
dbms_output.put_line('last_update_date:'||p_last_update_date);
dbms_output.put_line('Vendor_Contact_Id:'||p_Vendor_Contact_Id);
dbms_output.put_line('fob_lookup_code:'||p_fob_lookup_code);
EXCEPTION
WHEN OTHERS THEN
--p_return_status :='E';
--p_error_msg     :='ERROR during Insert in PO_HEADERS.'||CHR(10)||SQLERRM;
raise;
END p6;
Regards,
YellaGoud

What is your current Oracle user ?
show userTry to identify the table owner:
select owner from dba_tables where table_name='CE1LAOC';And add <table owner> as prefix to table name:
CREATE INDEX Z05 ON <table_owner>.CE1LAOC (MANDT, PALEDGER, BUKRS, PERIO, VRGAR, VKORG, HZDAT);

Similar Messages

  • Integration of Oracle Apps with the Third Party Label Printing Software(Bar

    Hi,
    I am integrating Oracle Apps R12 with the third party Label Printing Software(Bartender).
    For generating the Label, I have to create the XML file in Oracle Apps and with the help of Oracle WMS i have to transfer the XML file to the TCP/IP Port.
    Third Party Label Printing Software will pick the file from the TCP/IP Port.
    I am not able to find the way to send the XML file generated by the concurrent program to the TCP/IP Port using Oracle WMS.
    Below are the few links for Oracle WMS:
    http://docs.oracle.com/cd/B25284_01/current/acrobat/115wmsug.pdf
    http://docs.oracle.com/cd/E18727_01/doc.121/e13434/T210618T210847.htm#T210864
    Thanks In Advance..

    Pl do not post duplicates - Integration of Oracle Apps with the Third Party Label Printing Software

  • Unable to connect to my Oracle Database with Microsoft's ODBC for Oracle driver

    I am unable to connect to my Oracle Database with Microsoft's ODBC for Oracle driver vers.2.573.4202.00 on a Win98 computer.
    First, I create a "Net Service Name" in order for the ODBC Driver to find the Oracle server. I then created a System DSN in the ODBC Data Source Administrator and assigned the "Net Server Name" as the server in the "Microsoft ODBC for Oracle Setup". But when I test this DSN with Oracle's provided "Oracle ODBC 32Bit Test vers.2.5.3.1.0" I get an error:
    SQLSTATE: NA000
    Native Error Code:0
    Driver Message:[Microsoft][ODBC driver for Oracle][Oracle]
    This error occurred on all three Win98 computers I have tried. It does however, seem to work fine on WinNT 4.0, and believe it or not, on the two Win95 computers I have tried.
    Does anyone have any fixes, recomendations, or advice?
    Thank you,
    Eric Edwards
    null

    Why are yu not using the Oracle ODBC driver - these can be downloaded from OTN.
    Have you set up a tnsnames.ora entry for the Oracle database you want to connect to? Does this name have a domain name added to it? Check %ORACLE_HOME%\network\admin\tnsnames.ora for the service name. If it is a name of the form :
    name.domain.subdomain
    then you should try using this full name when configuring the ODBC data source.
    null

  • How do I retain my apps after I change my apple ID? Right now I'm unable to update any of the apps with the old apple ID. I get an error message about an invalid id or password. If I delete my apps and start over, I may lose the apps that I purchased...

    How do I retain my apps after I change my apple ID? Right now I'm unable to update any of the apps with the old apple ID. I get an error message about an invalid id or Password. If I delete my appos and start over, I may lose the apps that I purchased (like the ones for $5 +....

    Apps are always tied to the ID that was used to purchase them originally. Did you try entering your old password and see if that works?
    If you need to sign out of your old account go to Settings>Store>Tap on your ID and sign out. Sign in with the new one.
    you can also access your ID in the featured tab of the App Store. Swipe to the bottom of the screen and you will find it there as well.

  • INTEGRATION OF ORACLE APPS  WITH MOBILE SMS

    {color:#3366ff}Dear All,
    I would like to Integrate the Oracle Apps with Mobile SMS,
    The Task is that..
    " WHENEVER THE PURCHASE ORDER IS RELEASED BY A SENIOR PURCHASE MANAGER, THEN A SMS MESSAGE HAS TO COME TO HIS SENIOR MANAGERS MOBILE Phone "
    Is it Possible to Integrate Oracle Apps with Mobile Phone if it is possible then send me the DEMO Application procedure.....................
    Please help me out..
    Regards,
    Vijay .
    {color}

    Sending an SMS is a relatively small customisation if you work with an SMS aggregator such as Clickatel or TXTLocal. Both expose simple Web Service api's that you call with the phone number and message text as parameters. The aggregator then hands the message off to the mobile phone network for delivery to a users phone. The aggregators also provide web services that allow you to be notified when they receive an SMS message for you. So if you wanted to be really smart you could allow the user to reply to the original SMS with "Approve" or "Reject" and update the status of the PO/requisition automatically and advance the workflow.
    Edited by: mzjarvis on 19-Nov-2008 15:36

  • How to Integrate Oracle Apps with BPEL

    hi
    How to Integrate Oracle Apps with Fusion Middleware(BPEL) ?
    Please Provide me steps:
    Regards,
    Khushal

    hi,
    There is an adapter thats being provided with the standard adapter set with SOA installation . There are several ways of integrating with Oracle Apps . The adapter has all the options listed out.
    Regards,
    Ajay

  • Create dblink in Oracle/Linux (RHEL4) to MS SQL Server/Windows?

    Hi,
    Can anyone share me the procedure to Create dblink in Oracle/Linux (RHEL4) to MS SQL Server/Windows?
    Thanks

    Hi,
    to access non-Oracle systems you must use Oracle Heterogeneous Services.
    You have to follow the instructions from Heterogeneous Connectivity Administrator's Guide to perform it.
    Regs,
    Acr

  • Oracle Package is a pl/sql block

    Hello ,
    I am having a simple doubt on oracle package .
    A pl/sql block (executable section) must have a begin and end .
    But oracle package is having only the end part ,
    so is it a pl/sql block or what ........................
    Thanks

    >
    A pl/sql block (executable section) must have a begin and end .
    But oracle package is having only the end part ,
    so is it a pl/sql block or what ........................
    >
    No - a package is not a block.
    When you have basic questions like this ALWAYS start with the Oracle documentation.
    In this case that would be the PL/SQL language reference
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28370/overview.htm#sthref18
    From Chapter 1 Overview of PL/SQL is the definition of a block
    >
    PL/SQL Blocks
    The basic unit of a PL/SQL source program is the block, which groups related declarations and statements.
    A PL/SQL block is defined by the keywords DECLARE, BEGIN, EXCEPTION, and END. These keywords partition the block into a declarative part, an executable part, and an exception-handling part. Only the executable part is required.
    Declarations are local to the block and cease to exist when the block completes execution, helping to avoid cluttered namespaces for variables and subprograms.
    Blocks can be nested: Because a block is an executable statement, it can appear in another block wherever an
    >
    And from Chapter 10 Using PL/SQL Packages
    >
    What is a PL/SQL Package?
    A package is a schema object that groups logically related PL/SQL types, variables, and subprograms. Packages usually have two parts, a specification ("spec") and a body; sometimes the body is unnecessary.
    The specification is the interface to the package. It declares the types, variables, constants, exceptions, cursors, and subprograms that can be referenced from outside the package. The body defines the queries for the cursors and the code for the subprograms.
    You can think of the spec as an interface and of the body as a black box. You can debug, enhance, or replace a package body without changing the package spec.
    >
    This clearly shows that a package is not a block.

  • Unable to Create FTP Adapter + Oracle ESB

    Hi,
    Following is the scenario in Oracle ESB:-------
    I created one FILE Adapter for reading file from directory and FTP Adapter to put that file to FTP site in Oracle ESB.
    When i checked in the ESB console File was getting picked up by the FILE ADAPTER but unable to put on the FTP Site.
    Could any one please tell me what should i suppose to enter in the field of "Directory for Outgoing Files (physical path):" and what should i select "Physical Path" OR "logical path" i.e in STEP 4
    I have given all access to FTP site i.e READ/WRITE
    Following is the error message i am getting in Oracle ESB Console for the same....
    Could any one please suggest some thing???
    An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: esb:///ESB_Projects/Application1_Project2/FTP_Adapter.wsdl Put_ptt::Put(opaque) - WSIF JCA Execute of operation 'Put' failed due to: Error sending file to FTP Server. Unable to send file to server. ; nested exception is: ORABPEL-11429 Error sending file to FTP Server. Unable to send file to server. Please ensure 1. Specified remote output Dir has write permission 2. Output filename has not exceeded the max chararters allowed by the OS and 3. Remote File System has enough space. at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:623) at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeInputOnlyOperation(WSIFOperation_JCA.java:726) at oracle.tip.esb.server.common.wsif.WSIFInvoker.executeOperation(Unknown Source) at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(Unknown Source) at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(Unknown Source) at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.nextService(Unknown Source) at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.processBusinessEvent(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(Unknown Source) at oracle.tip.esb.server.dispatch.BusinessEvent.raise(Unknown Source) at oracle.tip.esb.utils.EventUtils.raiseBusinessEvent(Unknown Source) at oracle.tip.esb.server.service.EsbRouterSubscription.onBusinessEvent(Unknown Source) at oracle.tip.esb.server.dispatch.EventDispatcher.executeSubscription(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.processSubscription(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.processSubscriptions(Unknown Source) at oracle.tip

    Hi JTaylor,
    I am still unable to find FtpAdapter in the EM (Enterprise Manager) so can't find/change the entry for "eis/Ftp/FtpAdapter"
    Following are the some application which are already in my EM.
    Applications:-
    ascontrol, ccore, coreman, datatags, default, esb-dt, esb-rt,
    gateway, hw_services, javasso, orabpel, orainfra, policymanager, ruleauthor ,
    rulehelp , WSIL-App
    Still i am getting the following error which is related to step 2. Entry in the step 2 & oc4j-ra.xml is the same i.2
    ""eis/Ftp/FtpAdapter"
    An unhandled exception has been thrown in the ESB system. The exception reported
    is: "org.collaxa.thirdparty.apache.wsif.WSIFException:
    esb:///ESB_Projects/Application1_Project2/FTP_Adapter.wsdl [
    Put_ptt::Put(opaque) ] - WSIF JCA Execute of operation 'Put' failed due to:
    Adapter Framework unable to create outbound JCA connection.
    esb:///ESB_Projects/Application1_Project2/FTP_Adapter.wsdl [
    Put_ptt::Put(opaque) ] - : The Adapter Framework was unable to establish an
    outbound JCA connection due to the following issue: ORABPEL-12510 Unable to
    locate the JCA Resource Adapter via WSDL port element jca:address. The Adapter
    Framework is unable to startup the Resource Adapter specified in the WSDL
    jca:address element: location='eis/Ftp/FtpAdapter'. The reason for this is most
    likely that either 1) the Resource Adapters RAR file has not been deployed
    successfully to the OC4J Application server or 2) the 'location' attribute in
    $J2EE_HOME/application-deployments/default/deployed-adapter-name/oc4j-ra.xml has
    not been set to eis/Ftp/FtpAdapter. In the last case you might have to add a new
    'connector-factory' entry (connection) to oc4j-ra.xml. Please correct this and
    then restart the BPEL/OC4J Application Server ; nested exception is:
    ORABPEL-12511 Adapter Framework unable to create outbound JCA connection.
    esb:///ESB_Projects/Application1_Project2/FTP_Adapter.wsdl [
    Put_ptt::Put(opaque) ] - : The Adapter Framework was unable to establish an
    outbound JCA connection due to the following issue: ORABPEL-12510 Unable to
    locate the JCA Resource Adapter via WSDL port element jca:address. The Adapter
    Framework is unable to startup the Resource Adapter specified in the WSDL
    jca:address element: location='eis/Ftp/FtpAdapter'. The reason for this is most
    likely that either 1) the Resource Adapters RAR file has not been deployed
    successfully to the OC4J Application server or 2) the 'location' attribute in
    $J2EE_HOME/application-deployments/default/deployed-adapter-name/oc4j-
    Could please give me u r e-mail id so i can send some snap shot to u ? So it would be greate help for me to solve this problem.
    Thanks & Regards
    Shivraj

  • Integration of Oracle Apps with the Third Party Label Printing Software

    Hi,
    I am integrating Oracle Apps R12 with the third party Label Printing Software(Bartender).
    For generating the Label, I have to create the XML file in Oracle Apps and with the help of Oracle WMS i have to transfer the XML file to the TCP/IP Port.
    Third Party Label Printing Software will pick the file from the TCP/IP Port.
    I am not able to find the way to send the XML file generated by the concurrent program to the TCP/IP Port using Oracle WMS.
    Below are the few links for Oracle WMS:
    http://docs.oracle.com/cd/B25284_01/current/acrobat/115wmsug.pdf
    http://docs.oracle.com/cd/E18727_01/doc.121/e13434/T210618T210847.htm#T210864
    Thanks In Advance..

    Hi,
    I assume, i have already setup profile 'WMS: Label Print Mode' to Synchronous - TCP/IP.
    Basically, you dont have to create any concurrent program for XML creation, Oracle will do it for you 'out of box'.
    Also set 'WMS: Synchronous TCP/IP label request delay' to 100, this is a required step, though none of the documentation talks about it.
    if you think that all the requests are not handled correctly, then you will need to increase this delay further.
    Lastly, verify that the printer is setup correctly in Oracle (Place where you specify IP Address and port)
    Thanks,
    Hrishikesh

  • Creating a NEW Oracle APPS EUL , How to get Oracle BI Objects in new brand

    Hi there
    We upgraded Oracle Discoverer 4i to Discoverer 10g and during the upgrade process DBA upgrade the EUL5 in the same schema.
    Now That schema is corrupt.
    I have to create a new Brand EUL for Oracle APPS Business Intelligence Views 11.5.10.2.
    What steps I can follow.
    1)     DROP the existing schema at Database.
    2)     Using Discoverer Admin login through SYSTEM Account
    3)     Create the APPS EUL
    4)     Now What to do to get the Business Intelligence APPS Views in my new APPS EUL?
    Is there any process I need to run to get Business Intelligence Views.
    Thanks
    JOJI

    JOJI,
    It is a "non-destructive" upgrade/migration. This is why you have the EUL4 and EUL5 objects in the schema. This allows you to migrate your users in a controlled fashion if desired as it keeps the Discoverer 4i EUL intact.
    What Jose, is describing is that you can drop the EUL5 objects (via the 10g Administrator -drop the EUL or manually) and then perform the upgrade again.
    If you do decide to create a new 10g (eul5) EUL, then the following MetaLink Note describes how to import the Business Intelligence Business Areas and Generate the Business Views.
    Note 316463.1     Using Discoverer 10.1.2 with Oracle E-Business Suite 11i
    I hope that helps,
    Regards,
    Steve.

  • Unable to use flexfield lexical oracle.apps.fnd.flex.kff.segments_metadata

    EBS 11.5.10.2
    XMLP 5.6.3
    ARXAGMW.rdf
    Hello,
    I am trying to convert an Oracle Report to XML Publisher, and I am having problems getting lexicals in the Data Template to work.
    I raised an SR for this since both related threads in this forum from two years ago were unresolved. Oracle had no answers for me, and told me to ask the question here.
    So anyone who has any ideas, please chime in!
    Here is a simplified version of the data template, narrowed down to just the use of the lexicals:
    <?xml version="1.0" encoding="utf-8"?>
    <dataTemplate name="XXWLC_ARXAGMW"
                  description="samples from doco"
                  defaultPackage=""
                  dataSourceRef="ORA_EBS"
                  version="1.0">
      <properties>
        <property name="xml_tag_case"       value="upper" />
        <property name="include_parameters" value="true"  />
        <property name="debug_mode"         value="on"    />
      </properties>
      <parameters>
        <parameter name="P_ID_FLEX_NUM" dataType = "number" defaultValue="101" />
      </parameters>
      <lexicals>
        <lexical type="oracle.apps.fnd.flex.kff.segments_metadata"
                 name="FLEX_GL_BALANCING_APROMPT"
                 comment="Comment"
                 application_short_name="SQLGL"
                 id_flex_code="GL#"
                 id_flex_num=":P_ID_FLEX_NUM"
                 segments="GL_BALANCING"
                 show_parent_segments="Y"
                 metadata_type="ABOVE_PROMPT"/>
        <lexical type="oracle.apps.fnd.flex.kff.segments_metadata"
                 name="FLEX_GL_ACCOUNT_LPROMPT"
                 comment="Comment"
                 application_short_name="SQLGL"
                 id_flex_code="GL#"
                 id_flex_num=":P_ID_FLEX_NUM"
                 segments="GL_ACCOUNT"
                 show_parent_segments="Y"
                 metadata_type="LEFT_PROMPT"/>
        <lexical type="oracle.apps.fnd.flex.kff.segments_metadata"
                 name="ACCT_BAL_LPROMPT"
                 application_short_name="SQLGL"
                 id_flex_code="GL#"
                 id_flex_num=":P_ID_FLEX_NUM"
                 segments="GL_BALANCING"
                 show_parent_segments="Y"
                 metadata_type="LEFT_PROMPT" />
      </lexicals>
      <dataQuery>
        <sqlStatement name="Q_DOCO_SAMPLE">
          <![CDATA[
            SELECT
               &FLEX_GL_BALANCING_APROMPT alias_gl_balancing_aprompt
              ,&FLEX_GL_ACCOUNT_LPROMPT   alias_gl_account_lprompt
              ,&ACCT_BAL_LPROMPT          alias_acct_bal_lprompt
            FROM dual
          ]]>
        </sqlStatement>
      </dataQuery>
      <dataStructure>
        <group name="G_DOCO_SAMPLE" dataType="varchar2" source="Q_DOCO_SAMPLE">
          <element name="sample_gl_balancing_aprompt" dataType="varchar2" value="alias_gl_balancing_aprompt" />
          <element name="sample_gl_account_lprompt"   dataType="varchar2" value="alias_gl_account_lprompt"   />
          <element name="sample_acct_bal_lprompt"     dataType="varchar2" value="alias_acct_bal_lprompt"     />
        </group>
      </dataStructure>
    </dataTemplate>The lexicals "compile" and run successfully, but they return String values that SHOULD be wrapped with quotes; but this doesn't happen, so the SQL that runs is:
    SELECT
       COMPANY alias_gl_balancing_aprompt
      ,ACCT  alias_gl_account_lprompt
      ,CO          alias_acct_bal_lprompt
    FROM dualThus, the concurrent program ends with ERROR, due to java.sql.SQLException: ORA-00904: "CO": invalid identifier
    The first two lexicals and their corresponding sql statement are samples directly from the user guide (which is full of errors). The third lexical is the one from ARXAGMW.rdf.xml that I am trying to make work.
    Edited by: user650442 on Apr 30, 2010 3:58 PM

    By the way, simply adding the quotes around the lexical names in the sql statement doesn't work. That causes the lexical references to be ignored as simple string values:
    SELECT
       '&FLEX_GL_BALANCING_APROMPT' alias_gl_balancing_aprompt
      ,'&FLEX_GL_ACCOUNT_LPROMPT'   alias_gl_account_lprompt
      ,'&ACCT_BAL_LPROMPT'          alias_acct_bal_lprompt
    FROM dualI turned on statement-level debugging via xdodebug.cfg and saw how it compiled the lexicals. By replicating the call to apps.fnd_flex_xml_publisher_apis.kff_segments_metadata that I found there, I was able to hack together a workaround for this issue.
    Please point me to a better way of doing this if possible, as I had to GRANT EXECUTE on this apps package to my custom code schema. Is there a better lexical/flexfields reference than the XML Publisher documentation?
    Here is the call I made in my before-report trigger:
    --set ACCT_BAL_LPROMPT flexfield segment metadata lexical
    begin
    apps.fnd_flex_xml_publisher_apis.kff_segments_metadata(
      'FLEX_ACCT_BAL_LPROMPT',
      'SQLGL',
      'GL#',
      101,
      'GL_BALANCING',
      'Y',
      'LEFT_PROMPT',
      c_FLEX_ACCT_BAL_LPROMPT
    end;

  • Unable to create an encrypted disk image with Disk Utility

    Hi:
    With our upgrade to Lion a few weeks ago, we're now unable to create an encrypted disk image of any type using Disk Utility any more. This problem occurs on 3 different machines, and is reproducible whether one is using an internal HD or an external FW HD. We can successfully create nonencrypted disk images.
    This is a duplicate post with all the details here: https://discussions.apple.com/message/18469359#18469359
    We haven't had any luck with a solution trying various permissions fixes as helpfully suggested by other readers in response to the error message # (-60008 error), so I'm hoping that someone else has run across a solution from the encrypted disk image perspective and that this tag line will generate some help.
    Thank you!

    Save As: 01 (on Desktop)
    Name: 01
    Size: 100 MB
    Format: Mac OS Encrypted (Journaled)
    Encryption: 256-bit AES
    Partitions: Single partition- Apple Partition Map
    Image Format: read/write disk image
    At the password window that pops up I enter: 1234567890
    This says password strength is "Weak"
    All works fine
    Then I repeated this using:
    Save As: 02 (on Desktop)
    Name: 02
    Size: 100 MB
    Format: Mac OS Encypted (Journaled)
    Encryption: 256-bit AES
    Partitions: Single partition- Apple Partition Map
    Image Format: read/write disk image
    At the password window that pops up I enter: 1234567890 and when I start to enter the next "1" I get the "Unable to create "02.dmg." (error -60008)
    OS 10.7.4
    Disk Utility Version 12.1.1 (353)

  • Unable to create node /home/ SID adm with type directory

    I am currently experiencing a problem when trying to install a Java Stack onto my new SCM 7.0  EHP1 server.
    I receive the error:
    System call failed.  Error 89......mkdir..../home/djdadm....
    (djd is the SID of my new Java AS)
    This is followed by an error:
    Unable to create node /home/djdadm with type directory
    We have Solaris v10 (SPARC), and the ABAP stack has already been installed successfully.
    The user djdadm was created manually on solaris before starting the installation (assigned to groups sapsys, dba, sapinst + oper) and the home directory "/usr/sap/DJD/home" was specified. 
    Note the difference in the home directory that it is trying to create to the one that we set against the new user djdadm.
    This error is experienced quite early in when SAPINST is performing the tasks (and it stops at the Create users for SAP system stage).
    I was experiencing a problem where SAPINST crashed completely for a while, so I've downloaded the latest version of SAPINST today.  Also, I've set a new TEMP folder and am running SAPINST from there, but am stuck at the problem mentioned above.
    Any help would be much appreciated. 
    Alistair Crawshaw

    Hello,
    It looks like a Solaris issue. Check if the home directory /home is reserved in the Solaris configuration.                                                                               
    You may try this in that case:       
    1. modify /etc/auto_master file to change the entry for '/home' to say 
       '/autohome' instead                                                  
    2. reboot                                                              
    3. rmdir /home                                                         
    4. ln -s /export/home /home (make sure /export/home exists)       
    Regards,
    Désiré

  • COPA unable to create as charac data element with LIFNR as domain HELP ASAP

    Hi
    We had a data element created with KUNNR as domain.
    We added to PAPARTNER STRUCUTRE and created as characteristics in our operating concern.
    Now there is a need to change to LIFNR as domain instead of KUNNR.
    There we created a new dala element with LIFNR as domain and added to PAPARTNER
    structure and when we tried to create them as characterisc system did not let us transfer to
    our operating concern.
    We do not know why we are unable to create this characterisic.
    When we tried to create the characteristic it was shown under 'Transfer from'
    But when we wanted to move right to left it was shown under 'grey' status and not ready for transfer.
    We need a solution very urgent and any help is greatly appreciated.
    Thanks
    Raj

    Hi
    KEA0 - Display Data Structure
    Now, Extras > Chars > Unlock
    after this try to push from right to left
    br, Ajay M

Maybe you are looking for