After release 4.11 library OFGTEL differs from OFGTEL65

Hi,
After an update of Designer to release 4.11 (coming from release 2) I have troubles generating a form. I found the exact same problem in this forum (see OFGTEL65 problem however the solution provided by Lauri (Boyd, i presume) cannot be applicable.
She suggests to replace the OFGTEL65.pll by the OFGTEL.pll, delivered by the new release 4.11
However, this means that all the headstart customizations, that can be found in the original OFGTEL65.pll are lost!!!!! Can the working of headstart still be guaranteed then?
What to do? Are there new OFG* libraries patched by Headstart, which I missed?
With regards,
William de Ronde

Open the PLL file and change any extra arguments to be optional, that is, set their default value = NULL. You must not change the order of the arguments, and the NULL arguments must be at the end of the list (all mandatory arguments comes first). After that recompile all PLL and FMB that depends on this PLL.

Similar Messages

  • After release 4.11 library OFGTEL differs from OFGTEL in former release

    Hi,
    After an update of Designer 6i to release 4.11 (coming from Designer 6i version 6.5.40.5.0) I have troubles regarding the Designer library OFGTEL.pll.
    In the library of the new version a procedure CGDV$REF_CODES.SOFT_VAL is adjusted, so that an extra argument is used. If a formmodule is newly generated from the latest release there is no problem.
    However, some existing forms (fmx) are crashing. This is due to the fact that the existing forms are compiled to the older version of OFGTEL.
    Did anyone experience the same problem and what can be done to avoid this? Regenerating all the forms from the new release of Designer is not an option.
    With regards,
    William de Ronde

    Open the PLL file and change any extra arguments to be optional, that is, set their default value = NULL. You must not change the order of the arguments, and the NULL arguments must be at the end of the list (all mandatory arguments comes first). After that recompile all PLL and FMB that depends on this PLL.

  • Why is there a 5 people per day limit to local network shared library? (different from authorization)

    I'm in NYU library pulling on all-nighter, and because I enjoy listening to new musics (not necessarily newly released, but new-for-me musics), I would select and listen from one of the many shared libraries that are listed. If you use library almost everyday, you begin to notice some names that you have seen before. I clicked on the playlist, but there was an error message saying that only five people are allowed to listen per 24 hrs.
    Is there any way to turn this feature off? Why is a "shared" library limited to only five people per day? It's not like we are using it outside personal listening. And I would definitely like to see more than five people listening to my library per day.

    Ah ha! Result! I found this post related to problems with multicast DNS and wired/wireless connections (the situation I have): http://forum1.netgear.com/showthread.php?p=5612
    The latest firmware upgrade (http://kbserver.netgear.com/release_notes/d103043.asp) for the Netgear fixes the problem, and I can now see shared libraries. That router is very popular here in UK, not sure about elsewhere, so maybe others have the same problem.
    Cheers

  • Library background differs from edit background

    When I'm in edit mode, looking at the background of a slide,
    I can ask the name of the associated background image in the
    library. I have noticed that frequently the image I see in the
    slide edit mode is not the same as the associated background image
    that is stored in the library. This might have to do with the
    mixture of full-motion and regular capture that I'm trying to do.
    Can anyone explain the relationship between these 2 often different
    versions of the background?

    Hi gobaldson,
    The full motion captures do not have a background in the
    library. If you hide the layer with the full motion recording on
    your slide, you will see that the background is white (or whatever
    your Project Background Color is under Project Options). You can
    see the full motion recording in the Library under the "Media"
    category. In Captivate, you can't really edit the background of the
    full motion recorded parts.
    Cheers,
    ~Aaron

  • Library size differs from Vault size

    I just made a new Aperture Vault. My Aperture Library file is 41.66GB. My Vault file is 35.41GB.
    Why are these different?
    I have consolidated the library as well, so I am sure that the issue is not related to referenced files.
    Thanks,
    ~BC

    Thanks for that. Does my vault size (85% of the library size) seem about right to you?
    I only ask because the whole point of the vault is to be sure nothing is lost ... so I want to be sure I have this set up properly.
    Thanks,
    ~BC

  • Why are link default library dirs different from runtime default dirs?

    I'm fairly new to Linux and Arch in particular. I've been trying to get around most issues by myself and I've been successful in general. In fact, I'm writing not so much because of a problem, but to better understand why the solution I found works, and if it is the right solution for my case.
    So, I downloaded the source for a library I wanted to use (SFML if you're curious), built it and installed it. Looking around the net it seemed that the proper place to install things you compile yourself is /usr/local, so the libs went to /usr/local/lib. So far so good.
    I then made a quick test application to make sure everything was working properly (source can be seen here: http://www.sfml-dev.org/tutorials/2.1/start-linux.php). It built correctly, but when I tried to run it I got an error that the library could not be found. So looking the error up in google, I found people saying you had to set the $LD_LIBRARY_PATH to the lib directory. In fact, at the end of the SFML tutorial it suggests this as well, but only if you install in a non-standard directory.
    I found it odd that I should specify this variable. Had it been unset by something I did? Should I have set it before? I hadn't had to specify the directory when I built the program, which made it seem as though /usr/local/lib was a default directory. So why wasn't the library being found?
    A bit more research uncovered that one should not in fact rely on $LD_LIBRARY_PATH for this, but instead you should specify it when building with -rpathDIR, so that the executable itself knows where to look. And indeed, setting this option when building fixed the issue.
    My question then, is: why do I have to specify the library path for runtime, but not when building? Is it normal for usr/local/lib to not be searched, or did I break something in my install? Is GCC just trying to be helpful and tripping me up by looking in places that are reasonable for libraries to be, but that the system itself won't search?
    Last edited by jp.garibotti (2014-02-09 20:14:54)

    Well, after reading and getting to know the AUR a bit, at least I know why /usr/local/lib wasn't searched.
    So, if I got it right, I have to use the AUR to download the build script to build a package. Then I use pacman to install that package. This sends the relevant binaries to where they need to go, which is where the system will look for them.
    So as long as I stay inside the build system, everything will go fine.
    If I don't build shared libraries myself, and limit myself to running my own executables, I shouldn't need to worry about the build system beyond this. If I ever want to send something I did to someone else, however, I need to create a package for them to build, which will have to work with whatever distribution package manager they have. Assuming I want to keep everything tidy.
    There is one more thing I'm not clear on, though. So I installed the packages, headers are in /usr/include, but where should I place the sources? If I want to debug something and follow a call into the library, for example?

  • Suddenly after syncing...Library organization different on ipod than itunes

    Does anyone know how to fix the organization of albums on ipod? I have everything organized as it should be in itunes "Album/by Artist" and everything is in the correct order. Recently upon adding new albums, after syncing, some albums are simply moved to end and no longer in alphabetical order, but only on my ipod. Most still are, but some have moved. Not even the newly added...just random ones. I've tried resyncing. Itunes is organized correct and ipod is not?

    Hey there...I eventually found a common thread with all albums that got moved to the end of the alphabetical list on the ipod. Ipod and Itunes must sort with slight differences. All the albums at the end of my list were checked as "part of a compilation". This might be the same problem you are having. Often on a album, if there are any "guest artists" listed with even one song, if they are listed (artist & so and so) with the "artitist" in that sorting field, the album will be listed as a compilation. I haven't found any problems with simply unchecking "part of a compilation". This also moved the albums back to the alphabetical ordering on the ipod. Find a album that may be in the correct spot on iTunes, but not in your ipod...select it...select entire album/all songs...either under file or by right clicking, go to "get info". You will be asked if you want to edit for entire album, select yes. Go to the "options" tab and deselect "part of a compilation" and click "ok". If this was your problem, it should appear in alphabetical order on your ipod after that. Lemme know if it works...Rock on!

  • Why are the albums in the device Sync Music window different from the albums in the itunes library? Can't sync albums onto my phone properly. (All software is the latest release.)

    When you select your device to sync music the album list is broken up into artists rather than the albums. The itunes library presents the artists and albums correctly (properly grouped particularly the complilation albums, but also the ones with artists and guests) but the sync aspect does not. It completely screws things up. A good product let down by obviously sloppy programming. Is there a fix? Or do I just change phones and avoid the hassle.

    Maybe the phone does things different from iPod Touch.  Tracks are listed to gether by album for me when looking at albums list.

  • After I've heard an audiobook downloaded from the public library, how do I delete it from the Shuffle?  When I plug it into my computer, I get a screen showing how much space is left on the Shuffle but no list of files that I can delete.  WRA

    After I've heard an audiobook downloaded from the public library, how do I delete it from the Shuffle to make room for other audiobooks?  When I plug it into my computer, I get a screen showing how much space is left on the Shuffle but no list of files that I can delete.  These books, incidentally do not appear in the ITunes screen.  WRA

    Select the iPod shuffle in the iTunes sidebar (under DEVICES).  If this is a current 4th (or 3rd) gen iPod shuffle, you should be able to see the contents of the shuffle by type, intented under the shuffle's name (still in the sidebar).  Select Music or Audiobooks (not sure where those items from the library will be listed).  The items will be listed to the right, for each category.  Find the items, select, and delete.
    It's on page 20 of the manual
    http://manuals.info.apple.com/en_US/iPod_shuffle_4thgen_User_Guide.pdf
    NOTE:  If this is an 1st or 2nd gen iPod shuffle, select the iPod shuffle in the iTunes sidebar (under DEVICES).  Over to the right, go to the Contents tab, where the items are listed.  Select and delete them from this list.
    I find it more convenient to make a playlist in iTunes with things I want to put on the shuffle.  I then set up automatic syncing (or use autofill) to have iTunes load the shuffle from that playlist, automatically.

  • I had original iPhoto app from 2007, but in the last year it stopped working seemingly out of nowhere.  Now I just installed iPhoto 9.5.1 but it won't open even after downloading the iPhoto Library Updater.  My pictures are lost in the abyss.

    I had original iPhoto app from 2007 or 2008, but in the last year it stopped working seemingly out of nowhere.  Now I just installed iPhoto 9.5.1 but it won't open even after downloading the iPhoto Library Updater.  My pictures are lost in the abyss.
    I'm using OS Extended 10.9.5.  I don't know what the original version of iPhoto was.

    I just installed iPhoto 9.5.1 but it won't open even after downloading the iPhoto Library Updater
    Have you run the iPhoto Library Upgrader? You need to direct it to the location of your old iPhoto Library by clicking the "Choose Library" button in the lower right corner of the panel you are seeing when the upgrade starts.

  • Why is the library on my phone different from the one on my computer (I have iTunes Match)

    Why is the library on my phone different from the one on my computer? (I have iTunes Match) I just want the song off my computer to be the songs I have on my phone.

    Hey there Sparkly3gs,
    It sounds like your camera is not rotating as expected in the camera app. I want to recommend starting by quitting the running apps on the phone.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the phone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, I would next backup your device to iTunes, and restore it:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    I would suggest before restoring from your backup setup the device as new and make sure the camera functions as expected. Then restore from your backup and verify it still works.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • After moving my itunes library from my old WinXP computer to my new Win7 computer, itunes gives a warning that my content on my phone must be removed and re-synced. I want to merge changes/updates on my phone with my itunes library as normal, not erase it

    After moving my itunes library from my old WinXP computer to my new Win7 computer, itunes gives a warning that my content on my phone must be removed and re-synced. I want to merge changes/updates on my phone with my itunes library as normal, not erase it & replace it. My updates/changes will be lost.
    How do I merge content on my iPhone & content in iTunes together?

    Hopefully you still have the original library and can redo the migration...
    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • After trying many times with two different debit cards still does not allows me to buy a game from the app store gives error "YOUR PAYMENT METHOD WAS DECLINE.PLEASE ENTER VALID PAYMENT METHOD INFORMATION"  Please help me out

    I WANT TO PURCHASE NFS MOST WANTED GAME FROM APP STORE BUT IT DOESN'T ALLOW ME TO PROCEED FURTHER
    after trying many times with two different debit cards still does not allows me to buy a game from the app store gives error "YOUR PAYMENT METHOD WAS DECLINE.PLEASE ENTER VALID PAYMENT METHOD INFORMATION"  Please help me out

    In most cases, you can't use a Debit card anymore. So, either redeem an iTunes gift card or use a credit card.

  • After moving my music library from my old mb to the new one, my new mb pro does not play the files evenly. It takes a break for two sec's and starts playback where it stopped. Ideas anyone?

    After moving my music library from my old mb to the new one, my new mb pro does not play the files evenly. It takes a break for two sec's and starts playback where it stopped. Ideas anyone?

    I may have found an answer here:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive
    They only thing I can assume is that my external hard drive was slow to start and iTunes defaulted to its old directory (see the last paragraph at the link above). However, once my external was recognized shouldn't everything have fixed itself?
    Message was edited by: williamson42
    Message was edited by: williamson42

  • Design view different from preview  -  is muse still in beta testing

    I have limited experience with coding html so when Adobe released Muse, I was excited. However, I'm wondering if they released it too soon and/or if it is still in beta testing - which I don't mind but would like to know what I'm dealing with. It seems to have a lot of quirks - mainly that the design view is sometimes different from the preveiw or browser view. I spent over an hour yesterday trying to get text boxes to line up. If there is an hidden element affecting the text boxes, I don't see it. I have moved everything off the page and >selected all
    and nothing shows up.
    Other issues:
    Sometimes paragraph styles do not apply - even though in design view it looks like they do.
    Can't find a way to center text vetically in a text box other than adjusting the leading?
    Can't find a way to organize assets into folders?
    When an object is selected on a page, is there a way to indicate that that is the object in the assests panel?
    Sometimes the padding options are not available for no apparent reason.
    Thanks to the Adobe staff for being responsive as these issues are discovered. One staff member in particular was very helpful as I was trying to get hyperlinks to work right. But I am STILL having a problem. The text box and the text itself have the hyperlink style applied but as you can see on the Dardanelle and Chad Lawson Trio hyperlinks - the style did not take even though they are both hyperlinks that point to the right URL.  -- geezermusicclub is the correct link for Dardanelle - It's difficult to see in the pic, but the Dardanelle and Chad Lawson text color is black but the hyperlink text style is brown.
    Persoanlly, I feel Adobe should lower the subcription price while all these kinks are being worked out in Muse. In a way, subscribers are **** a LOT of beta testing for Adobe. Not only are we not being compensated for that, we are having to pay for an application that has too many wrinkles.

    Murray and David: it worked! It is a rare and joyous experience to have a straightforward solution to the sorts of problems I come up with (including other realms). But I have to say that with HTML and CSS (and hence with Dreamweaver), solutions to difficulties have seemed within easier reach than in other parts of the computer world.
    By the way, I wanted to choose "correct answer" for both your posts, but after making the first click it was no longer available for the remaining post--so I typed "helpful" even though that one was correct too.
    Thanks again.
    --Paul

Maybe you are looking for

  • HT201317 my phone was stolen how do i get my photots from my iphone5?

    my iphone5 was stolen..how do i recover my photos? i went to icloud && its not giving me anything

  • How to load background image in canvas fast?

    Hi all, I am loading dynamic background in canvas with http path. It takes little bit time. How can i make it fast? Please help me. Thanks, -CK

  • Please critque Function that produces the nextval

    Hello, I realize that this is not a SQL/PLSQL workshop, but I am in need of some assistance with the following code. I am sure it is something that I overlooked or 'just don't understand.' These 2 functions compiles just fine (scroll down). CREATE OR

  • Advice for TechTool Pro users

    I just felt compelled to throw this out there, as it doesn't seem to be common knowledge. I could be wrong, but this is pretty important imho so if people don't know it they are wasting massive amounts of space on their TM backup drive. If you have T

  • System becomes slowing down!

    My desktop environment is Gnome3 and use Radeon HD 3200 Graphics. The whole system starts become slowing down and slowing down after I watched video on Internet or in local computer.And the totem also has some bugs.This problem puzzles me for some da