Outlook add-in issues

Hi,
I've two issues with my SMD Outlook add-in.
1] "Expires in" date
When I want to sent an attachment using the SMD Outlook add-in, I cannot change the "Expires in" days.
The default is "1" and I cannot change this value. When I click the up or down arrows next the "1", the value does not change.
And when I manually enter another value (i.e. "10"), the value is changed back to "1" when I tab out of the entry box.
2] Preferences issue
Another issue is when I click on the "Mobile Docs Preferences" button in the SMD Outlook bar, nothing happens....
No popup of anything else is shown after clicking this button.
I'm thinking of reinstalling the add-in, but I first would like to receive some tips if I can correct it.
Thanks for any tips!!
Kind regards,
Sander Maes

Hello SAP team,
Kindly assist, I know this is an offshoot of the topic, for some reason -  The Sap mobile documents desktop version does not attach to outlook 2013 64bit. The plugin works with 32bit office versions.
My organization runs 64-bit version of office.
Is there something else I have to do to ensure the plugin is detected and works with Outlook 2013 64bit?
See version installed
MCMDESKTOP03_1-10012795 (SAPMobileDocuments-Installer-Win-SAPJVM)

Similar Messages

  • Object Reference Not Set To An Instance Of An Object - Outlook Add-In - Add-In Express

    Hi,
    My Add-In has been developed in VS2010 using the Add-In Express pack.
    Its a very simple add-in that shows an IT support ticket email detailing PC information. To use it, following installing the add-in, the user must select the tab in outlook and click on the Send IT Support Email button which will generate an Outlook Email
    Template with specific information about the PC that I pull using VB.
    It works fine in Windows 7 & 8, but throws an 'Object Reference Not Set To An Instance Of An Object' exception in Windows XP. Screenshot is shown below:
    The code is below
    Imports System.Runtime.InteropServices
    Imports System.ComponentModel
    Imports System.Drawing
    Imports System.Windows.Forms
    Imports AddinExpress.MSO
    Imports System.Object
    Imports System.Net
    Imports System.Environment
    Imports System.Net.NetworkInformation
    Imports System.Windows.Forms.Application
    Imports Microsoft.Office.Interop.Outlook
    Imports outlook = Microsoft.Office.Interop.Outlook
    'Add-in Express Add-in Module
    <GuidAttribute("735B7BC8-DD2F-44D8-BC37-30D86769C065"), ProgIdAttribute("$safeprojectname$.AddinModule")> _
    Public Class AddinModule
    Inherits AddinExpress.MSO.ADXAddinModule
    #Region " Add-in Express automatic code "
    'Required by Add-in Express - do not modify
    'the methods within this region
    Public Overrides Function GetContainer() As System.ComponentModel.IContainer
    If components Is Nothing Then
    components = New System.ComponentModel.Container
    End If
    GetContainer = components
    End Function
    <ComRegisterFunctionAttribute()> _
    Public Shared Sub AddinRegister(ByVal t As Type)
    AddinExpress.MSO.ADXAddinModule.ADXRegister(t)
    End Sub
    <ComUnregisterFunctionAttribute()> _
    Public Shared Sub AddinUnregister(ByVal t As Type)
    AddinExpress.MSO.ADXAddinModule.ADXUnregister(t)
    End Sub
    Public Overrides Sub UninstallControls()
    MyBase.UninstallControls()
    End Sub
    #End Region
    Public Shared Shadows ReadOnly Property CurrentInstance() As AddinModule
    Get
    Return CType(AddinExpress.MSO.ADXAddinModule.CurrentInstance, AddinModule)
    End Get
    End Property
    Private Sub AddInModule_AddInInitiatize(ByVal sender As Object, ByVal e As EventArgs) _
    Handles MyBase.AddinInitialize
    'Outlook 2010 = 14
    If Me.HostMajorVersion >= 14 Then
    AdxOlExplorerCommandBar1.UseForRibbon = False
    End If
    End Sub
    Public ReadOnly Property OutlookApp() As Outlook._Application
    Get
    Return CType(HostApplication, Outlook._Application)
    End Get
    End Property
    'Gets the MAC Address from the NIC Information
    Function getMacAddress()
    Dim nics() As NetworkInterface = _
    NetworkInterface.GetAllNetworkInterfaces
    Return nics(0).GetPhysicalAddress.ToString
    End Function
    Sub CreateTemplate()
    Dim sHostName As String
    Dim sDomain As String
    Dim sUserName As String
    Dim sOS As String
    Dim s64 As String
    Dim sMAC As String
    Dim host As String = System.Net.Dns.GetHostName()
    Dim LocalHostaddress As String = System.Net.Dns.GetHostEntry(host).AddressList(1).ToString()
    Dim MyItem As Outlook.MailItem
    'Finds the PC Number
    sHostName = Environ$("computername")
    'Finds the Domain
    sDomain = Environ$("userdomain")
    'Finds the Username logged into the PC
    sUserName = (Environment.UserDomainName & "\" & Environment.UserName)
    'Finds the Operating System
    sOS = (My.Computer.Info.OSFullName)
    'Shows the results collected from the getMacAddress Function in the sMac variable
    sMAC = getMacAddress()
    'Finds the Architecture of the Operating System - x86 or x64
    If (Environment.Is64BitOperatingSystem) Then
    s64 = ("64bit")
    Else
    s64 = ("32bit")
    End If
    'Creates a Template Email
    MyItem = OutlookApp.CreateItem(Outlook.OlItemType.olMailItem)
    'Configures the Sender as [email protected]
    MyItem.To = "[email protected]"
    'Shows the template
    MyItem.Display()
    'Shows all of the string in the Email Body
    MyItem.HTMLBody = String.Concat("<b><u>IT SUPPORT TICKET</u></b>", "<br/><br/>", "<tr><b>PC Number: </b></tr>", sDomain, "\", sHostName, "<b></b>", "<br/><br/>", "<b>Username: </b>", sUserName, "<b></b>", "<br/><br/>", "<b>OS Version: </b>", sOS, s64, "<b></b>", "<br/><br/>", "<b>IP Address: </b>", LocalHostaddress, "<b></b>", "<br/><br/>", "<b>MAC Address: </b>", sMAC, "<b></b>", "<br/><br/>", "<b>Comment:</b>", "<br/>", "<i>Please give a brief description of your problem attaching a screen shot if possible</i>", "<br/><br/>") & MyItem.HTMLBody
    End Sub
    Private Sub AdxRibbonButton1_OnClick(ByVal sender As Object, ByVal control As IRibbonControl, ByVal pressed As Boolean) Handles AdxRibbonButton1.OnClick
    'Runs CreateTemplate
    CreateTemplate()
    End Sub
    Private Sub AdxCommandBarButton1_Click(ByVal sender As Object) Handles AdxCommandBarButton1.Click
    'Runs CreateTemplate
    CreateTemplate()
    End Sub
    End Class
    I would appreciate any help with this whatsoever as I am pulling my hair out!!
    Many Thanks!!
    Chris

    Hi,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your Add-in is developed using Add-in Express which is third-party, I suggest consulting Add-in Express forum:
    http://www.add-in-express.com/forum/index.php for better support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Installed Windows 8.1 and Outlook 2013 - have to use iCloud Outlook Add-in to sync my Iphone 5 with Outlook - reminders work on iPhone, but reminder window & email reminders don't work in Outlook 2013. Help

    Using windows 8.1 and outlook 2013 with iCloud Outlook Add-in so that my iPhone 5 will sync with outlook. Now reminders work on iPhone 5, but don't work in outlook 2013. Help, I've tried everything I can think of or found on the internet.

    Hi,
    Please follow the steps below to make sure the reminders have been enabled in Outlook:
    On the File tab, click Options.
    Select Advanced in the Outlook Options dialog box.
    In the Reminders section, select Show reminders.
    Click OK.
    I also found a similar thread here:
    http://social.technet.microsoft.com/Forums/windows/en-US/70bbd99e-6c1b-4a56-b1eb-f1812f96ed56/outlook-2010-reminders-not-appearing-in-outlook-but-appearing-on-iphone
    As mentioned in the thread, you can try these steps:
    Use MFCMAPI to delete the Reminders Folder, then run "outlook.exe /resetfolders" to recreate this folder:
    Download MFCMAPI:http://mfcmapi.codeplex.com/releases/view/118446
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If the problem persists, try to recreate the user’s profile of the Outlook to check this issue:
    http://support.microsoft.com/kb/829918/en-us
    Regards,
    Melon Chen
    TechNet Community Support

  • HT4759 What is the latest version of iCloud outlook add-inn?

    I'm allways is receiving this message:
    Do Apple has a new version for iCloud outlook add-in?
    My actual version is 2.1.1

    http://www.mozilla.org/en-US/firefox/8.0.1/releasenotes/
    Only the Mac users will get the idle/manual update from 8.0 to 8.0.1 patch. For Mac users it is to fix a crash issue due to Java Java SE 6 version 1.6.0_29.
    Windows users do not benefit from having 8.0.1 unless they use a older version of Roboform and cannot or will not update Roboform to version 7.62 or newer. However if Windows users are getting Firefox crashes upon startup then it may be worthwhile to download Firefox 8.0.1 and install it.
    The 8.0.1 is pretty much the 8.0 release for Linux users however if they are using 4.0 to 7.0.1 release and check for updates now then the 8.0.1 will be served (same with Windows and Mac users using older).
    It is much easier to just serve 8.0.1 at mozilla.com for all users much like they did with 5.0.1 even though was meant for Mac 10.5 and 10.7 users in mind and pretty much was the 5.0 release for Windows and Linux users then.

  • Blackberry Outlook Calendar Sync Issue

    We recently discovered a outlook calendar sync issue we can add items on the Blackberry and they will show up in Exchange. But you can’t change a calendar item from the Blackberry, e.g. if you create an item on the phone it will show up in Outlook, but if you use the phone to change the date or name of it Outlook will still show the old one.
    We are running BES 4.1
    We are running Exchange 2003
    Exchange and BES are installed and running on different servers
    OS of the server running BES 4.1 is WINDOWS 2003

    Hi, Please do not post duplicate threads.
    see here > http://supportforums.blackberry.com/rim/board/message?board.id=8300&message.id=37254#M37254
    You are posting your message in device threads meaning normal everyday users are going to read it, if you want advice from administrators, please post it in Blackberry Enterprise Server area.
    You also didn't put what full version of BES you are running! If you are running BPS, i will have it moved to the professional area.
    Thankyou
    If your issue is resolved, put a checkmark in the green box that contains the resolution.
    OR
    If it was just/or also really helpful - Give it a Kudos.. Go on Mate.. Help the rest of the clueless blackberry user world find their answer too..
    ~Gday from Down Under~

  • Icloud-Outlook-Add-in not loaded automatically

    Dear Support Community,
    I've been using my Iphones together with my Win PC / Outlook for several months.
    No problems.
    Since a few days, there's always the problem, that the "i-cloud-Outlook-Add-in" is not
    loaded automatically, when I start Outlook.
    Manual activiation (via Options -> Add-In --> Com Add-in --> tick in the box at "i-Cloud ...")
    works perfect.
    I've checked the registry entry "LoadBehaviour": 3 --> correct value, in my opinion.
    Any ideas, how to get outlook to load the icloud add-in automatically at startup?
    Thank you very much in advance.
    Regards

    I just had a user call in with this exact same problem.  The steps that I took to resolve the issue are as follows:
    1.  Ran a repair on office installation and rebooted computer. (Not sure if this was nesary).
    2.  In Outlook go to File-Options-Add-Ins.  Below for Manage COM Add-ins click the Go button.
    3.  find iCloud add-in and check it off to enable it.  Click on OK until your back at outlook.
    4.  Close and relaunch outlook.  Go back to File-Options-Add-Ins and down at the Manage change the dropdown to "Disabled Items".
    5.  Choose the iCloud.dll checkbox and click on enable.
    6.  Close outlook and reopen.  You should now see the ribbon for iCloud sync.

  • Outlook add-in 2007 and above Restrict user to save mailItem only under the configured path How to do?

    Hello,<o:p></o:p>
    I am working on an Outlook add-in, where I have a requirement like - User will be
    allowed to configure a permitted folder. Now, if "Save/SaveAs" is
    used on any of the MailItem, the user should be allowed to save only within the
    permitted folder or any of it's sub folder.<o:p></o:p>
    Possible approach I could foresee - <o:p></o:p>
    1. Filter the "Save/Save as" dialog so that only the permitted folder or it's
    sub folder could be selected. Hence, no need to validate the selected path.<o:p></o:p>
    2. Apply validation after the path id selected & check if it falls under the
    permitted folder.<o:p></o:p>
    Limitations/Issues I am facing<o:p></o:p>
    1. In approach 1 above, I could not find a way to restrict the path selection to the
    permitted folder.<o:p></o:p>
    2. In approach 2 above, I could not find a way to capture the BeforeSave event >
    apply the validation > cancel the save with a prompt. <o:p></o:p>
    I also want to develop Word & Excel add-in on similar lines.<o:p></o:p>
    Could someone please guide how to proceed on this?<o:p></o:p>
    Thanks!<o:p></o:p>
    Thanks, <b>Ankit Shah</b> <hr> Inkey Solutions, India. <hr> Microsoft Certified Business Management Solutions Professionals <hr> http://ankit.inkeysolutions.com

    You should be aware that using your proposed Outlook addin will not necessarily prevent users from saving mail items to any folder that is accessible to them through the Windows file system.
    I was easily able to use drag and drop to copy a mail item from Outlook 2007's inbox folder directly to a folder in the file system that was opened in Windows Explorer.  This would completely bypass your desired restriction.
    The same holds true for Outlook 2013.  I had no difficulty using drag and drop to copy a mail item from the inbox to a file system folder.
    You may want to investigate other data security alternatives.  Good luck.

  • Troubleshooting for RPC over https (Outlook Anywhere) connection issue

    RPC over https (ROH), well known as Outlook Anywhere, is more frequently used. Even in Exchange 2013, Outlook no longer connects CAS server via MAPI.
    In this thread, we will discuss about the troubleshoot checklist about the RPC over https (Outlook Anywhere) connection issue. In order to make it more logical, I’d like to divide the whole troubleshooting to the following processes:
    1. Client side to CAS side
    2. CAS side to MBX side
    [Issues between Client side to CAS side]
    In Exchange 2013, Outlook Anywhere is enabled by default. Different from this, Outlook Anywhere in Exchange 2007 and 2010 need to be manually enabled. Thus, please firstly check if the RPC over HTTP component has been installed:
    Click Start, and then click Control Panel.
    Double-click Programs and Features.
    In the left pane of Server Manager, click Features.
    In the right pane, click Add Features.
    Check if the RPC over HTTP component has been selected.
    If the ROH connectivity issue only happens on certain users, the property MAPIBlockOutlookRpcHTTP can be checked: 
    Get-CASMailbox  name | fl MAPIBlockOutlookRpcHttp
    2. Confirm if Exchange server is blocked. Ping the Exchange server FQDN on client machine and confirm if it can return the proper IP address.
    3. Check if the RPC Proxy server is responding correctly:
     rpcping -t ncacn_http -s ExchServer -o RpcProxy=RPCProxyServer -P "user,domain,*" -I "user,domain,*" -H 2 -u 10 -a connect -F 3 -v 3 -E -R none
    If 200 code returns, the test is successful.
    4. Check if Outlook Anywhere host names are added in the certificate:
    To get host names, the following command can be used: get-outlookanywhere |fl *hostname
    5. To use the Shell to test Outlook Anywhere connectivity, use the
    Test-OutlookConnectivity cmdlet.
    [Issues between CAS side to Mailbox side][RZ1] 
    A. Check if it can connect to store’s port:
    RpcPing –t ncacn_http –s ExchangeMBXServer -o RpcProxy=RpcProxyServer -P "user,domain,password" -I "user,domain,password" -H 1 –F 3 –a connect –u 10 –v 3 –e 6001
    If it returns as following: Completed 1 calls in 60 ms  16 T/S or 60.000 ms/T, it means the RPC Ping Utility test succeeds.
    B. Check if it can Connect to DsProxy Service:
    RpcPing –t ncacn_http –s ExchangeMBXServer -o RpcProxy=RpcProxyServer -P "user,domain,password" -I "user,domain,password" -H 2 –F 2 –a connect –u 10 –v 3 –e 6004
    If it returns as following: Completed 1 calls in 60 ms  16 T/S or 60.000 ms/T, it means the RPC Ping Utility test succeeds.
    C. Check the following registries:
    [Disable the auto update]
    1).Open Regedit and navigate to:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchangeServiceHost\RpcHttpConfigurator\RpcHttpConfigurator
    2).Set the PeriodicPollingMinutes value to 0.
    [Check the RpcProxy ValidPorts]
    1).On the RPC proxy server, start Registry Editor (Regedit).
    2). In the console tree, locate the following registry key:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Rpc\RpcProxy
    3). In the details pane, right-click the ValidPorts subkey, and then click Modify.
    4). In Edit String, in the Value data box, type the following information:
    ExchangeServer :6001-6002; ExchangeServerFQDN :6001-6002; ExchangeServer :6004; ExchangeServerFQDN :6004
    Note:
    ExchangeServer is the NetBIOS name of your Exchange server. ExchangeServerFQDN is the fully qualified domain name (FQDN) of your Exchange server. If the FQDN that is used to access the server from the Internet differs from the internal FQDN, you must use
    the internal FQDN.
    [Check the 6004 port settings in registry]
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchangeSA\Parameters
    Value name: HTTP Port
    Value type: REG_DWORD
    Value data: 0x1772 (Decimal 6002)
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchangeSA\Parameters
    Value name: Rpc/HTTP NSPI Port
    Value type: REG_DWORD   
    Value data: 0x1774 (Decimal 6004)
    D. Check if the RPC ports are used by other applications instead of Exchange by using : netstat –o
     Then it will return all active TCP connections and the process ID (PID) for each connection.
     After that, please check the application based on the PID on the Processes tab in Windows Task Manager and confirm if it’s Exchange server.
    Additionally, ExRCA is a perfect tool to test the whole connection between client side and Mailbox side:
    https://testconnectivity.microsoft.com/
    1. On the ExRCA website, under Microsoft Office Outlook Connectivity Tests, select Outlook connectivity, and then select Next at the bottom of the page.
    2. Enter the required information on the next screen, including email address, domain and user name, and password.
    3. Choose whether to use Autodiscover to detect server settings or to manually specify server settings.
    4. Accept the disclaimer, enter the verification code, and then select Verify.
    5. Select Perform Test.
    <Resource for reference>
    How does Outlook Anywhere work (and not work):
    http://blogs.technet.com/b/exchange/archive/2008/06/20/3405633.aspx
    How to use the RPC Ping utility to troubleshoot connectivity issues with the Exchange over the Internet feature in Outlook 2007 and in Outlook 2003:
    http://support.microsoft.com/kb/831051
    Test Outlook Anywhere Connectivity:
    http://technet.microsoft.com/en-us/library/ee633453(v=exchg.150).aspx
     [RZ1]It’s part, please re-layout
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I've just restored the M11 to Windows XP with the disks provided and Outlook Anywhere connected without issue. As strange as it sounds, this looks to be isolated to this particular model of laptop and Windows 7.
    I've used the same Enterprise copy of Windows 7 and Office on a variety of laptops and pc's and none have come across this problem. The only commonality I can see is the hardware and OS.
    Aftery trying to troubleshoot this unsuccessfully with Microsoft tech support for a few hours, they eluded to the fact that this +could+ be a hardware related problem. (driver, adapter properties, etc)

  • 12.1.0.71 installed - itunes outlook add-in lost

    Since I installed itunes 12.1.0.71, my iphone 6 was not able to sync calendar and contacts any more. The itunes outlook add-in was also gone and I am stikk unbable, to get it back in the add-ins of my outlook 2013 (win 8.1). What do you suggest, I should do?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If the advice above doesn't resolve things you could try this alternate version:
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    which is a 64-bit installer for the 32-bit version of the core application, similar to previous 64-bit releases.
    Or roll back to the previous build:
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    tt2

  • Icloud outlook add-in not working in the last week

    in the last week my icloud add-in to outlook 2010 stopped working. It simply wasn't working and I tried logging out of my control panel and back in. The outlook add-in now says that my username is wrong but it isn't. I seem to be able to log-in to the icloud control panel ok but the outlook add-in doesn't seem to be working. I think it might be linked to the introduction of IOS 7 and the update for icloud control pabnel to 3.0. Anyone have any ideas or fixes?

    I just had a user call in with this exact same problem.  The steps that I took to resolve the issue are as follows:
    1.  Ran a repair on office installation and rebooted computer. (Not sure if this was nesary).
    2.  In Outlook go to File-Options-Add-Ins.  Below for Manage COM Add-ins click the Go button.
    3.  find iCloud add-in and check it off to enable it.  Click on OK until your back at outlook.
    4.  Close and relaunch outlook.  Go back to File-Options-Add-Ins and down at the Manage change the dropdown to "Disabled Items".
    5.  Choose the iCloud.dll checkbox and click on enable.
    6.  Close outlook and reopen.  You should now see the ribbon for iCloud sync.

  • Outlook adds a space to radio contacts

    Hi, I´m using Outlook 2010, I'm adding a Nextel radio number in the Radio telephone field, I write the id  in the format 52*5555*1, this is the format for the nextel radio ID, the two first numbers are for the country, the numbers in the middle are
    for the client or group and the last numbers are for the radio itself; the problem is when I write directly the complete number Outlook adds a space between the first two numbers an the first star, openening the deatils of the contact is possible to see that
    the first to numbers are added to the local number an the rest of the data is added to the extension field; If I modify the data deleting the space in the phone number window Outlook inmediatly adds the space when I changed to another field. There is a way
    to avoid this behaivor?

    Hi,
    I did it on my side and reproduced this issue.
    Based on my understanding, it may be a behavior issue(?) since we don't need to type the numbers for the country, in your case, I think "52" should be Mexico, so just select "Mexico" from "Country/Region" as below,
    "52" will be added automatically:
    Then add the middle part in the "Local number", and *1 in the "Extension". It will then be displayed as you expected.
    If I misunderstood anything, feel free to let me know.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Cannot send email from Outlook 2010 without disabling iCloud Outlook Add-in

    I have seen a few discussions on this but no answers. I have bought a new PC. Installed Outlook 2010 and iCloud latest version 3. All seems to work fine but emails go into the Outbox and dont get any further. If I remove the iCloud Outlook Add-in then I can send my emails but of course now cannot see my contacts nor my calendar! So it's one or the other and I'm currently going backwards and forwards between each. I have uninstalled and gone back to an earlier version 2 of iCloud with no success, same problem. I have uninstalled that and now reinstalled version 3. The problem remains. Can you advise on how to solve this please?

    Then it has nothing to do with iCloud, contact Bell and if they can't help, Microsoft

  • Flex Table Add Row Issue with Dynamic Entry Lists in Visual Composer

    All,
    Your help would be kindly appreciated in resolving an 'Add Row'-issue within a Flex Table that uses Dynamic Entry Lists in Visual Composer. The issue here is as follows :
    When I use a [Local Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=O5hrG2aMxWZ84Mu1211193041]to populate a row field, the initial row and all next rows are emptied upon 'insert row', they loose their selected values and also the entry list values ('pull-down menus') are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    The initial row does [show the entry list values |http://www.postyourimage.com/view_image.php?img_id=2HybmEHAuQYs9cg1211192766]from the Local Dynamic Entry List based on the dynamically assigned input value; upon 'insert row' the entry lists are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    When using a [Global Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=m5p2KYuBb442dTq1211193501]to populate the row fields the Flex-table behaves normally as expected. Unfortunately with a Global Entry List it is not possible to dynamically assign a input value. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=U96V0zENCCyO3gA1211193157].
    Please also see the [issue summary image|http://www.postyourimage.com/view_image.php?img_id=06xti08tIEfely1211195178] I made to visualize the issue.  What I basically would like to know is whether this is a 'known issue' or not, or that it is an issue that can be fixed or whether there is an alternative workaround available ... I'm using Visual Composer 7.0 and the Portal is at SP 13.
    Many thanks,
    Freek

    Hi,
    you should be able to assign a dynamic value with global entry lists as well. If you say @myParam as dynamic value. VC will indicate in red letters, that the field @myParam is unknown. However, it will work, as long as @myParam is known in the form or table where you use the entry list.
    I have never heard of the problem that entry lists are emptied after "insert"-event.
    Kindes Regards,
    Benni

  • Outlook Add-On in SAP Business One 8.8

    Hi Experts
    I recently Upgraded to SAP Business One 8.8
    I installed Outlook Add-On (I installed Outlook server, outlook .ard file and Outlook stanalone) when I start the add-on its is connected and it gives a message Initialization Failed.
    So I cannot see the  'create default templates' screen.
    But the strange thing is when i click syncronize in outlook it can syncronize all datas and it also creates snapshots for business patners.
    My question is how I can fix the error says initialization fails and how to send emails from SAP business one using Outlook.
    Thanks and regards
    Vinodh Kumar

    Hi Vinodh Kumar,
    What is your OI version?  I am afraid there is no 8.8 compatible version ready yet.
    Thanks,
    Gordon

  • Just got iPhone 5, get home and find iCloud Outlook Add-in does not install under Windows XP.  I am loathe to upgrade to Windows Vista/7/8 just yet.  Can I obtain and use an earlier version of iCloud Outlook Add-in?  My iPad II synchronizes!

    Just got iPhone 5, get home and find iCloud Outlook Add-in does not install under Windows XP.  I am loathe to upgrade to Windows Vista/7/8 just yet.  Can I obtain and use an earlier version of iCloud Outlook Add-in?  My iPad II synchronizes!

    There is no 'earlier' version that supports XP. iCloud launched with Vista/7 support only.

Maybe you are looking for