OWB treats variable as a function - any ideas?

Hello
I am learning owb and got stuck with this one problem.
i have successfully validated and generated map with match / merge. however i am having problems deploying it - every time i try - i get the following errors:
ANOTHERONE_MM
Create
Warning
ORA-06550: line 1370, column 6:
PL/SQL: Statement ignored
ANOTHERONE_MM
Create
Warning
ORA-06550: line 1372, column 26:
PLS-00222: no function with name 'VIX_TEST_TIME1_4_SURNAME$1' exists in this scope
Having looked into the repository where the package is generated i have found out that the function reported in the error is actually a variable. It is being declared in package body and no references to it exists in package speck.
it is not an external variable - it is created by OWB. Debugging is going well until this varialbe is being applied like a function ?!
I would really appreciate if someone could advise me where i am going or what i am doing wrong here.
Thank you very much for all your help
Kind Regards

May be my description of the problem is not very clear:
I have created a simple map with match/merge (just to see how it would work etc). Followed the instructions as per manual and only used one field to be matched on - surname. Match / merged is defined as follows:
1 group for input and 2 groups for output
Input connection - ingrp1 surname
Input attribute - surname varchar2
Merge Output - surname
Cross Ref Output - surname and mm_surname (mm_ indicated matched and merged)
match bin - surname (as it is the only criteria)
Match rules - All Match
Merge Rules - Any record
the input is coming from table A, merged records should be inserted in table B and matched records should be inserted into xref table.
As i have previosuly mentioned - validation and generation are fine. When trying to deploy - i got messages:
ANOTHERONE_MM
Create
Warning
ORA-06550: line 243, column 6:
PL/SQL: Statement ignored
ANOTHERONE_MM
Create
Warning
ORA-06550: line 245, column 26:
PLS-00222: no function with name 'VIX_TEST_TIME1_4_SURNAME' exists in this scope
So i connected to my runtime repository (where all other functions and procedured stored) with TOAD and examined the packaged that was created for my map. The spec is fine - everything complies etc (as it should be). Debuggin body showed the same error as OWB (which what i expected).
Having gone through the generated code i discovered:
"VIC_TEST_TIME1_4_SURNAME" VARCHAR2(30)
p_column=>SUBSTR('VIX_TEST_TIME1_4_SURNAME',0,80),
p_value=>SUBSTRB("VIX_TEST_TIME1_4_SURNAME",0,2000),
which to me looks like it has been declared and treated as a string. Then i goes as follows:
FUNCTION "m1_break_f"(is_buffer_done BOOLEAN) RETURN BOOLEAN IS
BEGIN
IF ( (NOT is_buffer_done) AND ("m1_br_tbl".COUNT = 0 OR
("m1_breakVar_0" = "VIX_TEST_TIME1_4_SURNAME"("VIC_TEST_TIME1_i"))
THEN
RETURN FALSE;
ELSE
RETURN TRUE;
which to me is a function - which would make kind of sense - OWB tries to use procedure that isn't there...
i have looked into spec and there are no references there either.
I would be greatful if anyone could help me to see the errors of my ways and may be point me in the right direction etc.
Thank you very much

Similar Messages

  • I purchused a Mac 10.9.4. The screen saver is not functioning, any idea why?

    I purchased a Mac 10.9.4. The screen saver is not functioning, any idea why? Thanks.

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Best.

  • Have just downloaded FP11 but it is not functioning, any ideas?

    Have just downloaded FP11, but it is not functioning, any ideas?

    What is your operating system & version?
    What is your web browser?
    What exactly means "not functioning"?

  • Bind variables on timestamp interval, any ideas ??

    Hello all,
    Hope someone will be able to help me on this one as I am unable to find a way to achieve this !
    This works :
    SQL> select x from y where z > current_timestamp - interval 15 minute;
    This does not :
    variable a number;
    exec :a :=15;
    select x from y where z > current_timestamp - interval :a minute;
    ORA-00933: SQL command not properly ended

    Ben,
    also you may use:
    SQL> select current_timestamp cur_stamp,
      2  current_timestamp - numtodsinterval(:b*60,'second') prev_stamp
      3  from dual
      4  /
    &nbsp
    CUR_STAMP                              PREV_STAMP
    08.07.05 20:31:58,609000 +04:00        08.07.05 20:16:58,609000000 +04:00I don't know what exactly precision you need, so consider
    what the first example gives you data truncated to seconds
    (the same as sysdate - ...). The two lasts give you pure
    timestamp datatype as a result - if you want to know date
    up to milliseconds.
    Rgds.

  • I have recently got an iphone 3gs, model number is A1303 but I do not have the video recording function, any ideas?

    My wife got me a 3GS for xmas it has the correct model number for a 3GS but it doesnt have the video recording feature, can anyone help?

    Are you certain it is a 3GS?
    Determining iPhone model

  • Warning treated as error in VS2012.  Any idea to fix?

    When I build, I'm seeing some errors popup and they are all on lines where I am setting up checkbox parameters.  The compiler is throwing the following errors:
    error C2220: warning treated as error - no 'object' file generated
    warning C4244: '=' : conversion from 'PF_ParamValue' to 'PF_Boolean', possible loss of data
    These are being thrown on any line where I have the following:
    PF_ADD_CHECKBOXX(STR(StrID_Input_Required), true, PF_ParamFlag_CANNOT_TIME_VARY, PLG_REQUIRED);
    I could turn off the error by removing the /WX flag during compiling, but do I really want to do that?  It seems like all would be okay if I did, but thought I'd post here to see if anybody had a suggestion as to why the `possible loss of data` error ocurrs.  Any ideas?
    Thanks,
    Arie

    Is this the AE CS6 SDK for Windows by chance?  I am still very new to AE plugin development, but I recall a few months ago back when I started messing around with this stuff I was getting the same kind of error when trying to add a checkbox parameter to my plugin.  Since I was starting fresh and using CS5 did not cost me any functionality I just rolled back, and thus far have not really had too many SDK related issues with the CS5 SDK, just issues with my own code and trying to get used to AE development
    Fair warning, I tried figuring this out from the link below months ago and I never got it working right, so I just rolled back my SDK version I was building against from CS6 to CS5 and my checkboxes started working without any issues.
    I also have compiled against the CS5 SDK on MacOS without any issues if you were to end up going that route, though it could simply be my inexperience talking here...but here are my findings
    Google translate will be your friend on this one by the way...
    Shortened Link: http://bit.ly/UbIxkz
    Original Link: http://ae-users.com/jp/tutorials/2012/12/after-effects%E3%83%A6%E3%83%BC%E3%82%B6%E3%83%BC %E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E3%80%81%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F %E3%83%B3%E3%82%B0%E5%85%A5%E9%96%80%E3%80%80%E3%81%9D-19/
    The breakdown of what I assumed to be a CS6 SDK bug when I got started was proposed from the site to be the following:
    Error 1:
    PR_Public.h on approx line number 5 is a character that needs to come out, right before "2005 by Adobe Systems Inc." is an imporperly encoded character
    Error 2:
    Param_Utils.h on about line 116 is a functions called PF_ADD_CHECKBOX is the one you are likely looking for
    The proposed solution was to replace the following on approx line 123
    Bad Line: def.u.bd.dephault = def.u.bd.value; \
    Good Line: def.u.bd.dephault = (PF_Boolean) def.u.bd.value; \
    so it would end up looking like this:
    #define PF_ADD_CHECKBOX(NAME_A, NAME_B, DFLT, FLAGS, ID)\
    do {\
       PF_Err priv_err = PF_Err_NONE; \
               def.param_type = PF_Param_CHECKBOX; \
               PF_STRCPY(def.name, NAME_A); \
               def.u.bd.u.nameptr  = (NAME_B); \
               def.u.bd.value                    = (DFLT); \
               def.u.bd.dephault = (PF_Boolean)def.u.bd.value; \
               def.flags                              |= (FLAGS); \
               def.uu.id = (ID); \
               if ((priv_err = PF_ADD_PARAM(in_data, -1, &def)) != PF_Err_NONE) return priv_err; \
        } while (0)

  • TS3276 An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    For anyone else reading this thread, it is worth knowing that sometimes an email is, or can be, corrupted thereby jamming the works. The solution above is good, but I just wanted to suggest another one.
    If the problem arises, go to an online mail access service, such as Mail2Web.com and login to you mail account there and delete the offending message.
    Problem solved.
    And George, as this is all entirely voluntary, whinging about no takers may not endear people to you. Besides which, a few minutes of searching on Google would have found you a number of solutions.

  • Home Sharing will not work with my Windows 8 64bit with new itunes.  All of my Apple TVs will not see my library and my iphones will not function with the "Remote" App.  They all did before.  Only thing that has changed is new PC/itunes.  Any Ideas?

    Installed a new Windows PC on my home network.  PC is Windows 8/64bit. with latest version of itunes 11.1.4.62 for 64bit.  My itunes works, but I can not get Home Sharing to function now.  None of my Apple TV's can see my computer library and prompt me to turn it on.  All of my iphones, pods, pad, can not use the "Remote" app.  When you prompt your phone in Remote App to "add library" and you get the code....iTunes doesnt give you the remote screen where you can enter the code.  I have reloaded iTunes, reset my router, updated all devices.  You can turn on "Home Sharing" on iTunes, but then it closes and doesnt seem to link my devices like it use to.  Also, when the new version of iTunes is up on my PC, you can see the other devices to AirPlay to like you could before.  However, I can send items from my iphone to stream to an Apple TV, I just cant link them all like I could before and control the music playing to multiple Apple TV.  Growing fustrated.  Any ideas, would be helpful.

    Cunning1_
    You are a legend!!  I have spent countless hours uninstalling, reinstalling itunes, playing with firewall settings, reading articles on this problem!!  I only have to un-sync my iphone 5 and then the airplay icon magically appeared!!!  Maybe I have too many devices syncing via wi-fi, or maybe it is the Iphone syncing??
    Whatever - one step and now I can enjoy my music through my house again!
    Thank you, Thank you, Thank you 

  • On my home computer, when I transfer from my iTunes library to iTunes store, I'm presented with an empty window. Tool bar at the top of the page is in view and all it's 'drop-downs' function. Any ideas?

    On my home computer, when I transfer from my iTunes library to the iTunes store I'm presented with a blank window. The tool bar is present and functional but regardless of what I do, the page remains blank. Any ideas?

    Hey DDStoker,
    It sounds like you may be experiencing issues with connecting to the iTunes Store. Try using the information in the following article to help you troubleshoot this issue:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Scanning in Mavericks? I can no longer use the scanning function in my HP Officejet 4500. HP says to go through Preview, Image Capture, or Print/Scan in System Prefs. Still doesn't work. Any ideas/similar experiences?

    Scanning in Mavericks? I can no longer use the scanning function in my HP Officejet 4500.
    HP says to go through Preview, Image Capture, or Print/Scan in System Prefs.
    Still doesn't work. Any ideas/similar experiences?

    Sure it is, yet it's called HP LaserJet Professional M1210nf MFP Series *
    Today, I followed your other advice, and deleted the printer, deleted the /Library/Printer/hp folder, downloaded the entire set of driver, re-installed the printer twice, once with the driver, once with Bonjour.
    The Bonjour Printer has the scan option active, but it is doesn't work (refer to above.), it is called M1217nfw
    The Apple Driver Printer doesn't show the scan option at all, it is called M1217nf (as on the http://support.apple.com/kb/HT3669#HP list.) This model number doesn't exist, as far as I can tell. 
    Still, everything works perfectly in Snow Leopard, for a MF printer that has been manufactured years after Snow Leopard was released.
    Why going up in software version means going backwards in compatiblity for brand new product is really the question that puzzles me here.

  • HT4773 I have upgraded to Lion and I have a new Apple keyboard, however none of my function keys work correctly. Any idea what is the solution?

    I have upgraded to Lion and have a new keyboard. The problem I have is that the function keys are not working correctly - none of them. F1 -> F6 are not working at all and F7 - F12  do what F1 etc are supposed to do. Any ideas for a solution?
    Thanks in advance

    That message is telling you to update iTunes on your computer, not your phone. You need iTunes 11.1 on your computer in order to sync your devices.

  • I have an iMac 8.1, OSX 10.6.8 with XP running in Boot Camp partition. My USB keyboard (MB110LL/A) was damaged by water. I ordered a new keyboard from the Apple Store. I was sent model MB110LL/B. Special function keys will not work in XP. Any Ideas?

    I have an iMac 8.1, OSX 10.6.8, Boot Camp 3.2 running Windows XP. My original keyboard (MB110LL/A) was damaged by a water spill. I ordered a new one from the Apple Store. They sent me MB110LL/B, function keys need updated drivers (Boot Camp 3.3) which will only install if Windows 7 is installed. I have a large amount of older software that runs under XP but not Windows 7. The Apple support team basically said "too bad". If they replace a keboard model with a new model, they should at least make it backwards compatable or provide a Boot Camp update that will allow this model to work on older iMacs. Reloading Bootcamp 3.3 several times has no effect because it does not detect Windows 7. Any Ideas or help would be appreciated.

    It is free. It is beta. It works well - I use it on mine and two PCs as well...
    MS Security Essentials will no longer install due to compatibiliity issues - that is the idea of a beta - and the RC could be out in June.
    Windows 7 doesn't work great on any Mac, or Apple drivers, fan cvontrol to manage heat, and other issues.
    Put 8 in and get to know it, then when the RC comes out you'll be ready

  • Got to end of trial period for Adobe reader XI and cannot revert back to old version or install another version b/c it says I have a newer more functional version, so now I've got no reader at all and cannot fix. Any ideas how to overcome this?.

    Got to end of trial period for Adobe reader XI and cannot revert back to old version or install another version b/c it says I have a newer more functional version, so now I've got no reader at all and cannot fix. Any ideas how to overcome this?.

    YOu need to be clear about the products you are using, so we can help you. In particular there is no trial of Adobe Reader, it is free and keeps running. Sounds like you are using some versions of Acrobat - which?
    YOu must properly uninstall the trial, don't just delete files or you may get a mess impossible to recover.

  • The scroll function on my mousepad is disabled when viewing a pdf file in firefox version 5.0. The scroll works on the pdf, but not on the other tabs. When the pdf is closed, the scroll function returns to normal. Any ideas?!

    The scroll function on my mousepad is disabled when viewing a pdf file in firefox version 5.0. The scroll works on the pdf, but not on the other tabs. When the pdf is closed, the scroll function returns to normal. Any ideas?!

    Hey thanx for the help, it worked like a charm.
    I think firefox changed the application lay out, as I used to be able to choose my PDF opener from the list at " Adobe Acrobat Forms Document' where I could choose Nitro-PDF reader, but it has now moved all the way to the bottom like you suggested to the obvious place of "Portable Document Format" section.
    If someone didn't tell me , I wouldn't have scrolled all the way down to be able to find it... it really should be with all its cousins up the top...
    Cheers again..

  • In VB6, why is the "GPIBNotify sub" (from the GPIBNotify AtiveX Ctrl) all the time called even if no Event happened? This callback function is started then stopped permanently as if its received SRQ from the GPIB Bus. Any ideas?

    I'm programming in Visual Basic 6 to communicate between a computer and HP Measurement Devices (BER-Meter) with GPIB. I have already read information and code for this. My platform is W98. The NI488.2 commands can be sent without any problem between the equipements. However when I'm using the GPIBNotify ActiveX Control to use the callback function, there is a permanent starting and stop of the GpibNotify Sub. The SetupMask and RearmMask are set to RQS and the HP Device is well configured. Moreover an oscilloscope measuring the 10th line (SRQ
    ) of the bus didn't show any pulse on the line behalf the right one. Any Idea?

    Hello-
    So, the SRQ is not detected by the oscilloscope? It must be a setting that is not correct with the instrument. Try contacting the manufacturer of the instrument for details about SRQ's. The GPIBNotify ocx will not be able to react to an SRQ if there isn't one.
    Randy Solomonson
    Application Engineer
    National Instruments

Maybe you are looking for