Dynamically initialize component properties at the time of inclusion

Hi there,
I would like to include an TextImage component in my page through code inclusion.  However, I would like to set the size of the image to be certain size.  When the author clicks on the component, the size should have been set already. 
Is this possible?
Thanks,
--Mei

Hi Guys,
How are you? I'm currently facing the following problems as discibed below. First of all I'd like to mention that I make the difference between Cost Component Structure for COGM and Primary Cost Component Split. I also make the difference between Main cost component structure and Auxiliary cost component structure. But what I do miss is how to configure it from Technical Point of view and of course how to see the results.
There are several requirements how to configure in SAP Primary Cost Component Split:
1)You assign a cost component structure in the CO version in Cost Center and Process cost planning!  Which Cost Component Structure? The Primary Cost Component Structure or the Cost Component Structure for COGM?
2)You determined the prices through planned price iteration! Do we set this indicator in the CO Version itself?
3)You define a Cost Component Structure for Primary Cost Component Split of Product Cost Planning! How do we define it, via simply checking the check in OKTZ?
I want to understand when you create Cost Component Structure for COGM and Primary Cost Component Structure, which one of these 2 needs to be assigned in the CO version in Cost Center Accounting?  Other thing is when you create Primary Cost Component Structure and its components, DO THEY INCLUDE ONLY RANGE OF PRIMARY COST ELEMENTS OR IT IS A TECHNICAL STEP ONLY TO CHECK THAT CHECK IN OKTZ FOR Primary Cost Component Split. Let me know, thank you very much for your help and cooperation again!
Best Regards,
Georgi Georgiev

Similar Messages

  • Warning "Quick Time failed to initialize, error #0" All the time %#@!*&)+

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/912918]]</blockquote>
    I get this warning all the time.
    On Google, it shows that a lot of people also have the same warning. The solutions do not seem very clear how to get rid of it.
    Pls help.

    ( I had the same prob. this worked for me..Good luck...)
    1.Quit iTunes.
    2. Windows XP and Windows 2000: On the Start menu, click My Computer (or double-click My Computer on the Desktop).
    -Windows Vista: On the Start menu, click Computer.
    4. In My Computer, open the C:\ drive (or whichever disk your Windows XP is installed on).
    5. Open the Program Files folder.
    6. Open the iTunes folder.
    7. Right-click on the iTunes application (iTunes or iTunes.exe) and from the shortcut menu, click Properties.
    8. Click the Compatibility tab.
    9. Deselect the checkbox under Compatibility mode if it's selected.
    10. Click OK.
    11. Open iTunes and play a song.

  • How to build dynamic time series for the time dimension

    I am planning to build dynamic time series using rule file instead of manually.Please let me know if there is any property need to assign to enable DTS property for TIME dimension.
    Edited by: 844104 on Mar 14, 2011 3:37 AM

    In the load rule in the dimension build settings you would need to go to the tab dimension definition, choose the time dimension and right click on it. Select Edit properties. If you have not done so, set the dimension to be the time dimension. Then go to the generations/levels tab and set the generation names you need. For example if you want YTD, you would set the generation name to Year, if you want QTD set it to Quarter. You would set the number to the generation number that coorisponds to the generation. The DBAG has the list of names for all of the DTS members.

  • DATE type returned from function does not return the time component

    Hi,
    I'm dealing with a strange problem. I have a PL/SQL function (running on Oracle 8.1.4.7) which returns a DATE value. Like we all know the DATE datatype includes a date component and a time component.
    The function I used for testing is like this:
    FUNCTION ReturnDate return Date is
    dReturn Date;
    Begin
    select sysdate into dReturn from dual;
    return dReturn;
    end ReturnDate;
    When I call this function from .NET using ODP.NET the date value I get does not have the time component included only the day-month-year components.
    This is a code-snippet that calls the function :
    command.CommandText="Schema.ReturnDate";
    command.CommandType=CommandType.StoredProcedure;
    command.Parameters.Add("Return_Value",
    OracleDbType.Date,0,ParameterDirection.ReturnValue);
    command.ExecuteNonQuery();
    I use the OracleDbType.Date type which I think is the most logical choice, because the type in the Database is after all DATE.
    However this does not include the time componet. But if I change the OracleDbType.Date to OracleDbType.TimeStamp I get the time component. I'm not happy with this "hack" because I'm not sure what will happen when we upgrade our version of the Database to Oracle 9i which uses the new TimeStamp datatype.
    Is this a bug that the OracleDbType.Date does not include the time component??

    How do you examine the output Date value?
    If it is from the string, then the time components will
    not show because the NLS_DATE format in the client
    machine does not contain the time components.
    In American, the Date format is 'DD-MON-RR' by default whereas, the TimeStamp format is 'DD-MON-RR HH.MI.SSXFF AM' by default.
    Can you take a look at the time components from the OracleDate by accessing the time properties, eg. OracleDate.Hour, OracleDate.Minute..etc to see if the time values are there?
    Thanks
    Martha

  • How to populate the time component of a cube?

    We have a question regarding how to populate the time component of a cube. Let me explain:
    We are using OWB 10gR2. We have created a cube with several dimensions. We are now building the mapping to load the cube. The cube operator has two columns for every dimension (e.g., "customer" and "customer_id" for the "customer" dimension).
    We understand that, in this case, "customer_id" stands for the dimension business key, so we create an arrow from the business key in the source table to the "customer_id" column in the cube operator.
    So far so good. The mapping works all right, and the cube is loaded correctly.
    Now we need to do the same for the time dimension. We have already created the time dimension and we have loaded it. We have also included it in the cube, so now we have two new columns in it: "time_day_code" and "time", both NUMBER data type.
    We have the "sale_date" column (DATE data type), in the source system and, of course, now we want to populate the date column in the cube. We suppose that, somehow, we have to translate the "sale_date" field into the numeric column of the surrogate key of the time dimension. How should do we do this? I suppose that OWB must do the translation for us, just as it does for the other dimensions, but how? We have been looking into the manuals, and we have found no explanation on how to go about this.
    Any help would be appreciated.
    Best regards
    Juan Algaba

    Hi Juan
    You are right this should have been in the manuals, checked and there is only a brief mention (Using a Time Dimension in a Cube Mapping section)
    The identifier format should have been documented for each level and will involve creating the formatted attribute for input to the cube operator's time dimension reference attribute.
    The time dimension business keys are stored as follows;
    Day Level - YYYYMMDD
    Month Level - YYYYMM
    Week Level - YYYYWW
    Quarter - YYYYQ
    Year - YYYY
    If you have a source that has a SQL date datatype for example and want to construct the key for a cube's time dimension at the day level something like the following expression can be used to construct the time reference from a SQL date...
    to_number(to_char( time_key, 'YYYYMMDD'))
    The result of this expression can be used as input to the cube's time dimension attribute.
    Cheers
    David

  • Cost component not splitting at the time of Rune the tine of Cost Estimate

    http//
    Hi,
    We are in developing phase for Product costing for coal mine project ,
    we have raise coal material with Non component BOM , and Routing is only one activity with 400- Raised Coal Qty-MT ,
    We upload the plan with Production cost center -activity type and cost element ( as per cost component -we have 10 cost component  as per below )
    RM - Blasting
    Production Overhead
    Power - Main
    Stores,Spare,Consum
    Repairs & Maint
    Lease & Hire Char-PM
    Power - Auxiliary
    Depreciation
    Over Burden
    Development
    we done the plan for Amount and Qty by KP06,KP26  and update plan price but system not calculate the cost component splitting in cost estimate as per planning while only one item showing for all cost to Production Overhead cost component
    Production Overhead cost component which assign the secondary cost element which is assign to activity type 400
    can any one help me to how we can resolve this issue
    Please find attached document

    Hi,
    Here I am providing the necessity and importance of splitting structure, will share the configuration steps once you go through the following and get the comfort level.
                        Expense Analysis and Splitting in Manufacturing Cost Centers
    Introduction In SAP Cost center work as a cost responsibility center, where all the expenses and cost are stored and analyzed for the purpose of management decision making.
    The cost could be fixed or variable in nature. The difference between variable and fixed costs can be made in various ways in product costing in CO module.
    Fixed costs represent the static costs incurred by the organization, which doesn’t change on the basis on manufacturing activities, which remain constant irrespective of production activities like rent for the premises, salaries of office staff etc.
    On the other hand, variable cost varies based on the level of production activities; if production activities increase then variable cost also increased like electricity consumes raw material charges etc.
    However all the variable cost doesn’t vary in direct proportion by quantity of goods produced.
    In this document will try to define; how the Expenses analysis and splitting of cost done in manufacturing cost centers.
    From controlling prospective, fixed cost remain constant regardless of operating activities, but if these factor changes, variable cost will fluctuate.
    Basically raw material costs represent variable cost, but in this document main focused will be given to distinguish fixed and variable activity cost.
    The segregation between fixed and variable cost is optional and is derived from the configuration and master data configured in cost center accounting and overhead accounting.
    Activity Price:
    There are different methods that could be used in cost center accounting to determine the activity price. The simple way is the manually enter “Fixed” and “Variable” Activity cost (KP26).
    However there are other methods used in Cost center Planning and Budgeting that automatically calculate the fixed and variable activity price.
    Here the focused will be given on Planning and Budgeting activity and automatic calculation of plan activity rate in cost center.
    This method aggregate planned costs by cost element and capacity by plan unit to calculate the activity price.
    Activity independent costs are segregated among different activities based on Splitting Structure, while activity dependent cost directly used for the purpose of variable activity rate calculation.   
    Fixed Activity Cost:
    In product costing all those cost, which doesn’t vary based on the activities in manufacturing cost will represent fixed cost.
    In a manufacturing cost centers there may be two or more activities performed.
    To calculate the activities rate, the fixed costs are distributed to various activities on the basis of Splitting Structure defined for cost center.  
    Variable Activity Cost:
    Variable activity cost, which directly depend upon the activity type and fluctuate based on increase or decrease in manufacturing activities. In SAP variable activity cost are directly linked to the respective activity.
    Activity Prices: Fixed and Variable Split
    In Cost Center Accounting dividing the cost between Fixed and Variable requires appropriate split to be made in the cost entered for the activity. The process is described below:
    i.  Variable cost would be planned at activity level and expenses should be maintained at cost element in the manufacturing cost center by assigning activity and cost element combination.
    In other word, the expenses should be planned on Activity type at the time of primary cost planning (KP06).
    Then the variable activity rates are calculated on Total cost planned at Activity divided by Total number of activity planned at that cost center (i.e. capacity in KP26)
    ii. Fixed cost would be planned at independent of activity type. These costs are maintained in KP06 at cost element level on manufacturing cost center.
    Then the fixed costs are distributed on various activity types on the basis of Splitting structure defined at OKEW.
    In Splitting Structure we define the rules, how the fixed cost will be distributed to Activities. For the purpose of this document, considering split of fixed cost on the basis of Capacity maintained in KP26.
    Regards,
    Pavan kumar Arvapally

  • Why does Oracle SQL query returning a date field without the time component

    Hi,
    I'm a novice SQL user & hv just installed Oracle SQL developer (Version 3.0.04, Build MAIN-04.34).
    I made the same SQL query using "Oracle SQL developer" & "TOAD for Oracle 9.0.1" but I got 2 different format on the same date field:
    On TOAD, I get the date field extracted as *04/26/2011 23:12:58*
    On Oracle, I get the date field extracted as *26/APR/11*
    Why is the Oracle result in a different format & missing the time component?
    Is there any option/preference that I need to set in Oracle SQL developer to get the full date/time format displayed?
    I've tried to set my the date format to DD/MON/RR HH12:MI:SSXFF AM under the preference -> database NLS but I still get the same format!
    Plse help!

    hokim wrote:
    Hi,
    I'm a novice SQL user & hv just installed Oracle SQL developer (Version 3.0.04, Build MAIN-04.34).
    I made the same SQL query using "Oracle SQL developer" & "TOAD for Oracle 9.0.1" but I got 2 different format on the same date field:
    On TOAD, I get the date field extracted as *04/26/2011 23:12:58*
    On Oracle, I get the date field extracted as *26/APR/11*
    Why is the Oracle result in a different format & missing the time component?
    Is there any option/preference that I need to set in Oracle SQL developer to get the full date/time format displayed?
    I've tried to set my the date format to DD/MON/RR HH12:MI:SSXFF AM under the preference -> database NLS but I still get the same format!
    Plse help!http://edstevensdba.wordpress.com/category/nls_date_format/

  • Dynamic Memory is not working all the time

    We are in the process off moving our 2008R2 VM's from the 2008R2 HyperV servers to new Server 2012R2 Hosts.
    We shut down the VM's copy the files and VHD's to the new CSV's en import the VM in the Hyperv Manager. Then we make them high available in the Failover Cluster Manager (Configure role - Virtual machine). We mount the integration tools and update the
    VM to version 6.3.9600.16384
    For a specific type of VM (mostly RDS Host servers) we always had Dynamic Memory configured (when they were hosted on de 2008R2 platform), so we are using the same settings on the 2012r2 platform. The memory settings were;
    Startup memory: 1024 MB
    Minimum memory: 1024 MB
    Maximum memory: 12288 MB
    These VM's reboot every morning, this is done for specific reasons. But now once in a while (once per week/2 weeks) we notice that the VM's are not using more memory then 1024 MB while the demand is much higher. Rebooting the server helps most of the times,
    live migrating to another host also helps. In the VM we see that memory usage in the taskmanager is 99-100%, and after the move it immediately starts using more than the minimum configured amount.
    Until the failover the memory usage was 1024 MB and it did not get any higher.
    This happened several times. Last week we changed the Memory configuration to:
    Startup memory : 2048 MB
    Minimum memory: 2048 MB
    Maximum memory: 12288 MB
    But this morning we had a call about the performance of one of the VM's, We saw that it was only using 2 GB memory while the demand was much higher. After live migrating it to another host it started using more memory immediately.
    The 2012R2 hosts are not overcommited, there is a lot of memory still available for the VM's. Those VM's never had this problem on the 2008R2 Hyperv platform.
    Any idea why this happens?
    Peter Camps

    Peter,
    I think this is a bug of some sort. I say that because the components that make up dynamic memory are as follows.
    Memory Balancer(Host service, coordinates how memory changes are made.) This is also what shows the memory demand counter i believe.
    Dynamic Memory Virtualization Service Provider (this is included your VMWP.exe proccess, one per VM. Essentially how it runs on the host. He listens to the Service Client for metrics)
    Dynamic Memory Virtualization Service Client (this is inside the VM and reports to the Dynamic Memory Virtualizaton Service Provider.)
    Since you live migrated the machine it made dynamic memory work on the other host. This means the Service Client is running in the client and shouldn't be an issue. The Memory Balancer is the server and shouldn't be the issue, so this means the "Dynamic
    Memory Virtualization Service Provider" is in question. When you live migrate the machine its going to create a new VMWP.exe process on the clustered server. So now the question is it the host that couldn't listen to the service or the worker process
    skipped a beat and has a bug.
    Out of curiosity does it happen to both hosts? Also have you profiled the servers to see how much memory they really require on start-up? When you reboot the RDS servers, how many VM's do you reboot and is it a staggered process?

  • CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there

    CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there a way around this?  Is there a patch to correct it?

    To build CD's???
    What problem does Encore have with DL?
    If DL is not working properly for you the way around this is to export from Premiere to either mpeg2-dvd for DVD or BluRay H.264 for BD-disks and import the files in Encore.

  • Movie clip shows no time amount, but properties show the clip is 1.36GB

    Hi all,
    I have a weird problem. I set up my Canon HV20 with iMovie 6HD to capture a time lapse of butterflies comming out of their cocoon. I had it set to capture 1 frame every 90 frames. I started it at 10:55 pm last nite and woke up 5:25am this morning. Guess what! All four of them came out! I thought "GREAT", let me see what it caught. There are three clips;
    Clip 01 - time- 2:00:13, 1.37GB
    Clip 02 - time - 0:00:00, 1.36GB
    Clip 03 - time - 26:04, 284MB
    The properties show that clips 1 and 2 started capture at 10:55 p.m. and clip 3 started capture at 1:55 am. I could have swore that when the clips were in the clips pane, there was a time amount on clip 2. After i put it in the time line it went to all "0".
    What could have caused this? When I opened the package I see that clips 1 and 2 show the first frame of the clip, but clip 2 only shows the quicktime logo. It doesn't play when I try to play in Qt. Is there a time limit per clip? I thought it would just record as 1 big clip.
    Thanks for you help

    A bit confused by your statement
    bcboarder wrote:
    . I do not understand why the music is clearly on the Ipod but wont reconize it anywhere.
    Are you seeing your music listed in the iPod screen, or in Win explorer as in your earlier post?
    I can see all the songs in my Edrive>al's Ipod> Ipod Control> Music folder.
    A corrupted iPod database, will report zero music used, and have your music size reported as others, so you wont see the music in the iPod screen. Sorry, I thought there was some hope for you with iPodAccess, in recovery of the corrupted iPod database with your ratings.
    You can try to borrow and  use the Mac Disk Utility ->First Aid ->Repair.
    Of course, if your iPod Hardisk is in a bad state, from the Disk Diagnostic report, then all my suggestion are futile.

  • After setting the time properties to 2 sec

    Hi all,
    after setting the time properties to 2 sec teh movie runs on its own after publishing
    and doesn't stop at the designated stops
    can i hold the movie to a frame for 2 sec in another way?
    tia
    Herman

    If you just want to kill time, insert this Lingo :
    t = the ticks + 1000 * N  -- where N = number of seconds to pause
    repeat while the ticks  < t
    end repeat
    The only drawback is that Director won't accept any interaction while the loop executes

  • Inputtext component refreshes and the entered data is vanishes only happen when page loads first time

    Hi,
    Am using 11.1.1.5 adf jdev.
    I got unique issue , i have couple of jsff seach pages . In jsff , i have user enterable inputtext box ,Issue is when user enters data for first time . the component refreshes and the entered data is vanishes .
    But it happen for the first time when page loads, There is no partial triggers on dat input text box.

    Hi John,
    My page is not a part of a task flow. The whole app is an Admin app comprising of multiple individual pages navigated using Menu.
    I have tried to run this page individually on my local machine as well as when deployed on the WLS server. The behavior is the same.
    Kindly advice,
    Thanks,
    Ram

  • How can I retrieve files OR re-initialize the time machine...

    After deleting a file on my time capsule, I can't retrive some older files. I see the multiple windows up to a certain date, the rest of the windows are black (and I can't access them). Is there a way to repair the time capsule, and if not, how can I re-initialize the disk and start from scratch with a new full backup? Thanks.

    A deletion on the TC cannot be recovered without removing the disk and using a recovery utility.. even then if it is inside a sparsebundle I am not at all confident a recovery software can do anything about it.
    Pondini in his FAQ which are required reading before you start playing around manually doing deletions in TM.. makes clear it is not wise..
    Q12, 20 http://pondini.org/TM/FAQ.html
    To erase and start again, use erase in the airport utility.

  • Dynamically display the time in a movie

    Can anyone tell me if it is possible to display the time dynamically in a movie in Final Cut Pro. For example, I would like to display the date and time in the upper left corner of the movie with the time changing by hour:min:sec and maybe even frame as the movie plays. On a separate track or something.
    I am new to this so I don't know if I need special software or if I can do it in FCP.
    Thanks

    There's a Generator called Timecode Generator, or Timecode Reader. Generator creates new TC, Reader reads it from the clip. But it only shows hours, minutes, seconds, not the calendar date. To display calendar date and clock time, you'll have to create a counter from scratch.

  • Dynamic initialize a PF variable with the PF name

    I define a variable in a PF.
    I want initialize this variable with the name of the process flow.
    For example, if I created a ProcessFlow called "PF1", my variable must be dinamically set to "PF1" when the PF start.
    Thanks

    Hi,
    You need to write some PL/SQL that looks at the activity that is running (using the actid parameter) then link to the process activities to find out the process details.
    Then use the standard API to set the attribute to the value retrieved.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

Maybe you are looking for

  • How can I seperate my iCloud account, How can I seperate my iCloud account

    I have one iTunes account and one iCloud account for three phones, mine, my husband's and my sons.  I need to seperate the iCloud account and make seperate ones for each person.  How do I do this so I don't delete important phone numbers out of our c

  • Error message from trace result-SAP BI

    All, I got an error message from RSRT trace-you have no authorization for info provider---EYE 001. WHAT IS MEAN BY EYE 001???

  • Can't transfer files even though I created them

    I'm trying to transfer music, iPhoto, and other files to my new iMac so I can erase my MacBook (many, many problems since upgrading to 10.5, but that's another story) and do a clean install. However, when I try to transfer them, using TDM or just ove

  • PLEASE HELP! LIVE won't work in LOGIC anymore

    Hi, This is my problem: I happily worked on my MacBook Pro (2.33 GHz Tiger 10.4.11) for a long time, using Ableton LIVE as a ReWire slave to LOGIC and everything worked just fine. I recently got myself a Mac Pro (2 x 3.2 GHz Quad-core 4 GB RAM) and o

  • What happened to my service in Mexico?

    I suddenly do not have service in Mexico. My plan says that I do and I am in an area that I have spent much time in the last 4 years having few problems. Suddenly my service is gone. In a time of emergency it wasn't there leaving me in a dangerous si