Only an Event Filter for my Addon !?

hi,
is it possible to set the event filter only for my addon and not for standard function or other addons ?
in my addon i'm usin a crystal report viewer. So i catch the Menu_CLICK-event 519 (preview) and 520 (print)
But when i use the event filter on a special form, the event Filter is set for the whole Business One.
For example, i set my filter on form 139. But if the user print on other forms (140, 133,...) the standard PLD should work !
What is going wrong?
oFilters = New SAPbouiCOM.EventFilters()
oFilter = oFilters.Add SAPbouiCOM.BoEventTypes.et_MENU_CLICK)
oFilter.AddEx("139") 'Formular
moSBOApplication.SetFilter(oFilters)
regards
Markus

Hi Rasmus,
thanks for help. Everything works fine now. I made some mistakes with the bubbleevent
thanks
Markus

Similar Messages

  • Blank Event Filter for Receive Event Activities:  OK?

    I've defined an event group that is linked to multiple Raise events.
    My event subscription is linked to this event group, and launches a workflow process when one of the event group's events is raised.
    What's bothering me is that in Oracle Workflow Builder, for the Receive event activity, since I can accept one of any several events, I have to leave the Event Filter field blank. From the Oracle Workflow Guide, chapter 4, section "To Create an Event Activity":
    "Note: You can only specify an individual event as the event filter. The event filter cannot be an event group."
    OK, so that means I have to leave my Receive event's Event Filter field blank. I'm not inviting unwanted events this way, correct? Do I have to code to prevent this workflow process from executing a "rogue" Raise event?
    This might be a silly question.
    Thanks,
    Art.

    Mike,
    any chance a future DPM version can/will leverage SQL Management studio/SQL Agent for backup job scheduling ? I am sure many DPM admins who (may) know the significantly greater scheduling flexibility of SQL server agent would love to
    see this happen.    
    The proposed workaround would require to build at least 6 additional filters (given the current filter uses the allowed max 7 days) and during 2 weeks in the year the unaware/unprepared DPM admin - may perceive the mmc crash as the beginning of the
    end.
    Please tell me someone is willing to look at the source code to get this remedied. I know this cant be a SQL problem since SQL server agent jobs run fine time change or no time change.  
    Thanks for your ongoing help already.
     Sassan
    Sassan Karai

  • Event filter for user form

    I tried to use the new method (AddEx) in event filter class to add filter to form that I've created myself by referring to formtype, but there is no filter done on this form. Anyone has encountered this problem before?

    The code to create the user form is
    Dim oCreationParams As SAPbouiCOM.FormCreationParams
            oCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
            oCreationParams.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Fixed
            oCreationParams.UniqueID = "MySimpleForm"
            oCreationParams.FormType = "MyForm"
            oForm = SBO_Application.Forms.AddEx(oCreationParams)
            '// add a User Data Source to the form
            oForm.DataSources.UserDataSources.Add("EditSource", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 20)
            oForm.DataSources.UserDataSources.Add("CombSource", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 20)
            '// set the form properties
            oForm.Title = "Simple Form"
            oForm.Left = 400
            oForm.Top = 100
            oForm.ClientHeight = 80
            oForm.ClientWidth = 350
    The code to add event filter is:
    oFilter.AddEx("139") 'Orders Form
            oFilter.AddEx("MyForm") 'my form
            oFilter = oFilters.Add(SAPbouiCOM.BoEventTypes.et_KEY_DOWN)
    This code is not working.

  • Can I switch calendars (Ex. "night shift" to "day shift" cal) with a repeating event, but ONLY for that one event??  It asks "for all events or only this event" if i change the time.  But it changes ALL events when i try and switch calendars.  Any help??

    I have 2 calendars set up for my work schedule, a "night shift" and "day shift" calendar.  I've set up repeating events fro Fri/Sat/Sun 3-11pm "night shifts" and Mon/Tues 7am-3pm "day shifts".  But lets say for example that I swap shifts and instead of working nights on Saturday like I normally would, I am now working days.  I want to change that in my calendar.  When I go to change the event, if i change the TIME it asks if i want to change all event or ONLY this event.  no problem....just this single event.  but when i go to change the event from the "night shift" calendar to the "day shift" calendar, it changes ALL the repeating events, and not just that one single event.   can anyone help with this???  am i doing something wrong?  is there a way to do this or not with the new iCal program???  i used to do this and never had any problems.    Thank you!

    You need to follow iPhoto terms since we only know what you tell us
    what are you calling folders - in iPhoto folders can not hold photos - albums hold photos and folders hold albums or other folders
    The basic default view of photo is by event (iPhoto '08 and later)
    Exactly what you you trying to do?
    LN

  • Set filter for only one column in tableview

    Hi
    i am using in MVC a htmlb:tableview with filter in only one column of 8.
    This is all working fine, except that the user can enter a searchsting in the filterfield for all columns, but in handle_event (of the controller) ; i only react to a text in the filterfield of column 4 and ignore all other filtertext , which were maybe entered in the other columns.
    My question:
    how can i  enter the filter only for one column, in a way that the user cannot enter any text in the filterfield of the other columns, only in column 4 ?
    my view:
    <htmlb:tableView id             = "requirements"
                     table          = "//model/pdst_reqs"
                     filter         = "APPLICATION"                
                     keyColumn       = "EXTID"
                     iterator        = "<%=model%>"
                     footerVisible   = "FALSE"
                     encode          = "TRUE"
                     visibleRowCount = "<%=model->rowcount%>"
                     width           = "100%"/>
    Best Regards
    Britta

    You can disbale the Filter for the particular column by setting the DISABLE_FILTER in the Iterator method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS. Here is the sample code
    method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS .
      CLEAR p_column_definitions.
      CLEAR p_overwrites.
      data tv_column TYPE TABLEVIEWCONTROL.
      tv_column-COLUMNNAME          = 'FLDATE'.
      tv_column-SORT                = 'X'.
      tv_column-EDIT                = 'X'.
      tv_column-ONCELLCLICK         = 'MyCellClick1'.
      tv_column-title               = 'Date '.
      APPEND tv_column TO p_column_definitions.
      CLEAR tv_column.
      tv_column-COLUMNNAME          = 'PRICE'.
      tv_column-horizontalAlignment = 'right'.
      tv_column-verticalAlignment   = 'middle'.
      tv_column-ONCELLCLICK         = 'MyCellClick2'.
      tv_column-title               = 'Currency'. 
      tv_column-EDIT                = 'X'.
      tv_column-DISABLE_FILTER      = 'X'.    " <-------Like this
      APPEND tv_column TO p_column_definitions.
    endmethod.
    Hope this will solve your problem.
    Raja

  • [Server 2008R2] Filter event logs for logged in users from clients on domain

    Hi All,
    I am looking for a script which can be run on a domain controller to check which user accounts logged in on the domain. I am looking for both the username and client. Reason why I need this is to check where service accounts are used.
    Thanks.
    Kind regards,
    Bart
    Bart Timmermans | Consultant at inovativ
    Follow me @
    My Blog | Linkedin |
    Twitter
    Please mark as Answer, if my post answers your Question. Vote as Helpful, if it is helpful to you.

    Hi Bart,
    To parse the event log, you can refer to the cmdlet "Get-WinEvent", and how to use this cmdlet to parse event log, please check this article, you can also add the "-computername" to query event log from remote computers:
    Use PowerShell Cmdlet to Filter Event Log for Easy Parsing
    To monitor the logon history, please check this function to start:
    function Get-Win7LogonHistory {
    $logons = Get-EventLog Security -AsBaseObject -InstanceId 4624,4647 |
    Where-Object { ($_.InstanceId -eq 4647) -or (($_.InstanceId -eq 4624) -and ($_.Message -match "Logon Type:\s+2")) -or (($_.InstanceId -eq 4624) -and ($_.Message -match "Logon Type:\s+10")) }
    $poweroffs = Get-EventLog System -AsBaseObject -InstanceId 41
    $events = $logons + $poweroffs | Sort-Object TimeGenerated
    if ($events) {
    foreach($event in $events) {
    # Parse logon data from the Event.
    if ($event.InstanceId -eq 4624) {
    # A user logged on.
    $action = 'logon'
    $event.Message -match "Logon Type:\s+(\d+)" | Out-Null
    $logonTypeNum = $matches[1]
    # Determine logon type.
    if ($logonTypeNum -eq 2) {
    $logonType = 'console'
    } elseif ($logonTypeNum -eq 10) {
    $logonType = 'remote'
    } else {
    $logonType = 'other'
    # Determine user.
    if ($event.message -match "New Logon:\s*Security ID:\s*.*\s*Account Name:\s*(\w+)") {
    $user = $matches[1]
    } else {
    $index = $event.index
    Write-Warning "Unable to parse Security log Event. Malformed entry? Index: $index"
    } elseif ($event.InstanceId -eq 4647) {
    # A user logged off.
    $action = 'logoff'
    $logonType = $null
    # Determine user.
    if ($event.message -match "Subject:\s*Security ID:\s*.*\s*Account Name:\s*(\w+)") {
    $user = $matches[1]
    } else {
    $index = $event.index
    Write-Warning "Unable to parse Security log Event. Malformed entry? Index: $index"
    } elseif ($event.InstanceId -eq 41) {
    # The computer crashed.
    $action = 'logoff'
    $logonType = $null
    $user = '*'
    # As long as we managed to parse the Event, print output.
    if ($user) {
    $timeStamp = Get-Date $event.TimeGenerated
    $output = New-Object -Type PSCustomObject
    Add-Member -MemberType NoteProperty -Name 'UserName' -Value $user -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'ComputerName' -Value $env:computername -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'Action' -Value $action -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'LogonType' -Value $logonType -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'TimeStamp' -Value $timeStamp -InputObject $output
    Write-Output $output
    } else {
    Write-Host "No recent logon/logoff events."
    Get-Win7LogonHistory
    Refer to:
    https://github.com/pdxcat/Get-LogonHistory/blob/master/Get-LogonHistory.ps1
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • The previewer does not show for the project itself only the events

    I recently bought Ilife 11 and installed it, before I left ilife '09 I was working on a video in imovie, So immediately I come to work on it after installing ilife '11
    I come to find that none of my current projects would appear in the previewer at the top right, only the events. I could hear the sound of the project, but not see the actual project, I found that if i view it fullscreen I can view the project... but we all know that you need to have the previewer view so you can edit text and stuff... Is there any way to fix this problem? I kinda wanted to get my video out by next wednesday, and at this point Imovie is unusable.

    Which iPad do you  have?
    http://support.apple.com/kb/HT5887
    only certain models support air drop

  • Cascade Filter for Hierarchy dimension

    Hi experts, I try to develop a design Studio Dashboard with BW DS. I would like to create a cascade filter for the same dimension but in different levels from hierarchy. First filter would have upper level node of the dimension that will filter same dimension but in lower level values. First selector has manually added Items corresponding the Hierarchy nodes from Level 2. I didn't find how to get specific level of dimension node with function getMemberList(). I created a DS with Level 2 of hierarchy but when I get the values with DS.getMemberList("ZREP", MemberPresentation.INTERNAL_KEY, MemberDisplay.TEXT, "ALL")) I get all final values from last level node. There is a way to get specific values from hierarchy level with getMemberList() ? Once I get all list values from a level on REP_SELECTOR on click on the selector has the following script: DS_1.setFilter("ZREP", REP_SELECTOR.getSelectedValue()); SHOP_SELECTOR.setItems(DS_1.getMemberList("ZREP", MemberPresentation.INTERNAL_KEY, MemberDisplay.TEXT, "ALL")); Unfortunately shop_selector is showing all values from ZREP without any previous filter. Do you know what is wrong on it? Thank you very much

    Hi Oscar,
    So let me explain a solution that will hopefully meet your needs.  A couple of comments before we begin.  Since you need to cascade through a hierarchy, for your first list selector it is not possible to use the standard Dropdown Box or List Box components because as you know, these must be populated with the getMemberList() method and this method does not return the hierarchy structure but only the member values (excluding hierarchy nodes).  So my proposed solution relies on using a CrossTab component as a selection list.  The benefit of this approach is that the hierarchy structure is preserved.
    The application layout is as follows:
    This example assumes that the selection in the first filter list populates (cascades) the second filter list and the second filter list selection filters the chart.  The first filter list selection does not also filter the chart but this functionality can easily be added if necessary.
    The steps are as follows:
    1.  The hierarchy has been set up as per your example, with a topmost root node and one level of text nodes below that.  The final level is represented by characteristics.  A screenshot is shown below:
    2.  Define two global script variables to represent the key value of the root node of the hierarchy as well as the standard member selection value for all members, as shown below:
    3.  Add 3 data sources to the application, all based on the same BEx Query, which includes the dimension (characteristic) that has the hierarchy, as shown below:
    4.  Add two CrossTab components and one Chart component as shown above.
    5.  Activate the hierarchy for the first data source DS_1 and set the default level to 2 as shown below:
    6.  Activate the hierarchy for the second data source DS_2 and set the default level to 2 as shown below:
    7.  Set the default members of the second data source DS_2 to represent the first level 1 group in the hierarchy as shown below.  This is required to ensure that the second list is populated with a default selection on startup.
    7.  Define the initial view of the third data source DS_3 in accordance with the requirements of the chart, as follows:
    8.  Assign data source DS_1 to the first CrossTab, assign data source DS_2 to the second CrossTab and assign the third data source DS_3 to the Chart.
    9.  Define the script for the On Select event of the first CrossTab as shown below.  The purpose of this script is to populate the second CrossTab based on the selection in the first one to cascade the filter.  Note that a selection of the root node is excluded to prevent duplication of the first level of the hierarchy in the second CrossTab list.
    10.  Define the script for the On Select event of the second CrossTab as shown below to filter the chart based on the selection:
    And that's it!  Let me know if this gets us closer to what you're looking for.  We can then refine the approach as needed.
    Regards,
    Mustafa.

  • File Filter for a Jlist

    I'm new to filtereing, ive been looking on site and this one, but can't quite get round the filtering process.
    Most filter examples I've seen are for Filechooser, but this program is a Jlist.
    I wish to show only one file type, namely an AVI format.
    Can anyone help
    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.io.File;
    import java.io.FileFilter;
    class Test2 extends JFrame
      DefaultListModel dim = new DefaultListModel();
      JList list = new JList(dim);
      private FileFilter fileFilter;
      public Test2()
        setLocation(200,100);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JScrollPane sp = new JScrollPane(list);
        sp.setPreferredSize(new Dimension(150,200));
        FNameFilter filter = new FNameFilter();
        File directory = new File(".");
        File[] files = directory.listFiles(filter);
        for(int x = 0; x < files.length; x++)
            if(files[x].isFile()) dim.addElement(files[x].getName().toLowerCase().endsWith("txt"));
        JPanel panel = new JPanel();
        JButton btn = new JButton("Delete File");
        panel.add(btn);
        getContentPane().add(sp,BorderLayout.CENTER);
        getContentPane().add(panel,BorderLayout.SOUTH);
        pack();
        btn.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            int selectedIndex = list.getSelectedIndex();
            if(selectedIndex < 0)
              JOptionPane.showMessageDialog(null,"Please select file to delete");
            else
              File fileToDelete = new File((String)list.getSelectedValue());
              if(fileToDelete.delete()) dim.removeElementAt(selectedIndex);
       public static void main(String[] args){new Test().setVisible(true);}
    }

    I tried FileFilter, but the system wouldn'y excpt
    that.
    Would it be directly related to the file only.Just how did you try "FileFilter"? You know that you have to implement one first, don't you?

  • Event filter question Nachi Worm ICMP Echo Request (2156)

    The intent is to only see this alert when the source is my IP space. Is it possible to create 2 seperate event filters for this sig? I'd like one sig to filter events when my IP space when it is the destination and the other would allow alerts when my IP space is the source. Would they need to be in some order like access lists i.e. allow specific icmp then deny other icmp?

    Yes this is possible.
    In version 4,x create a filter that matches SIGID 2156, and also matches $IN for the source and $OUT for the destination and set Exception to True for that filter.
    The create a second filter to match SIGID 2156 and leave the address fields defaulted so that all addresses will be matched and leave Exception as the default False.
    The first filter line will allow the 2156 to fire when the source is IN your network and the destination is OUT of your netowrk.
    The second will prevemt the signature 2156 for firing on any other address combinations like:
    Source IN and Destination IN
    Source OUT and Destination IN
    Source OUT and Destination OUT
    (Note: You asked that no alarms be generated for Destination IN, but also assume you don't want alarms for source OUT and destination OUT either)
    NOTE: In version 4.x the order of the 2 filters is unimportant. The Exclusion TRUE filter will always override all Exclusion FALSE filters so the Exclusion TRUE filter will always cause the signature to fire.
    In version 5.x the ordering of the filters is important.
    In version 5.x create a filter that matches SIGID 2156, and also matches $IN for the source and $OUT for the destination, leave the Actions to Subtract field blank (so not actions are removed) and set Stop On Match to True for that filter.
    Then create a second filter to match SIGID 2156 and leave the address fields defaulted so that all addresses will be matched and select ALL Actions in the Actions To Subtract field.
    The first filter line will allow the 2156 to fire when the source is IN your network and the destination is OUT of your netowrk.
    This is because that first filter will be matched and no actions will be removed (like produceAlert). The Stop On Match being True will prevent the checking of the next filter.
    The second will prevemt the signature 2156 for firing on any other address combinations like:
    Source IN and Destination IN
    Source OUT and Destination IN
    Source OUT and Destination OUT
    (Note: You asked that no alarms be generated for Destination IN, but also assume you don't want alarms for source OUT and destination OUT either)
    NOTE: In version 5.x the order of the 2 filters is important. The sensor will start at the top of the filter list. If that filter matches it will remove the actions in the Actions To Subtract field and then check the Stop On Match field.
    If Stop On Match is true then it stops processing the rest of the filter lines.
    But if Stop On Match is false then it will continue processing the rest of the filter lines.
    If the second filter had come first then it would have been matched even on the Source IN Destination OUT alerts and would have removed all actions and prevented the sig from firing. So the ordering is important.
    Also be aware that if Stop On Match was accidentally set to false on the first filter, then the sensor would have continued and also matched the second filter and would have removed all actions because of the second filter.

  • Hi i need to design a notch filter for eliminating ECG hum..i am working with NI ELVIS work station...and LABVIE 8.0

    hi i need to design a notch filter for eliminating ECG hum..i am working with NI ELVIS work station...and LABVIEW 8.0. Unfortunately it needs an addon software "Digital filter design toolkit", which i dont have. Its urgent..can some 1 plzz help me out.

    Hi and Happy Halloween,
    Depending on the license you have for LabVIEW and the toolsets you have installed, you may be able to have a "notch" filter. I would search your pallet for "Bandstop" because a notch is a type of Bandstop filter. Or, you can make a notch out of a high-pass and a low-pass or you can use the filter express VI. If these VIs are not on your pallet than you probably only have the LabVIEW Base and thus, cannot use these options.
    Charlie M. CLD

  • Hello, as I do in iCal to print only the events

    Hello,
    as I do in iCal to print only the events of a certain period of time without seeing me days without commitments?
    is it possible?
    thanks in advance
    Alice

    Have you tried to open the last message in a new window?
    If that includes the messages you do not want to print, you could limit the printing to e.g. the first page (in the print dialog).
    For more advanced options you could look at the [https://addons.mozilla.org/nl/thunderbird/addon/printingtools/ PrintingTools add-on].

  • How do I create a new event entry for a specific calendar?

    In my iMac Calendar app, I have created a few calendars for different functions.    But every time I try to create a new event entry for a specific calendar, the app seems to prefer a different calendar instead by default.   I cannot enter events in other calendars.   Is there a way to do this?   In previous versions, I would highlight the particular calendar I wanted to work with and the entry would go into that calendar.   Thanks!

    You don't.  Moments in Photos are the new Events, i.e. groupings of photos sorted by date taken.
    When the iPhoto Library was first migrated to Photos there was a folder created in the sidebar titled iPhoto Events and all migrated iPhoto Events (which are now Moments) are represented by an album in that folder. To open the sidebar if it's not already open use the Option+Command+S key combination.
    There's a way to simulate events in Photos.
    When new photos are imported into the Photos library go to the Last Import smart album, select all the photos and use the File ➙ New Album menu option or use the key combination Command+N.  Name it as desired.  It will appear just above the iPhoto Events folder where you can drag it into the iPhoto Events folder
    When you click on the iPhoto Events folder you'll get a simulated iPhoto Events window.
    The downside to the simulation is that the Albums/Events can only be sorted automatically by Title. But they can also be sorted manually, either in the sidebar or in the folder's window at the right.
    Ask Apple for more sorting options in Photos via https://www.apple.com/feedback/photos.html.

  • How to use only one event case at a time??

    Using LabVIEW, using the event structure is it possible to have only one event case execute at a time. For example, having event case controlled by keyboard, and the other event case controlled by mouse (clicking buttons) and only one being able to execute, not simultaneously. I was considering using a switch of some sort, but each case does not have a "stop if true/false" so I am open to a new method or work around. I attached code. I do not want output to be able to be sent from the keyboard case and mouse case at the same time.
    Thanks,
    Andrew
    Attachments:
    WiFi Motor Control & Cam Stripped.vi ‏29 KB

    Ah, OK. all you need is to keep state in a shift register that ensures that all "key down/mouse down" events are discarded after each key down/mounse down event until a key up or mouse up (resp.) has occured.
    Overall, you code is still way to complicated for this simple task. For example, you could eliminate all these "select" primitives and place the approriate diagram constant inside the respective case. On the other hand it is too simplistic, because you would think that certain key combinations should be allowed concurrently (e.g. up and left).
    What does the receiver actually do with the codes? Do you have any documentation for this device?
    LabVIEW Champion . Do more with less code and in less time .

  • How to install plugin and exta filter in photoshop cs ? and any special filter for special effects ?

    how to install plugin and exta filter in photoshop cs ? and any special filter for special effects ?
    kindly recommend me any best one and tel me step by step how i will add more plugins n filters

    A Plug_in normally come with an installer or install instructions. Check the documentation for the plug-in you trying to install.  It sounds like you don't know what plug-ins you want to install.  In that case you don't need to install any.  At some point you may read about a plug-in and what it can do and feel you have a need for it.  Then you will have a reason to install a plug-in that is not installed by default.  There may also be a cost involved most worthwhile plug-ins are not free.
    Adobe Optional Plug_ins downloads are Plugins Adobe want to remove from Photoshop  and no longer install by default. Also at some point in time these will no longer install into the current Photoshop for Adobe will remove feature or interfaces the use. For example the CS5 optional plugins will install in Windows CS6 perpetual version 13.0.1.3 but not in Subscription version 13.1.2 or perpetual Mac version 13.0.6 fot its 64bit only and the Mac CS5 optional plug-in for Picture package is only a 32bit plug-in.
    You will need to keep and maintain old versions of Photoshop if Adobe remove features you use in new versions of Photoshop.

Maybe you are looking for

  • Lenovo G560 and Office 2013 installation problems.

    I recently acquired a copy of Office 2013 and I upgraded my office 2010 to 2013. However, I get a response that some office packages could not open because set up could not find or validate an installition file. Please try reinstalling office from th

  • Setting tab order/reading order of a form.

    I have created a survey with fillable form fields and saved as a PDF. When I tab through the form to fill it out many of the radio buttons get skipped. Also, when using VoiceOver to read the form it does not read the form fields in the correct order,

  • Module changes in SAP from GAAP to IFRS

    Hi, I would like to know from you IFRS experts with SAP if you could please tell me the following What are actual changes within SAP modules FI, MM, PP, CO SD from GAAP to IFRS? In addition, what are the actual physical field or option changes that w

  • Workflow In solution manager

    Dear Friends,                    We have configured a Workflow for Escalation mails in Solution manager.                   The thing is we are Using request start . In that step we are using an                   Expression for date and time , where d

  • String to UTF8

    Hi! I need convert any string to UTF8 forma. Who? Thanks!