problem in compiling

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
consulting
Participant
Posts: 50
Joined: Fri Dec 21, 2007 3:24 am

problem in compiling

Post by consulting »

Output from transformer compilation follows:

##E TFPA 000020 $APT_CONFIG_FILE=/appl/datastage/Ascential/DataStage/Configurations/ddwetl3x4_mem_map.apt does not exist or is not a file or symbolic link to one.
##F TFCF 000009 Fatal Error: Cannot continue without a configuration file. (CACTUS030GetBookRev.Format_BookRev_Ref)

*** Internal Generated Transformer Code follows:
0001: //
0002: // Generated file to implement the V0S35_repos_Format_BookRev_Ref transform operator.
0003: //
0004:
0005: // define our input/output link names
0006: inputname 0 BookRev_Ref;
0007: outputname 0 Book_Rev;
0008:
0009: initialize {
0010: // define our row rejected variable
0011: int8 RowRejected0;
0012:
0013: // define our null set variable
0014: int8 NullSetVar0;
0015:
0016: }
0017:
0018: mainloop {
0019: // initialise our row rejected variable
0020: RowRejected0 = 1;
0021:
0022: // declare our intermediate variables for this section
0023: ustring InterVar0_0;
0024:
0025: // evaluate columns (no constraints) for link: Book_Rev
0026: Book_Rev.Pricing_Prod_Cd = trimc_string(BookRev_Ref.Pricing_Prod_Cd);
0027: Book_Rev.pricing_zone = trimc_string(BookRev_Ref.pricing_zone);
0028: InterVar0_0 = BookRev_Ref.wgt_brk_cd;
0029: Book_Rev.wgt_brk_cd = u_trimc_string(InterVar0_0);
0030: InterVar0_0 = BookRev_Ref.PPV;
0031: Book_Rev.PPV = u_trimc_string(InterVar0_0);
0032: writerecord 0;
0033: RowRejected0 = 0;
0034: }
0035:
0036: finish {
0037: }
0038:
*** End of Internal Generated Transformer Code
balaji
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Re: problem in compiling

Post by ArndW »

consulting wrote:...##E TFPA 000020 $APT_CONFIG_FILE=/appl/datastage/Ascential/DataStage/Configurations/ddwetl3x4_mem_map.apt does not exist or is not a file or symbolic link to one.
##F TFCF 000009 Fatal Error: Cannot continue without a configuration file. (CACTUS030GetBookRev.Format_BookRev_Ref)
Did you follow up on that error and get a working APT_CONFIG file declared?
Shiva shankar
Participant
Posts: 1
Joined: Mon Feb 15, 2010 3:59 am
Location: Shiva shankar

Re: problem in compiling

Post by Shiva shankar »

ArndW wrote:
consulting wrote:...##E TFPA 000020 $APT_CONFIG_FILE=/appl/datastage/Ascential/DataStage/Configurations/ddwetl3x4_mem_map.apt does not exist or is not a file or symbolic link to one.
##F TFCF 000009 Fatal Error: Cannot continue without a configuration file. (CACTUS030GetBookRev.Format_BookRev_Ref)
Did you follow up on that error and get a working APT_CONFIG file declared?

Hi even I am getting the same error.

Can you give me the solution how you fixed this.

Thanx,
Shivu
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Welcome aboard.

There is nothing in the thread so far to indicate that consulting (the nick chosen by the original poster) ever did get it working.

However, the solution is obvious. APT_CONFIG_FILE must contain the pathname of a configuration file that is valid. You can check whether a configuration file is valid using the Configurations utility under the Tools menu in Designer.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply