Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Help needed during generation of ILDT file using irep_parser.pl

Vinayak NSep 10 2014 — edited Sep 26 2014

The is is my package which I have annotated

##########################################

REATE OR REPLACE PACKAGE Xxetc_Soa_Req_Apps_Pkg  AS

/* $Header: XXETC_SOA_REQ_APPS_PKG .pkb 1.0 2014/03/04 $ */

/*#

* This custom PL/SQL package

* @rep:scope public

* @rep:product CUSTOM

* @rep:lifecycle active

* @rep:displayname Xxetc_Soa_Req_Apps_Pkg

* @rep:compatibility S

* @rep:category BUSINESS_ENTITY Xxetc_Custom_Code

*/

PROCEDURE XXETC_SOA_REQ_CREATION

          (p_user_name   IN  VARCHAR2,

    p_item_no       IN  VARCHAR2,

    p_qty       IN  NUMBER,

    p_rate                IN  NUMBER,

    p_date                IN  DATE,

    p_organization IN  VARCHAR2,

    p_status              OUT VARCHAR2,

    p_error_message       OUT VARCHAR2

    )    

/*#

* @param p_user_name   username

* @param p_item_no   item number

* @param p_qty   quantity

* @param p_rate   rate

* @param p_date     date

* @param p_organization   organization

* @param p_status   return status

* @param p_error_message   return error_message

* @rep:scope public

* @rep:lifecycle active

* @rep:displayname XXETC_SOA_REQ_CREATION

*/

;      

   

END Xxetc_Soa_Req_Apps_Pkg;

###################################################

I get the below Error when trying to generate the ILDT for the file  above as shown below....pls help

################

$IAS_ORACLE_HOME/perl/bin/perl $FND_TOP/bin/irep_parser.pl -g -v -username=SYSADMIN XXETC:patch/115/sql:XXETC_SOA_REQ_APPS_PKG.pls:12.0=/oracle/a

pplvis/XXETC_SOA_REQ_APPS_PKG.pls

# Interface Repository Annotation Processor, 12.0.0

#

# Generating annotation output.

# Processing file '/oracle/applvis/XXETC_SOA_REQ_APPS_PKG.pls'.

# Using YAPP-based parser.

# Warning: Bad date format '1.0'

# Warning: Bad time format '2014/03/04'

#  Found a package-level annotation for 'XXETC_SOA_REQ_APPS_PKG'.

#  Found a detail-level annotation...

# Found a procedure named 'XXETC_SOA_REQ_CREATION'.

/oracle/applvis/XXETC_SOA_REQ_APPS_PKG.pls:24:Missing mandatory description for procedure XXETC_SOA_REQ_APPS_PKG.XXETC_SOA_REQ_CREATION

# Warning: Not generating iLDT for '/oracle/applvis/XXETC_SOA_REQ_APPS_PKG.pls', invalid annotation.

# Done all files.

##################################################################

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 24 2014
Added on Sep 10 2014
1 comment
1,953 views