SBO Folders

Hi
I' ve developed a form with multiple folders using Screen painter.  The lables, text boxes created each folders and set the "From Pane", "To Pane" as to relavant folders.  In those folders two of them are matrix folders. If we run preview on screen painter the fields are displaying properly in the relavant folders.
Then I' ve written the code for Combo box..etc.,  When I run the code, the particular form is displaying with folder without any fields in the folders.  If I open the form by using screen painter, and preview once then close the screen painter (without stop the program) then again i open the form from the menu, all the fields relavant to that folder is displaying properly.
Let me know, if anybody knows, how to overcome this problem and I would to like to say "Thanks in advance"
The code I've written as follows and I am using SBO 2005 B and dot net 2005.
Public Sub display()
        SetApplication()
         Dim oColumns As SAPbouiCOM.Columns       
         Dim oItem As SAPbouiCOM.Item
        Try
            LoadFromXML("MachineMaster.srf")
        Catch ex As Exception
            MessageBox.Show(ex.Message)
        End Try
        Try
            Oform = SBO_Application.Forms.Item("frmachine")
            ' Add Edit Items
            oItem = Oform.Items.Item("txtmcode")
            txtmcode = oItem.Specific
            oItem = Oform.Items.Item("txtmname")
            txtmname = oItem.Specific
            oItem = Oform.Items.Item("txtgname")
            txtgname = oItem.Specific
            AddMgrpcombo(txtgname)
            oItem = Oform.Items.Item("txtwcr")
            txtwcr = oItem.Specific
            AddWCntcombo(txtwcr)
            oItem = Oform.Items.Item("txtpdate")
            txtpdate = oItem.Specific
            oItem = Oform.Items.Item("txtidate")
            txtidate = oItem.Specific
            oItem = Oform.Items.Item("txtmdn")
            txtmdn = oItem.Specific
            oItem = Oform.Items.Item("txtnmdt")
            txtnmdt = oItem.Specific
            oItem = Oform.Items.Item("txtmhr")
            txtmhr = oItem.Specific
            oItem = Oform.Items.Item("txtmst")
            txtmst = oItem.Specific
            oItem = Oform.Items.Item("txttsp")
            txttsp = oItem.Specific
            oItem = Oform.Items.Item("txtremark")
            txtremark = oItem.Specific
            oItem = Oform.Items.Item("txtaccode")
            txtaccode = oItem.Specific
            AddAccodecombo(txtaccode)
            oItem = Oform.Items.Item("txtacname")
            txtacname = oItem.Specific
            ' Add a matrix for shift
            oItem = Oform.Items.Item("mat1")
            Omatrix = oItem.Specific
            oColumns = Omatrix.Columns
            ' Shift Code
            colscode = oColumns.Item("colscode")
            colsname = oColumns.Item("colsname")
            Omatrix.AddRow()
            AddsftToCombo(colscode)
            ' Add a matrix for item
            oItem = Oform.Items.Item("mat")
            Omatrix = oItem.Specific
            oColumns = Omatrix.Columns
            ' item Code
            colicode = oColumns.Item("colicode")
            coliname = oColumns.Item("coliname")
            colqty = oColumns.Item("colqty")
            coluom = oColumns.Item("coluom")
            Omatrix.AddRow()
            AddItemsToCombo(colicode)
            SetToolBarEnabled()
            Oform.DataBrowser.BrowseBy = "txtmcode"
        Catch ex As Exception
            MessageBox.Show(ex.Message)
        End Try
    End Sub
Thanks and Regards,
Venkatesan G.

Hi Venkatesan,
I remember having had a similar problem a while ago ("folders" showing properly in the ScreenPainter, but not in the application).
If I recall correctly, it's a matter of binding the tabs properly to a DataSource.
As the SDK help mentions:
To hold data within a Folder item, the item must be bound to
a data source (UserDataSource or DBDataSource) using Folder.DataBind.
You will also have to set the Folder#ValOn and Folder#ValOff (though I'm not sure whether the latter is absolutely necessary) properties properly. The values of the "ValOn" property should be different for each folder. Setting the value of the DataSource the "folder" is bound to to one of these values should select the proper "folder".
Yours,
Olivier

Similar Messages

  • Folders in Screen Painter

    hello,
    i wonder how the folders (tabs) in bo work.
    when i add a folder it is drawn as an frame but not with tabs that i can give a caption.
    what is the logic behind the pane levels?
    which level do i have to set for the folder?
    which levels do i have to set for the controls. e.g. a button on tab1 and a textbox on tab2?
    please help!
    thanks.
    matthias

    Hi Matthias,
    When You add a folder to SBO, what you add is the tab, not the frame. Sample code:
    Dim oFolder As SAPbouiCOM.Folder
    Dim oNewItem, oItem As SAPbouiCOM.Item
    'I use an existing folder to get some values'
    oItem = oForm.Items.Item("39")
    'Create the new folder'
    oNewItem = oForm.Items.Add
                ("Folder1", SAPbouiCOM.BoFormItemTypes.it_FOLDER)
    oNewItem.Top = oItem.Top
    oNewItem.Height = oItem.Height
    oNewItem.Width = oItem.Width
    oNewItem.Left = oItem.Left + oItem.Width - 70
    oFolder = oNewItem.Specific
    oFolder.Caption = "New Folder"
    oFolder.GroupWith("39")
    Now you must define the pane level asigned to the new folder. In my case I use 9 value.
    You must asign this value to the controls which are going to be placed in this folder,
    in the FromPane and ToPane properties. Code sample:
    Dim oNewItem1 As SAPbouiCOM.Item
    oNewItem1 = oForm.Items.Add
                 ("UniqueUID", SAPbouiCOM.BoFormItemTypes.it_STATIC)
    oNewItem1.Left = 25
    oNewItem1.Width = 125
    oNewItem1.Top = 25
    oNewItem1.Height = 14
    oNewItem1.FromPane = 9
    oNewItem1.ToPane = 9
    And then finally, you must code the folder´s click event,
    to activate the related controls. Code sample:
    Private Sub con_ItemEvent
       (ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean)
       Handles con.ItemEvent
    If pVal.ItemUID = "Folder1" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK And pVal.Before_Action = True Then
    'This event is executed when the folder is clicked.'
    'The pane level should be changed in order to see the '
    'related controls'
       Dim oForm As SAPbouiCOM.Form
       oForm = con.Forms.Item(FormUID)
       oForm.PaneLevel = 9
    End If
    End Sub
    So, moreless, the folder control is just like a button that has some related controls.
    Hope helps,
    Ibai Peñ

  • Microsoft Outlook utility with SBO

    Hi Experts
    Any one can tell me how we can integrate microsoft outlook with SBO. plz send me Any help document  for this. Can we send any document by MS outlook to any BP and Can we send simple mailing to BP be SBO . So give me link for such information.
    Thanks
    regards
    Gorge

    Hi Gorge,
    Please follow these steps:
    1. Boot the affected PC, if not done already.
    2. Login as Administrator into Windows.
    3. Login into SAP Business One as a Superuser
    4. De-register the Add-on Outlook Integration
    5. Logout from Business One and Login again.
    6. Deinstallation will be triggered automatically via Windows Installshield. Close Business One.
    7. Launch Regedit, make a complete export of Registry.
    8. If exist, delete the entry 'Outlook Integration' under HKEY_CURRENT_USER\Software\SAP\...\Addons.
    9. If exist, delete the entry 'Outlook Integration' under HKEY_LOCAL_MACHINE\Software\SAP\...\Addons.
    10. Close Regedit and open Windows Explorer. Navigate to the folder where 'SAP Business One.exe' is located. In the very same folder there should be two *.sbo files. Delete both.
    11. Afterwards type into the Adressbar of Windows Explorer %temp%. After pressing ENTER the folder TEMP will be opened. Make sure there are no manually saved files there, which might be needed later. Then delete all files and folders. Some files cannot be deleted (Windows won't allow you).
    12. Open Add / Remove Programs (Vista: Programs and Features) and make sure no entry for Add-on Outlook Integration exists.
    13. Make sure that on the Server where the SAP Business Server application is installed, you also have the Outlook Integration Server installation done. There should be an entry under Add or Remove Programs.
    14. Back on SAP Business One Client, reboot the PC and login as Windows Administrator and Superuser into SAP Business One. Make sure that Microsoft Outlook is already installed on the Workstation and is NOT launched. Register Outlook Integration Add-on again. Set start option 'Manual' for it. Log off an in from / SAP Business One.
    Installation of the Add-on via Windows Installshield will be triggered
    14. Launch the Add-on manually. This will trigger the so called Initialisation. Some UDF will created.
    15. If this went successfully you can adjust the start option for the Add-on to your needs.
    If this should not solve the issue, please let us know
    a) Version of SAP Business One + Servicepack + Patchlevel
    b) Used SQL Server
    Kind regards
    Mario

  • Problem with folders when I click on some of these

    Hi, I've got a problem when I click on some of my added folders on a system form (Service Contract).
    I added five new folder. The three first are perfect, I don't have anything to say about it, but the last two one cannot be focused correctly.
    By example, suppose five folders: fol1, fol2, fol3, fol4, fol5 added respectively from fol1 to fol5. Suppose I click on fol2. Then if I click on fol4 or fol5, theses one will show the right controls (the panelevel is changed appropriately), but the "image" of the folder still stay on fol2. This doesn't happen when I'm in add mode, but in all other modes.
    Thanks in advance !!
    By the way, anyone know how to change the total width occupied by a group of folder ?
    François
    Message was edited by: Francois Robert-Nadeau
    Is it possible that it could have a maximum of folders that we can put on a system form ?

    The total width occupied by the group of folders is not changable, it's determined by the width of the caption. But however, the real visible 'folder' is determined by a rectangle. (Also see this image: http://zooi.ookvan.mine.nu/folders.JPG)
    And concerning your "pressed" status of your fol4 and fol5, (if you're not have more folders then 9, as Lita mentioned) Isn't there a event that catches the click or item_pressed event? Because if you set the bubbles event and set the BubblesEvent, SBO see you are saying "Hey, I'm done", and does nothing more. So it does not change the status of the folder item...
    Hope it helps...  Grtz, Rowdy

  • What is the diff between SAP Netweaver B1i and B1i that comes with SBO 2007

    Hi
    There is SAP Netweaver B1i which is used for integration with SAP R3. But when you get SBO 2007 it also comes with B1i. Is there a difference or is it the same tool??
    Thank you for your time.

    Louis,
    B1i on the SAP Business One 2007A Preview release is the same as B1i 2005A as far as what it is and how it works with relation to integrating SAP Business One and R/3.  There are new features that are part of B1i 2007A of course that are not in 2005A such as integration with SAP BW, an updated Control Center as well as some other features such as the installation and upgrade routines.  You should have a look at the documentation in the ..\Documentation folder and specifically in the "Integration" and "PEP" folders on the preview media.  This is also, as mentioned, the PREVIEW version, so there will be updates to it forth coming before general release.
    HTH,
    Eddy

  • My picture folder is missing from my laptop and I am having trouble with how to organize my pictures in folders

    I have been trying to learn how to use my MacBook Pro better so I can get my photos on it. I do not like iPhoto at all because it was not letting me organize my photos the way I always did in Windows Explorer. I am now trying to use Lightroom and I have run into some issues with how my photos are showing up.
    1. Whenever I removed my photos from iPhoto so I could start over, my Picture file in Finder disappeared. I do not believe I deleted it but somehow I must have. I was trying to just delete my pictures from Imgages under All My Files. I thought that All My Files was duplicating data and I don't want duplicate pictures on my computer. However, now I am just wondering if All My Files is just a link to my actual files. What is the purpose of that?
    2. I imported one photo card to try to work with it and made a new Pictures folder on my desktop and arranged it using some folders and sub-folders I created.
    3. I then uploaded these through lightroom.
    4. Somehow, all of my photos were showing up in images, which is not where I wanted them and I deleted the duplicates.
    5. Now many of my folders in the Picture file I created on the desktop are empty with no photos
    6. I tried to restore my pictures from the trash to Images under All My Files and it keeps putting them into documents
    7. I have been trying to learn how to use this computer but it seems so different from what I was always used to with Explorer. This should not be that complex but I search and search on the web and can't seem to find exactly what I need to help me

    iMessage and FaceTime went down yesterday for some people. Mine is still down. My iMessage is saying the same thing about being activated. Sounds like you are still down too. Ignore the status page that says everything is fine - it lies.

  • Close all folders in Mail?  Color Label folders?  Find folder?  And More!

    Hi all.
    I have a LOT of mail. They're all very organized, though. Heaps of Mailboxes (Folders) and Sub-folders.
    I also have heaps of rules dutifully sending incoming mail to their appropriate mailboxes.
    However...
    It has reached a point where one of of the major bottlenecks in my daily workflow is sorting through all these mailboxes.
    There are 5 primary mailboxes with perhaps 100-ish subfolders or sub-subfolders. Maybe more.
    When they are all open, or a lot of them are open, it is difficult to find the a specific folder when I need it. It would help if I could close all open folder with a shortcut.
    Is this possible?
    It would also help if I could visually distinguish each level. Can I color label the mailboxes(not the messages themselves)?
    Another help would be if I could run a search for a folder Mailbox name. Is this possible?
    Lastly when I create a rule I would love it if there was an option to 'Create new Mailbox' in the rule dialog box rather than having to create the mailbox first. Am I just missing this? See link for illustration:
    http://img.skitch.com/20080820-eaqmy89emw6xm5pcj86iuqu992.jpg

    I just had a look and you need to create the mailbox PRIOR to asking the rules to move it into that.
    Now, automator lets you create a new workflow, but not sure as to how to set that one up (might be possible; however, my mathematical brain tells what you want to achieve is flawed:
    1) IF new mail equals "tangerine", create new mailbox tangerine, then move message to mailbox "tangerine. (FINE so far!)
    2) the second "tangerine" message arrives, and the workflow should FAIL (because it cannot create a "new" mailbox "tangerine", as there is ALREADY a mailbox named "tangerine")
    3) if automator cannot execute "If" and "and" and the "sort by" all together, then distinguish (a "tangerine" message might actually need to go to "pear" but refers to "pears and tangerines", so it ends up in the wrong mailbox), you may have to start and restart mail, until all stages of the script have been executed.
    You see the problems?
    Anyhow, here is a link to some automator info:
    http://automatorworld.com/archives/automator-for-os-x-105-leopard-revealed/
    Good luck

  • How do I consolidate multiple Itunes folders on one computer?

    I had a mishap with my external hard drive (I didn't know how to use it properly..yup USER ERROR!) so I have three different Itunes folders intertwined in my music folders with different previous Itunes libraries.  I made a backup of the entire music mess on a flash drive, have a new computer and finally an ipod to put my music on... 
    Can someone give me some detailed steps to be able to consolidate all of my many Itunes libraries and let me know how I can access the music in my previous Itunes libraries?  I want to make sure that I still have the rights to the music that I purchased in the past.  I had some music in the Itunes cloud which is great but not nearly all of it...DRATS!
    I found some steps to consolidate music from different computers onto one but I'm not sure that the same steps apply to my situation.  Here are the links that I was looking at in eHow:  http://www.ehow.com/how_5704389_consolidate-multiple-itunes-libraries.html  and  http://www.ehow.com/how_8149083_can-itunes-libraries-two-computers.html.
    Thanks so much in advance!   
    Itunes libraries make my brain hurt!

    Import everything into one library and then dedupe it.
    tt2

  • How can I synchronize all hotmail folders in Mac's "Mail"? (Not just Inbox)

    I tried to synchronize my hotmail accounts in Mac's Mail but only those emails inside "Inbox" can be synchronized. No other folders under my hotmail can be synchronized. Is there any tools to solve this problem?

    If you right click on a son in iTunes and click Get Info. Under the Sorting tab iyo can change how the songs is sorted in iTunes
    Tips for using song and CD info to organize your music
    You can edit information in the Info window to make it easier to find and sort items in your library. For example, you can:
    Group individual movements on a classical CD into one work by indicating the name of the work (for example, “Piano concerto in A Minor, Op. 54”) in the Grouping field.
    Group songs that are part of a compilation together in your library by clicking Details and selecting the checkbox next to “Album is a compilation of songs by various artists”.
    Identify the individual artists on a tribute album in the Artist field, and type “various” in the Album Artist field.
    Create your own genre category by clicking Details and typing the category in the Genre field.
    Change the order in which tracks on a CD play by changing the numbers in the Track fields.
    Create a Smart Playlist that includes only songs that are just the right speed for your workout by typing the number of beats per minute in the BPM field. For instructions, see Create a Smart Playlist.
    Identify a movie as a music video (click the Options button, and choose Music Video from the Media Kind pop-up menu).
    Identify an item that you imported from a CD as an audiobook, so it appears under Audiobooks instead of Music (click the Options button and choose Audiobook from the Media Kind pop-up menu). If you do this, iTunes also remembers your place in the audiobook.
    Enter custom sorting criteria for an item. Select the item, choose File > Get Info, click Sorting, and enter the custom text.
    Does the non-syncing songs play in iTunes on the computer?
    is there anything different about the songs that do sync and those that do not? Like where they cam from? The format (Get Info>under the File tab).

  • I have 3 podcast folders in my iTunes account, how can I combine them into one folder in my iTunes library?

    I have 3 podcast folders in my iTunes account, how can I combine them into one folder in my iTunes library?

    What is the title of the other bookmark folder that can not be deleted?
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Please report back soon.

  • Can anyone help me, I work on my mac air most days and would like certain folders to automatically update onto my iMac when i return home, is there a way of doing this? Many thanks.

    Is there a simple way of linking the same excel folder on my imac and mac air, so as the one on my imac would automacily update when i return home, from the mac air? Fairly new to all this, so any help would be appreciated.

    Open a Finder window and you should have a folder called iClouDrive in your home folder. Drag your documents or folders you want to share into this folder and it will be available on your other computer (look in the same folder).
    As already mentioned Dropbox is a good solution; however, I like to use my free 5 GB from Apple's iCloud because I am not using very much space there. I reserve my Dropbox for other uses such as family photo and recipe sharing.
    Good luck!

  • How to create multi-folders in a single folder in numbers

    how do you create multi-folders in a single folders. I have multi files orginized by month, but now i need to group it into a single folder by year.

    See this link:
    http://apex.oracle.com/pls/otn/f?p=31517:107
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • How do I add pics from my PC to my phone in several folders?

    I would like to find a simple tutorial for this function but all the tutorials deal with music and I have ZERO interest in putting music on my phone. I would like to put pictures from my PC on my phone. I have managed to transfer entire folders several times but each time it deletes the previous folder. I would also like to know how to add a single photo to an existing folder once I have created the folder.
    There is no need for me to edit because my pics are already edited and the way I wish them to appear.

    This tutorial is very straight forward. http://support.apple.com/kb/HT4236
    Keep in mind you cannot select multiple folders to sync, iTunes will do exactly what you describe.
    What you can do is sync one folder and all the contents of that folder will sync.  In other words, create a folder with all the pics you want synced, you can seperate them into subfolders and then select that "master" folder as your sync point.

  • Where can I find a tutorial about Show Folders Hierarchy?

    I have Permiere Elements 11 which also has the Elements Organizer as part of the program. And I have Photoshop Elements 10 also. The Elements Organizer with the video editing program is what I'm interested in though. I think my folder hierarchy is not right. I'd like to straighten it out but I don't know how. Can someone direct me to a tutorial on how to work with the Folders Hierarchy.
    This might be a different question, but it might be related to my confusion about the Folder Hierarchy in the Organizer. On June 10 I was copying some photos from my hard drive to the Organizer - probably a dumb thing to do. While I was doing this, the Pictures folder (View and organizes digital pictures) no longer took me to all my photos on the hard drive. The Pictures folder is under Personal Folder, Documents, Music, Control Panel on the Windows 7 desktop to the right of the Start Menus stuff.
    When I click on Pictures now I get two folders: Adobe and Pictures. The Adobe folder has these values - Size: 0 bytes; Contains: 0 Files, 1 Folder; Created: Monday, June 10, 2013; Attributes: Read-only (only applies to files in the folder. I deleted the Abobe folder several times but it keeps coming back.
    What I would really like to do is to restore my Pictures folder to its original state so that I will have access to all my hard drive photos immediately instead of clicking around in those folders. I vaguely think that something I did to the folder hierarchy in the Optimizer has messed up other things on my computer.

    You wrote, "So if you moved the files, what you need to do is move them back..."
    I don't know how to do this. Could you tell  me how. I moved about 50 photos into the Organizer. Now I know I should not have done this. I'd like to correct the mistake.
    When I click on the Show Folder List icon this is what I see:
    My Pictures
         Pictures
              Faces
                   Clowns
         My Videos
         Computer
                   C:
                   Program Data
                   Users
                        Tommy
                              Faces
                                   Dancing
                                   Faces
                                   Lovers
                                   Racing
                                   Tommy
                         Pictures
                  D
                  E
                  F
                  G
    This makes no sense to me. But I could live with it - except perhaps something I did has made my PrE11 impossible to work with. When I put new clips via the memory card into the program, they do not go into the Timeline. All I get is an error message.
    I like the Adobe programs and don't want to give up on them, especially since my problems probably have been self-imposed.

  • On list view in folders, how do I click drag second group of files?

    Back in Snow Leopard and all previous systems, I was able to on list view in a folder be able to click and drag a set of files to select them, then by pressing command again, click drag on a second group of files I would like to select together and so forth. This was handy as I can select really quick on list view folders and files which I need. Obviously the files are listed alphabetically and I don't need to select them all, only groups of files eg. files which are all pdfs that are randomly spread out based on names, or mp3s which I want to move but not move the folders that are in the same folder. You get my drift.
    Now on Lion, I can only click drag first group of files, and then on second selection by pressing command, I cannot drag anymore files except for the first click of the file I select.
    Is this going to be like this for Lion or did Apple leave this out accidently? Is there a setting I can set back to previous style of group click/drag selection?
    This is a bit annoying as I would like to quickly group select a could of groups in a folder QUICKLY to drag to other folders or to simply trash them all in one go. Now I have to stop and start and it slows down my productivity when I have to clean my files on my computer.
    Thanks for your help.

    I have the same problem.
    I've made another post...
    Hoping this is a Bug and not a new feature...

Maybe you are looking for

  • IPhone 4s - Voice mail Button - Settings required

    Hi Apple and all I have an iPhone 4s in London UK. it is unlocked so I didnt want to go with expensive contracts like O2. So I am using a cheap contract from company called TalkMobile. Talkmobile provide better signal and cheaper line of sim only con

  • Need help with .asp Virtual Includes

    Hi, I am using; Dreamweaver 8 Win XP Pro IIS6 Virtual Directory Information in IIS: Local Path: C:\Inetpub\wwwroot\hseih Application Name: hseih Execute Permissions: Scripts Only Configurations>Options>Enable Parent Paths: Checked Read, Write, Browsi

  • All music and other things on itouch GONE except for one series of podcasts

    I need help! My computer is low on memory, but I didn't think that would mess up me connecting my iPod touch to my computer. After connecting it, I did not look at my library, but later when I went to listen to something ALL my music, playlists, proo

  • DTMF doesn't work for outbound call

    We currently using UC520 and having strange problem.  When we call through SIP for outbound call DTMF tone is not transmitting.  and if I press multiple numbers with longer duration, It makes continuous tone on the other hand. My current dialpeer use

  • Customer discount when netting vendor payment with customer receivable

    Hi Guru, We built the netting process in which we net the vendor payment with customer receivable.  There is a problem.  The payment program takes the discount off from the receivable even after the term discount period.  e.g. we have a receivable fr