Weird Issue in XI... Need Help

Hi All,
         We have a Legacy to BI interface. here BI generates a wsdl to call there function modules and so we import the wsdl structre as external definations in XI and use it in our mapping.
Everytime BI generates the Data Source for XI, in diff env (exp Dev and then QA) the functional module gets a new name which is system generated. So this thing is causing us an issue.  because this means we have to import external definations each time and create the IR again.
pls find below the wsdl: and the functional module name that gets system generated is BIC_-CQZPPCLAU00001000.
<?xml version="1.0" encoding="ISO-8859-1"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:sap-com:document:sap:rfc:functions">
     <wsdl:types>
          <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:sap-com:document:sap:rfc:functions" targetNamespace="urn:sap-com:document:sap:rfc:functions">
               <xsd:element name="_-BIC_-CQZPPCLAU00001000">
                    <xsd:complexType>
                         <xsd:all>
                              <xsd:element name="DATA">
                                   <xsd:complexType>
                                        <xsd:sequence>
                                             <xsd:element name="item" type="_-BIC_-CQZPPCLAU00001000" minOccurs="0" maxOccurs="unbounded" />
                                        </xsd:sequence>
                                   </xsd:complexType>
                              </xsd:element>
                         </xsd:all>
                    </xsd:complexType>
               </xsd:element>
               <xsd:element name="_-BIC_-CQZPPCLAU00001000.Response">
                    <xsd:complexType>
                         <xsd:all />
                    </xsd:complexType>
               </xsd:element>
               <xsd:simpleType name="date">
                    <xsd:restriction base="xsd:string">
                         <xsd:maxLength value="10" />
                         <xsd:pattern value="....-..-.." />
                    </xsd:restriction>
               </xsd:simpleType>
               <xsd:simpleType name="time">
                    <xsd:restriction base="xsd:string">
                         <xsd:maxLength value="8" />
                         <xsd:pattern value="..:..:.." />
                    </xsd:restriction>
               </xsd:simpleType>
               <xsd:complexType name="_-BIC_-CQZPPCLAU00001000">
                    <xsd:sequence>
                         <xsd:element name="PM_ORDER" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="12" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                         <xsd:element name="_-BIC_-ZARCOVRD" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="2" />
                                        <xsd:pattern value="d*" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                         <xsd:element name="_-BIC_-ZARCPSFL" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="2" />
                                        <xsd:pattern value="d*" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                         <xsd:element name="_-BIC_-ZARCRULE" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="6" />
                                        <xsd:pattern value="d*" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                         <xsd:element name="DATE0" type="date" minOccurs="0" />
                         <xsd:element name="TIME" type="time" minOccurs="0" />
                         <xsd:element name="COMP_CODE" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="4" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                         <xsd:element name="_-BIC_-ZPOSTPRD" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="6" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                         <xsd:element name="_-BIC_-ZARCRLDS" minOccurs="0">
                              <xsd:simpleType>
                                   <xsd:restriction base="xsd:string">
                                        <xsd:maxLength value="35" />
                                   </xsd:restriction>
                              </xsd:simpleType>
                         </xsd:element>
                    </xsd:sequence>
               </xsd:complexType>
          </xsd:schema>
     </wsdl:types>
     <wsdl:message name="_-BIC_-CQZPPCLAU00001000Input">
          <wsdl:part xmlns:generateduniqueprefix0="urn:sap-com:document:sap:rfc:functions" name="parameters" element="generateduniqueprefix0:_-BIC_-CQZPPCLAU00001000" />
     </wsdl:message>
     <wsdl:message name="_-BIC_-CQZPPCLAU00001000Output">
          <wsdl:part xmlns:generateduniqueprefix1="urn:sap-com:document:sap:rfc:functions" name="parameters" element="generateduniqueprefix1:_-BIC_-CQZPPCLAU00001000.Response" />
     </wsdl:message>
</wsdl:definitions>
So the meaning of transports doesn't make sense at all if we have to do devlopment again in each env.
Can this be avoided anyway.. As far as i think this can't be handled in XI. But would love to know yours thoughts.
Regards,
XIer
Edited by: XIer on May 10, 2008 8:31 AM
Edited by: XIer on May 10, 2008 8:33 AM

Hi,
Those are dynamically generated BI objects that are created by means of nr ranges (or equivalent) in each instances ... As I dunno whether it is possible to provided static names, you could proceed this way :
1 - if you do not know (in advance) generated names, create a mapping table containing (depending on its evolutivity) either one single col (the generated name of your func) or 2 cols (functionality and generated name)
2 - create a wrapper RFC module (unique name) that will be spread across all BI systems, this wrapper will be used to process your data with XI for a desired functionality ! When calling it, it will retrieve the corresponding dynamic RFC name and pass values accordingly.
3 - import the wrapper RFC definition in XI and use it for the scenario
I'm not sure it will work, but unless there are better solution, I'd give a try
Rgds
Chris

Similar Messages

  • Had this weird issue...Need help!!!

    I got this issue, where user was not able to apply leaves on HR portal, which he was able to apply in past.
    We did our analysis and found some roles were end dated by background job.
    We extended the validity of the roles which were end dated, but he was still not able to apply for leaves.
    Then I was suggested to remove the roles of users and assign them back and it worked.
    Not sure why and how it got resolved....need help in understanding what happened here
    Any response will be highly appreciated
    Regards
    Anshul

    Then we can only speculate.
    A possible speculation is buffering and some non-authorization attributes attached to the role, such as personalization keys. Some selects wait for the buffers to roll, others bypass buffering when selecting data which might have changed. This would mean that it was just timing that SU01 seemed to work, or SU01 triggered the bypassing of the buffer after the change but PFCG did not.
    Anyway, as long as it worked in the end...  :-)
    Cheers,
    Julius

  • In testing 9 and X, "Compare Docs" we have a critical issue and really need help!

    For years we have used Acrobat 7 to do PDF compares and we love it!  However, the company recently advised we must upgrade to 9 and then eventually to X.  In testing 9 and X, Compare Docs we have a critical issue and really need help.  Our PDFs are produced by IT in a batch process and one of our main, critical functions is to compare previous PDFs to current PDFs;  however, in using 9 the Compare screen automatically sets the Doc Description for our PDFs to "Scanned Doc" and does not produce any differences! If you try to change the setting to Reports --it totally shuts down both documents without running!  Version 7 runs the compare of the same PDFs  beautifully, pointing out all the differences, as usual!  Has this every happen to anyone?  Do you know what we can do to our PDFs to allow version 9 to do the compare and produce results?  Why is 9 treating these non-scanned PDF docs as such?  Thanks so much for any help or insight you can give me on this issue! 

    (Moved the discussion to the correct forum)

  • Production Issue in Barcoding - Need Help

    Hi,
    One of our plant reported that there is a serious production
    issue and they are not able to dispatch or receive goods. We
    understand that the plants are getting 'ABAP Runtime Error' in
    the hand held scanner and when we looked at the last transports,
    we came across with the following error:
    LOAD_TYPE_VERSION_MISMATCH
    Please help me what is the issue and what needs to be done to
    resolve this barcoding issue.
    Thanks,
    Sriram

    please see OSS Note 713492 & 1010590  to see if this is your problem -
    cheers
    nandu
    ====================================================
    OSS Note 713492 brief
    Symptom
    An additional time stamp check has been installed in the internal structure administration of the ABAP VM. This is supposed to ensure improved analysis of errors that may occur as a result of changes to dictionary types at runtime. In addition to the LOAD_TYPE_VERSION_MISMATCH short dump, the TYPELOAD_NEW_VERSION short dump may now also occur.
    ==========================================================
    OSS Note 1010590 brief
    Symptom
    The ABAP program terminates due to structure components that are too wide (64KB or greater). Depending on the kernel patch and Support Package status:
    when you generate the program, it leads to the error DDIC_TYPES_INCONSISTENT, or
    when you execute the program, it leads to the error LOAD_TYPE_VERSION_MISMATCH.
    Other terms

  • Optical out and internal spaeker issue.. i need help..

    how can i get rid of the internal speaker sound without disconnecting it from the board or pluging any 1/8 trs jack at the back while using optical out.
    need help ...... thanks!!!!

    Hi, and a Warm Welcome to the Power Mac G5 Forum!
    Presumably it's the Startup Bong that's getting on your nerves - as you shouldn't be hearing Application sound from the puny internal speaker if you have set all the Preferences to use optical audio-out.
    The Bong is part of the Startup routine in firmware, and goes to the basic audio circuit because OS X, and your Sound Preferences selecting optical audio-out, haven't been loaded at that initial stage.
    The hardware solutions you have already mentioned.
    These may be of interest
    http://macupdate.com/info.php/id/16425
    http://www.versiontracker.com/dyn/moreinfo/macosx/25458
    http://www.versiontracker.com/dyn/moreinfo/macosx/28685
    Personally, I find the tinny Bong mysteriously reassuring. Good Luck.

  • Adobe Audition 5.5 Audio Issues! I NEED HELP

    I am currently using Adobe Audition 5.5 on Windows 7. and it is also 64 Bit. I downloaded Asio4all and i am able to record just fine on Adobe. But the music wont play through my headphones. I can see that the song is playing due to the spikes i just cant hear it. I have been suggested to check the Asio control panel for the volume, but i also have no clue where that would be at or how to access it! I need help ASAP!

    I doubt whether this has anything to do with ASIO4ALL...
    Try right-clicking on the loudspeaker in the bottom right hand corner of your screen, and exploring the sound options there. You should be able to find the output that's driving your headphone socket, and its appropriate volume control. I can't tell you any more than that, because all systems are different, depending on what hardware you have - but the volume control properties are where you should start looking for answers.

  • Love the X2 except for 3 main issues which I need help or clarification with

    Hi Everyone, I have pretty much copied and pasted my post from the Motorola forums (with a few minor edits) over here as I do need a little bit of help or insight on my issue.
    I have scoured through the Droid X section trying to find solutions to my problems and I haven't been able to get a solid answer anywhere (here or on other Android/X2 forums).
    I have an X2. I really like this phone. It is solid and has crystal clear sound quality. However, ever since I have had it I have seen intermittent issues pop up and I would like to get some feedback on them or get things put into perspective that it is a known glitch in the interface between the Android OS and the hardware. I bought the phone at Best Buy and every time I bring it in (either back to Best Buy or a Verizon store), as the issue is intermittent, they won't replace the phone. The people at Best Buy have told me to "do a battery pull every morning" which completely offends me as I never had to do anything so drastic with my original Droid until it finally decided to reboot on me every 2 hours (this is when I upgraded to the X2). I had to pick it up from Best Buy as I needed a functional phone immediately and no Verizon store in the area had the X2 in stock.
    The first (and most important issue)... Every once in a while, even though I have full signal, when somebody calls me, my phone will not ring or vibrate. It will ring the full six times on their end but does not show up on my phone as ever receiving or missing the call. After the six rings on their end, it goes to voicemail and after they leave the message, only the voicemail indicator shows up. Over the past month this has happened multiple times (once or twice a week). Those who don't leave messages have had to hunt me down because they thought I had left my phone elsewhere as it never rang or notified me of an incoming call.
    The next two issues are still important to me but they are more of an inconvenience than anything else.
    Sometimes (yes, this is intermittent too but it happens daily), when I wake my phone from sleep, all of the antennas seem to be off and it takes a good second or two to show back up in the status bar (3G, Bluetooth, etc). My question is, have all of the non-CDMA antennas "gone to sleep"? The signal bar for the actual cell service are still there, just not the other services (3G/1X) or wireless settings (Bluetooth/WiFi) for a couple seconds.
    Lastly (and this may be a direct link to the previous question), when I use the "Google Talk" application, the messages I send go through very quickly, but sometimes I do not get replies for a long time after they are sent (30 minutes to and hour later). If I wake the phone, sometimes a previously sent message will come through, and when I check the chat log in Gmail itself, the message was sent from quite a while back (15 minutes to an hour).
    I know I am brand new to your community, and I am sorry to have to burden you all with a post like this as my initial post. However, I have always liked and used Motorola phones with Verizon/GTE (all the way back to the MicroTAC series of the early 90s) without issues or incidents for the most part. As my original Droid was starting to act up I decided to jump on the X2 as it was just released. I understood that it was not going to initially come with Gingerbread and I said I would be patient for the update to come and hopefully it would bring a new level to the phone itself as well as solve some (if not all) of the issues. However, now that it is past my return date, and there is no update as of yet, I do require assistance.
    Thanks in advance for any assistance or insight,
    Tuan

    Thanks for the replies everyone.
    The responses I received over at the Moto forums said the same thing about the battery saver mode. However, I have had the same issue with the radios shutting off during the day while it is in "Nighttime savings mode" so I'm just thinking it's an oddball glitch with the phone's power management settings and clock. I have recently changed the battery mode to "Performance Mode" from Nighttime Savings" as I have the phone plugged into the charger at night anyways. I'm hoping that will take care of both my radio and gtalk issues.
    @Wildman: I have heard the same thing about the GB update from a Verizon rep very recently myself. I am still going to hope for an update sometime in the near future, but I do recall the first update for my Original Droid was months down the line from the release day.
    @Droiddude: Are you just cycling the power? Or are you actually doing physical battery pulls? If cycling the power works for you it would lessen the burden of pulling that Incipio case (Verizon Double Cover) off my phone every time to do battery pulls. It's a great case but wow it's a tight/snug fit.
    @vereyezuhn: I understand that there are possible dead areas in which my main issue may occur. I even have a prepaid phone for the times I am in a Verizon dead zone. However, when my issue occurs, I will be in the same spot for a while. I will receive all my calls, miss one in the manner I have spoken, then receive the following calls normally (SMS/MMS does not seem to be affected either as I seem to receive all of those). This is why I have this specific issue. I have recently cleared the phone's cache partition as well as update the PRL using *228 option 2. We will see over time if this eliminates the issue or at least makes it much more rare.

  • Weird Trash Emptying Behavior, Need Help!

    I've read the apple support article for emptying trash, changing file permissions, etc.; I've also tried searching the apple discussions... So I hope someone can help me here!
    I recently deleted Adobe CS2 from my applications. A lot of files were dragged to the trash, and now there are two folders in the trash that won't delete.
    They are:
    1. a folder called "Adobe Illustrator CS2", containing a folder named "Legal", containing a file named "Tiếng Việt.html" (the name's characters seem to be from a different character set).
    2. a folder called "Adobe Photoshop CS2", also containing a folder named "Legal", also containing a file named "Tiếng Việt.html" (same as above).
    Here are the issues:
    1. When I try to empty trash, nothing happens, these files just don't delete.
    2. When I try to secure empty trash, I get the message: "The operation cannot be completed because the item 'legal' is in use."
    3. I have permission to read and write the files and folders. Just to be sure, I tried "apply to enclosed items" in "get info", I get this error message: "The operation cannot be completed because one or more required items cannot be found. (Error code -43). I can open the trash and look at the files. They are definitely there.
    4. I read somewhere that because the names contain weird characters, they may not delete. When I try to rename the files, I get this error: "An unexpected error occurred (error code -43)."
    5. I've tried "chflags -R nouchg " and "sudo chflags -R nouchg " in terminal, and I get errors saying the files do not exist (after I drag the folders into terminal.)
    Help! What should I do to try and fix this? I have no idea what is going on!

    The problem is the illegal characters in the file name. Try booting from your install disk, then go to the menu and select Disk Utility and run the First Aid-Repair Disk function. Restart, and you should be able to empty the Trash.
    Francine
    Francine
    Schwieder

  • I HATE your new version - I want the OLD one back!! I have vision issues. I need HELP

    This morning Firefox dowwnloaded its newest version 3.6.18, As a result, the display on my screen went from 100% to about 60% making it difficult for me to easily see the details. The same applies to all my bookmarks. I tried to download a previous version as I did the last time this happened without success. I need your help as I have vision issues. Previous versions allow3ed for full screen display at low resolution.

    http://www.oldapps.com/firefox.php

  • Weird Airport connection. Need help.

    Here's what's going on:
    - Used to use my AEBS to connect to internet using dialup modem.
    - Switched to DSL this summer.
    - I have my DSL modem connected directly into the WAN of my AEBS and I can connect with my G5 desktop.
    - PLEASE NOTE: the DSL modem is plugged directly into the airport, NOT the computer, and I connect fine to the internet.
    Here's where it gets interesting (to a novice like me):
    - When I go to my Network Preferences (system preferences > network) and show the network status for my home location, I see two items:
    1) PCI Ethernet Slot Unknown Port 2. This has a green status light, and to the right it says "PCI Ethernet Slot Unknow Port 2 is currently active and has the IP address 192.168.1.47. You are connected to the internet via PCI Ethernet Slot Unknown Port 2"
    2) Airport. This has a yellow status light, and to the right it says "Airport is connected to the network ExtremeNet (the name of my home network). Airport does not have an IP address and cannot connect to the internet"
    It's weird that my G5 is supposedly connected via a PCI Ethernet slot when there IS NO ETHERNET CABLE PLUGGED INTO MY G5 Ethernet NIC.
    Now here's my problem: I can't connect to the internet wirelessly with my laptop. The Powerbook Titanium G4 sees the Airport, but in the Network Preferences it says the same thing (with the yellow circle).
    How to I assign an IP address to the Airport? (A correct IP address would be nice).
    By the way, I'm running 10.4.8 on the G5 and 10.3 on the Powerbook. The Airport Base Station is version 5.6

    That's usually what happens when the router for whatever reason isn't providing a default route to the machine.
    There are two big things your machine needs to be given to communicate with the Internet - an IP address for your local network, and a gateway address that tells your machine which address packets must be addressed to if they are to leave your local network.
    It sounds as if the DHCP server may be providing one but not the other.
    Note that this may not necessarily be a bug; several routers and DHCP servers can be configured with the default gateway field blank so that any system can obtain a local IP address but only those manually configured with the gateway address can use the Internet.

  • Why music won't play when i double click on it. software issue? i need help

    When I double click on a song or hit the play button, it doesn't do anything. I had this problem before but it seemed to fix itself after a few days. 2 weeks ago, itunes, along with any type of media on my computer, stopped working again. If I try to play a video in itunes or WMP, it just skips right through in about 3 jumps without any sound. I also can't stream videos on the internet. Dell told me it was a software issue and I had to pay $150 for them to tell me how to fix it. Nonsense. Can anybody help?

    Here's a place to start
    http://support.apple.com/kb/TS1362

  • Illustrator issues questions--I need help

    Illustrator CS4, MAC OSX 10.5.8...
    After struggling off and on for a few months with Illustrator, I'd like to be able to confirm a few things, so I know I'm not insane.
    1. Canvas/Pasteboard. Is there not an easy way to change that a bit so I can see more difference between the artboard and background? I found a workaround using transparency grid color and then putting a white picture block on the artboard (on a locked layer underneath). This is at least acceptable for various things. Is there some setting I'm missing?  Mostly I'd just like to change the color of the canvas so it stands out more.(And I'd rather have my own choice than whatever the preset tends to be because these blaring white/light screens are killer on the eyes...)
    1a. How do I save a "blank" version of the canvas set up I made so my "colorized" canvas  comes up in new documents? Is there a way to set a default document?
    1b. Is there a way to make the canvas a bit smaller?
    2. Scrolling. When I select an object and want to move it up the page/artboard, AI doesn't seem to scroll to the area I'm trying to get to. Is there a setting I'm missing or accidentally checked/unchecked? I have to go to the scrollbar and click that and move the item screen-by-screen up the page (alternatively, zoom out, etc.)
    2a. I noticed earlier today when trying to sort out text issues (point text, specifically) when I rotated a box... as soon as my cursor hit the edge of the document, the window view practically scrolled out of the universe! Why would it scroll to an out-of-view place in this instance and not scroll when I'm trying to drag an item to an out-of-view place in the document?
    3. I have tons of legacy Freehand 7 files. A decade's worth (not to mention apps prior to that for another decade). Every piece of text comes in as a "text area" box (ordinarily not a problem). But not a one of them shows all the text. I understand this is an issue with legacy files of all types (saving out old FH7 files as an older version of AI yields the same results.)
    Pages are cluttered with red + everywhere. Never mind the time sink, does AI have any way to "snap to" regarding a text area box to the text? How do you get multiple text boxes/objects to line up and be the same size? I'm not seeing H x W spec boxes to enter numerics in for text area boxes (as a start). Do I need to use grids or guides for this?
    4. Whatever tool I'm using persists and doesn't change to a regular arrow when I go to click a scrollbar. Program glitch?
    5. How do I set a default font? Or a default doc to open with the desired font preset in it?
    6. When saving out a graphic to be used in another app, is there no "save selection as.."? Or do I need to open a new doc, paste and save from there for each thing? (My master documents for some frequently used items tend to have many items)
    I know these are really newbie questions, but what used to be 5 minute tweaks in the past (in Freehand) now turn into all-day ordeals trying to figure out what I consider to be just the basics. So I'm not really learning about all the features and aspects of AI at this point.
    Can anyone confirm some of the stuff above or point out what I've missed?
    Thanks

    Hello Scott:
    Thanks for reassuring me I'm only partly insane
    Thanks also for the tip on setting up a default document. I'll pursue that tomorrow when I'm a little less bleary....
    Scrolling-- I have a group (or object selected) and I'm just dragging it along, but it doesn't go farther than the edge of the doc.
    I'm a whiz with a trackball, but useless with a scroll wheel.
    Ugh on the no default font thing.
    Magnifier glass icon on the scrollbar... well, it's disorienting but I'll live.
    I see the "save as" and "save a copy"-- but I don't see a "save SELECTION"? Where is that?
    Hmmm, yeah, I have some words but I don't think "turd" was one of them  lol. Too mild for this 16-hour day.
    Admittedly, I've been more than a little shocked with AI. 

  • 5d Mark III AF issues... need help!

    I bought this camera in march of this year and its never missed a shot. One week ago I noticed it was not focusing properly. I was in an indoor arena practicing low light so I didnt think anything of it. I have been adjusting settings all week now and CANNOT get it to focus properly.  Even resetting it to original settings did nothing for it.  I use a 70-200 f 2.8L almost always, however, last friday I experimented with both a 50mm and external flash.  I have a 2 day horse show to do this weekend, I need this this to work! has anyone experienced this or have any insight? TIA

    If it isn't doing what you want it to do, it's extremely beneficial to pinpoint exactly what it is doing.
    To this end, you'll need to do some proper focus tests.  Real-world subjects are lousy for this because you cannot take specific measurements.  It's much better to use a test target.
    I have a commercially made target (e.g. Datacolor "Sypder LensCal" or a "LensAlign").  But you can also get a test target that you can download and print from the Internet... such as this one:   http://regex.info/blog/photo-tech/focus-chart
    The idea behind these is that you'll careful test conditions to isolate any other reason for the camera not focusing accurately.
    Mount your camera on a tripod and now you know that the lens isn't moving and the camera isn't moving (so there's no blaming the photographer for not being steady).  
    Place the test target at the prescribed distance (follow the instructions that come with the chart.  The distance will depend on the focal length of the lens.)
    Select the focus point you plan to test (e.g. center point focus).  CAREFULLY algin the camera so the focus point being tested is on the high-contrast test-target position.
    Make sure the camera is using "One Shot" AF mode (not AI Servo -- use "One Shot" for stationary targets such as this one.)
    I deliberately de-focus the lens in one direction ... for example manually turn the focus ring to minimum focus distance.  There are two reasons for this... (a) I want to make sure the camera MUST adjust focus on each and every test) and (b) I want to know the direction that the camera had to move focus in order to achieve focus (e.g. if it was set to minimum focus distance then the camera must move focus out.   If it was focused to "infinity" then I know the camera must move the focus in.
    Take notes so you know where focus started and which direction it has to move focus.
    And since 1 sample does not make a trend... you'll need to shoot at least a half-dozen shots for each direction of your test.
    The chart is laying back at an angle.  This means if the camera is "front focusing" you'll notice the areas on the chart that are a bit closer have better focus than those at the intended target position.  If it's "back focusing" you'll see the opposite.
    If the camera CONSISTNTLY misses focus (say it's always just slightly back-focusing) then you can adjust this using the camera's built-in auto-focus micro-adjustments (see your manual).  
    If it is NOT CONSISTENT then you have a different problem and the lens may require service.
    The focus mechanism is mechanical... glass and other parts are moving to focus.  Gears can develop backlash or "slop".  This means if you move focus in one direction, then reverse to move focus in the other direction... a certain amount of free travel could occur before the lens actually starts moving again.
    The bottom line... using good testing conditions to figure out exactly what your lens is doing.  It also means that if you do decide to send the camera and body in to Canon then you can describe the issue more accurately.
    For further reading:  http://www.lensrentals.com/blog/2008/12/this-lens-is-soft-and-other-myths
    Tim Campbell
    5D II, 5D III, 60Da

  • Mac/PC Font Issues in Flash -- Need Help Please

    Hi,
    I have an fla file that I need to update but I am having the font issue that occurs between Mac & PCs.
    I need to export a swf file from an fla file I have. If I send someone the fla file and the font file (Futura Book) could you please export it for me? Someone with a PC? My letters keep getting cut off and I've tried to play around with the spacing already.
    Thank you!!!!
    Allie

    I don't know the answer to that one but you can use the Mouse Over and Click method I have described on this page....
    http://www.iwebformusicians.com/Tricks/MouseOver.html
    It works in IE.
    Its just a question of making up two different buttons with text for each link, taking a screenshot and cropping them and adding the JPEGs to your upload folder.
    You can make up the buttons on an iWeb page and then delete them when you have taken the screenshots. I usually do this sort of thing in Keynote so that I can save them in case I need to modify them.

  • Basic (?)  IMovie to DVD issues...need Help

    Guys I am simply trying to get IMovie projects, nothing too long or fancy, onto DVD that will play on consumer systems. ITs proving to be quite exciting, but not very successful.
    I am using Toast (not IDVD), Panther, QuickTime 7Pro, and Imovie 3.03. It is my understanding that I should export DV Stream from IMovie and then Toast will convert it to DVD (mpeg2, is that correct?)
    The problem is none of the export options seems to work, it just fizzles out and I get a message 'fail'. I've tried "Full Quality DV' under the Quicktime menu (BTW could this format meet my criteria, or would I then have to do some QuickTime magic...).
    and I've also tried "Movie to DV Stream" which is under the Expert menu....and which BTW has its own
    options like 'interlaced', DVC-Pro...etc.etc.)
    Nothing I've tried works so far. Its only a one minute movie and I have plenty of RAM and free space.
    Please, any ideas for the perfect Expert Export? Thanks...

    I have not used Toast myself to make a video DVD, but I don't think you need to go to the trouble of exporting any sort of file. Instead simply open Toast, pick the appropriate tab, then take the .mov reference file from your iMovie project folder and drag and drop it into Toast. I think that is all you have to do. Have you looked in the Toast help files? I think they go over this a bit in there.
    Also, many people experience trouble with QuickTime version 7 and Panther (10.3.9) so perhaps there lies some of your problems.
    Patrick

  • ITunes Album art/possible meta data issue? Really need help

    So ill try and break this down as simple as possible...
    I moved all my music from my Windows PC to my brand new MacBook Pro. All the song info/album Art and everything matches just fine on my windows pc. However on my Mac when itunes downloads any artwork it puts in artwork from other albums and artists. When I click on the song up in the iTunes sidebar lists Artist/Songs from an entirely different album. I have tried fixing all Meta data and converted ID tags and matched everything perfectly to iTunes Store but it still things the artwork is for another artist and the sidebar diplays the same info. I have even cleared out my library and copied to an external and reimported but same issue. I dont want to sit here and fix every single artwork problem especially when the information to the album is literally word for word match in iTunes store.
    My other fear is that if iTunes thinks some of my songs are completely different artists when iTunes Match rolls around my songs will not populate correctly?
    Please any other ideas? Like I said the album meta data is 100% matched (Artist, Song, Genre, Year, tracks)

    clever point...
    jere7my wrote:
    some album covers just aren't exactly square, particularly if the CDs are sold in cardboard flip-cases.
    I deal with artwork in a more hap-hazzard way, but most of the time, i get SQUARE results...
    Just Google the album title, then click the IMAGES tab. More times than not, I find the album cover in multiple sizes and about every time, at least one version that is truly square.
    All i need to do then is click the image, then again at the top of the resulting Google page (to show just the image - out of it's surrounding page), then drag the image directly to the Album Artwork Placeholder in the GET INFO tab (that has already been opened on multiple items - the whole album).
    Beavis2084

Maybe you are looking for

  • Physical Standby database Vs. Logical Standby database

    I have few questions regarding capability of Logical Standby Database against Physical Standby database. 1. How efficient is Logical Standby database in terms of Physical Standby Database?? How both differ from each other and can I use Logical Standb

  • Deleted bookmark still shows in spotlight

    spotlight showing deleted bookmark(s) even after restart.... i checked 'help', dunno......?

  • Create Or Replace Type How can I to use ?

    Hi Where can I to find examples using Type (create or replace type) and call in Procedure ?

  • Problem in jfx project

    Hi; i create a project jfx with javafx fxml application; in the second window wher i give the app name ;at the javfx platform the only choice is to put default javafx platform and i click finish the app in projects netbeans appears in red(something w

  • Starting, returning data from, ending and restarting a thread

    I have a program that uses SWTCalender and threads. When I click a button (date), the event will cause a thread to be created, which will create a new shell that contains the calender. When I click on a date in the calender, I want the calender to pa