Tiny animation big nightmare

Hi there,
I've pulled together an animation in After Effects and have rendered it to export a .mov
have now put it on my timeliine in Adobe Premiere Pro and exported onto a Mini DV.....theeeeeeeeen....I captured it on Apple Mac using FCP. Now have a nice wee looping animation that doesn't look too bad.
My problem begins with exporting another .mov and then importing into DVD studio Pro. It has brought with it a couple of black frames with it at the beginning..obviously no go if it's to be a seamless loop. Any ideas how I can trim this? It all looks fine in FCP
Hope you guys can help. This is the first time I've tried to cut a DVD. It's Pal and 4:3 ration.
Fingers crossed.
Carol Ann

Hi there,
I'll go post it in the forum you mentioned. But it's a step further on with your possible solution. Not at work now so it'll have to wait till the morning
Thanks for informing me of the other forum to post.
regards
Carol Ann

Similar Messages

  • Its looking like on big nightmare..

    So I just bought a used older ibook from 2000, and the thing seems to be this big problem now. it did not come with any softwear, so i wanted to reformat the machine using my tiger cd's but the thing did not come with a DVD drive so i went and bought a usb external one, when I was closing down the comp. I hit log off option, now I did not know that the guy who sold me the comp had a log in password, and now I cant get in contact with the guy who sold me the comp, and I cant get past the log in screen...is there any way to still reformat? what can I do to get this comp up and running. A also had to buy more memory b/c it only came with 128 and tiger wont support....i need help .
    thank you

    Hello! Sorry for your troubles. Assumming that the OS installation will be legal under your license I would suggest you try the following. First check the Apple site and determine if the computer needs any firmware updates BEFORE you attempt any install. Then I would suggest you using another Mac with a dvd drive and boot into firewire target disk mode using the other Mac as the host and the iBook as the target and then do your intsall. Tom
    Firewire target Disk Mode
    http://docs.info.apple.com/article.html?artnum=58583

  • Flash animation big but with no browser scrolls

    Here's my problem,
    I'm building a website that occupies full screen size (100%),
    i'm doing this so i can adapt to many resolutions and not do a
    fixed size site.
    So here's my problem. I want a flash animation banner to be
    100% too, without resizing, streching or shrinking. So what i
    thought was creating a large size animation and then simply not
    have the browser's scrollbars. Much like the images you can put in
    table cells background.
    Still i can't seem to put my large in width animation to not
    make the browsers scroll appear.
    Can someone help me out? Thanks

    It's called crashing. Unfortunatly its common but it can't be fixed. A restore will help but not fix

  • Flash Alternative for developing app with lots of 2D Animation

    First let me say, I know Flash does not run on iPad. And I'm not looking for an alternative to Flash Video.
    I want to create an app for the iPad, with a lot of full screen, 24 frames-per-second animation. Basically an interactive Animated Movie, like the game Dragon's Lair, from days of yore.
    I know how to do this in Flash, using the timeline and drawing and animation tools, and using Actionscript to track user clicks and trigger events in the movie.
    Are there any alternative tools I can use for iPad app development, that will allow me to:
    -- Draw directly in the tool
    -- Do frame by frame animation in the tool
    -- Uses a timeline
    -- Uses vector images to keep the file size down
    -- Has a scripting language that will allow me to track the user clicking on invisible buttons and trigger new animations?
    I've looked at all of Apple's Developer tools for the iPhone and iPad, but they all seem to use Bitmapped Sprites which would make the file size way too big, and animation a nightmare.
    Thanks in advance for any help on this.
    Message was edited by: shackleram

    shackleram wrote:
    First let me say, I know Flash does not run on iPad. And I'm not looking for an alternative to Flash Video.
    I want to create an app for the iPad, with a lot of full screen, 24 frames-per-second animation. Basically an interactive Animated Movie, like the game Dragon's Lair, from days of yore.
    I know how to do this in Flash, using the timeline and drawing and animation tools, and using Actionscript to track click and trigger events in the movie.
    Are there any alternative tools I can use for iPad app development, that will allow me to:
    -- Draw directly in the tool
    -- Do frame by frame animation in the tool
    -- Uses a timeline
    -- Uses vector images to keep the file size down
    -- Has a scripting language that will allow me to track the user clicking on invisible buttons and trigger new animations?
    I've looked at all of Apples Developer tools for the iPhone and iPad, but they all seem to use Bitmapped Sprites which would make the file size way too big, and animation a nightmare.
    Thanks in advance for any help on this.
    Well, there are several 3D game developers for the iOS operating system including EA Sports and id Software's Doom Engine. And in the Apple Software Development Kit for iOS, there are numerous API's for game development. I think you should google game development for the iOS (ipad and iphone), and see what they've got.

  • Tiny Encrytion Algorithm (TEA)

    Hi Guys!
    I am currently developing the Tiny Encrytion Algorithm
    Currenlty is takes in a number to encrytp and works fine but I want to ammend this so it takes in a string.
    My current "get" method is as follows:
    public void getNumber() {
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            int count = 0, idx = 0;
            try {
                String number = br.readLine();
                while (count <= 1) {
                    num_array[count++] = Integer.parseInt(number.substring(idx, idx + 2));
                    idx += 2;
            } catch (IOException ex) {
                ex.printStackTrace();
            } catch (NumberFormatException ex) {
                ex.printStackTrace();
                System.out.println("You have entered an invalid number");
        }How do I go about amending this to take in a String, but still cut it up and save it to an Integer array? (The integer array is required for the encrytion process at a later stage).
    So in other words, i need to get from String to Integer, while cutting it up!!
    I have played about with the charAt() and toBytes() method but i'm just going round in circles! :(
    Cheers!!!
    Edited by: smitty350z on Oct 31, 2007 4:49 AM

    HI Sabre,
    Thanks so much for the immediate reply. I can paste the entire equivalent TEA algorithm that i wrote in java script. That didnt work, then i tried the Java side, bcos eventually i can call it from java script. The main task is to embed the script in to my load test runner. For your reference, please see below the java script equivalent that was written, and debugiing this a big nightmare. Sorry for the format of the javascript codes, its a bit annoying.
    Thanks so much
    function encrypt(src, key, token) {
              if(src.length == 0) return "";
    alert("strToChars(src):" + strToChars(src));
    alert("charsToLongs(strToChars(src)):" + charsToLongs(strToChars(src)));
    alert("hexToChars(key):" + hexToChars(key));
    alert("charsToLongs(hexToChars(key)):" + charsToLongs(hexToChars(key)));
              var v = charsToLongs(strToChars(src));
              var k = charsToLongs(hexToChars(key));
              var n = v.length;
              if (n % 2==1) v[n++] = 0;
              tempv = new Array(2);
              newv = new Array(v.length);
              for (i=0; i<v.length; i=i+2){
                   tempv = tea_code(k,v,v[i+1]);
                   newv[i] = tempv[0];
                   newv[i+1] = tempv[1];
              var encStr = charsToHex(longsToChars(newv));
    alert("encStr"+ encStr);
              return [key,(token + encStr)];
    function strToChars(src) {
         var codes = [];
         var strArr = src.split("");
         strArr1 = new String(strArr);
         var sl = strArr.length;
         var cnt = 0;
         var schar="";
         var intStringLen=strArr1.length;
         for (var intCur = 0; intCur < intStringLen; intCur++) {
              codes[intCur] = strArr1.charCodeAt(intCur);
         return codes;
    function charsToLongs(chars) {
         var tlength = Math.ceil(chars.length/4);
         var temp = [];
         var ti = 0;
         for(var i = 0; i<tlength; i++){
              ti = i*4;
              temp[i] = (((chars[ti] << 24) + (chars[ti+1]<<16)) + (chars[ti+2]<<8)) + chars[ti+3];
         return temp;
    function hexToChars(hex) {
              var codes = [];
              var hexArr = hex.split("");
              var hl = hexArr.length/2;
              for(var i=0;i<hl;i++) {
    //               codes[i] = int("0x"+hexArr[i*2]+hexArr[(i*2)+1]);
                   codes[i] = Math.round("0x"+hexArr[i*2]+hexArr[(i*2)+1]);
              return codes;
    function tea_code (k,y,z) {
         sum = 0;n = 32;
         //while (sum != -957401312) {
         while (n-- >= 0) {
              y = Math.round(y + ((((z << 4) ^ (z >>> 5)) + z) ^ (sum + k[sum & 3]))); y = y|0 ;
              sum = Math.round(sum + 0x9E3779B9);
              sum = sum|0;
              z = Math.round(z + ((((y << 4) ^ (y >>> 5)) + y) ^ (sum + k[(sum >>> 11) & 3]))); z = z|0 ;
         return [y,z];

  • Tiny mov import from PS kills AE

    Not sure if this is a bug or if I'm doing something wrong. I'm making tiny animations in Photoshop, (72dpi greyscale 10cm x 10cm, approx 2 seconds length, filesize around 22k). I then export from Photoshop at the default setting, Quicktime in .mov format.
    I then import this into AE (where I already have 2 huge .mov files, over 250Mb, playing, which were rendered out of AE and imported back in - these are playing back without any problems or issues.) The tiny imported animations slow down AE to the point of rendering it totally useless, spinning wheel of doom etc. Does anyone have a clue why this is happening? I have a very fast system and AE can cope with many multi-layered huge files without any issues, but this particular problem just freezes AE up almost completely.
    Using latest version of AE and PS CS5 extended. (maybe I should be using the latest version of PS too, I just haven't got round to installing it yet).
    IMac 3.4Ghz Intel Core i7, 16GB memory.
    thanks

    I'm making tiny animations in Photoshop, (72dpi greyscale 10cm x 10cm, approx 2 seconds length, filesize around 22k). I then export from Photoshop at the default setting, Quicktime in .mov format.
    Ah, a classic example of Photoshop thinking!  It's time to think in After Effects.
    Forget all about dpi.  The concept doesn't exist in AE.  Photoshop only utilizes it as a handy guide for common video resolutions, and it's becoming less useful every day.  AE deals in PIXELS:  the number of horizontal pixels  and vertical pixels in a comp.  DPI is completely irrelevant.
    Here's an example: In Phiotoshop at 400 DPI, a 1-inch x 1-inch image has dimensions of 400x400 pixels.  At 100 DPI, a 4-inch x 4-inch image has dimensions of 400x400 pixels.  Imported into AE, both images are precisely the same size: 400x400 pixels
    And if DPI means, "dots per INCH",  it must be tough to work in metric linear measures like centimeters, n'est-ce pas?
    I then export from Photoshop at the default setting, Quicktime in .mov format.
    The ".mov" file extension simply indicates that the file is a quicktime movie.  Quicktime movies are simply media containers.  The file can be encoded via a ny number of schemes, called Codecs.  Here's a metaphor: an .mov file is a bottle.  A bottle can hold many different kinds of liquids: beer, milk, water, juice, gasoline... you get the idea.  Those liquids are the codecs.
    The codecs of some Quicktime Movies don't work well in After Effects.  Your configuration of Photoshop may default to one of the bad ones: we can't tell.  But you can --  highlight the problem footage in the project window and look at the information at the very top.  The identity of the codec will be revealed there.
    Clearer now?

  • Lite windows manager that can do the launch animation on click?

    I have been using LXDE with Openbox on old computers. Everything run quiet well, but I find that newbies tend  to click multiple times on application icons because Openbox does not give any visual feedback that an application is loading. So what happens is they end up launching five instance of Firefox because they did not understand that their first click on that little orange icon was successful.
    Can anyone suggest a windows manager that will run fast on old computers and produce some sort of visual feedback when an application icon is clicked. Something like the that tiny animated circle that lets user know that the program has been launched and just needs time to finish loading.

    WindowMaker. Clicked tile gets white for a moment -- additional clicks do nothing until application is loaded, since then they switch to already opened window. It is also one of fastest and smallest windowmanagers used today.

  • Customer master details

    hello guru's,
                    my requirment is i need to upload Customer Master details using BAPI  in LSMW. can anyone tell me the Business Object Type and Method name ..i know message type and idoc type for Customer Master bt i dont know how to search the Business Object type and Method...

    Hi,
    Object          0050  
    Method          0000
    Program Name    RFBIDE00
    As an alternative to using u2018Transaction Recordingu2019, you could also use a standard SAP object to update Customer Master Records. Business Object u20180050u2019 is already pre-defined in the system with standard Batch Input Interface Program u2018RFBIDE00u2019.
    Create an Object CUST_OBJ within Project as LSMW_DEMO and Subproject as CUSTOMERS as shown in Figure 20.
    Figure 20  LSMW Object with Standard SAP Object
    Note! Only steps that are different from the recording method are listed here.
    Step 1: Maintain Object attributes
    You will be updating the customer master records with the help of Standard Batch Input; therefore, choose radio-button Standard Batch/Direct Input as shown in Figure 21. Enter Object u20180050u2019 for Customer Master records and default method u20180000u2019 and click on Save. 
    Figure 21 Standard Batch/Direct Input Object Attributes
    Step 4: Maintain Structure Relations
    Sales view of Customer Master is stored in table KNVV. Accordingly, you need to update structure BKNVV. However, in addition, the Standard Object u20180050u2019 also requires updates to BGR00, BKN00 and BKNA1 structures. (If you do not maintain Structure relations for mandatory entries, you might get a message such as u2018Target structure BKNA1 needs a relation to a source structureu2019.) 
    Even though you donu2019t want to update any fields in these structures, you need to create a relationship with source structures. In all, you need to create relationship for four target structures. 
    Create relationship between source structures XD02S with these target structures with icon u2018Create Relationshipu2019  . 
    Keep Cursor on these four target structures and click on icon u2018Create Relationu2019 and structure relations are maintained as shown in Figure 22. 
    Figure 22 Structure Relation
    Step 5: Maintain field mapping and conversion rules
    -- Keep your cursor on u2018TCODEu2019 field and click on u2018Insert Ruleu2019 icon 
    Figure 23 LSMW Conversion Rules
    Choose radio button u2018Constantu2019 (Figure 23) to enter value u2018XD02u2019 transaction code.
    -- Keep your cursor on field u2018KUNNRu2019 and click on u2018Assign source fieldu2019 icon 
    Choose source field u2018Customeru2019 from source structure u2018XD02Su2019. (See Figure 24.)
    Figure 24 Assign Source fields
    -- Similarly, choose source fields for Sales Organization, Distribution Channel, and Division. (See Figure 25.)
    Figure 25 Field Mapping and Conversion Rules
    -- Scroll down to structure BKNVV fields and assign source fields to three fields Sales Office, Sales Group, and Customer Group (Figure 26).
    Figure 26 Field Mapping and Conversion Rules
    Save and go back to main screen.
    Step 12: Display Converted data
    When you convert data, LSMW automatically converts into the appropriate structure layouts, as required by Standard program (RFBIDE00). (See Figure 27).
    Figure 27 Converted data into multiple structures
    Note that if you had only one record in source file, the converted file has four records.
    Earlier, creating this input file, so that the standard interface program can read it, was a big nightmare, the primary reason being that it could have multiple record layouts. Even for a simple conversion with one input record, you would have to create this complex file with many record layouts. The advantage of LSMW is that it prepares these multi-layout files automatically.
    Step 13: Create batch input session
    Once source data is converted in internal format, you can create a BDC session to process the updates (Figures 28 and 29). 
    Figure 28 Create BDC Session
    Figure 29 BDC Session u2018CUST_OBJu2019 created.

  • Phantom Joystick or M$ "Digital Media" Keyboard !? [solved]

    Hi,
    Over the past couple of days I've been trying to get a python pygame based game to work. Currently I've had to disable the joystick code in the game to prevent the character relentlessly moving north-west across the screen.
    As I don't have a joystick I assumed the game code logic to be faulty in it's handling of non-existent joysticks. However I have since tried an update for another game and discovered the character relentlessly runs around in anticlockwise circles and then remembered this happened the last time I tried that game some time last year (IIRC).
    The python game spits out "SDL_JoystickGetAxis value:-32767".
    using jstest (from joyutils) on /dev/input/js0 says: 
    Joystick (Microsoft Microsoft® Digital Media Keyboard) has 37 axes and 57 buttons. Driver version is 2.1.0.
    jstest also reveals the same numerical value as the SDL message above.
    While playing either of the games, unplugging the keyboard and/or mouse has no effect on the relentless movement.
    I'm only a very casual gamer so haven't found this behaviour elsewhere. The two games I've found to be effected are E.S.P Hadouken, and, Tiny And Big (demo). Games I've found to behave themselves are Minecraft, and OpenRA.
    What other tools/utils/diagnostics could I try to pinpoint the problem?
    Cheers,
    James.
    Last edited by jwm-art (2012-06-21 23:31:27)

    Hi,
    there are two launchpad bugs, the comments say it's a kernel thing:
    https://bugs.launchpad.net/ubuntu/+sour … bug/987622
    https://bugs.launchpad.net/ubuntu/+sour … bug/987877
    I worked around it by making the corresponding js* devices have permissions 0000.
    In /usr/lib/udev/rules.d/52-ms-keyboard.rules:
    SUBSYSTEM=="input", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="0745", KERNEL=="js[0-9]*", MODE="0000"
    your idProduct is probably different.
    $ udevadm info --query=all --name=/input/js0
    P: /devices/pci0000:00/0000:00:02.0/usb2/2-3/2-3:1.2/input/input56/js0
    N: input/js0
    E: ID_MODEL_ID=0745
    This should show your idProduct as ID_MODEL_ID.
    $ lsusb
    Bus 002 Device 015: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth
    Here it's the id part after the ":"
    Unplugging and replugging the keyboard should have udev run the new rule.
    does that work for you?

  • Problem with a PLSQL procedure

    Hi Guys
    Here a very small stored proc.
    CREATE OR REPLACE procedure PRODDATA.LECTX123 is
    type x123_aat is table of PRODDATA.CLIENTS%ROWTYPE index by PLS_INTEGER;
    l_x123 x123_aat;
    begin
    select * bulk collect into l_x123 from PRODDATA.CLIENTS;
    FOR indx IN 1 .. l_x123.COUNT
    LOOP
    null;
    END LOOP;
    end;
    A call to this procedure from SQL-PLUS give us a big nightmare. Paging space is 100% used and the HP-UX partition must be restarted !!!
    Why memory consumption on all the systems
    Global memory system is 120 GB
    SGA_TARGET = SGA_MAX_SIZE = 2 GB
    PGA_AGGREGATE_TARGET = 256 MB
    IT's very strange.
    Regards
    A.G.

    Andre-Guy wrote:
    It was just a test to reproduce an initial error. That mean that, to secure my servers I need to limit ressources on Oracle background processes to avoid this. IT's a solution but I agree not the explaination of this curious behaviour. What is curious about PL/SQL doing as instructed, fetching 16 million rows and attempting to allocate sufficient memory (private process memory) to store these rows?
    You can do the same with C/C++ program and a malloc() call. You could cause it by trying to load a 4GB text file into an editor on the server.
    The only curious thing in this regard is not using bulk processing in PL/SQL as it is supposed to be use. Bulk fetching is not about caching data in the PGA (PL/SQL private and dedicated memory), but about reducing context switching.
    As for "+limiting resources to avoid such a problem+", what about protecting the server against cartersian joins? Or badly designed SQL? Or a row-by-row processing instead of processing data sets? And so on...?
    Just where do you draw the line in trying to make the server (and its resource utilisation) idiot proof? Is it not better to educate these idiots in using the server correctly? Which means that instead of the server spending time trying to protect itself, it spends time running well designed and written production code?
    IMO the problem you describe is not one about server resource abuse, but ignorance. And that one fixes not by protecting the server, but by curing the ignorance. Doing bulk processing correctly is not rocket science either.

  • I just put in a new C drive and now my pictures will not come up in Bridge and CS3.

    Most of my pictures are .nef and now they open very tiny, not big at all.  What am I doing wrong???
    Thanks

    You don't say what camera produced the .NEF files.
    Have you updated the Adobe Camera Raw plug-in since re-installing?

  • Partner function upload-lsmw

    Dear Experts,
    how to upload partner functions by using LSMW. I developed LSMW and if i go to partner function tab there is only one partner function field is available I need to upload 4 partner functions. Can any one help me out in this regard.
    regards,
    siva

    Hello Sivasai Myneni,
    Demo Example 1
    LSMW to Update Customer Master Records with Transaction Recording
    Call Legacy System Migration Workbench by entering transaction code LSMW. Every conversion task is grouped together as
    Project / Subproject / Object structure. Create a Project called LSMW_DEMO and a Subproject as CUSTOMERS and Object as
    CUST_obj as shown in Figure 1.
    Figure 1 Conversion Task with Project, Subproject and Object
    The main screen of LSMW provides wizard-like step-by-step tasks, as shown in Figure 2. To complete your data conversion, you
    need to execute these steps in sequence. Once a step is executed, the cursor is automatically positioned to the next step.
    Note that these steps may look different depending upon your Personal menu settings. You could make step numbers visible by
    ‘Numbers on’ icon or hidden by ‘Numbers off’ icon. You can execute a step by double-clicking on the row. Toggle icon
    ‘Doubleclick=Display’ or ‘Doubleclick=Edit’, makes the step in ‘display’ mode or ‘change’ mode.
    Figure 2 LSMW Wizard – initial screen
    Step 1: Maintain Object attributes
    In this example, you will be updating the customer master records with the help of recording a transaction (XD02). Choose radio
    button Batch Input Recording and click on the recording overview icon to record the R/3 transaction. Enter the Recording name as
    XD02_REC, the description as Customer Master Updates Recording, and the transaction code as XD02.
    Figure 3 Object type ‘Transaction Recording’
    The system calls the transaction code XD02 and prompts you to complete the Change
    Customer transaction, as shown in Figure 4. Enter the key customer information (I entered customer number 1000, sales
    organization 1000, distribution channel 01, and division 00) and choose ‘Sales’ view within ‘Sales area data’. Make changes to
    these three fields (I entered, sales office 1010, sales group 110, and customer group 01) and save the transaction.
    Figure 4 Transaction recording for Transaction Code ‘XD02’
    Once the transaction is completed, R/3 records the flow of screens and fields and saves the information, as shown in Figure 5.
    Figure 5 Transaction recording overview
    Note that the fields are populated with default values. The values you entered when you recorded the transaction are set by
    default.
    Note that if you have more fields in the recording than needed, you can remove them by clicking ‘Remove Screen field’ icon.
    Observe that the transaction-recording process stores field names in a technical format. By pressing the F1 key on individual
    screen fields and then pressing the F9 key, the system displays technical names. You then can replace the technical names with
    descriptive names. Double-click on the field RF02D-KUNNR and enter the name as KUNNR and the description as Customer
    Account Number and remove the default value. (See Figure 6.)
    Figure 6 Field attributes
    Similarly, double-click on all other fields with default values and make appropriate changes. Once you have made changes, the
    recording overview screen looks like what you see in Figure 7.
    Figure 7 Transaction Recording Overview – with screen field attributes
    Save your changes. When you go back to the initial screen, you will see that the initial screen steps have changed. Since you want
    to import data via the BDC method, the Direct Input and IDoc-related steps are hidden, as they are not relevant.
    Step 2. Maintain Source Structures
    Give a name and a description to the source structure (Figure 8).
    Figure 8 Source Structure
    Step 3. Maintain Source Fields
    In this step, you need to list what fields are present in the source structure. The easiest way is to click on ‘Table Maintenance’ icon
    to enter Fieldname, Type and Length for each field as shown in Figure 9.
    Figure 9 Source fields of source Structure
    Note that your input file will have four fields as key fields and you need to update three fields in the system.
    Step 4: Maintain Structure Relations
    Execute a step to ‘Maintain Structure Relations’. (See Figure 10.) Since, there is only one Source and Target Structure, the
    relationship is defaulted automatically.
    Figure 10 Structure Relation
    Step 5: Maintain field mapping and conversion rules
    Field RF02D-D0310 represents that you chose ‘Sales view’ for the customer Master screen accordingly its value should be set to
    X. Keep your cursor on field RF02D-D0310 and click on Constant rule icon to choose the constant value of ‘X’.
    If your source file already has the field value, you choose rule ‘Source Field’.
    Keep cursor on field ‘KUNNR’ and click on ‘Assign Source field’ icon to choose source field CUSTOMER from structure XD02S as
    shown in Figure 11.
    Figure 11 Assign source fields
    Similarly, assign ‘Source Field’ rules to the remaining fields.
    Once all the fields are mapped, you should have an overview screen as shown in Figure 12.
    Figure 12 Field mapping and Conversion rules overview
    Step 6: Maintain fixed values, translations, user-defined routines
    You can also maintain re-usable translations and user-defined routines, which can be used across conversion tasks. In this case,
    that step is not required.
    Step 7: Specify files
    In this step, we define how the layout of the input file is. The input file is a [Tab] delimited with the first row as field names. It is
    present on my PC (local drive) as C:\XD02.txt. (See Figure 13.)
    Figure 13 File attributes
    Create an Excel file (Figure 14) with your data and save it as a Tab-delimited text file on your local drive (C:\) and name it XD02.
    txt.
    Figure 14 Source data in Excel file (saved as Tab delimited file)
    Step 8: Assign files
    Execute step ‘Assign Files’ (Figure 15) and the system automatically defaults the filename to the source structure.
    Figure 15 Assign file to Source Structure
    Step 9: Read data
    In this step, LSMW reads the data (Figure 16) from the source file (from your PC’s local drive). You have the option to read only
    selected rows and convert data values to Internal format.
    Figure 16 Read Data
    Step 10: Display read data
    This step (Figure 17) is optional. If required, you can review the field contents for the rows of data read.
    Figure 17 Display Read Data
    Step 11: Convert data
    This is the step that actually converts the source data (in source format) to a target format. Based on the conversion rules defined,
    source fields are mapped to target fields.
    Step 12: Display Converted data
    Again this is an optional step to view how the source data is converted to internal SAP format (Figure 18).
    Figure 18 Display Converted Data
    Step 13: Create batch input session
    Once the source data is converted in an internal format, you can create a batch session to process updates (Figure 19).
    Figure 19 Create Batch Input Session
    Step 14: Run Batch Input Session
    You can execute the BDC session by Run Batch input session. Executing a batch input session is a standard SM35 transaction for
    managing BDC sessions. Once you have successfully executed the batch input session, the customer master records are updated in
    the system. You can confirm this by viewing the customer master records (XD03).
    Note! Browsing thru these 14 steps, you may get a feeling that this is a very lengthy and time-consuming activity. However, for
    the purposes of demonstration, I have made it detailed. Although it looks lengthy, actually it takes hardly few hours from start-to-
    finish! After playing around with few simple LSMW scripts, you will find it so easy to change and create more complex ones.
    Demo Example 2
    LSMW to Update Customer Master Records with Standard Object
    As an alternative to using ‘Transaction Recording’, you could also use a standard SAP object to update Customer Master Records.
    Business Object ‘0050’ is already pre-defined in the system with standard Batch Input Interface Program ‘RFBIDE00’.
    Create an Object CUST_OBJ within Project as LSMW_DEMO and Subproject as CUSTOMERS as shown in Figure 20.
    Figure 20 LSMW Object with Standard SAP Object
    Note! For the Demo example 2, I will list only those steps that are different from the first demo example.
    Step 1: Maintain Object attributes
    You will be updating the customer master records with the help of Standard Batch Input; therefore, choose radio-button Standard
    Batch/Direct Input as shown in Figure 21. Enter Object ‘0050’ for Customer Master records and default method ‘0000’ and click
    on Save.
    Figure 21 Standard Batch/Direct Input Object Attributes
    Step 4: Maintain Structure Relations
    Sales view of Customer Master is stored in table KNVV. Accordingly, you need to update structure BKNVV. However, in addition,
    the Standard Object ‘0050’ also requires updates to BGR00, BKN00 and BKNA1 structures. (If you do not maintain Structure
    relations for mandatory entries, you might get a message such as ‘Target structure BKNA1 needs a relation to a source structure’.)
    Even though you don’t want to update any fields in these structures, you need to create a relationship with source structures. In
    all, you need to create relationship for four target structures.
    Create relationship between source structures XD02S with these target structures with icon ‘Create Relationship’ .
    Keep Cursor on these four target structures and click on icon ‘Create Relation’ and structure relations are maintained as shown in
    Figure 22.
    Figure 22 Structure Relation
    Step 5: Maintain field mapping and conversion rules
    – Keep your cursor on ‘TCODE’ field and click on ‘Insert Rule’ icon
    Figure 23 LSMW Conversion Rules
    Choose radio button ‘Constant’ (Figure 23) to enter value ‘XD02’ transaction code.
    – Keep your cursor on field ‘KUNNR’ and click on ‘Assign source field’ icon
    Choose source field ‘Customer’ from source structure ‘XD02S’. (See Figure 24.)
    Figure 24 Assign Source fields
    – Similarly, choose source fields for Sales Organization, Distribution Channel, and Division. (See Figure 25.)
    Figure 25 Field Mapping and Conversion Rules
    – Scroll down to structure BKNVV fields and assign source fields to three fields Sales Office, Sales Group, and Customer Group
    (Figure 26).
    Figure 26 Field Mapping and Conversion Rules
    Save and go back to main screen.
    Step 12: Display Converted data
    When you convert data, LSMW automatically converts into the appropriate structure layouts, as required by Standard program
    (RFBIDE00). (See Figure 27).
    Figure 27 Converted data into multiple structures
    Note that if you had only one record in source file, the converted file has four records.
    Earlier, creating this input file, so that the standard interface program can read it, was a big nightmare, the primary reason being
    that it could have multiple record layouts. Even for a simple conversion with one input record, you would have to create this
    complex file with many record layouts. The advantage of LSMW is that it prepares these multi-layout files automatically.
    Step 13: Create batch input session
    Once source data is converted in internal format, you can create a BDC session to process the updates (Figures 28 and 29).
    Figure 28 Create BDC Session
    Figure 29 BDC Session ‘CUST_OBJ’ created
    Regards
    AK

  • Append file extension

    I want to shut off the automatic append file extension when saving a file in Illustrator CS3 to not have the .ai appear at the end of the file name. How do I do this?

    In a manufacturing company where naming conventions are in place, we don't want .ai placed into the file name on certain files. I am running a Mac and never had to have an extension in the filenames before cause Macs always hid the extension? I have the Finder preference to not show extensions but since Illustrator is placing it as part of the filename in the save dialog, it shows no matter what. What does adobe expect us to do, click on the file in the Finder and get infor, then click hide extension? We are making the conversion from Freehand to Illustrator (not by choice) and this is turning into a big nightmare on a lot of issues.
    Give me a lecture on the mapping issue. If I remove the .ai in the save dialog box before saving, I haven't seen any issues yet. My applescript studio applications don't save the .ai when they drive Illustrator. No issue there either. Tell me what you know about mapping issues.
    Don't want the app to automatically append file extension. Can it be done.... Yes or No?

  • Cross-platform shortcut keys for Actions

    I'm using Captivate 5 on Windows. If I enter a shortcut like ALT-F or CTRL-F for an Action for an object, will a Mac user be able to use that shortcut after the project is published?

    The whole area of shortcut key combinations for use in e-learning is just one big nightmare, and it's not Captivate or Flash's fault.
    If you Google the Flash forums about keystroke combinations you'll find their all trying to find solutions for the same problems there.  It's impossible to predict reliably which keystrokes will or not work because every browser is at least slightly different.
    The ones that seem most unreliable are any key combinations involving function keys and the Ctrl or Alt keys.  Since the interaction with an elearning SWF happens in a browser, the browser always sees the keystroke coming first before the SWF gets to 'hear' it.  If the browser has a certain key combination reserved for its own functionality then it uses it...end of story.
    I realise this is a big disappointment for those people wanting to create elearning that showcases keystroke functionality for software sims, but that's the world we live in.

  • Easy Set UP...help with settings.

    Hello.... If you can help me set up EASY SETUP correctly you'll be my hero!
    Hi, I'm using FCE and 3 different types of footage and cannot get the settings right;   exported files are tiny, have big letter boxes, etc
    Here are the files and types:
    #1:  
    Dimentions:  1920 x 1080
    Apple Intermediate Codec, Linear PCM
    ColorProfile    HD (1-1-1)
    Bit rate:   86,137
    #2   (kodak zi6)
    Dimentions  1280 x 720
    Codecs   H.264,ACC
    Bit rate, 9,489
    #3
    .MPEG-4
    640 x 480
    Codecs   MPEG-4, AAC
    Bit rate:   6,242
    Now...how do I get this thing going to make it work?   (I understand I have different qualities of video..but it's for YOUTUBE so it doesn't have to be cinema ready.   Just good. 
    Also...do I need to create a new project?  I've done a decent amount of editing and hate the thought of re-doing all of the searching through the files to find the right parts, etc.
    Thanks very much in advance.
    Brad in Denver

    Dunno. Never opened FCE.
    Upon ingest, you convert your H.264 and MPEG4 to ProResLT. Set your sequence to ProResLT. The NTSC-sized stuff will be a problem.
    Your AIC is not a good idea at all unless you know what to do with it and why you have it. In that case, you want everything converted to AIC and use an AIC sequence.
    bogiesan

Maybe you are looking for