Undocumented change of 'blf+sd' behavior between 7.5.3 and 7.5.4 fw

Imagine button with Extended Function defined like this:
fnc=blf+sd;ext=*F1234@$PROXY;sub=*D7*1234@$PROXY;vid=1
according documentation, the button should subscribe to line *D7*1234 to show it's state ('blf' function) and dial the *F1234 when pressed ("sd" function)
Unfortunatelly, real SPA50XG phone with firmware 7.5.3 or older doesn't work as described. It dial *D7*1234 when pressed ignoring ext= parameter at all.
It has been fixed in firmware 7.5.4, but such change is not documented in Release Notes.
Someone may rely on old misbehavior, so be carefull.
You have been warned.

Masarakš! It still doesn't work correctly.
On firmware < 7.5.4 the device ignore ext= at all. It will dial sub= when button pressed.
On 7.5.4 firmware the device will dial ext= when button pressed, but the notification doesn't work as long as ext= value desn't equal sub= value. Imagine following configuration:
fnc=blf+sd;ext=*F919@$PROXY;sub=*D7*4403@$PROXY;vid=1
The device will correctly subscribe:
SUBSCRIBE sip:*D7*[email protected]:5060 SIP/2.0
but then it ignore notifications:
NOTIFY sip:[email protected]:5060 SIP/2.0
Content-Type: application/dialog-info+xml
<?xml version="1.0"?>
confirmed
Such notifications are silently ignored (including no syslog message, even at highest debug level). Button will blink yellow.

Similar Messages

  • Is there any changes in the DIAdem script between DIAdem 9.x and DIAdem 10.x ?

    Hello,
    I have got a question about DIAdem Script.
    I saw the compatibility problem described in KB.
    'Why do my DIAdem 9.1 Scripts not work in DIAdem 10?'
    Many problems were solved, but some case were not.
    So I guess there is some changes in the DIAdem script between DIAdem 9.x and DIAdem 10.x
    Thanks for your help.

    Hi supportko...
    Yes, there were a lot of new features introduced in DIAdem 10.0, and 10.1.  These are described in detail in each product's ReadMe file, and also in the Online Help under  the "Index" tab at the node "DIAdem>>New Features>>New Commands and Variables"-- you will see 2 sections there:  "Version 10.1", and "Version 10.0", showing you exactly what has changed.  In most cases there is a compatability switch whenever a new feature creates a compatability issue for scripts developed in a previous DIAdem version.  R&D works very hard to minimize the impact of new features on existing VBScript applications.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Message Edited by Support on 05-02-2007 03:56 PM

  • Possibilities for changing purchase order print behavior

    Hello guys,
    I'm kind of new in SAP MM and I had to deal with PDF formula for purchase order. Now I have some questions about what is possible to change behavior for printing data in purchase order print.
    First of all we're using our own PDF formula which is a little bit like standard formula MEDRUCK_PO. We're using programm SAPFM06P with routine ADOBE_ENTRY_NEU, no changes in SAP standard behavior were made.
    Everyhting works fine with that but we sometimes have some special cases where our user wants some other behavior. Can you please say if it is possible and if so where to do that? (Customizing, formula itself)
    1. Changes in purchase order positions -> We have for example 4 purchase order positions. Now for one of them the price has changed. When printing formula then, you only see the changed order position. When you want to see all, user has to change some detail in every of the other positions, thats pretty annoying.
    2. Header text 'Changes in purchase order' -> Sometimes the header text is displayed as 'Changes in purchase order', sometimes as "normal" 'Purchase order'. I know it has something to do with status (field DRUVO) of purchase order, but its not clear when which status is set. Any help? :-)
    3. Deleted positions -> How is the standard behavior when a position is deleted? I think it will not be listed anymore in the positions printout. Anyway I can control it by catching LOEKZ field. But how is it with the total value field in sum data. I think it still is the whole value including the deleted positions. Is this changeable?
    I know there is some customizing in SPRO -> Materials Management -> Purchasing -> Messages
    but I'm not quite sure how it works :-(
    Can anyone enlight me? :-)
    Thanks a lot.
    Regards
    Michael

    SAP can differentiate between a new created purchase order and an existing purchase order that only got changed.
    Based on that it can be customized whether you print the full purchase order or only the part that was changed, and accordingly you may get different texts on your form (... 'Changes in purchase order', sometimes as "normal" 'Purchase order'.)
    A deletion of a PO item  is as well a change.  If you decided to print only a change message, then you get a print having the item number and a text *** item deleted *** or similar based on your customizing.
    But if you decided to print the full PO in both cases (creation and change), then you get the full PO but the deleted item is no longer among them and no hint either that it was deleted..
    Basically this setting is made in SPRO -> Materials Management -> Purchasing -> Messages -> Output Control -> Message Types -> Define Message Types for Purchase Order
    see as well the wiki: Printing of purchasing documents - ERP SCM - SCN Wiki

  • I have forgotten my Password to be able to connect between my desktop Mac and Mac Book on my home network. How can I recover the password or change it?

    I have forgotten my Password to be able to connect between my desktop Mac and Mac Book on my home network. How can I recover the password or change it?

    The password used to log in to a user account remotely is the same as you would use to log into it locally. You can also use your Apple ID, so try that.
    To change your login password read OS X Mavericks: Reset a login password
    also OS X Mavericks: If you forget your login password

  • In Reports what  is the difference between the AT NEW and ON CHANGE Event

    Hi,
            Could you tell the differences of AT NEW and ON CHANGE events in Repors

    Hi raghava,
    The Major Difference is :
    a) When AT NEW occurs,
    the alpha-numeric fields have ******* in their value,
    b) where as in case of ON CHANGE,
    the alpha-numeric fields have their corresponding value,
    of that particular record,
    where the Event gets fired.
    Other differences are :
    ON CHANGE OF can be used any where in the program..
    on change of differs from at new in the following respects:
    1.It can be used in any loop construct, not just loop at. For example, it can be used within select and endselect, do and enddo, or while and endwhile, as well as inside get events.
    2.A single on change of can be triggered by a change within one or more fields named after of and separated by or. These fields can be elementary fields or field strings. If you are within a loop, these fields do not have to belong to the loop.
    3.When used within a loop, a change in a field to the left of the control level does not trigger a control break.
    4.When used within a loop, fields to the right still contain their original values; they are not changed to contain zeros or asterisks.
    5.You can use else between on change of and endon.
    6.You can use it with loop at it where . . ..
    7.You can use sum with on change of. It sums all numeric fields except the one(s) named after of.
    8.Any values changed within on change of remain changed after endon. The contents of the header line are not restored as they are for at and endat.
    while
    AT NEW can be used only within a loop of an INTERNAL TABLE..
    5. Sample program to get the taste of it
    (just copy paste)
    6.
    REPORT ABC.
    DATA : BEGIN OF ITAB OCCURS 0,
    bukrs like t001-bukrs,
    f1(10) type c,
    end of itab.
    itab-bukrs = '1000'.
    itab-f1 = '1111111'.
    append itab.
    itab-bukrs = '1100'.
    itab-f1 = '3333333'.
    append itab.
    itab-bukrs = '1200'.
    itab-f1 = '555555'.
    append itab.
    AT NEW
    loop at itab.
    at new bukrs.
    write :/ itab-bukrs , itab-f1.
    endat.
    endloop.
    AT ONCHANGE
    loop at itab.
    ON CHANGE OF ITAB-BUKRS.
    write :/ itab-bukrs , itab-f1.
    ENDON.
    endloop.

  • Image size changes when moving an image between Lightroom and CC.

    Image size changes when moving an image between Lightroom and CC.
    I opened a .dng image in LR and then opened it in the Develop module.  I clicked on Crop Overlay and then on the ‘As Shot’ drop down menu (the lock is closed) and cropped to 11 x 17 and clicked ‘Done’-.
    I click Cntl-E and the image opens in CC.  There I click on Image > Image Size and the Image Size  is 13.288 inches by 20.533 inches.
    Why does the image size change?
    I believe there is a menu to control the size of the image and I've looked everywhere I can think of in LR and CC, I googled various descriptions and I checked two of Scott Kelby's books, but I just can't figure out how to keep the image a consistent size when moving between LR and CC.
    Help!...Please?

    The penny will drop soon or maybe the cloud will lift.
    In Lightroom all editing is undoable/nondestructive.
    Hence a crop of 3x2 is not inches, centimetres, pixels or anything else. It is jst a ratio. When a file is exported, either to PS or disk, then the crop ratio has size determined in respect of pixels and inches or cms.
    So my 6000x5000 pixel image I will crop to 3x2 that leaves (before exporting) a 6000x4000 file.
    Now when exported it can be set to export at
    100pixels per inch and will end up at 60x40" when printed.
    200pixels per inch will end up at 30x20"
    300ppi will end at 20x13.3"
    You will notice in the Crop Tool there are no size denominations such as inches or centimetres as an image file only has pixels and the determination of size is done through exporting or printing.
    Hope that helps somewhat..

  • Change in back button behavior

    We are upgrading from ColdFusion 9 to ColdFusion 11.  We noticed a change in back button behavior.  On pages running CF 9 the back button works, but on pages running CF 11, when clicking the back button, we get a browser "confirm form resubmission" message.  Since it is the same browser, it is clearly a change in ColdFusion.  Does anyone know when the change was made?  Is there a setting that controls the behavior?
    Thank you,
    David

    We should ignore the difference in Coldfusion version for a moment. It might just be that the previous behaviour was incorrect and what you now observe, with CF11, is the correct behaviour.
    A form-resubmit warning is essential. In fact, it can even be vital in certain circumstances. It is telling you that someone, some process or some thread has attempted to resubmit a form.
    In your case, clicking the back button apparently refreshes the action page of the form. This is analogous, in business terms, to repeating an order that has already been placed. The related validation code, queries, etc. will run once again. Obviously an unwelcome situation.

  • Change default "on success" behavior for click box?

    Hello,
    I create a lot of pptx --> Adobe Captivate eLearnings, and as you know, when the slides are imported, they are given a click box, which when clicked, advance the user to the next slide. I want to keep the click boxes to stop the project at the end of each slide,  but dont want the user to be able to interact with it. (I have a customized navigation bar)  I can achieve this by changing the "on success" behavior to "no action".  Question -- do i have to do this for every click box?  Unfortunately, I cannot apply this to all click boxes like I can apply the timing settings, for example.
    Thanks for any help!!
    Ryan

    As far as I know....and hopefully someone can correct me (I would be curious for sure)... but I don't think you can change the properties of multiple click boxes across slides all at the same time. Other items like buttons and smart shapes can be visually adjusted using the Object style manager, but as far as On Success options and such...unless you select them all in a given slide, you can't. Clickboxes can't even be added to master slides unfortunately. If the clickbox can be in a common place across slides, I would delete all of the clickboxes except the first, make the necessary changes to that one, then do a ctrl+c for copy, and then just paste it into all of the remaining slides. Again, I hope there's an easier way someone can share.

  • Printing Behavior Between Versions And Platforms

    We have received some feedback regarding printing behavior between MAC OS and Windows. The application in question is Adobe line of products, mainly PhotoShop CS 4 and CS 5.
    The scenario is as follows: Customer has mixed platform environment with Adobe Suites installed i.e. Photoshop, Illustrator and so on. Our MFP has entering of credentials before printing enabled for auditing and controlling purposes. On the computer side (Printer Driver), we have configured toprompt the user for their User Credentials at all times. The reason for doing so is because the computers are in a public environment hence we would like to know who is printing and how much.
    The first problem is this: In Adobe Illustrator on Microsoft Windows, when the user selects to print, they are immediately presented with the printer dialouge box to enter their respective credentials to continue printing, but in MAC OS, this is not the case. On the MAC OS, the user has to select an additional button, "Printer...", then select "Print" again before being prompted to enter their credentials.
    Customer is puzzled as to why in Windows Adobe Illustrator, the number of steps required to print is lesser then in MAC OS Adobe Illustrator. Customer feels that there is inconsistancy in terms of behavior between the Mac and Windows platform.
    Secondly, in Photoshop CS 4, the same symptoms occurs as above, however, in CS 5, it is worse. In PS CS 5, after the user enters their credentials, the next time they reopen and create a new docucment, they no longer need to enter their credentials again as it is already "Saved" for them. This defeats the purpose of setting the printer to always prompt for user credentials when they print.
    I have taken this case up to the respective vendor thinking that it is a printer driver issue. However their reply came back stating that this is a specification of Adobe and Mac.
    Does anyone has any ideas about this?

    >> On the MAC OS, the user has to select an additional button, "Printer...", then select "Print" again before being prompted to enter their credentials.
    That sounds like your printer drivers are inconsistent on different code paths (carbon and cocoa), and saving the credentials in the print ticket instead of using them as one time authentication.  Yes, it could be that they are implementing the driver according to Apple guidelines (which just don't match what you want), or it could be a bug in the way they implement authentication in the driver.  This has little or nothing to do with the applications, which just query the driver for it's capabilities, then send data to the driver for printing.  Using different applications just exercises slightly different code paths in the driver.

  • Change in Default Workbook Behavior with NW04s

    We are upgrading from BW 3.x to BI.  We use BEx workbooks exclusively.  With 3.x, our query designers would create/edit a query through BEx Analyzer and the results would be shown in a workbook taken from the default workbook template.  If the query needed further editing, it could be edited and the new results shown in the same workbook.  This is what we are comfortable doing.
    With 04s, if I run Query designer from within BEx analyzer, the created/edited query is not automatically "inserted" in the default workbook.  I understand that I can add an analysis grid and define the query as a data provider, but this has to be done EVERY time the query is edited.  I've added an analysis grid to the default workbook, but still the query has to be defined as a data provider every time it is edited. 
    Is this a problem for any one else?  Do I just have to live with defining the data provider over and over again?  How is it that if I use the SAP Standard as the default workbook, when I open a query, I don't need to define the query as a data provider?

    Thank you for the reply.  However, if I have an analysis grid in the default workbook, and I select Open Query, it doesn't automatically set up the selected query as the data provider.  I have to go in and create a data provider.  At that point, I can pick any query.
    I can't set up a data provider in the default workbook, because each time I open a different query, the data provider will have to change.
    If I use the SAP default workbook and select Open Query, it associates the selected query with the data provider automatically.  I'd like the same kind of behavior, but with my default workbook.

  • Difference Between OTL Retro Entry and Salary Change Retro Entry in Payroll

    Hi Everyone,
    We are developing a custom interface from Payroll to Projects which will post all the entries from OTL.
    OTL->Payroll->Projects
    We are stuck with identifying the Difference Between OTL Retro Entry and Salary Change Retro Entry when we process Retropay in Payroll.
    After retropay, we come we would see the retro element entries for both them with same name and creator_type is either EE or RR for both them.
    In our interface we have to treat retro entries through OTL and Salary Change in differentway.
    Has anyone can give some suggestions on this please asap as we are heading towards UAT very soon.
    Thanks in Advance..!!
    Anand

    Hi Anand,
    Element with creator_type RR are created/generated by Retropay.
    Elements with creator_type EE are regular element entries.

  • Change iPod user interface behavior?

    Are there any hidden ways to change the iPod control behavior? I'd really like the iPod to not go into "adjust volume" mode whenever I accidentally touch the round mouse pad thingy.

    The only way you can make sure that the volume doesn't go up is by putting the hold switch on. You can't change the interface of the ipod. It is not possible that I know of.
    Plus I wouldn't do it anyways.

  • Changes in their scheduling interface between 6.4 and 7.0

    Can you share with me if there are any changes in the scheduling interface between 6.4 and 7.0 (NetWeaver 2004s)?  We have a job scheduling solution that this would effect.  Thank you

    When we upgraded from 8.4 to 8.9, we had to switch to use the new table structures. This was about 3 years ago, but I recall that the miscellaneous tables you are asking about were combined into the other tables (maybe the payment one). You will need to review the fields on each of the new tables to see where the freight and tax information is now stored. We didn't store that information for the vouchers we loaded via EDI in the past, so we didn't have to worry about it going forward.
    Good Luck! It wasn't fun converting this part of the system!
    Jennifer

  • Syncs between the Mac AB and Palm handhelds don't work???

    I'm ready to change from Palm Desktop for Mac to Mac PIMs and use Missing Sync to sync. On a Mark/Space (Missing Sync) forum, I noted that people were complaining that they making changes on their Treo to a contact which was not reflected on the Mac AB after a sync.
    The Missing Sync Lead Software Engineer indicated that Missing Sync doesn't do that because they don't "own" the sync - that is all handled by Apple's Sync Services, which is a multi-client architecture that many sync apps can be part of. Sync Services is much more in the way of keeping data around rather than OVERWRITING OR DELETING IT. Missing Sync "pushes" into Sync Services exactly what is on the device; it is up to Sync Services to determine what to do with the changes depending on its rules."
    1. If you are successfully syncing a Palm (and especially a Treo) with Mac PIMs (and especially if you're using Missing Sync), are changes (additions, deletions, changes) made on your contacts reflected on the other platform after the sync?
    2. Are the changes you make more likely to be successfully synced if they are made on the Mac PIM versus on the Palm?
    3. Is this same thing true for iCal (ie, changing an appointment by adding information) or tasks?
    5. Are there any workarounds or do I have to check my Treo and Mac PIMs everytime to make certain that all changes were successfully synced to the other platform?
    6. When I make changes in my Treo 680 contacts and sync it to the AB using Missing Sync, how do I know if the changes will be reflected in the AB? Am I notified on a log or by popup or do I have to check the Mac AB? I might make several changes each day in both the desktop or Treo contacts but I never make changes on both platforms for the SAME contact (except by error).
    If changes made in one platform are not successfully synced to the other, why would anyone who syncs use Mac PIMs? This problem must be very limited.

    Terminology check here. Do you really mean a "CD"?  There's a difference in Cloud behavior between content from a physical CD you ripped (which only has Cloud content if you have iTunes Match) and an "album" you bought from the iTunes Store.
    Read references for Home Sharing.
    iTunes: How to share music and video - http://support.apple.com/kb/HT2688 - about Music Sharing and Home Sharing
    Home Sharing Support page - http://www.apple.com/support/homesharing/
    iOS: Setting up Home Sharing on your device - http://support.apple.com/kb/ht4557 - "With Home Sharing in iOS 4.3 or later, you can stream your entire iTunes library over your home Wi-Fi network from your Mac or PC right to your iPhone, iPad, or iPod touch."
    The above can get pretty complicated.  You are probably best off by syncing both devices to a single library and/or updating the libraries on both computers to have the same content.

  • Incompatibility between JDK 1.4 and Windows XP Fax and Picture Viewer

    I have noticed an incompatibility between JPG files that are output from Windows XP Fax and Picture Viewer and read in by JDK 1.4 (or 1.4.1). In particular, when an image is transfered from a digital camera to a Windows XP machine, then rotated and saved in the Windows XP Fax and Picture Viewer, the resulting image file appears with corrupted colors when read and saved by the ImageIO class in JDK 1.4.
    Here is my code:
         import java.awt.image.BufferedImage;
         import javax.imageio.ImageIO;
         BufferedImage buffImg = ImageIO.read (new File ("in.jpg"));
         ImageIO.write (buffImg, "jpg", new File ("out.jpg"));
    I have also output the file with graphics format PNG and seen similar apparent corruption of colors.
    This is an image that was loaded onto Windows XP from a digital camera then rotated 90 degrees and saved with the Windows XP Fax and Picture Viewer:
    http://www.adigitalsolution.net/pics/verticalOrig.jpg
    Here is the same image read and written by JDK 1.4 ImageIO.read() and ImageIO.write():
    http://www.adigitalsolution.net/pics/verticalJavaOut.jpg
    Note that the colors appear corrupted in the above image.
    This is an image copied directly from a Sony Cybershot DSC - P71 digital camera:
    http://www.adigitalsolution.net/pics/horizontalOrig.jpg
    Here is the same image read and written by JDK 1.4 ImageIO.read() and ImageIO.write():
    http://www.adigitalsolution.net/pics/horizontalJavaOut.jpg
    It appears fine (brilliant tropical colors).
    Note that both images contain the "EXIF" header, which is the JPEG-like format used by many digital cameras. Some may say that the JDK 1.4 spec does not support EXIF, but the image not touched by Windows XP was read successfully. And other image editing programs read in both successfully, such as PaintshopPro and the Mozilla 1.0 web browser. But there is a specific incompatibility with JDK 1.4.
    I have reproduced this problem on Windows NT 4 and Red Hat Linux 7.3 using an image file that was saved on Windows XP.
    Here is a warning from Nikon about the behavior of Windows XP Fax and Picture Viewer:
    http://www.dpreview.com/news/0112/01121402nikonxpwarnings.asp
    Does anybody know a workaround?

    This is scary and explains why some of my Exif headers are trashed.
    I would guess the problem has something to do with XP not writing the file back out 100% true to the JPEG spec.
    Really annoying that they do this. They think they can just hack up and change standards that are not their own. Take their FTP client in Windows XP. Talk about a broken client.
    My suggestion is to dis-associate jpegs with XP's image and fax viewer. Instead associate them with Mozilla.

Maybe you are looking for