- Joined
- Aug 12, 2021
- Messages
- 2
- Reaction score
- 1
So I have situation where I need to put a shared account on a group of phones. I have successfully configured a custom template that adds account 2 correctly. I am trying to customize the template to add that line as Virtual Multi-Purpose Key 1 which would be button 3 on the left side of the display. My custom template is setup as follows.
I've also tried removing the IF blf1 through ENDIF statement completely and just having
My config to the phone always come across like this yet all of my other customization in the template is working.
One last note. If I set the BLF from the extension to LINE it puts Account 1 on the VPK. If it change it to BLANK I get the results above.
Any suggestions or help would be appreciated.
Code:
{IF blf1}
<P1367>%%value%%</P1367>
<!-- # Account. 0 - Account 1, 1 - Account 2, 2 - Account 3 -->
<!-- # Number: 0, 1, 2. Default is 2. -->
<!-- # Mandatory -->
<P1368>0</P1368>
<!-- # Description. Max length allowed is 32 characters. -->
<!-- # String -->
<P1469>%%label%%</P1469>
<!-- # Value. Max length allowed is 64 characters. -->
<!-- # String -->
<P1470>%%type%%</P1470>
{ELSE}
<P1367>0</P1367>
<P1368>1</P1368>
<P1469>PD</P1469>
<P1470>200</P1470>
{ENDIF}
I've also tried removing the IF blf1 through ENDIF statement completely and just having
Code:
<P1367>0</P1367>
<P1368>1</P1368>
<P1469>PD</P1469>
<P1470>200</P1470>
My config to the phone always come across like this yet all of my other customization in the template is working.
Code:
<P1367>-1</P1367>
<P1368>0</P1368>
<P1469/>
<P1470/>
One last note. If I set the BLF from the extension to LINE it puts Account 1 on the VPK. If it change it to BLANK I get the results above.
Any suggestions or help would be appreciated.