Changing a single value across a set + corner pin stabilization

a few questions that have been hounding me...
is it possible to change a single variable X across a set of keyframes while still retaining each frames Y value?...when I select all and change the X and hit enter, the Y is also changed for every keyframe.
can mocha export the X or Y translation value exclusively like the AE tracker?
how do you use the mocha corner pin data to stabilize a shot?  (there are like a hundred tutorials on replacing billboards, but only a few on the intricacies of stabilization...)
my appreciation if you can enlighten me.

> is it possible to change a single variable X across a set of keyframes
while still retaining each frames Y value?...when I select all and
change the X and hit enter, the Y is also changed for every keyframe.
There are a few examples for doing exactly that on this page.
Look for the section that begins with "If you want to write an expression that keeps the y value of an animation of Position but fixes the x value at 9, you would use the following..."
See this page for tutorials that show how to use mocha to stabilize a shot. That page and many more resources for mocha are linked to from here.

Similar Messages

  • Passing Multiple Single values in User Exits

    Hello All,
    I have a requirement where in, a user could enter either a single value, multiple single values or a combination of a range and single values.
    This set of values need to be passed on to a variable with in a user exit. I have been able to get either one single value to pass or one single range. I am unable to pass on multiple single values or a combo of a range and single value from the user entry.
    I would appreciate if anyone could help me with the structure of the code to pass multiple single values or combo.
    I was wondering if I would need to pass the values into an internal table first and then pass it to the user exit variable. However, as I am not a strong ABAP resource, I am struggling.
    Any and all help is deeply appreciated.
    Warm regards
    Sunil

    Hello Marc,
    There are two requirements which I was trying to address.
    1. IN few queries, the users enter either a range of profit centers or multiple single values in the pop-up window. I need to pass those values from that variable to an variable of type USer Exit to derive partner profit center values with in the query.
    For this I have been able to pass values for either a single value or a single range. I am unable to pass on values for multiple single values or a combo of a range and single values.
    2. I am trying to create a query for the top 5 customers to be used in the Corporate Performance Monitor. However, when I am trying to use the variable of type "replacement path", the system does not allow me to release it for OLE DB for OLAP.
    To obviate this problem, I was hoping to create a variable of typeUSer Exit" and then pass the values from the variable of type "replacement path" to this variable.
    Is it a workable solution? I was hoping that the method to pass the values in both the above scenarios might be similar.
    Please guide me.
    Warm regards
    Sunil

  • To change entire column value in a single go.

    Hi all,
        I have a internal table with company as one of the field. The table may contain any company in the company field. I need to change all company values to a single company without looping. For example the company field may contain 030, 032, 036, 010 etc. But these I want to change to single company 030 "without looping". Like as we do for delete without looping, is it possible in my case?
    Thanks with regards,
    Suresh.

    You could try something like
    wa-bukrs = '030'.
    MODIFY itab FROM wa TRANSPORTING bukrs WHERE bukrs NE '030'.
    Look help.sap.com for syntax at [Changing Several Lines Using a Condition|http://help.sap.com/erp2005_ehp_04/helpdata/EN/fc/eb35eb358411d1829f0000e829fbfe/frameset.htm]
    Consolidation or just curiosity ?
    Regards

  • Finding the minimum value across multiple rows (not in a single column)

    Hello,
    I am running some ad-hoc SQL to test a website implementation of a spec. The ad-hoc sql gives me a set of date values for a specific widget (called a Task). I need to find the Minimum of either (Task.EndDate + 1 year) or the MAX date from the list
    of other dates. I can easily get all of these dates, and compare them visually, but I'm not sure how to make SQL give me just the single value that I want. In the image below, you can see the results. The blue cell is the value I should get if I were to retrieve
    a single value. 
    select 
    [EndDate+12Mo] = DATEADD(year,1,t.EndDate)
    , [TaskEdit] =  t.EditTS
    , [ResearchEdit] = (select x.editts from Research x where t.researchid = x.researchid)
    , [DeliverableEdit] = (select max(x.EditTS) from Deliverable x where t.taskid = x.taskid)
    , [RTPEdit] = (select max(x.EditTS) from ResTaskParticipant x where (t.taskid = x.taskid and t.researchid = x.researchid) or (t.researchid = x.researchid and x.TaskID is null) )
    , [RelatedTaskEdit] = (select max(x.EditTS) from Task_Related x where t.taskid = x.Task1ID or t.TaskID = x.Task2ID)
    , [CrosscutEdit] = (select max(x.EditTS) from Task_Crosscut x where t.taskid = x.taskid)
    , [TaskFundingEdit]= (select max(x.EditTS) from TaskFunding x where t.taskID = x.taskID)
    , [ContractFundingEdit]= (select max(x.EditTS) from TaskFunding x inner join ContractFunding y on x.ContractFundingID = y.ContractFundingID where t.taskID = x.taskID)
    from task t
    where 
    t.tasknumber = 
    '2123.001'
    Thanks!
    Jennifer

    Sounds like this to me
    select CASE WHEN [EndDate+12Mo] < MAX(dt) THEN [EndDate+12Mo] ELSE MAX(dt) END AS YourDateValue
    from
    SELECT [EndDate+12Mo],dt
    from
    select
    [EndDate+12Mo] = DATEADD(year,1,t.EndDate)
    , [TaskEdit] = t.EditTS
    , [ResearchEdit] = (select x.editts from Research x where t.researchid = x.researchid)
    , [DeliverableEdit] = (select max(x.EditTS) from Deliverable x where t.taskid = x.taskid)
    , [RTPEdit] = (select max(x.EditTS) from ResTaskParticipant x where (t.taskid = x.taskid and t.researchid = x.researchid) or (t.researchid = x.researchid and x.TaskID is null) )
    , [RelatedTaskEdit] = (select max(x.EditTS) from Task_Related x where t.taskid = x.Task1ID or t.TaskID = x.Task2ID)
    , [CrosscutEdit] = (select max(x.EditTS) from Task_Crosscut x where t.taskid = x.taskid)
    , [TaskFundingEdit]= (select max(x.EditTS) from TaskFunding x where t.taskID = x.taskID)
    , [ContractFundingEdit]= (select max(x.EditTS) from TaskFunding x inner JOINContractFunding y on x.ContractFundingID = y.ContractFundingID where t.taskID = x.taskID)
    from task t
    where
    t.tasknumber =
    '2123.001'
    )t1
    UNPIVOT(dt FOR cat IN ([TaskEdit]
    , [ResearchEdit]
    , [DeliverableEdit]
    , [RTPEdit]
    , [RelatedTaskEdit]
    , [CrosscutEdit]
    , [TaskFundingEdit]
    , [ContractFundingEdit]))u
    )r
    GROUP BY [EndDate+12Mo]
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to Change a Default Value from Drop Down Box displayed in Web Dynpro?

    Hi,
    How to Change a Default Value from 'High' to 'Low'  in a Drop Down Box for RANGE field displayed in Standard Web Dynpro Component.  I saw a Default Value set for a RANGE field  in View Context When I select that field and click on Display. I am seeing Default Value set it to 'HI'. Please let me know how to change from HIgh to Low.
    I appreciate your help!
    Thanks,
    Monica

    hi,
    use the set_attribute( ) method now to set the attribute with a particular key eg HIGH in ur case
    // u can use the code wizard( control +f7) this code will be auto generated when u select the
    //radio button to read the context node
    DATA lo_nd_cn_node TYPE REF TO if_wd_context_node.
      DATA lo_el_cn_node TYPE REF TO if_wd_context_element.
      DATA ls_cn_node TYPE wd_this->element_cn_node.
    * navigate from <CONTEXT> to <CN_NODE> via lead selection
      lo_nd_cn_node = wd_context->get_child_node( name = wd_this->wdctx_cn_node ).
    * get element via lead selection
      lo_el_cn_node = lo_nd_cn_node->get_element(  ).
    * set single attribute
      lo_el_cn_node->set_attribute(
          name =  `ATTribute name.`
          value = 'LOW' ).
    it will solve ur query ..
    also refer to this component
    wdr_test_events -> view dropdownbyidx and dropdownbykey ->method name onactionselect.
    regards,
    amit

  • BPS: Possible to limit a variable to a single value?

    Hello,
    I have a BPS variable which is available in the planning folders so the user can change the value himself.
    For a planning layout, one and only one value is required, as the system otherwise wouldn't know which value to use when saving data. It is possible though for the user to select both a mix of values and ranges. I see the lowest value is always used. Consequently this is not technically a problem.
    I would like to limit the variable to a single value only, in order to not confuse the users. Is this possible?
    Best regards,
    Christoffer Owe

    Hi,
    The following link tells you about the variable type ;
    http://help.sap.com/saphelp_nw70/helpdata/EN/ac/789b3c4d4d8d15e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/22/1e9b3c334d8c15e10000000a114084/content.htm
    1. create variables with single values
    2.while creating variable tick the setting 'Restriction of values required by user'
    I think that will suffice your requirement .
    Thanks
    Pratyush

  • Crystal Reports prompt single value variable from BEX

    Hi,
    after upgrade to BO 4.1 SP2 Patch 3 the prompt from BEX variable in CR doesn't work.
    After investigation the issue is happened for variables containing more than 9 values.
    Bex Setting: Variable -> Details -> Variable Represents -> Single value
    Variable which shows Jan-Dec
    The issue happens only on CR file stored in BO server in Cr design time it works fine.
    Is the bug known? Is there any solution?
    Harald

    Yep.
    Now tell me how you want to show that Prompt @ WebI report level.
    My problem is that in WebI selection screen we get list of date values from the info provider instead of Calendar prompt
    where user can enter the values directly. Exactly, i didn't get this??
    @Prompt:
    You have flexibility to show options like:
    Mono/Multi: User can select Single value or Multiple.
    BW Variable: Same we have (Single/Multiple)
    Free/Constrained: User can Enter his/her value directly or No change option.
    BW Variable: By defalut you will get this, once you made it to Optional input.
    Persistent/Not_Persistent: Refreshed report has to show last selected value means use Persistent otherwise Not_P.
    By seeing the Prompt syntax , I can say your Variable is after Customer Exit, Correct??
    Workaround for your Problem is:
    <FILTER KEY="ZV_DATE"><CONDITION OPERATORCONDITION="Equal"><CONSTANT TECH_NAME="@Prompt('Date (Previous Day)','A','Date\LovDate (Previous Day)Base',mono,primary_key)"/></CONDITION></FILTER>
    You have to remove that Date class and objects from prompt syntax. Because of that it showing up LOV's not calendar.
    Like:
    <FILTER KEY="ZV_DATE"><CONDITION OPERATORCONDITION="Equal"><CONSTANT TECH_NAME="@Prompt('Date (Previous Day)','A',',mono,primary_key)"/></CONDITION></FILTER>
    Why, It should be blank??
    Because Date needs no class\object to show up, by default you will get Calendar on the fly.
    Hope you got my point.
    Thank You!!

  • Error : Attribute pwdaccountlockedtime is single valued users try pwdchange

    Hi,
    I am using OID 90220 and the OS is Solaris 9. When the users try to change their passowrds from the application they are receiving an error : Attribute pwdaccountlockedtime is single valued. When I try to modify the password from OID as orcladmin it gives me :
    Attribute or value already exists.
    I have set password lockout if the users tries wrong password thrice and he cannot use the old password until the next 20 times and the password lockout duration to be 1 day.
    Any clue what the error is all about?? In the OID admin dco I have seen "pwdaccountlockedtime" is not be changed and I have never changed it.
    Any body if you can please help.
    Regards,
    Ramana

    Use "Create Like" to create a duplicate account with a new DN. Delete the original account. Use "Create Like" to create a new account the original DN from the duplicate. The new account should now work. Delete the duplicate.

  • Activation is changed from single lookups to to package fetch of active tab

    I was going through some of the Performance enhancements in BW 7.3. Could someone please explain what do the following mean?
    1. DSO Activation is changed from single lookups to package fetch of active table
    2. Optimized delta load for master data due to package fetch instead of single look-ups
    Thanks & Regards
    Dharmendra

    Just thought I'd post the resolution:
    1) Simply changing the Disc Media Type in the ProjectData folder does nothing. The dual-layer setting causes it to change from a value of 4 to 8 (guess that's no surprise), but iDVD still treats the drive as a single-layer drive and so you can't create a disc image based on a dual-layer disc.
    2) Turns out the folks from MCE sent along, after requesting it, a patch to enable dual-layer support in iDVD. From what I can tell from the .command file, it looks like it's probably just the HardMac.com hack repackaged for convenience. The don't offer it for download, but if you call or email them, they'll send it.
    Thanks again for your advice.

  • Value-Helper: "Single Value" vs. "History"

    Good morning experts,
    when one opens the value-helper dialog (e.g. for setting a filter) the initial screen presents the "History" (= the values used recently for filtering). I'd like this screen to be preset to the "Single Values".
    Could you please gimme a hint or some advice how to influence the initial setting for that dialog?
    Thanks in advance,
    kind regars,
    Marco

    Hi,
    This should be the hard coded design and cannot be changed by any setting.
    If you don't have a history, it will show "single value" by default.
    If you already have selected some values, it will show "history" by default.
    Regards,
    Patricia

  • How to hide a single value node hierarchy in the query designer

    Hi,
    I would like to perform a calculation  in the infocube. It concern  a count "Nb of different customers" with the following hierarchy : Country / region / City.
    This KF would be read at the same time by city, region and country, and  certain customers exist in 2 different region, and I have to count them only once by country.
    To do this, I added a new record (at the country level when loading infocube) to deduct a number of customers in doubloons.
    This line added contain only a country code and the number of cutomers in doubloons (- 23 when I have 23 cutomers in doublons) with revrese sign.
    Now, I would like to use this value (-23) to have a right Nb of different customers by country, without showing the not assigned line in the report hierarchy.
    How can I hide, in the query designer or the WAD, a single value node from hierarchy (NOT assigned) but take in account the value (-23) at the country level ?
    Is there another solution (more simple) to perform this in the infocube ?
    For information,
    1) The infocube is loaded once per month, and the KF (Nb of different customers" is also performed by month.
    2) I can't perform this in the report (performance problem with calculated KF).
    thx.

    Hi,
    the short answer is "you can't", the longer is: The ADF Faces tree component is stamped for better performance. This stamping means that nodes are not rendered as JSF objects but copies of an existing component (just with a changed value). For this reason the nodes don't issue their own query for data and thus cannot be refreshed individually
    Frank

  • How to change the profile value in the pl/sql code without making change in the database

    How to change the profile value in the pl/sql code without making change in the database.

    I have program ,where if the profiles 'printer and nunber of copies ' are set at the user level, by default when the report completes the O/p will be sent to the printer mentioned in the set-up. but what user wants is
    if these Profiles are set for the user running this program automatic printing should not be done.

  • How to Change the return value for the parameters

    Hi, Can anyone help me with my problem?
    I have a parameter called "P1_Projects" defined in the HTMLDB page, on the report region, there are 2 buttons, one is "Go" button to submit the report on the screen, so user can preview the report, then another button "Export to PDF" can be clicked to generate the report using Oracle Report Services. The "Export to PDF" button will use the same set of parameters submitted for the "Go" button.
    So, the parameter "P1_Projects" is being used by these 2 buttons. and I have to pass a "%" wild card for "All Projects". To make the "Export to PDF" button work, I have to safe encode the return value for "%" to "%25" in order to pass the URL formula, but now my "Go" button doesn't work with "%25", it only recognize the "%" wild card.
    Is there a way to conditionally change the value depends which button is clicked?
    Any hint or help is highly appreciated!
    Hong

    try creating a plsql process which sets the P1_Projects item as required.
    in the plsql you can do:
    if :REQUEST = 'GO' then
    xxx
    else
    xxxx
    end if;
    set the condition to plsql expression:
    :REQUEST in ('GO', 'EXPORT')
    NB. the request value is usually set to the button name when a page is submitted from a button

  • I can't  exclude single value in cost center of S_ALR_87013611 report

    Hello all.
    I'm using the  S_ALR_87013611 report. I need select for 'cost center'  field. I press the button  'multiple selection' for cost center field but  don't exist  the tab 'Exclude single value' and 'Exclude Ranges'. Only exists the tab: 'Select single  Values ' and 'Select Ranges'
    thank.

    HI Guerrer
    Thats a limitation...
    The field Cost center is defined as a variable and thats why you are allowed to input the values at selection screen... Sets are used in these report for variables and you can enter only the required values.. It has no option for excluding values
    Regards
    Ajay M

  • Unable to enter single value for a variable in BPS

    Hi,
    I am using a variable for 'Posting Period' of type 'User defined values' defined in my Planning Area . I am able to input a range of values like 1-3, 1-12, 5-10 etc.
    But, my problem is that, when I have to give one value, ie 1-1 or 5-5, I am not allowed. Its gives a message that upper limit should be greater than the lower limit. Any suggestions?
    Is there a way, to define a variable in such a way that it can accept both ranges and single values?
    Regards,
    Srinivas Kamireddy.
    Edited by: Srinivas Kamireddy on Apr 1, 2008 8:08 PM

    Hi,
    we have this functionality overall in our system and i have not experienced,
    that the system tries to set the upper limit on it's on (why 12 and not for example 13?).
    How can you see that the system uses 12 as the upper limit?
    Regards,
    Kirill

Maybe you are looking for

  • [solved] Xorg-1.8 + KDE on Asus 1201n : dupplicated Fn key event

    Hello, after upgrading to Xorg 1.8 one week ago, I noticed that my Fn keys (sound up/down, mute) were dupplicated. For example, if I press Fn+F10 (=MUTE/Unmute), the sound get muted and immediately unmuted. Moreover, My xorg.conf: Section "ServerLayo

  • First world problem: exceptionally long boot time

    no complaint, just wondering if boot-time can be improved.  Any of you who might enjoy sifting through a system.log for what might account for ostensibly lengthening boot times, I give you my most recent log and thank you in advance. Mar 26 10:42:27

  • Your Apple TV is not Authourised to play this content?

    Newbie to Mac / Apple Question: The story (so far): I have successfully connected my Apple TV via ethernet cable to my iMac & internet. (Did network test & it was 100% fine). Downloaded a rented movie from iTunes and it plays fine on my iMac (watched

  • Idoc problem

    Hi, Idoc is not generating for a perticular material .Please advice.I  am getting the msg "Material 2442-02 not maintained in plant USME". Regards, Somenath

  • Is it possible to buy minutes and put on iphone?

    My uncle and his wife recently got the two new iphones. They gave me their old iphones (3gs) but they dont have any service on them. And i dont want to go through a contract with another phone company. So i was wondering if its possible to buy minute