AE CC 2014 - Wiggle Expression not assigning similar values on scale

So I've just noticed that the wiggle expression no longer works how it used to. I found a released article explaining changes in the Noise Algorithm used for the wiggle expression what’s new and changed in the 2014 update to After Effects CC  |  After Effects region of interest and am referring to the "fixed bug in implementation of Perlin noise algorithm" section.
I'm not sure if this is what's causing the issue but let me explain.
I'm just adding a wiggle expression on to an object's scale.
wiggle(5,50);
This would normally scale the object's parameters with the same value. so it would be (100,100) to (125,125) and so on.
Now however with CC2014 the expression is assigning different values to each value so getting (125, 115) or something even if the 'constrain proportions' button is enabled.
So I tried to trick it:
temp=wiggle(5,50);
[temp[0],temp[1]];
Still got different values even though i'm telling it to insert the same variable?
temp=wiggle(5,50);
temp;
Still got different values... I don't get it can anyone help?

Try this. Add an expression control slider to the layer with the following expression:
wiggle(5, 50)
Then add this expression to your scale property:
w = value[0] + effect("Slider Control")("Slider");
[w, w]
The problem exists because wiggle will act on all of the values in the array of the property you have selected independently. so you have to set up something with only one value like an expression control slider.

Similar Messages

  • How to build an URL to filter a variable with the # (Not Assigned) as value

    Hello Gurus,
    We need to build the URL that is calling a query with a filter value = #.
    We need to query only those records that have "Not Assigned" in a particular Infoobject.
    Example of our URL: that is not working
    http://ustwa427.xxx.com:8000/sap(bD1lbiZjPTQwMA==)/bc/bsp/sap/zlabw_tempos/main.htm?INFOCUBE=CRMLORSLM&QUERY=ZCRMLORSEL_SELLOUTMT_Q006&VAR_NAME_1=L_TOSALE&VAR_NAME_2=ZLOBWCTY&VAR_NAME_8=0S_MAT&VAR_NAME_9=0S_MAT&VAR_OPERATOR_2=EQ&VAR_OPERATOR_8=EQ&VAR_OPERATOR_9=EQ&VAR_SIGN_2=I&VAR_SIGN_8=I&VAR_SIGN_9=I&VAR_VALUE_EXT_1=3&VAR_VALUE_LOW_EXT_8=000000000030002200&VAR_VALUE_LOW_EXT_9=#&VAR_VALUE_LOW_EXT_2=CR
    You can see in VAR_VALUE_LOW_EXT_9 that we are asking for the Not Assigned values with #.
    Any suggestions?
    Regards,
    Andrea.

    Hi,
    finally we found the way, is with %23.
    So the URL is :
    http://ustwa427.xxx.com:8000/sap(bD1lbiZjPTQwMA==)/bc/bsp/sap/zlabw_tempos/main.htm?INFOCUBE=CRMLORSLM&
    QUERY=ZCRMLORSEL_SELLOUTMT_Q006&
    VAR_NAME_1=L_TOSALE&
    VAR_NAME_2=ZLOBWCTY&
    VAR_NAME_8=0S_MAT&
    VAR_NAME_9=0S_MAT&
    VAR_OPERATOR_2=EQ&
    VAR_OPERATOR_8=EQ&
    VAR_OPERATOR_9=EQ&
    VAR_SIGN_2=I&
    VAR_SIGN_8=I&
    VAR_SIGN_9=I&
    VAR_VALUE_EXT_1=3&
    VAR_VALUE_LOW_EXT_8=000000000030002200&
    VAR_VALUE_LOW_EXT_9=%23&
    VAR_VALUE_LOW_EXT_2=CR
    Regards,
    Andrea.

  • WEBI prompt based on bex variable suppress not assigned hashtag value in LOV

    Hi,
    is it possible to suppress the "Not assigned (#)" value from the list of values in a webi prompt based on a bex variable?
    This "Not assigned" value is something BW specific, BW adds this to each characteristic automatically?!
    WEBI:
    RSRT:
    It needs to work in WEBI, not only in RSRT, and the filtering of data still needs to work.
    For rsrt it works, when you exclude the not assigned value in "Filter > Characteristic Restrictions" and use the bex variable in/through "Filter > Default Values", but this does not work in WEBI, because the BEX Query Data is not filtered on the in the prompt selected value.
    Thanks.
    Regards
    David

    Thanks David for a quick reply !
    I could manage to avoid # values in WebI prompt using BAdI implementation, here is the brief:
    Problem:
    WebI report prompt (which shows BEx variable) list of values shows blanks or # . Rrequirement was to avoid these blanks or #
    Environment:
    BW 7.3
    BO 4.0
    BW Cube > BEx Query > OLAP Connection > WebI report
    Solution:
    InfoObject Level1 in BW had # values in masterdata, this could not be deleted since it was in use with other Cubes.
    Vaurable Var_Level1 displays # when pressed F4 running BEx query and in list of values in WebI report prompt.
    I implemented BAdI on Level1 info object and variable Var_Level1.
    Steps to implement BAdI are as in following link
    BEx Query - Control the values which are shown on F4
    Used following code to elimitate #.
    METHOD IF_RSR_VARIABLE_F4_RESTRICT~GET_RESTRICTION_FLAT.
    DATA: l_s_range     LIKE LINE OF c_t_range.
    DATA: l_var_range   LIKE LINE OF i_t_var_range.
    DATA: IT_MZLEVELS TYPE TABLE OF /BIC/MZLEVELS,
    WA_MZLEVELS LIKE LINE OF IT_MZLEVELS.
    DATA: L_ZLEVEL1     TYPE /BIC/OIZEVEL1.
      IF i_vnam EQ 'ZV_LEVEL1'.
    SELECT /BIC/ZLEVEL1
    FROM /BIC/MZLEVELS
    INTO CORRESPONDING FIELDS OF TABLE IT_MZLEVELS
    WHERE OBJVERS       = 'A'.
    IF SY-SUBRC NE 0.
    EXIT.
    ENDIF.
    SORT IT_MZLEVELS BY /BIC/ZLEVEL1.
    DELETE ADJACENT DUPLICATES FROM IT_MZLEVELS COMPARING /BIC/ZCLV1GP.
    DELETE IT_MZLEVELS WHERE /BIC/ZLEVEL1 = ''.
    l_s_range-iobjnm = i_iobjnm.
    l_s_range-sign   = 'I'.
    l_s_range-option = 'EQ'.
    LOOP AT IT_MZLEVELS INTO WA_MZLEVELS.
    l_s_range-low    =  WA_MZLEVELS-/BIC/ZLEVEL1.
    APPEND l_s_range TO c_t_range.
    ENDLOOP.
    ENDIF.
    ENDMETHOD.

  • Assign a value to a global variable - form personalization

    Hi All,
    We have a requirement in which we want to display a message depending upon the out parameter of the procedure in form personalization.
    We are using 'Builtin' with the buitin type 'Execute a Procedure'.
    And the argument passed is :
    *='declare
    l_request_id Number;
    l_out_come VARCHAR2(10);
    begin
    apps.xx_sr_email_pkg1.xx_sr_email_p1
    ('''||${GLOBAL.XX_CUST_ACCOUNT_ID.VALUE}||''',
    '''||${GLOBAL.XX_INCIDENT_ID.VALUE}||''',
    '''||${GLOBAL.XX_EMAIL_TYPE.VALUE}||''',l_request_id);
    :GLOBAL.XX_REQUEST_ID := l_request_id;
    end'*
    But its not assigning the value of l_request_id to the gloabal variable XX_REQUEST_ID.
    Can you please help?
    Thanks

    I don't have a solution but a work around.
    What if you create a function that accepts the same in parameters and returns the message.
    And then you create an action of the type message and in the message you call the function such as
    = select xx_sr_email_pkg1.sr_email_f1 .... from dual
    Sandeep Gandhi

  • Expression is not assignable

    I have an object (a custom UIView) in which I have this property in the public API:
    @property (nonatomic) CGPoint theOrigin;
    then, in the implementation file I have:
    @synthesize theOrigin = _theOrigin;
    also in the implementation file I have the method:
    -(void)setDefaultOrigin {
        _theOrigin.x = self.bounds.origin.x + self.bounds.size.width/2;
        _theOrigin.y = self.bounds.origin.y + self.bounds.size.height/2;
    which doesn't generate any compiler complaints but if I try to code the above method
    like this:
    -(void)setDefaultOrigin {
        self.theOrigin.x = self.bounds.origin.x + self.bounds.size.width/2;
        self.theOrigin.y = self.bounds.origin.y + self.bounds.size.height/2;
    I get a complaint on both lines of the method stating that the "Expression is not assignable"
    and it won't allow me to build. I am not understanding why I can't code it the second way.

    self.theOrigin.x assumes x is a property of theOrigin, which it is not.  It's a field of a structure.  _theOrigin.x references the supporting ivar directly and correctly sets the x field of the structure.

  • Configuring the time capsule airport wlan function as "connect to wlan", the time caspule gets a correct IP adress from the other wlans IP range, but does not assign this to the ethernet ports. With Airport Express it worked!

    Configuring the time capsule airport wlan function as "connect to wlan", the time capsule gets a correct IP adress from the other wlans IP range, but does not assign this to the ethernet ports. With Airport express it worked, the single Ethernet port got the IP Parameters passed through!
    My setup is a Vodafon Esaybox connected to ISP. Time Capsule is not able to extend the wlan of the easybox, neither airport express can do.
    Only the option "connect to wlan" is succesful.
    With airport express I was able to connect my Sony Bravia TV to the lan via ethernet to stream pictures, the TV set got an IP adress from the easybox.
    With the time capsule the easybox dosn't find devices connected to the ethernet ports to submit IP adresses. The TV set get another IP adress (169.xxx.x.x.) in subnet mask 255.255.0.0 and I don not now where from.
    My notebook is a MacBook pro.
    Any idea????
    Thank a lot in advance!
    Kind regards
    Ingo

    Neverthe less, could there be the chance, that this feature could be implemnented with an firmware update?
    That would appear to be a question for Apple to answer. You can make suggestions to Apple here:
    Apple - AirPort Extreme - Feedback
    If the AirPort Extreme and Time Capsule are configured to "extend a wireless network" they will provide additional wireless coverage....and...the Ethernet ports are enabled in this type of setup.
    The "catch" here is that you must have an Apple router providing the network to be extended.

  • Error 997. Overlapped I/O operation is in progress during SQL Server 2014 X64 Express

    I am trying to install SQL Management Studio from SQL Server 2014 X64 Express, however during installation, getting multiple identical errors:
    Error 997. Overlapped I/O operation is in progress
    Previously, someone posted similar question http://blogs.msdn.com/b/vsnetsetup/archive/2014/10/27/error-997-overlapped-i-o-operation-is-in-progress-kb2918614-breaks-windows-installer-service.aspx It was suggested to uninstall: KB3000988, KB2918614, I did so,
    but it didn't help. Also, tried to modify registry to add "product code" using ORCA tool. Maybe, I used wrong codes ? Thank you !
    Here is installation log:
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2068053019
      Start time:                    2015-04-02 17:07:19
      End time:                      2015-04-02 17:11:42
      Requested action:              Install
    Setup completed with required actions for features.
    Troubleshooting information for those features:
      Next step for Adv_SSMS:        Use the following information to resolve the error, and then try the setup process again.
      Next step for SSMS:            Use the following information to resolve the error, and then try the setup process again.
      Next step for ComponentUpdate: Use the following information to resolve the error, and then try the setup process again.
    Machine Properties:
      Machine name:                  POSEIDON
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered  Configured
      SQL Server 2005                                                         
    Tools                                    1033                
    Express Edition      9.4.5000        No         Yes       
      SQL Server 2005                                                         
    ToolsClient                              1033                
    Express Edition      9.4.5000        No         Yes       
      SQL Server 2005                                                         
    ToolsClient\Connectivity                 1033                 Express Edition     
    9.4.5000        No         Yes       
      SQL Server 2008 R2   SQLEXPRESS           MSSQL10_50.SQLEXPRESS          Database Engine Services                
    1033                 Express Edition      10.51.2500.0    No         Yes     
      SQL Server 2008 R2   SQLEXPRESS           MSSQL10_50.SQLEXPRESS          SQL Server Replication                  
    1033                 Express Edition      10.51.2500.0    No         Yes     
      SQL Server 2008 R2                                                      
    Management Tools - Basic                 1033                 Express Edition     
    10.51.2500.0    No         Yes       
    Package properties:
      Description:                   Microsoft SQL Server 2014
      ProductName:                   SQL Server 2014
      Type:                          RTM
      Version:                       12
      SPLevel:                       0
      Installation location:         C:\Users\Alex\Desktop\SQLEXPRADV_x64_ENU(1)\x64\setup\
      Installation edition:          Express
    Product Update Status:
      None discovered.
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      true
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                <empty>
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSERVERMODE:                  MULTIDIMENSIONAL
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 <empty>
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CLTCTLRNAME:                   <empty>
      CLTRESULTDIR:                  <empty>
      CLTSTARTUPTYPE:                0
      CLTSVCACCOUNT:                 <empty>
      CLTSVCPASSWORD:                <empty>
      CLTWORKINGDIR:                 <empty>
      COMMFABRICENCRYPTION:          0
      COMMFABRICNETWORKLEVEL:        0
      COMMFABRICPORT:                0
      CONFIGURATIONFILE:             
      CTLRSTARTUPTYPE:               0
      CTLRSVCACCOUNT:                <empty>
      CTLRSVCPASSWORD:               <empty>
      CTLRUSERS:                     <empty>
      ENABLERANU:                    false
      ENU:                           true
      ERRORREPORTING:                false
      FEATURES:                      SSMS, ADV_SSMS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 <empty>
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  true
      INDICATEPROGRESS:              false
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    <empty>
      INSTANCENAME:                  <empty>
      ISSVCACCOUNT:                  NT AUTHORITY\Network Service
      ISSVCPASSWORD:                 <empty>
      ISSVCSTARTUPTYPE:              Automatic
      MATRIXCMBRICKCOMMPORT:         0
      MATRIXCMSERVERNAME:            <empty>
      MATRIXNAME:                    <empty>
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         false
      QUIETSIMPLE:                   false
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 DefaultNativeMode
      RSSHPINSTALLMODE:              DefaultSharePointMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 <empty>
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         <empty>
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                <empty>
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  false
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      UpdateEnabled:                 true
      UpdateSource:                  MU
      USEMICROSOFTUPDATE:            false
      X86:                           false
      Configuration file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150402_170710\ConfigurationFile.ini
    Detailed results:
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                Microsoft Visual Studio 2010 Redistributables
      Component error code:          997
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150402_170710\VC10Redist_Cpu64_1.log
      Error description:             Error 997.Overlapped I/O operation is in progress.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=vc_red.msi%40ProcessComponents%40997
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                Microsoft Visual Studio 2010 Redistributables
      Component error code:          997
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150402_170710\VC10Redist_Cpu64_1.log
      Error description:             Error 997.Overlapped I/O operation is in progress.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=vc_red.msi%40ProcessComponents%40997
      Feature:                       Setup Support Files
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                Microsoft Visual Studio 2010 Redistributables
      Component error code:          997
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150402_170710\VC10Redist_Cpu64_1.log
      Error description:             Error 997.Overlapped I/O operation is in progress.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=vc_red.msi%40ProcessComponents%40997
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150402_170710\SystemConfigurationCheck_Report.htm

    Hi Alexander,
    According to your description, you encounter the error 997 when installing SQL Server 2014 Management Studio. This issue could be due to the account problem or third-party software scanning. Besides paSQuaLe's post, you could also check the following things.
    1. Check the account with which you log on to the server, make sure that it is not an account with temporary profile.
    2. Run SQL Server setup file locally on your computer and make sure that you choose ‘Run as administrator’ to run the setup.
    3. Disable any Anti-virus and reboot your server.
    4. Check for any problems with disk drive where you are installing SQL Server files.
    Regards,
    Michelle Li

  • Inserted expression not in mail

    Hi all,
    I have implement a workflow, where a production order (BUS2005) is created and the order number is saved in a form. Then i have created a mail step to send the order number.
    But by execution only the entered text will be send, not the expression (order number of a created container object).
    Did i make adaptions in the dataflow of the tasks ? I think they have been done automatically.
    I have created the form by using the wizard.
    Thanks for help.
    tunc

    There is probably something wrong in your binding to (or assignment to) this container element, or you don't have any binding/assignment to it at all.
    Do you have a container operation where you assign a value to your container element, or do you bind a value into the container element e.g. from your triggering event?
    To verify that things work if the container element has a value you can insert a container operation step just before your mail step and hard-code a value. Or, to be more fancy, check if it is initial, and if it is then you assign "(no value)" or something similar.
    Message was edited by Kjetil Kilhavn:
    As a beginner, have you read the Frequently Asked Questions? If you haven't, you should. It is a matter of netiquette.

  • Final Cut Express not opening, error says final FCE disks are missing.

    Hi there,
    Recently I got a WD Fire Wire 800 Hard drive for christmas so I could move all of my final cut projects over to the HD.
    When I moved my final cut express documents including all of the folders it now says this error.
    To preserve the integrity of the data used by final cut express, it is necessary to ensure the existence of the following paths;
    - My HDD Chris is missing
    Then it gives me the option to reset scratch disks, check again or quit.
    So I'm not sure what I do.
    Should I simply move back all the folders and documents that I moved to my hard drive (btw I tried this but it still gave the same error message). I have deleted final cut express 4.1 and re installed 4.0 to see if it works but it didn't and has the same error message.
    Any tips would be helpful.
    Chees, Chris.

    Tom Wolsky wrote:
    I can't even open FCE any more because I have moved everything onto the external hard drive including software 'everything'.
    You moved the software? You can't do that. That's fatal. The software must be on the system drive as it requires system resources. Move the application called Final Cut Express back into the top level of the Applications folder. Do it move it, rename it, or put it inside a folder.
    Do not assign the scratch disk to a folder anywhere. If you want the scratch disk to be on your external drive select the top level of the external drive. FCE will create the folders it needs in that location.
    Hi,
    When you say move the application final cut express into the application folder.
    Do you mean move my folder of final cut express that I moved onto my HDD?
    If so it's copying the 20GB folder as I speak. Hopefully fixes this frustrating problem..
    Cheers, Chris.

  • SD card detected but not assigned a device

    I have a Dell XPS 14 notebook which comes with a SD card slot. I plug in my SanDisk 8GB card from my camera and the following shows up in dmesg:
    [821605.639247] mmc1: cannot verify signal voltage switch
    [821605.750637] mmc1: new ultra high speed SDR50 SDHC card at address e624
    And that's it. The card is not assigned to any device. lsmod seems to indicate that I have the required modules loaded:
    ± % lsmod | egrep 'mmc|sdhci|sd'
    sd_mod 31361 3
    rtsx_pci_sdmmc 13911 0
    scsi_mod 132250 4 usb_storage,libata,sd_mod,sr_mod
    sdhci_pci 12604 0
    sdhci 28820 1 sdhci_pci
    mmc_core 95465 3 sdhci,rtsx_pci_sdmmc,sdhci_pci
    rtsx_pci 32305 2 rtsx_pci_ms,rtsx_pci_sdmmc
    lspci also shows the SD card controller:
    03:00.1 SD Host controller: Realtek Semiconductor Co., Ltd. RTS5209 PCI Express Card Reader (rev 01)
    But fdisk -l just shows my hard drive
    ± % fdisk -l
    Disk /dev/sda: 465.8 GiB, 500107862016 bytes, 976773168 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disklabel type: gpt
    Disk identifier: 0FBC37E2-A97E-4040-996C-F290C0C9CF0A
    Device Start End Size Type
    /dev/sda1 2048 1050623 512M EFI System
    /dev/sda2 1050624 976773134 465.3G Linux filesystem
    Anything else I need to do to get the SD card assigned to a device so I can mount it.

    It's considered a removable drive.  I have a USB card reader that if I insert it after the computer has been booted it gives me a little trouble, but having it inserted on booting it wants to put the device in a different order.

  • Fetching iviews not assigned to a page,workset or a role(orphaned iviews)

    Hi All,
    I need to fetch iviews,pages ,worksets ,roles that have not been assigned and are not used.The iview is not assigned to a page,workset ,role,similarly a page need not be assigned to a  page,workset,role and similarly for a workset and a role.
    Any Pointers??
    Thanks in Advance.
    Regards
    Radhika  Kuthiala

    Hi,
    i need to code regarding the same.Can anyone provide me some pointers in regards to available api's to do the same(fetching iviews not assigned to a page,workset or a role(orphaned iviews)).I am able to fetch total iviews in pcd through coding in web dynpro java.
    Regards
    Radhika

  • FIELD SYMBOLS - Not Assigned/Looking to fetch SAP processed ITAB from a ALV

    Hi Experts,
    Pls. let me know that,
    How to fetch the SAP Standard Prog. processed (w/ data) internal table into my_z_prog.?
    Actually, my intension is that, I need to develop a Z_alv_report similar to RFITEMGL.
    So,I coded as,
    SUBMIT RFITEMGL
      WITH SELECTION-TABLE seltab1
      WITH x_opsel     EQ x_opsel    SIGN 'I'
      WITH x_clsel     EQ x_clsel    SIGN 'I'
      WITH x_aisel     EQ x_aisel    SIGN 'I'
       with pa_vari    eq pa_vari  sign 'I' "ltdx
      EXPORTING LIST TO MEMORY
      and return.
    (seltab1 contains the selection criteria of BUKRS)
    Its working fine for small amount of data, if user runs wide open, huge data, so, dumps r throwing becoz of DECIMAL NOTATIONS, some other crap data!!!
    So, I thoght to use FIELD SYMBOLS.
    So, I know, How to use FILEDS SYMBOLS, like,
    FIELD-SYMBOLS: <fs> TYPE ANY.
    ASSIGN ('(SAPFV45P)XVBAP[]') TO <fs>.
    CHECK SY-SUBRC IS INITIAL.
    IF NOT <fs> IS INITIAL.
    I_T_VBAP = <fs>.
    ENDIF.
    So, i implemented the same in my_z_alv_prog; from other thread, likem eblow.
    Suppose RFGLBALANCE is your standard program and you have an internal table named I_RFGLBALANCE.
    And lets say your Z program name is Z_SRINIVAS.
    First find out the type of the internal table you want in your Z-program in the standard program. And declare an internal table of similar type in your Z-program.
    Later wherever you are putting the below mentioned code.
    SUBMIT RFGLBALANCE WITH selection criteria
    here I used the FILED SYMBOLS .......
    BUT, am getting error as FILED SYMBOL NOT ASSIGNED.
    So, pls. let me know that,
    1 - Can I get the SAP processed ITAB by using FIELD SYMBOL into my_z_prog.?
    2 - If NOT , wht is the alternative idea?
    3 - if so, pls. code a peice of code according my reqirement by using FIELD SYMBOLS, in such a way to get SAP ITAB from RFGLITEMS
    URGENT pls.
    thanq
    Edited by: Srinivas on Mar 26, 2008 9:53 AM
    Edited by: Srinivas on Mar 26, 2008 10:08 AM

    no response

  • E not assigned Error when running Data Manager

    Hi,
    When I try to import Master Data from BW to BPC, All the ID's are loaded correctly, however I get an error message that :E not assigned when I run the Data Manager even though I have the Language set to "E".
    Any inputs are appreciated.
    thanks,
    Vamsi.

    HI Vamsi,
    I am facing similar problem,please update me if you have any clue about this.
    Thanks,
    Bala.

  • EL expressions not evaluating after JSF 1.1 --- 1.2 upgrade.

    I am having a problem with EL expressions not evaluating in a JSF application that I just upgraded from Apache MyFaces JSF 1.1 to JSF-RI 1.2 and from Tomcat 5.5.25 to 6.0.26. After the upgrade the entire application is working fine except for EL expressions.
    I was wondering if I am missing a JAR file or something.
    Basically, I have prepopulated input text boxes that render the EL expression instead of its evaluated result. Example:
    INPUT [#{sessionBean.result}] instead of INPUT [tedsResult].
    Here are the JAR on my classpath:
    tomcat/lib:
    annotations-api.jar el-api-1.1.jar servlet-api.jar tomcat-i18n-fr.jar
    catalina-ant.jar jasper-el.jar sqljdbc.jar tomcat-i18n-ja.jar
    catalina-ha.jar jasper.jar tomcat-coyote.jar
    catalina.jar jasper-jdt.jar tomcat-dbcp.jar
    catalina-tribes.jar jsp-api.jar tomcat-i18n-es.jar
    and in my WEB-INF/lib:
    activation.jar hibernate-annotations.jar
    antlr-2.7.5H3.jar iText-2.1.3.jar
    asm-attrs.jar jakarta-oro.jar
    asm.jar jaxen-1.1-beta-8.jar
    avalon-framework-4.0.jar jaxrpc.jar
    avalon-framework-cvs-20020806.jar jdom.jar
    axis.jar jpdcFOP.jar
    batik.jar jpdc_web.jar
    cglib-2.1_3.jar jsf-api-1.2_12.jar
    commons-beanutils.jar jsf-impl-1.2_12.jar
    commons-codec.jar jstl.jar
    commons-collections.jar jta.jar
    commons-digester.jar jtds-1.2.jar
    commons-discovery.jar log4j-1.2.13.jar
    commons-el.jar logkit-1.0.jar
    commons-fileupload-1.2.jar mail.jar
    commons-io-1.3.1.jar openmap.jar
    commons-lang-2.3.jar saaj.jar
    commons-logging.jar standard.jar
    commons-logging-optional.jar tomahawk.jar
    cos.jar velocity-1.4.jar
    CVS velocity-tools-generic-1.1.jar
    dom4j-1.6.1.jar
    el-impl-1.1.jar versioncheck.jar
    ehcache-1.1.jar wsdl4j-1.5.1.jar
    ejb3-persistence.jar xalan.jar
    fop.jar xercesImpl.jar
    hibernate3.jar xmlParserAPIs.jar
    Any ideas what might be causing this problem? Thanks in advance for your help.
    Edited by: tsteiner61 on Apr 14, 2010 11:05 AM

    Hello tsteiner61,
    Did you find a solution for your problem? I am asking because I have to solve a somewhat similar problem. Our system admin updated Tomcat from version 6.0.20 to 6.0.26 and now my JSF application won’t evaluate EL expressions either.
    I was using “Mojarra JSF API Implementation 1.2_09-b02-FCS”. Trying “Mojarra JSF API Implementation 2.0.2-FCS” I get the following error:
    java.lang.UnsupportedOperationException
         javax.faces.context.ExternalContext.getResponseOutputWriter(ExternalContext.java:1228)
         com.sun.faces.application.view.JspViewHandlingStrategy.renderView(JspViewHandlingStrategy.java:182)
         com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:126)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:101)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:197)
         javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)
         org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:127)
         com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:313)
    I am grateful for helpful advice.

  • Iphoto keywords are not assigned and do not appear in the info.

    Until recently I was able to very easily apply my own keywords to my photos.  Now, when I go thru the same/similar proces of selecting multiple photos and start assigning keywords, the keywords list is found and finds the words as I type, when I hit enter, it flashes and does not assign a keyword to the photo.
    I am using iphoto 11 9.3
    Help please

    Try using the Keyword pane to assign keywords to single or multiple photos.  Select the photos, bring up the keyword pane open (Command+K) and click on the keywords you want to assign:
    Assigned keywords to those photos will display blue.
    This may only be a workaround but, IMO, it's a more efficient way to assign keywords.
    OT

Maybe you are looking for