Transformation function questions

Hi,
Is any one from Oracle still checking this forum?
If so could you please answer the following question:
I have defined a transformation function and it doesn't seem to be being called. Am I able to do the following in such a function:
- Perform DML?
- Create other LCRs and place them on a queue?
Cheers,
Warren

Transformations of LCRs as they enter and exit the queue is limited to 1-1 mapping of changes to the existing LCR. A user-defined transformation should not perform DML (other than SELECT) or create NEW LCRs. Modifying the existing LCR is supported as shown in the documentation.
Have you installed the 9.2.0.2 patchset yet? There were a couple of bugs affecting transformations that were resolved with this patchset.

Similar Messages

  • How to define myself transform function in a xslt document???!!

    "XSL Transformations (XSLT) Version 1.0"(http://www.w3.org/TR/1999/REC-xslt-19991116)
    have "Additional Function" and "Extension Functions".
    It is easy to define a transform function with ms biztalk mapper.
    but how to do with weblogic or with Apache Xalan????!!!!!!
    pleasy give me a sample!!!!!!!!!!!!
    thanks!!!!!!

    look at the samples bea\wlserver6.0sp1\samples\examples\xml
    ~
    Namaste - I bow to the divine in you
    ~
    Filip Hanik
    Software Architect
    [email protected]
    www.filip.net
    "xp" <[email protected]> wrote in message
    news:3b52ff86$[email protected]..
    >
    "XSL Transformations (XSLT) Version1.0"(http://www.w3.org/TR/1999/REC-xslt-19991116)
    have "Additional Function" and "Extension Functions".
    It is easy to define a transform function with ms biztalk mapper.
    but how to do with weblogic or with Apache Xalan????!!!!!!
    pleasy give me a sample!!!!!!!!!!!!
    thanks!!!!!!

  • Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Which operating system are you using?
    In photoshop elements 6, as far as i know, you can only change the Reference Point Location for transforms using the small grid in the left hand corner of the tool options bar with Transform enabled.

  • What effect does a transform function have on the _parent command

    Hi
    I am trying to load an image onto a symbol in a symbol, that
    is spinning via timeline>transform and forms a symbol called
    spinner1, spinner2. etc. I want every holder to be a different
    image and one use suggested using the _parent function with a
    substring function. Will the transform mess this up?
    I was suggested to try:
    holder.loadMovie("image"+this._parent._name.substring(7)+x);
    Which as I understand it tells any instance of the symbol
    "holder" to load an image called "image(the seventh letter of the
    parent symbol)x" So for any instance of holder in spinner1 it will
    load image1x.
    My images are assigned using the following:
    var image10:String = "logo/jamon.gif"; etc.
    "holder" is in "spinner_components"
    The symbol "spinner" contains "spinner_components" spinning
    using the transform function.
    Therefore I also tried the code as:
    holder.loadMovie("image"+this._parent._parent._parent_name.substring(7)+x);
    and also
    holder.loadMovie("image"+this._parent.._parent_name.substring(7)+x);
    Neither worked.
    Is it the transform function that is messing it all up? or
    some syntax?
    Thanks

    x is a varibale that increase each time it loops and changes
    the image displayed.
    x is 0, then 1 then 2
    spinner is spinner 0, spinner1, spinner2 etc.
    thus images should load image00, image01, image02 etc. should
    load in spinner0's holder
    and images 10,11, 12 etc. in spinner1's holder.
    where should this code go - at holder or spinner_components
    or spinner.
    You can see the final effect (I got arround this problem by
    making 8 almost identical spinners)
    at
    http://danielfield.freewebpage.org.
    only my images don't load, like they did in the flash editor.
    (I've posted on this separately).
    thanks.

  • SD & FI BI functional Questions

    Hi Experts,
    I need to ask some questions to customer on SD & FI functional related questions for BI Analytical reports..
    Already cutomer implemented Data ware house Informatica with congnos reporting tool.
    right now they want to implement BI.
    please any one can share on what type functional questions could ask the customer.
    Advance Thanks,
    Bala.

    Hi,
    A few more pointers.
    Start with Reports. What the client is using. What he is expecting.
    If he got existing reports map the fields with Business Content BW Fields. Go to Business content and make a list of queries which are delivered from SAP. Explain them the KPI's. This should be good to start with. Also check the Tcodes they use.
    Look for DataSources that get data from theses Tcode's.
    Project Preparation (Initial stuff -- Do a conceptual review after this phase requirements gathering)
    Collect requirement thru interviews with Business teams /Core users / Information Leaders.
    Study & analyze KPI's (key figures) of Business process.
    Identify the measurement criteria's (Characteristics).
    Understand the Drill down requirements if any.
    Understand the Business process data flow if any.
    Identify the needs for data staging layers in BW – (i. e need for ODS if any)
    Understand the system landscape.
    Prepare Final Requirements Documents in the form of Functional Specifications containing:
    Report Owners, Data flow, KPI's, measurement criteria's, Report format along with drilldown requirements.
    Hope this helps.
    Thanks,
    JituK

  • Normalize Block: How to Implement Transformation Function

    Under data transformation > scale and reduce is an option called normalize.  It has a second output point called transformation function (of type ITransformDotNet).  I assumed this was used in a similar way to the quantize block - that is you
    apply it to the training data and then use the function to apply it to new test data.  I am not finding anyway to apply the normalize and don't see much reference to ITransformDotNet.
    Thanks,
    Steve

    This is now supported, see this
    announcement.

  • Transform Function Help

    Hi,
    Can anyone tell me how I can use the transform function to get my drum loops to play in double time? I would like to have a go at making some drum and bass.
    Cheers.

    I'd load them into an EXS instrument and then tune at will. Or turn them into Apple Loops.

  • Getting Errors while setting the Transformation Function

    Hello All,
    I was trying to attach a Transformation function to existing capture process.
    But I am getting ORA-30625 error while I was trying to set my transformation function to one of the
    DBA rule_names.
    Following are details:
    SQL> select rule_name from dba_rules;
    RULE_NAME
    TEMP1
    TEMP3
    TEMP5
    TEMP7
    SQL> DECLARE
    2 action_ctx SYS.RE$NV_LIST;
    3 ac_name VARCHAR2(30) := 'STREAMS$_TRANSFORM_FUNCTION';
    4 BEGIN
    5 SELECT RULE_ACTION_CONTEXT
    6 INTO action_ctx
    7 FROM DBA_RULES R
    8 WHERE RULE_OWNER='STRMADMIN' AND RULE_NAME='TEMP1';
    9 action_ctx.ADD_PAIR(ac_name,
    10 SYS.ANYDATA.CONVERTVARCHAR2('hr.transformation'));
    11 DBMS_RULE_ADM.ALTER_RULE(
    12 rule_name => 'strmadmin.temp1',
    13 action_context => action_ctx);
    14 END;
    15 /
    DECLARE
    ERROR at line 1:
    ORA-30625: method dispatch on NULL SELF argument is disallowed
    ORA-06512: at line 9
    Can any body suggest me what to do...
    Thanks in advance.
    Regards,
    Srinivas Jaltaru
    ( [email protected] )

    Hello
    I added the line you suggested, Compiling is done successfully, But Capture process
    is not invoking the Transformation function that I have assigned to it.
    Transformation function I am using is :
    create or replace function scott.transformation (in_any IN SYS.AnyData)
    RETURN SYS.AnyData
    IS
    rc NUMBER;
    BEGIN
    insert into scott.log values ('abc');
    return in_any;
    end;
    1) Any extra initialization parameters are required..?
    2) My Streams environment is having only a Capture process for capturing changes. There are no other
    components like propagation, apply.
    Appreciating your suggestions.
    Thanks in advance.
    Srinivas Jaltaru
    ( [email protected] )
    Put the following line
    action_ctx := SYS.RE$NV_LIST(SYS.RE$NV_ARRAY());
    on the line immediately preceding the call to ADD_PAIR.
    This should allow the pl/sql function to compile successfully.

  • Transform function grayed out in PS CC

    I had some text that I needed to rotate in PS CC (Win 7) and the Transform function on the drop down menu was grayed out.
    The Control-T shortcut didn't work either. No bounding box would appear so I couldn't rotate the text.
    I ended up saving my project to my hard drive, exited PS CC and then reopened PS CC and reopened my project. This time the Transform function was no longer grayed out and I could Transform/rotate my text.
    This has happened multiple times and has to be a PS CC bug.
    Is this issue being addressed by Adobe?

    And why do I have to prove it is a bug?
    Because you claimed it is a bug:
    This has happened multiple times and has to be a PS CC bug.
    This is not normal Photoshop behavior and shouldn't be happening. Ergo, it's a bug.
    Unexpected behaviour of an application does not automatically prove that behaviour to be a bug of that application.
    Can you provide the file for others to test?

  • Sumifs function question

    Hi, Everyone, I have a function question of Sumifs, here a sample as follows,
    =SUMIFS(Budget :: E4:E14,Budget :: C4:C14,"=5003677000",Budget :: B4:B14,OR("=Transit","=Drawing cash")), according to the logic, I think like this, but it's wrong. So how to insert the OR function to the Sumifs function? May someone find the mistake in the function?
    Thank you.
    Alex

    I think you would actually do a sum of simifs, i.e. Sumif(....."Transit") + Sumif(....."Drawing Cash")
    Basically if you have two sumifs that differ in only one condition that would be treated like an OR in SQL, then make one Sumif for each unique set of  conditions and add them up
    Jason

  • OIC: Functional Question(11.5.10)

    Hi All,
    I would like to know answer for the following functional question in Oracle 11.5.10 Incentive Compensation Application(OIC). I would greatly appreciate if you anyone can reply for this.
    1. Question on Foreign currency exchange rates:
    We know that OIC cannot handle foreign currency exchange rates. Since all of our offer letters to the Sales guys are in local currency what we end up doing is picking an exchange rate on July 1st every year and converting them to US $. What I’m wondering is why couldn’t we just set them up in OIC in their local currency, without converting them?
    Is that possible? OIC can handle this?
    2. In OIC, Can I enter a DUMMY Acoount Executive (since we are not going to credit any single person in the Primary Account Executive role) that bookings could be credited to in order to ensure they roll up to the appropriate manager?
    a) Is that possible?
    b) Does this DUMMY Acoount Executive should be part of the HR Employee setups as well?, In OIC should we need to load the transaction for DUMMY Account
    Executive so that credit will get rolled up to approriate managers based on the Group hiearchy setups?
    Thanks,
    Johnson
    Edited by: user10413783 on Jun 23, 2009 4:06 PM

    Hi Johnson,
    2. In OIC, Can I enter a DUMMY Acoount Executive (since we are not going to credit any single person in the Primary Account Executive role) that bookings could be credited to in order to ensure they roll up to the appropriate manager?
    Yes
    b) Does this DUMMY Acoount Executive should be part of the HR Employee setups as well?, In OIC should we need to load the transaction for DUMMY Account
    Executive so that credit will get rolled up to approriate managers based on the Group hiearchy setups?
    You do not need to set up the dummy resource as employee. All you need is to create as OTHER type of resource and add that resource to group.
    Hope this helps.
    Thanks
    Srini

  • Would like to use Wavelet Transform functions

    Hello:
    As the title says, does Measurement Studio has wavelet transform functions.  I currently have version 6.0 (full) and version 7.0 (have not used it since I am still on VB6).  Thanks.
    Raj

    Hi Raj,
    There isn't any particular "Wavelet Transform" method available in
    Measurement Studio at this time. For a complete list of analysis
    functions for the various versions of Measurement Studio, check out the
    following link:
    http://www.ni.com/analysis/cwtools_analysis.htm
    Thanks Raj, have a good one!
    Dan Weiland
    Applications Engineer
    National Instruments
    www.ni.com/support
    Dan Weiland

  • Procedure (step-by-step) to change a transformation function

    Hi,
    Has someone wrote some procedures to describe how to change a transformation function when the system is running? For example: what are the steps to do when i want to add a column in the supplemental log for a table and use it in a transformation function? I must change the transformation function only when all the LCRs that don't have the new column as been processed. What are the exact steps to do this without headaches.
    Thanks.

    Re: Creating FM   
    Posted: Jun 6, 2007 12:50 PM    in response to: vind v       Reply      E-mail this post 
    hi,
    We can create FM in Function-builder for that one we work with SE37.
    for declaring fields choose option IMPORT of function builder, under that define
    field vbeln type <refarence table-field > and provide value for it type , check the mandatory option.
    posnr type < refarence table-field>and check the optional option.
    file path type c . here u choose the proper dictionary datatype.
    next Select the option EXPORTING.
    file type ( specifies the same type as mentioned above)
    First u need to create a function group
    use SE37 goto--> function groups --> create group
    Use this FG to create a FM
    Import parameters
    VBELN type VBELN Optional = " "
    FILE TYPE LOCALFILE Optional = " "
    POSNR TYPE POSNR Optional = "X"
    There will be no export parameter .
    within the FM use WS_DOWNLOAD , GUI_DOWNLOAD to crete the file on the path specified.
    write the code
    activate the top include & the FM together
    go through this link,which ll give you detail about creating a function module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    <b>Reward points if useful</b>
    Regards
    Ashu

  • Incremental updates on collections/full schedule - Functional question

    Hi everyone,
    At a customer of mine we have the following set-up:
    Almost all applications are deployed User Based
    Collections are used for targetting the applications
    Incremental updates are enabled on practically all collections which deploy applications
    For the moment this setup is active for 498 collections (out of 714  collections).
    Since it's not advised and Microsoft recommends to only have incremental updates active for 200 collections, I would like to change this setup by means of POSH. I have just finished writing it, but I still have a functional question:
    Which schedule time would be best to activate for the collections? Keep the standard value to update collection every 7 days?
    When would you activate "incremental updates"? Device collections with required software for faster deployment time?
    I only foresee the following "downside":
    We have a lot of applications who are available to "all domain users". When the AD-account is created, it will sync with SCCM and will receive their deployements. But by changing the update schedule to, let's say, 7 days.. They wouldn't be able
    to see and install these applications if the collections haven't been updated yet?
    Thanks for the insight with your experience!
    Kr,
    Sven

    Wow Jörgen, thanks for this information! This was something I haven't read about. Will keep this in mind.
    In your blog, you mention that you use this tool to keep track of performance issues. When do you feel that there are too many collections which have incremental updates enabled (by using the tool)?
    The last weeks/months, we have a lot of issues during OSD. We have collections to which the TS is deployed.
    In orchestrator we have a runbook to add workstations to SCCM + add workstation to collection + update membership of collection. But the update takes from 5 minutes to 40 minutes.. So this is the main issue that we have..
    @Andrew: Thanks for your contribution! I believe you are speaking of "Global Conditions"? I haven't used it either, but I thought that this had some downsides.. For instance, we target most of the applications "Used Based" (since MS is
    moving to user centric deployment). So if I target the application to the "all users" collection and create a "global condition" to only install when user is a member of a specific AD-group (for instance: Skype), then the user still sees
    "skype" in the application catalog and will have an error upon installing it when he is not a member of the skype AD-group.
    Maybe this is completely wrong what I'm saying.. Just did some brainstorming with collegues but haven't found the time to play with it in a test environment. @Jörgen: Please enlighten us if I'm wrong.

  • Decode & transformation function

    functions our mapping between source table and target IT table in staging area, we have lots of complex Decodes. Both target and source are Oracle 8i databases.
    OWB does not support Decode in it's expression in mapping. I understand that workaround is to use transformation operator - that in turn creates a database function. My questions are as below:
    (1) Due to may column to column mappings using Decode, I will end up with about 30- 40 functions for each fact due to this approach. Isn't that way too many individual functions cluttered in the database? Any pointers to streamlining this into one package of funtions - how do you do it in OWB?
    (2) Which version of OWB onwards is there support for Decode?
    Thanks

    Hi,
    First let me explain what the issue is with Decode, OWB generates two types of code (set based and row based) in one package. They are always there. Decode however does not work in row based context as OWB tries to do something like this:
    if decode(ijfijroje) then
    which will not work and not compile. Therefore we recommend to use CASE which as of Oracle 9i compiles in both SQL as in PL/SQL contexts.
    In your context the only thing you can do is wrap decode in a function. To be quite honest other then having a lot of them the only thing I think you can do is create a package and call the function that way. Then they are nicely wrapped in a single component.
    Hope this helps,
    Jean-Pierre

Maybe you are looking for