Page 1 of 1

What are Functional maps?

Posted: Thu May 06, 2010 8:52 am
by Divya.A
What are functional maps? in which scenarios they are used?

Re: Functioal maps

Posted: Sun May 09, 2010 3:25 am
by mojave3
Divya.A wrote:What are functional maps? in which scenarios they are used?
maps are called by execution maps. sometimes , you cannot finish all logic in a map. you can build some common maps which can be reused.

Re: Functioal maps

Posted: Tue May 25, 2010 12:31 am
by madhes
Divya.A wrote:What are functional maps? in which scenarios they are used?
Functional map is subset of executable map.

-> Say for example, in some cases input record is 0:s and output record is 0:s, but you have to map only
certain input records (obviously some satisfying condition) with output recrod, in this case we have to functional map to do the mapping.

-> Generally, wherever looping is required in output to map the input then we have to use f'map to do the mapping.

Best Regards
Madhes

Posted: Thu Jul 01, 2010 2:59 am
by chvenkat.v
When is your interview?

*** Please don't post interview Questations ****

Refer Datastage TX User Guide ...

Posted: Mon Jul 26, 2010 10:33 pm
by jvmerc
chvenkat.v wrote:When is your interview?

*** Please don't post interview Questations ****

Refer Datastage TX User Guide ...
Sorry, don't quite understand that comment. You must know or see something I missed.

.
.
.

In addition functional maps can be used perform common routines. Don't bother writing a rule 4 times. Write 1 f_map and execute it 4 times. Make maint easier too.

Makes your life easy

Posted: Wed Sep 22, 2010 8:26 pm
by roydanlobo
I am pretty sure , you have used a c function
eg: f(x,y)
Same way you use a function in Mercator or WTX with parameters like x and y , this will in-turn act as a sub map to the main map , this is called a functional map.
this has a input and the output , the input is nothing but the parameters u pass in the functional map and output is the location where you write the functional map. it will return a value , Just like another function in any programming languages , takes the parameters as input and returns the value simple ryt???? [/b]