Figuring out "Relevant" ATP Categories

Hi,
If I want to "pick" the right/relevant ATP categories for a new check control in a already productive system (in which I havent worked hands on), in which direction should I start thinking / exploring to narrow down on the correct ATP categories. A couple of them are evident by cateory description and its relevant MRP element and type (Stock, receipts, requirement)
e.g. say the context is to have "Subcontrator Orders" in the check control. Now there are 2 evident ATP categories on this BA (requirements)  and BB (receipts).. both with exactly the same text and they both correspond to same MRP element BB.
- First I am not sure which one of these would make "sense" to be included in the check control.
-Second I am not sure if there are any additional ATP categories that should be included to lend sense.
If you could guide. I know its an open ended question but just wanted to know the thought process around this. 
Regards,
Loknath

Thanks Mohan,
I have to read whole of ECC Logistics to figure all about ATP categories..
The more specific question is below
The need is to create a new check control with some additional ATP categories in which one of the category is
"Stock Transfer Reservation" (Category BC). There already exists a category "Order reservation withdrawable  (category AV) along with several other categories
Now category BC corresponds to MRP element UL and the invoking tcodes are are MB22/MB23 (change/display reservation)
But AV corresponds to MRP element AR and the invoking tcode is CO03 (production order display ! )
Questions:
- Why is a reservation document referring a production order.
- Do I need to activate the integration model for Manual Reservations to CIF stock transfer reservations given that Order reservations are CIF'd to APO with basic material model. I could have tested but now I dont know how to create a stock transfer reservation.. It is just a reservation. Isnt it ? or am I missing anything.
Please give some directions.
Regards,
Loknath

Similar Messages

  • I modified the budget categories on the numbers template so now the transaction tab does not communicate with the budget tab. I figured out how to change the drop down options but how do I get it to reflect on my budget sheet? Please help.

    If you are familar with the Numbers Budget Template it has two tabs 'Budget' and 'Transactions'. If you use the template as it is designed when you input expenses on the transaction tab it will automatically add that amount into the selected category on the budget tab. I have madified my budget tab to reflect the caegories that I need, which included adding several to the template. I also added to the table so it reflects my income and expenses so I can track where I am at with a glance. Since I did this, I can't get my transactions tab to communicate with the budget tab. I figured out how to change the options in the drop down box for category but I con't figure out how to get it to reflect onto my budget tab. I'm sure that it is an easy fix, however, I am just not well versed in Numbers. I appreciate your time in helping me with this issue.
    Respectfully,
    Jon

    My guess is that while you added catetories to your Budget Sheet by adding new lines and filling in the category column, you didn't also add the formulas to these new budget lines.
    The proper way to add those lines would have been to select a cell in the line just above where you want to add a line and type Option/Alt-DownArrow. This would have copied the formulas into the new line. Maybe you did this, and maybe not. You didn't give details on how you added the lines.
    Select C2 and D2 and Command-C to copy them to the Clipboard.
    Select all the cells of Columns C and D except for the top and bottom rows and Command-V to Paste.
    If I have properly guessed the problem, you should be in business. This assumes that your Categories are exaclty the same as the entries in your Pop-up menus. Spelling counts, as does case.
    Jerry

  • Can't figure out what is the code

    Hi
    I got following macro that will help me to run certain transaction.
    I just can't figure out where comments ends and where code starts so I was unable to run it for like 3 hours now.
    In other words
    I am trying to use Excel Macro that will get to active transaction in SAP and do waht I have recorded.
    'SAPGUI Macro for updating SAP from Excel data 'Prerequisites: '1. Script Recording and Playback from the SAPGui must be enabled by admin '2. The Excel list must be set up from top left corner of a worksheet '3. The worksheet with data must be the active sheet '4. There is no error handling. Build it yourself! '5. The script will update the active (current) SAP transaction'Instructions for use 'Record a macro of your update actions. 'Paste the session.findById stuff between the <== and ==> markers'Edit the literal values and replace with Trim(CStr(objSheet.Cells(x, y).Value)) 'where x and y are the row and column counters'Open up your Excel sheet with data (row 1 is ignored here) 'Fire the macro! '===========BEGIN BOILERPLATE=================== REMSet up connection to the SAP screen: If Not IsObject(application) Then Set SapGuiAuto = GetObject("SAPGUI") Set application = SapGuiAuto.GetScriptingEngine End If If Not IsObject(connection) Then Set connection = application.Children(0) End If If Not IsObject(session) Then Setsession = connection.Children(0) End If If IsObject(WScript) Then WScript.ConnectObject session, "on" WScript.ConnectObject application, "on" End If REMSet up connection to the Excel data to be keyed into SAP: Dim objExcel Dim objSheet, intRow, i Set objExcel = GetObject(,"Excel.Application") Set objSheet = objExcel.ActiveWorkbook.ActiveSheet session.findById("wnd[0]").maximize
    '===========END BOILERPLATE=====================
    'REM Example: Mark material for deletion in Plant using MM06 For i = 2 to objSheet.UsedRange.Rows.Count     'Assuming there is a header rowREM Find a cell and put its value in: REM Note: The section of the Script shown below can be recorded ' and edited to pick data from the Excel sheetstrCN = Trim(CStr(objSheet.Cells(i, 1).Value)) strWerks = Trim(CStr(objSheet.Cells(i, 2).Value)) '<== session.findById("wnd[0]/usr/ctxtRM03G-MATNR").text = strCN session.findById("wnd[0]/usr/ctxtRM03G-WERKS").text = strWerks session.findById("wnd[0]/tbar[0]/btn[0]").press session.findById("wnd[0]/usr/chkRM03G-LVOMA").selected = false session.findById("wnd[0]/usr/chkRM03G-LVOWK").selected = truesession.findById("wnd[0]/tbar[0]/btn[11]").press 'session.findById("wnd[0]/tbar[0]/btn[0]").press '==> Next

    Ok macro works and triggers actions from recorder. I was doing it with hope I will select data in SAP and paste in Excel AND/OR export file from SAP with data.
    If I record select column and then copy it. Script is recorded until selection . It ignores copy (i tried use mouse right click and copy AND manual alt+F12 and then copy from context menu)
    When I export recorder does open export window but does not writes the line relevant to clicking save.
    I found such bits
      'Choose the export format
      session.findById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").select
      session.findById("wnd[1]/tbar[0]/btn[0]").press
    'Choose the export filename
      session.findById("wnd[1]/usr/ctxtDY_FILENAME").text = "test.txt"
      session.findById("wnd[1]/usr/ctxtDY_PATH").text = "C:\Temp\"
    'Export the file
      session.findById("wnd[1]/tbar[0]/btn[0]").press
    But they dont seem to be relevant to my previous macro.
    Any quick fix to get data out of Excel

  • Data usage skyrocketing and I can't figure out why

    I've been watching my AT&T data usage recently. I have the original iPhone and had expected to replace it this year. That will apparently cause me to lose the unlimited data plan, as per AT&T's latest announcement.
    For some reason my usage, which used to run about 70-100MB/month, is getting towards the 1 GB level and climbing. Last month it was 770 MB. My bill details only show data "out," nothing "in." Most nights around 2:30 a.m there is a lot of activity, anywhere from 60KB to 80,000KB At that time the phone is asleep (as I am) and charging -- but not connected to a computer.
    I've turned off Push email (which disables "find my Phone.") I have all app notifications turned off. My phone does not have GPS. I have wi-fi at home, but a lot of data transfers seem to be at times during the day when I believe I am connected via wi-fi. Except for the occasional App Store purchase on the fly, I download from iTunes to my Mac and sync with USB cable.
    I do have 4 email accounts besides MobileMe and I retrieve mail manually to save battery life.
    With the 2G iPhone on Edge, I cannot do streaming video and other things that I would want to do with a more capable phone. I am paying $99/year for MobileMe and have been advised to cripple it. AT&T customer support suggested that apps are the problem, but gave me no guidance on figuring out which apps might be the culprit(s). My understanding is that the iPhone doesn't allow apps to run in the background. I know Apple doesn't update without permission. I am not subscribed to any AT&T services that I know about.
    I just want to understand how this all works. If there are some apps that are misbehaving, how do I figure out which ones? I do not want to get an expensive new iPhone and find out I can't afford to enjoy it.
    I have restored the phone to factory settings twice in the past four months on advice from Apple.
    Does anyone have any thoughts on this?

    ksujeff99 wrote:
    I have the exact same issue, as do some other people at the end of this macrumors thread. http://forums.macrumors.com/showthread.php?t=576888
    I have MobileMe and 3 other email accounts but I don't think that's the issue. My 3GS is consistently doing accessing the 3G network middle of the night when I have a full WiFi signal from my home network. There is no reason that I should have any data activity during this time.
    A Mac Genius told me that when the iPhone goes to sleep, wi-fi is disconnected. This means the phone is then on the cellular network. In my mind that is a design flaw. The phone goes to sleep to reduce energy usage, but the cell network uses more energy than wi-fi. That's a separate question from the data use issue, which is relevant for several reasons: cost, user control and privacy.

  • AppleScript - figured out a way to make it wait (sort of).. advice?

    i've been trying to write an applescript that acts sort of as a printing helper in sketchup (getting accurate prints from sketchup is way too confusing and actually impossible to really get it right)
    anyway, things were moving along nicely until i hit a brick wall as far as how i'd like the script to work..
    it came to a point where i needed the script to wait for the user to close a dialog in order to stop updating the variables is was getting..
    all my searches and everything i've read so far has said you can't do it in a single script but i might of figured out a way..
    here's the part i'm talking about: (the example uses textedit since i figure everyone has it and it uses the same print dialog as sketchup)
    tell application "TextEdit"
      activate
              tell application "System Events" to tell process "TextEdit"
      -- so i can get just the numbers from static text a little further down
                        set AppleScript's text item delimiters to {" "}
      -- probably a better way to talk to TextEdit than this?
      -- for sake of example, i'm doing it the same way as with sketchup
                        click menu item "Page Setup…" of menu 1 of menu bar item "File" of menu bar 1
      -- this is the part that will wait until the user clicks 'ok' in the
      -- 'page setup…' dialog.
      --the user can continue to change their paper size and the script will wait until they make a final selection.
      -- it's actually pulling the numbers from bit of text underneath the 'paper
      -- size' popup.. when the user changes the paper size, that bit of text updates
      -- and so do the script's variables..
                        repeat until focused of text area 1 of scroll area 1 of window 1 = true
                                  try
                                            set psz to value of static text 2 of sheet 1 of window 1
                                  end try
                        end repeat
      -- in my script, i also check for the paper orientation but it's not
      -- relevant for this thread..
                        set papw to first text item of psz
                        set paph to third text item of psz
      --not part of my script.. just an example of the numbers i want.
                        display dialog "width = " & papw & "
    height = " & paph
              end tell
    end tell
    i have had it fail a couple of times but in most cases, it makes it though.. i'll experiment a little more with it to try to stop those errors..
    i guess my question is -- why hasn't anyone done this before? (just kidding, they probably have but i couldn't find it online)
    or my actual question is -- is there anything inherantly wrong with this approach.. i mean, if i can get it to make it through consistently, is there a problem with it repeating / updating the variable so many times in a row? is it a drain on system resources or can it break anything etc.?
    thanks

    or my actual question is -- is there anything inherantly wrong with this approach.. i mean, if i can get it to make it through consistently, is there a problem with it repeating / updating the variable so many times in a row? is it a drain on system resources or can it break anything etc.?
    Although I'm far from being an expert in programming, I would answer NO. Imho, you've just got a brillant idea! (As for “repeating / updating the variable so many times in a row”… you could add a short delay (like “delay 1”) inside the repeat block, but I don't think it's a must.)

  • Metacity/compiz, can't figure out what to do.

    Sooo, I just installed arch linux again to play around, starting at a fresh install I installed an xserver and got it running right, then I started installing some WMs and installed lightdm and lightdm-gtk3-greeter.
    So far so good, when I do try to login all WMs show up except metacity/compiz, that's not really a problem so I decide to add the entries manually
    both are in /usr/share/xsessions
    [Desktop Entry]
    Version=1.0
    Encoding=UTF-8
    Name=metacity
    Name[en_US]=metacity
    Terminal=false
    Exec=metacity
    TryExec=metacity
    Name[en_US.UTF-8]=metacity
    Type=Application
    [Window Manager]
    SessionManaged=true
    and
    [Desktop Entry]
    Version=1.0
    Encoding=UTF-8
    Name=Compiz
    Name[en_US]=Compiz
    Terminal=false
    Exec=compiz ccp
    TryExec=compiz ccp
    Name[en_US.UTF-8]=compiz
    Type=Application
    [Window Manager]
    SessionManaged=true
    From what I can tell the entries are right, they don't throw any errors and I get to a desktop and I have a cursor (no menus of any type though)
    The issue is that I have no clue how to proceed, I configured compiz with ccsm but can't figure out how to add menus, my goal is to make it look like GNOME2 without all the bloat (all I should need is metacity and compiz, true?), another thing I want is a fancy floaty dock and conky, conky is installed and I'll configure it once my desktop looks decent, the dock I chose is cairo-dock because it looks nice (does it auto-hide? Auto hiding is absolutely critical.)
    Anyway, I did my research, I read the compiz-article on the wiki (I installed 0.9.x if it matters) but I do not know how to get the config running, the syntax for .xinitrc is rather different from a .desktop file, Google didn't help nor did the forums search function.
    Did I mention what I want it to look like? I don't think so... anyway, I want it to look like gnome2 with the applications menu and places menu (have a look at debian 6.x if you don't know what it looks like) but I am rather lost ^^;
    Sorry for being so uneducated, I hope I don't cause someone too much pain with my silly questions.
    Last edited by CubeGod (2014-02-07 06:40:16)

    Chazza wrote:The .xinitrc file is only useful if you are using startx. It is not going to make any difference to how you start sessions from lightdm. Quite frankly though, why not use .xinitrc and startx? It's by far the easiest way to autostart programs with a session. Compiz was not designed to be used as a standalone window manager and, as such, does not have an autostart utility of its own. Like I said earlier, you can put all the startup commands for the programs you want to autostart in your .xinitrc file and start the session with startx. No xsession files are required for that, of course. If you must use a Display Manager you may be able to parse startup commands through it using an xprofile file. There is a little information on that here: https://wiki.archlinux.org/index.php/Xprofile. As for your Metacity xsession file, I have no idea why you wrote that. There is no need for it. As has been pointed out earlier, Metacity is a window manager completely seperate from Compiz which is also a window manager. Metacity cannot be used alongside Compiz and is not required by Compiz itself in any way.
    Obviously, I thought you'd realize I knew that .xinitrc wasn't relevant since I added the "I thought it was only used when startx is called or am I mistaken?" but I digress; I'm not sure why you keep questioning my motives though, if I want to use lightdm then I don't want to use startx, whatever my reasons may be are rather irrelevant.
    Anyway, thanks for the link, at least it gives me something to work with (I'm sure I can figure out the syntax based on the xfce4 file)
    Oh and I know compiz wasn't designed to be used standalone but I am not going to be stopped by that, for the metacity xsession file I wrote that as a test. If I recall GNOME2 uses metacity as the window manager and compiz as the compositor (which I know is a working setup, however it was merely a test), so yes. They can be used alongside each other since compiz has a quite capable compositor.
    Chazza wrote:Ok. Fine. But you said you were after the educational experience so I was trying to suggest WM's that would be more suitable for a standalone session.
    Well yes, they may be a tad more user friendly but I have a similar philosophy with system building as playing games; Always play on the hardest difficulty.
    Chazza wrote:Why are you talking about gtk themes? They are not relevant. They are for desktop applications, they are not for window managers. When you are talking about a window manager theme you are talking about what the window border looks like and nothing else besides. What you need to understand about Compiz is that it is a window manager that does not come with its own decorator (the decorator being the progam that provides windows with borders.) As such, there are three decorators that can be used with Compiz: compiz-decorator-gtk, kde-window-decorator and emerald. The first is dependent on Metacity and uses Metacity themes. It is what is installed with the compiz-dev and compiz-bzr packages (I assume you installed Compiz with one of these packages as you said you were using the 0.9 version.) The second is dependent on Kwin and uses Kwin themes. The third is not dependent on any window manager and has its own themes. Why is there a setup like this? Because it was expected that you would use Compiz with either GNOME or KDE so it made sense to have decorators that could use the themes already available for the desktop environment's native window manager.
    Ah, a keen observation there! But if you would've paid attention I was also talking about compiz themes, you see the compiz theme I use also comes with a matching GTK theme, the GTK theme looks silly without the compiz theme and the compiz theme looks silly with other gtk themes. (that I have tried).
    Further I am aware that compiz uses three different decorators (based on choice), my theme has an emerald theme and a metacity theme included, I can pick either (isn't it nice?) and indeed I am using the compiz-dev package.
    Chazza wrote:Compiz is not a window decorator, it is a window manager, just like Metacity or Kwin or Xfwm or Mutter or Openbox etc etc. As I said above, the difference is that Metacity, Xfwm, Kwin etc all come with their own native window decorators. Compiz does not. Compiz has some decorators that can utilise the themes of aformentioned window managers.
    ah yes, I started rambling towards the end it seems, I didn't mean window decorator I meant compositor, sorry about that.

  • Palm Desktop Software (Memos) Quirky problem I'm wary of trying to figure out by myself....

    I don't use my handspring (used to) with my desktop software.   But I do have a lot of information on the computer such as addresses, my datebook, memos, etc.  This is how my memos are set up.  I use it as a subject reference chronologically like BANKING, COMPuTERS, etc.  I enter a new Title and label it ACCOUNT, as well as the category ACCOUNT.  I have about 25 categories.  In each memo, I have important info that I refer to.  COMPUTER STUFF was very important to me as it had many of my links & passwords to different sites, as well as info I want to jot down.  BANKING would contain my account #s, etc.
    Anyway, this is not the first time this has happened, but suddenly, the whole category of COMPUTERS has disappeared and so I've lost a lot of important info and yet I know it's on the computer somewhere.  I had a computer consultant who when I had a similar problem with a different category just seemed to vanish come over and after doodling with it for awhile, managed to get it back for me.  It had something to do with editing "users" I think.  Right now, the user is none, but if I change it to edit users, all the data in MEMOS disappear and I'm afraid I'll fool around with it myself and not be able to get it back myself.  But as I recall, it was a relatively simple problem.  I just can't figure out where it went.
    Also, I've finally learned to back-up, and I took a disk from 2 weeks ago, and I know I used this category many times and it should  have been on the disk as well, but it's gone from the list as well.
    I've got a new consultant coming over who thinks she knows what it may be ... something to do with configuration as I mentioned with the "user", but I'm so wary of losing everything because it has my address book, dates, etc. in it as well.  But where did it go?  It's a real puzzle to me.  When I did fool around with the menus thinking that I accidentally changed something, there was a time when the format and everything did disappear and I freaked out.  But I didn't save any changes when I restarted so everything was the same when I restarted minus COMPUTERS.  
    If anyone has any ideas, please let me know.
    Thank you.
    Post relates to: Visor Pro

    This particular board is for discussing how this forum works. Have you taken a look in the various Hotsync boards since I have no idea what OS is on your computer, or in the software board? Your answer may already be there.
    Post relates to: Palm TX

  • How to figure out suitable Enhancement Option/point

    Hi All,
    I have to limit creation of vendor for a particularly one user based on Country Code.
    For ex
    if sy-uname eq 'XYZ'.
    IF LFA1-NAME1 NE 'US'.
    ERROR MESSAGE...
    ENDIF.
    ENDIF.
    I know how to do that user user exits and was trying to figure out how can i achieve this using enhancement frame work in ECC 6.0
    I found all below Explicit Enhancement Points/Sections when i searched in Pragram SAPMF02K (xk01)
    If you just post the relevant coe, it has a better chance of formatting.
    MY QUESTIONS ARE
    1) How should i figure out which enhancement point i should use for particular issue (When the user is going from Vendor Address to Vendor control Screen while creating the vendor. It should an error mess if the user is using wrong vendor code?
    Thanks in advance
    Venki
    Edited by: venki gundla on May 31, 2009 10:05 PM
    Edited by: venki gundla on May 31, 2009 10:16 PM
    Edited by: Rob Burbank on May 31, 2009 6:37 PM

    Hi All,
    For some reason ,every thing is continous. I know it sometimes irritating but i couldn't find a way to post it
    Line by line.
    Actually
    MY QUESTIONS ARE 1) How should i figure out which enhancement point i should use for particular issue (When the user is going from Vendor Address to Vendor control Screen while creating the vendor. It should throw an error mess if the user is using wrong vendor country name than he is authorized to?
    Thanks
    Venki

  • App store says I can't download OS X 10.8, can't figure out why

    Hi there,
    I'm trying to figure out which of the system requirements I'm missing to download Mac OS 10.8 from the App Store.  When I try to purchase the app, I get a message saying "Mac OS X 10.8 is not compatible with this computer."  I want to figure out what's wrong so that I can upgrade whatever components I need to get 10.8.  I have installed additional RAM and an after-market hard drive, so I hope Apple isn't punishing me for those transgressions.
    What are the relevant specs that I can post to help diagnose this problem?  Here's the hardware overview page of the System Profiler as a starting point:
    Hardware Overview:
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro2,2
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.33 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          4 MB
      Memory:          3 GB
      Bus Speed:          667 MHz
      Boot ROM Version:          MBP22.00A5.B07
      SMC Version (system):          1.12f5
      Serial Number (system):          W87172DFW0H
      Hardware UUID:          00000000-0000-1000-8000-001B631BFFAB
      Sudden Motion Sensor:
      State:          Enabled
    Thanks!

    Compare your machine with the ones supported in:
    Mac OS X: System requirements for Mountain Lion (10.8) - http://www.apple.com/macosx/specs.html
    * MacBook Pro (Mid/Late 2007 or newer)
    From the information you provided it looks like your might be:
    http://www.everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-2-duo-2 .33-15-specs.html
    which dates 2006-mid 2007
    I'm guessing yours is simply too old.

  • I have recently had to fire my web designer who was using iWeb.  Now I'm trying to figure out how to get the site to open in iWeb on my new MacBook Pro.  Is there a way?

    I have recently had to fire my web designer who was using iWeb.  Now I'm trying to figure out how to get the site to open in iWeb on my new MacBook Pro.  Is there a way?

    Firstly iWeb CAN'T IMPORT any kind of published html code as it has no import facility.  You can however add html code, javascript and css by selecting the html snippet and placing it on your page the entering the code in here and clicking on Apply.  You DO NOT create a shape as you say - you use the html snippet and place your code in there.
    There are not really a lot of ways in which you can write code - if you want to enter small amounts of code, then you would use an ordinary text editor to do this such as Text Edit on a Mac or Text Wrangler.  If you want to add code to iWeb like this, then you would either use the html snippet method in iWeb itself or you would have to publish the site to a local folder from iWeb and open the relevant html page with a text editor and add the additional code in this way and then publish.  However, if he decided to add the code with a text editor, then you would have to upload the pages directly to the server using an ftp client - if you try to upload the site directly from iWeb, all the extra code will be overwritten.
    As for checking whether the site was created using iWeb, all you need do is view the site in Safari and then click on View and then select View Source Code and it will tell you.
    Even thoough extra code was added to the site and he might well have done this by publishing to a local folder and adding the code with a text editor, he should still have the domain file for the site too.
    Ask again.  I'm sure that for adding quick code, most would not want to use programmes such as Dreamweaver, but a simple text editor will suffice.  As OT already said, if he claims that he does not have the domain.sites file, then try Flux 4 which is a web design programme and has full import facilities.  At least this way, if he just gives you the published version of the site, you have some way of opening it.
    You can download a free trial of Flux 4 and you can also purchase the full version from the Mac App Store if you decide you like it.

  • Help Figuring Out Project Settings?

    I have footage from 2 different cameras. I think the cameramen just aren't too sure what they're talking about when it comes to the formats shot in, which in turn leave me a bit confused.
    I was editing with HDV 1080p 25fps settings pretty fine, until I decided to replace a clip with an AE composition, and the next day playback became choppy for me. In trying to figure out what was wrong, I realized the clips for both cameras were saying 29.9 in premiere even though my cameraman said it was shot @ 25 fps on the Sony cam. So I am taking a guess here in saying I should probably be editing with project settings to match that 29/30 FPS, right?
    Using mediainfo I am also seeing that the footage is 1080i, so should my project settings for these clips be HDV 1080i(60)? Any more info I can provide if needed, but I am already in a bind having to start this project over, but I am confused as to why I was getting playback just fine and then another day no matter what settings I used HDV playback got choppy. Currently re-installing CS4. Any help greatly appreciated as I am still new to this.

    Yeah I was told it was done at 25fps, and that the Sony camera had 25, not 24 and that is very well an option in Premiere, but I'm guessing Mediainfo is a lot better to decide what to do it in. Just finished installing premiere again (I assume that will help with my stuttering in playback) and am going with HDV 1080i30 (60i) since that gives me 29.9 fps and well, 1080i instead of p. I tend to get overly worried about these things. I hope this is the right thing to use. I appreciate your feedback.
    Not sure if this is relevant, but one camera gives me mpegs while the rest of footage is MP4.

  • How to figure out which tables are using Extensible Optimizer?

    Hi guys,
    I'm sure that there're several tables those are associated with Extensible Optimizer in my database, I can also find the Extensible Optimizer relevant type and the implementation of interface functions ODCIGetInterfaces, ODCIStatsTableFunction.
    I'm curious to know is there a way to figure out which tables are associated with this Extensible Optimizer, does anyone have any clues?
    Database: oracle 11.2
    Thank you in advance.

    Hi,
    Can you please check the below link.It may help you:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28425/ext_optimizer.htm
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com

  • Organization: Figuring out what photos are organized into albums

    I can't seem to work out a straightforward way of organizing photos once I import them into Aperture 1.5. I shot 2Gb of shots today and imported them. As I start to create Albums within my Project, I drag them to their appropriate places. But sometimes I'll miss one or get interrupted by a phone call, etc.
    Or I'll start out with five albums of different categories, say Front Façade, Interior Lobby, etc. (architectural shots). Then I realize that I've got so many Stair shots that I want another album just to keep those organized. But then some shots are stairs in the lobby and I can't figure out if I've put them in one of the albums or neither. I have to scroll through tons of shots to figure it out. It's always confusing.
    Has anyone figured out a good workflow for bringing photos in and ensuring that each actually winds up in an album?
    PowerBook G4 17   Mac OS X (10.4.8)  

    I've finally figured out the solution to tracking which images have been 'assigned'...it's through the use of keywords and smart albums, not regular albums. It also lets you know whether you've missed assigning any images:
    Create a Smart Album called "No Keywords". In the Search HUD that comes up when you do this, click on the "+" drop-down menu and select "IPTC". Click the checkbox next to the new IPTC line that's added to your search criteria, and select "Keywords" and "is empty" from the two drop-down menus. By using this or the "is not empty" or the other criteria in different/multiple combinations (you can add the IPTC line more than once), you can sort for anything.
    Once you've set this up, start applying keywords to images. They will 'disappear' from this Smart Album. When the Smart Album is empty, you've assigned a keyword to everything. Keep this Smart Album in case you import other images or to check periodically to see if any images have been 'orphaned'.
    Then use your keywords list to create Smart Albums that have keywords singly or in combination. I do this now and don't create regular albums at all.
    One great piece of advice I've come across and will repeat here is that it's REALLY best to create ALL your keywords BEFORE you start applying them. In my first couple of projects I created them on the fly and realized that they were not perfect, started modifying, realized that some images needed more specificity, etc. Simply put, I made a mess. Now as I scan through an imported shoot I create the keywords first. Then I apply all the keywords I've made before creating any new ones or renaming ones I created in the first round.
    Only then, once all the above-mentioned Smart Albums are created, might I add or adjust keywords. At this point it won't throw a wrench into the works and make me lose my bearings.
    I'll continue to improve my workflow, but this finally works well for me, and it's pretty time-efficient.
    Anyone have any gems to add to this thread before I mark it answered?
    Message was edited by: Erick Mikiten

  • How to find out relevant Infosources and Infocubes for Datasources (LO)

    Hi Gems,
    I am new to BW.
    How to find out relevant Infosources and Infocubes for Datasources for LO Cockpit
    any help site pls.
    Thanks in advance

    1. make sure that your datasources have activated (trans RSA5 in SAP Source System) from the SAP Source system (Ex: R/3 or SCM System)
    2. after that you have to run trans RSA9 in SAP Source System to transfer new datasource in to BI System.
    3. log-on into BI System, run trans RSA1, choose SourceSystem Tab in the left panel. Right click on to your SAP Source System then choose <b>Replicate</b>.
    4. in the left panel choose BI Content tab, select infoObjects by infoArea.
    5. then Click on Grouping, select in <b>Dataflow Before and afterward</b>. Click Collection Mode, select Collect Automatically.
    6.in the middle panel, expand "Supply Chain Management" infoArea, select both <b>Characteristics: Logistics General</b> and <b>Key Figures: Logistics General</b>. Right click on it and select <b>Insert Objects for Collections</b>.
    7. After the objects have been inserted into Collected Objects then choose install with option Install in Background.
    8. Wait for the result.
    <b>Pls give point if you see its helpful.</b>
    Regards,
    Chuong Hoang

  • "ATP Categories" tab on the  CTM:Global Customizing Settings screen

    Hi All,
    I want to understand the usage of the "ATP Categories" tab on the  CTM:Global Customizing Settings screen (/SAPAPO/CTMCUST).
    Where do we make use of the settings on this screen for the CTM run. The screen talks about the "Subsititute categories for PP/DS with" , "Planning are for SNP categories", "Subsitute categories for SNP with", etc. Pls elaborate the functionalities of these parameters. Any document on the same will be highly appreciated.
    Reg
    Sachin

    Sachin
    Based on my understanding the ATP tab does the equivalent of key figure function in a planning book for Heuristics. It helps CTM identify the various types of demand and receipt categories - to give a differential treatment to the same. It gives ability to also leverage many business-rule specific features/functionalities like substitution.CTM can be run for PPDS detailed planning and rought cut bucket planning for SNP. The planning functions of PPDS and SNP thus require different ATP categories for being able to discriminate between the two.
    Srinivas

Maybe you are looking for