Event  0110 for own selection specification

Hi,
As per the requirement
I had to write logic for
selection specifications to decide which open items should be used with
which amount. The selection criteria are transferred in table T_SELTAB. If these criteria
are specified, they will then be expanded to include table T_ZBTTAB, in which one partial
amount is given for each selection specification. In this way, you can specify that, for
a payment of 300.00, account 1001 will receive 200.00 and account 1002 will receive 100.00.
Created a Function module added through customisation
Providing fixed data to populate T_SELTAB(providing selection criteria in such a way that the given amount will be used to clear two account 250 AED each)   this is hard coded
but when I execute still system does not consider the selection data given in T_SELTAB
could you let me know the exact value that needs to be passed into  T_SELTAB.
through which function module we need to pass this selection criteria.
Thanks In adv

Hi,
Thanks for the reply.
I have not implemented BTE. Instead using FQ Events(used in ISU FICA).
I put a break point in my function module and it do gets triggered when you execute the tcode FP06
As per FQ event documentation when I tranfer my own Selection criteria to table T_SELTAB for clearing respective document system does not clear documents based on my selection rather as per standard customisation.
Kindly advice
Thanks

Similar Messages

  • Search event logs for file system access

    I'm looking to create a script that will allow me to search Windows 2012 security event logs for access to specific folders.  Ideally it would allow the granularity to search for read access events (4663) and specify specific users to view.  One
    example would be to show events for drive F:\ where the folder name is JSmith (including subfolders) and the username is not JSmith.
    I've tried something like this, but can't see how to filter.
    Get-EventLog security | ? {$_.Message.contains("F:\JSmith")}

    Is the match explicit?  How can I use wildcard?  How can I exclude events?
    I recommend asking a search engine and doing some initial research. Here's a starter:
    https://technet.microsoft.com/en-us/library/hh849682.aspx
    http://blogs.msdn.com/b/powershell/archive/2009/06/11/windows-event-log-in-powershell-part-ii.aspx
    http://blogs.technet.com/b/ashleymcglone/archive/2013/08/28/powershell-get-winevent-xml-madness-getting-details-from-event-logs.aspx
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/24/use-powershell-cmdlet-to-filter-event-log-for-easy-parsing.aspx
    https://richardspowershellblog.wordpress.com/2009/03/08/get-winevent/
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • 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.

  • Event handler for selecting 3d views

    Hi,
    Is there any event handlers for when a user selects a view?
    I would like to be able to base actions after a view is selected but can't figure away to do it other then creating my own list of views.
    Thanks!

    ...Yes indeed! :-) It's called the CameraEventHandler. It gets triggered whenever a user changes a view. You can use the returned "event" object to get info about the camera (or modify it), to just use the eventHandler to trigger other activity as you mentioned.
    Here's a simple example which outputs all the camera properties to the console window at view change.
    //===============================================
    myCEH = new CameraEventHandler();
    myCEH.onEvent = function(CameraEvent)
    console.println("CameraEvent.binding = " + CameraEvent.binding );
    console.println("CameraEvent.far = " + CameraEvent.far );
    console.println("CameraEvent.fov = " + CameraEvent.fov );
    console.println("CameraEvent.currentTool = " + CameraEvent.currentTool );
    console.println("CameraEvent.canvas = " + CameraEvent.canvas );
    console.println("CameraEvent.isNewCanvas = " + CameraEvent.isNewCanvas );
    console.println("CameraEvent.near = " + CameraEvent.near );
    console.println("CameraEvent.projectionType = " + CameraEvent.projectionType);
    console.println("CameraEvent.targetDistance = " + CameraEvent.targetDistance);
    console.println("CameraEvent.transform = " + CameraEvent.transform );
    console.println("CameraEvent.viewPlaneSize = " + CameraEvent.viewPlaneSize );
    runtime.addEventHandler(myCEH);
    //===============================================

  • How to use common event handler for selected movie clips?

    I have a 50-state map in a flash movie. Each state is a movie
    clip.
    Goal: when mouse moves over a state or is clicked in a state,
    the state will be highlighted in a bright color and a small box
    will pop up near the state and display some information about the
    state.
    Question: I know I can add mouse event handler for each state
    movie clip. But this is simply not good since this has to be done
    50 times and codes thus scattered different places. Ideally, I only
    want to have one script that determines where the mouse position is
    when events trigged and then do right things (highlight the state
    and display info. in a pop-up). How can this be implemented?
    Thanks!

    There are a number of ways. Which way is best depends on how
    you have things set up so far.
    E.g. If they have an enumerable naming convention:
    e.g. each clip is like state_0 , state_1 etc.
    Then you can loop through them and assign them all to the
    same mouse event handler via the loop. You would need properties
    other than the name of the clip to identify the state. E.g. each
    clip could contain its own data or the index could be a pointer to
    the state data (objects with state name and info properties) in a
    separate array.
    //state clips named
    for (var i=0;i<50;i++) {
    this["state_"+i].stateindex=i;
    this["state_"+i].onPress= statePressHandler;
    var stateData:Array = [{name:"StateName,info:"this state
    Info"}, name:"StateName,info:"this state Info"}, etc...]
    function statePressHandler() {
    trace(this);
    trace(stateData[this.stateindex].name+"="+stateData[this.stateindex].info);
    Other ways are possible too but the best approach depends on
    how you have named the clips and whether you're creating them with
    code or whether they're already on stage from authoring (my guess).
    If they're already on stage and they're called "Alaska" etc, then I
    would be inclined to put them all inside a container clip that
    contains nothing else other than states. It would avoid the need
    for an array of clip names or for checking some other specific
    property of each clip to determine if its a 'state' clip and not
    something else in a for..in loop.

  • How to define our own selection screen for logical database  in abap-hr?

    Hi Friends,
    Can u please help me
    How to define your own selection screens for  logical database.
    we use to do like(goto->attributes-HRReportcatagerious ).but How to desin using  customer table like t599c, t599f and how to add to my logical database?
    Thanks in advance
    charan

    check out this online help
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dba65c35c111d1829f0000e829fbfe/frameset.htm
    Regards
    Raja

  • How to select specific rows in rtf template for complex calculation

    Hi,
    I want custom calculation in my rtf template and for this i need to select specific cell's value OR specific row's value. Any one please suggest how can I get this. Below is the example i have plotted using excel. My target is to get field 8 and 9 using sum and minus. We can calculate column over column, is there any way to calculate row over row? If I use variables, then i have to create so many variables because I have more columns and rows to calculate (here i posted one sample table). Any one please help me how can I get expected result other than using variables! If "Using variables" is the only way then also give your valuable opinions.
    Row No
    Curr Qtr
    PQtr1
    PQtr2
    3
    B3
    C3
    D3
    4
    B4
    C4
    D4
    5
    B5
    C5
    D5
    6
    B6
    C6
    D6
    7
    B7
    C7
    D7
    8
    B8=SUM(B4:B7)
    C8=SUM(C4:C7)
    D8=SUM(D4:D7)
    9
    B9=B8-B5
    C9=C8-C5
    D9=D8-D5
    Thanks.

    Hi AlexAnd,
    Thanks for the reply, I got 0 using both codes. This is a dummy table and I plotted 3,4 to give an idea of row number (as like as excel). Rows are individual data sets combining different measures and dimensions with different values.
    Account
    Curr_Qtr
    PQtr1
    PQtr2
    Deposit
    10
    15
    20
    Loan
    15
    20
    25
    Earning
    20
    25
    30
    Assets
    25
    30
    35
    Total
    =SUM(15,20)
    =SUM(20,25)
    =SUM(25,30)
    Expense
    =SUM(15,20)-25
    =SUM(20,25-30
    =SUM(15,20)-25
    Is there any way to identify the range or individual cell's value? Using variables I have to create lots of variables for each cells, I want to avoid that and want to use rows in calculation! Is that possible, Pls share your valuable opinions!
    Thanks.

  • Is there any event listener for changing the selection of layer?

    Hi all,
    I am looking into an event listener which fires on changing the selection of layer. I found 'Select' event listener which fires on selecting the different object.
    Actually the problem with Select event listener is that when we select an object and move it and deselect it by clicking on the document, event fires on the selection of that object. But if we again select the same object and move it, no event is fired at that time.
    Is there any workaround of this? So that the event is fired every time when we select the same object.
    Please help me on this..
    Regards,
    VG.

    Thanks for the reply..
    Actually I want the same behaviour as in illustrator i.e
    - Select a layer. (Notifier calls the listener)
    - Move it.
    - Click on the document.
    - Again select the same layer. (Notifier calls the listener again)
    - Move it.
    But in photoshop,
    - Select a layer. (Notifier calls the listener)
    - Move it.
    - Click on the document.
    - Again select the same layer. (Notifier doesnot calls the listener again as the layer is already selected in panel as you explained.)
    - Move it.
    Is there any way to get the same behaviour of illustrator in photoshop?

  • How to create own Selection Parameter for ME2M list

    Dear Sir,
    We use ME2m tcode for getting list related to Purchase Order . We have been told that we can create our own "SELECTION PARAMETER" for ths report . Kindly guide us as what steps need to be done for this pl .
    With Thanks and Regards
    Sonia Mittal

    you can also set a variant for the existing / default ME2M screen
    fill all the required entries then click on GOTO >>Variants >Save as Variant
    next time when you run T code ME2M, you can select the variant and run the t code
    hope this will help you

  • Select specific folder while install DP for SCCM 2012 R2

    Hi All,
    I have two Question:
    1- Is there any option to select specific folder like "C:\Windows\DP Packages\" to include all folders for Distribution Point (SCCMContentLib.....) -- Can we use Hidden folder?
    2- Can we Limit Distribution point to Use only specific storage Like 50 GB from disk?
    Thanks.

    1) Out of the box No. The contentlibrary will be created in the root of the drive by default
    2) When creating the DP you can configure "Drive Space reserve" available before another drive is selected.
    Kent Agerlund | My blogs: blog.coretech.dk and
    SCUG.DK | Twitter: @Agerlund | Linkedin:
    Kent Agerlund | Author:
    Mastering System Center 2012 R2 The Fundamentals

  • Calendar...list function shows only events for date select instead of events from that date forward.

    Calendar list function shows only events for date selected....instead of events for date selected and events forward from that date.  Is there a setting change needed?  Help!

    Hi,
    Did you check that your universe object referring "Date of Completion" has Date data type?
    Can you also provide the BOE verson you are using?
    I remembered that the calendars were not displayed in XIR2 version.
    Didier

  • Specific Event ID for all computers

    Hi,
    We are using SCCM 2012 SP1. We need to know, how many users in our environment used remote assistance from their desktop to which other computers. Is there any way of discovering this using SCCM 2012. The built-in report in SCCM 2012 [Remote Control- All
    remote control information] provides information related to remote assistance done from inside the SCCM Server itself.
    Or, is there any way I can get the information of that particular Event ID [For remote assistance] from all the computers, which a user used to provide remote assistance to other computers in our domain.
    Regards,
    Hasnain.

    Remote Assistance is an OS feature simply referenced in the ConfigMgr console thus ConfigMgr doesn't audit its use in any way.
    A quick web search turned up this though which adds the OS level auditing info from the event log to the hardware inventory process of ConfigMgr:
    http://myitforum.com/cs2/blogs/jgilbert/archive/2007/08/08/inventorying-remote-assistance-requests-and-connections.aspx . You'll have to adapt it for 2012 as there are some differences although the principles are identical.
    Jason | http://blog.configmgrftw.com

  • Registering events for own GUI controls

    Hi,
    I refer to the blog
    <a href="/people/thomas.jung3/blog/2004/09/01/using-net-windows-controls-in-the-abap-control-framework:///people/thomas.jung3/blog/2004/09/01/using-net-windows-controls-in-the-abap-control-framework
    In the mean time I was successful regarding the display of the media player inplace in the SAPGUI. But I didn't succeed with event handling of native events. The redefined method 'dispatch' is never called, altough I registered events as:
      DATA: my_simple_event TYPE cntl_simple_event.
      DATA: my_simple_events TYPE cntl_simple_events.
    ****Register Media Player Events with CFW
      my_simple_event-eventid = go_mp3->evt_endofstream.
    Specify that it's an application event
      my_simple_event-appl_event = 'X'.
      APPEND my_simple_event TO my_simple_events.
    Redefine SET_REGISTERED_EVENTS
      CALL METHOD go_mp3->set_registered_events
        EXPORTING
          events                    = my_simple_events
        EXCEPTIONS
          illegal_event_combination = 1
          OTHERS                    = 2.
    ****Set Event handler for Media Player
      SET HANDLER g_application->handle_end_of_stream FOR go_mp3.
    Does anybody have an running example, e.g. for the event handling of 'STOP button clicked' event in the media player?
    Furthermore: Is there a free download of the OLE object viewer?
    Thanks a lot,
    Thomas

    Hi Juergen,
    Sorry - not an answer. But I would like to hear from you if you manage to solve this problem. I am also working on using a custom COM object (VB.NET) in the SAPGui and am battling to capture events triggered by the control.
    In particular I am trying to find the eventID of an event so that I can register it in SAP - do you know how to capture and view the event ID of lets say the mouse 'click' event of your control?
    How are you identifying your events and registering them in SAP?. I have very little experience in Delphi - but I'm hoping COM is universal enough?
    Hope you find your answer! Sorry I only have questions!
    Regards,
    Neil

  • Threads waiting the same event :searching for a specific notificationfor

    hi all,
    i have two thread waiting an event
    and another who notify them
    //the class event
    public final class Event {
    * variable used to store the notification if it takes place
    * before being expected
    private boolean status = false;
    public final synchronized void waitForNotification() {
    while (status == false ) {
    try {
    wait();
    catch (InterruptedException e) {
    status = false ;
    // notify all waits on this event
    public final synchronized void wakeUp() {
    status = true;
    notifyAll();
    // the class TestThread implements a thread that have an event waiting for a notification
    public class TestThread extends Thread{
    private Event event;
    public TestThread( Event e){
    event=e;
    public void run(){
    for (int i = 1; i < 4; i += 1) {
    try {
    Thread.sleep(2);
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    e.waitForNotification();
    // the class TestThread2 implements a thread that have an event waiting for a notification
    public class TestThread2 extends Thread{
    private Event event;
    public TestThread( Event e){
    event=e;
    public void run(){
    for (int i = 1; i < 4; i += 1) {
    e.wakeUp();
    //the class main
    public class test {
    * @param args
    public static void main(String[] args) {
    // TODO Auto-generated method stub
    Event e = new event();
    TestThread th1 = new TestThreadConsumer(e);
    TestThread th2 = new TestThread(e);
    TestThread2 th= new TestThread2(e);
    th1.start();
    th2.start();
    th3.start();
    1st case
    the problem is that the notification could not be seen to the tow threads
    because if the tow are waiting the notification
    and the other thread send notification
    one of the tow see the notificztion and wake up and set the flag status to false so the other one could not ever wake up
    2d case
    the notification of the second thread could be done in the second itiration or in the other ones
    please could u answer and help me
    thank you

    I'm locking this thread since it's a duplicate.
    The discussion will continue in: [http://forums.sun.com/thread.jspa?threadID=5377151&tstart=0]
    Kaj

  • What is the pin map for chip select on LM3S8962 for "ARM SPI Create Configuration Reference.vi" ? (0 through n)

    Hello All,
    When the LM3S8962 is the master, what pin is used when chip
    select is the default (0), or another value ?
    Despite this question being asked a few ways in the forums,
    NI's "ARM SPI Create Configuration Reference.vi" documentation
    for chip select is unclear.
    TI's manual is no help for NI's implementation of chip select.
    NI's help for the above subvi seems not only too generic (perhaps
    written for the SDK ?),  but erroneous in that it reads:
    "chip select specifies the chip select line to assert during the
    SPI transfer. The chip select line must connect to the EEPROM
    on the
    microcontroller. Refer to the documentation for the SPI
    device for information
    about chip select lines."
    This is useless as the ARM microcontroller has no EEPROM and 
    the SPI slave device documentation only covers its own pins.
    The hope is to have more than one slave on the LM3S8962's single SPI bus,
    without chewing up a additional pin using elemental I/O like the splendid forum
    examples for ADC's and DAC's.  This would save diagram real estate compared
    with two sequence frames that are typically shown toggling a elemental I/O digital
    output before and after writing and/or reading from the slave.   It also would clarify
    what on chip resource trade offs there are for each chip select number chosen.
    (as most pins have multiple possible functions)
    Thanks in advance for any light on this.   Please don't post info on other processors
    to this thread as this taints future searches on this issue with this tier 1 target.
    Best,
    Davy

    Hi Davy,
    While doing research on this question, I was informed that you have been working with a colleague of mine, Joel, via email for this same question. So that we do not have multiple engineers working on the same issue, Joel will be your point of contact for this issue. I ask that when you have come to a resolution, that you post that resolution here so that other customers can reference this information.
    Thanks!
    Aaron P
    National Instruments
    Applications Engineer
    http://www.ni.com/support

Maybe you are looking for