Approvals are not triggered via DI

Approvals are still not triggered via DI.
The only note relevant I was able to find is 915573. Tested with 8.82, still the same behaviour occours.

Hi,
You are right. This is still on the schedule that without deadline. Unless you can find this new feature in the roadmap, it will never be available soon.
Thanks,
Gordon

Similar Messages

  • QM Block not triggered  via EDI orders

    Hello All,
    Please help me with this problem "QM block not triggered via EDI Orders".
    Sales Orders will be created using IDOC. When the sales orders was displayed using VA02, goto >> items >> schedule lines, there's no QM status violated being displayed in the delivery block column.
    Kindly help me what logic will I applied regarding this matter.
    FM used was IDOC_INPUT_ORDERS.
    I need your comments/suggestions ASAP.
    Thanks in advance.
    Carina

    hai,
    Just check this it may help tou.
    Program Name : YX30_UPLOAD_QUALITY_INFO
    Quality Info Record for I30 System *
    Original Transport Number : I30K903055 *
    SYS id: SYS_30_1502_03_41_Upload Quality Info Records *
    TDS id: TD_30_1502_03_41_Upload Quality Info Records *
    UT ID: UT_30_1502_03_41_Upload Quality Info Records *
    ======================================================================
    Change History *
    Date | Change No | Name | Description *
    yyyy/mm/dd | AAAYYYYMMDD | xxxxxxxxxxxx | *
    REPORT YX30_UPLOAD_QUALITY_INFO MESSAGE-ID yx30_conversions
    no standard page heading line-size 255.
    include yx30_upload_quality_info_top. "Include for Variable Declaration & Selection Screen
    include yx30_upload_quality_info_data. "Include for File read & Authority Check
    *& At Selection Screen Output *
    AT SELECTION-SCREEN OUTPUT. "PBO
    PERFORM fill_parameters.
    *& Start Of Selection Event *
    start-of-selection.
    Perform Authority_check. "Subroutine for authority check
    Perform prepare_file. "Subroutine for preparing file
    perform file_read. "Subroutine for File read
    perform update_qi01. "Subroutine for Uploading data
    perform write_error_log1. "Subroutine for writing error log
    *& Form write_error_log
    text
    --> p1 text
    <-- p2 text
    *& Include YX30_UPLOAD_QUALITY_INFO_TOP
    Type Declaration
    Types: Begin of type_qtyinf,
    matnr type matnr, "Material No
    lieferant type char10, "Vendor
    werk type werks_d, "Plant
    frei_dat type char10, "Frei_Dat
    stsma type char8, "Stsma
    anwso_01 type char1, "ANWSO(01)
    anwso_02 type char1, "ANWSO(02)
    anwso_03 type char1, "ANWSO(03)
    end of type_qtyinf.
    Internal Table Declaration
    Data: itab_qtyinf type standard table of type_qtyinf. "Internal table for QTYINF.
    Work Area Declaration
    Data: wa_qtyinf type type_qtyinf. "Work Area for QTYINF.
    Variable Declaration
    Data: v_file_qtyinf type string, "Source File Name
    v1 type string,
    v2 type string,
    v3 type string,
    v_file_return type string,
    v_lin TYPE n.
    *Selection Screen Declaration
    selection-screen *
    SELECTION-SCREEN BEGIN OF BLOCK blk1
    WITH FRAME TITLE text-s01.
    PARAMETER:
    p_sysid(3) TYPE c OBLIGATORY , "Source System
    p_bukrs(4) TYPE c OBLIGATORY , "Source CompCode
    p_samshr type char30 lower case obligatory default '/sap_upload/' , "Samba Share Drive
    p_object TYPE CHAR10 OBLIGATORY default 'MAT' . "Migration Data Object
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN SKIP 3.
    PARAMETER:
    cb_pfill TYPE c AS CHECKBOX DEFAULT 'X' . "Prefill values?
    SELECTION-SCREEN COMMENT /1(79) text-s1a.
    SELECTION-SCREEN BEGIN OF BLOCK blk3
    WITH FRAME TITLE text-s03.
    PARAMETER:
    pa_filn1(500) TYPE c LOWER CASE
    VISIBLE LENGTH 50 , "Filename AppServer
    pa_dlimt TYPE c DEFAULT ';' . "Field Delimter
    SELECTION-SCREEN END OF BLOCK blk3.
    include bdcrecx1. "Include for the subroutine
    *& Include YX30_UPLOAD_QUALITY_INFO_DATA
    *& Form file_read
    Subroutine for reading the source file into internal table
    --> p1 text
    <-- p2 text
    FORM file_read .
    DATA:
    single_line TYPE string .
    *-- read file, split lines into fields and put data into table
    OPEN DATASET v_file_qtyinf FOR INPUT IN TEXT MODE ENCODING NON-UNICODE. "Opening the files
    IF sy-subrc EQ 0.
    DO.
    READ DATASET v_file_qtyinf INTO single_line. "Reading the content of file into line
    IF sy-subrc = 0.
    IF sy-index > 1. "skip header-line
    SPLIT "Split the content of line into work area
    single_line
    AT ';'
    INTO
    wa_qtyinf-matnr "Material No
    wa_qtyinf-lieferant "Vendor
    wa_qtyinf-werk "Plant
    wa_qtyinf-frei_dat "Frei Date
    wa_qtyinf-stsma "STSMA
    wa_qtyinf-anwso_01 "ANWSO_01
    wa_qtyinf-anwso_02 "ANWSO_02
    wa_qtyinf-anwso_03. "ANWSO_03
    APPEND wa_qtyinf TO itab_qtyinf. "Appending Work Area to internal table
    ENDIF.
    ELSE.
    EXIT.
    ENDIF.
    ENDDO.
    CLOSE DATASET v_file_qtyinf. "Closing the files
    ELSE.
    MESSAGE e015 .
    ENDIF.
    DESCRIBE TABLE itab_qtyinf LINES v_lin.
    IF v_lin LT 0.
    MESSAGE e016 .
    ENDIF.
    ENDFORM. " file_read
    *& Form fill_parameters
    Subroutine for getting the file name
    FORM fill_parameters .
    IF cb_pfill = 'X'.
    Preparing QTYINF File
    CONCATENATE p_sysid '_forward' INTO v3.
    CONCATENATE p_sysid '_QTYINF_' p_bukrs '.CSV' INTO v2.
    CONCATENATE p_samshr v3 '/' p_object '/' v2 INTO pa_filn1.
    ENDIF.
    ENDFORM. " fill_parameters
    *& Form Authority_check
    Authority Check
    --> p1 text
    <-- p2 text
    FORM authority_check .
    Authority Check For the Migration
    AUTHORITY-CHECK OBJECT 'YX30_MIGR'
    ID 'SYSTEM' FIELD p_sysid
    ID 'BUKRS' FIELD p_bukrs
    ID 'YX30_DMOBJ' FIELD p_object
    ID 'ACTVT' FIELD '16'.
    IF sy-subrc <> 0.
    MESSAGE e010 WITH p_sysid p_bukrs p_object.
    ENDIF.
    ENDFORM. " Authority_check
    *& Form prepare_file
    text
    --> p1 text
    <-- p2 text
    FORM prepare_file .
    CONCATENATE p_sysid '_forward' INTO v3.
    CONCATENATE p_sysid '_QTYINF_' p_bukrs '.CSV' INTO v2.
    CONCATENATE p_samshr v3 '/' p_object '/' v2 INTO v_file_qtyinf.
    CLEAR v3.
    CLEAR v2.
    Prepare Return File
    CONCATENATE p_sysid '_forward' INTO v3.
    CONCATENATE p_sysid '_RETRUN_LOG_' p_bukrs '.CSV' INTO v2.
    CONCATENATE '/sap_upload/' v3 '/' 'MAT' '/' v2 INTO v_file_return.
    ENDFORM. " prepare_file
    *& Form update_qi01
    text
    FORM update_qi01.
    PERFORM open_group. "Opening a session
    CLEAR wa_qtyinf.
    LOOP AT itab_qtyinf INTO wa_qtyinf.
    PERFORM bdc_dynpro USING 'SAPMQBAA' '0100'. "Subroutine for mapping data
    PERFORM bdc_field USING 'BDC_CURSOR'
    'QINF-MATNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'QINF-MATNR'
    wa_qtyinf-matnr. "Mapping the material
    PERFORM bdc_field USING 'QINF-LIEFERANT'
    wa_qtyinf-lieferant. "Mapping the vendor
    PERFORM bdc_field USING 'QINF-WERK'
    wa_qtyinf-werk. "Mapping the plant
    PERFORM bdc_dynpro USING 'SAPMQBAA' '0101'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=STAN'.
    PERFORM bdc_field USING 'QINF-FREI_DAT'
    wa_qtyinf-frei_dat.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'QINF-STSMA'.
    PERFORM bdc_field USING 'QINF-STSMA'
    wa_qtyinf-stsma. "Mapping the status
    PERFORM bdc_dynpro USING 'SAPLBSVA' '0201'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'J_STMAINT-ANWSO(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=OKAY'.
    IF wa_qtyinf-anwso_01 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01. "Mapping the anwso(01)
    ELSEIF wa_qtyinf-anwso_02 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02. "Mapping the anwso(02)
    ELSEIF wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03. "Mapping the anwso(03)
    ELSEIF wa_qtyinf-anwso_01 = 'X' AND wa_qtyinf-anwso_02 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02.
    ELSEIF wa_qtyinf-anwso_01 = 'X' AND wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03.
    ELSEIF wa_qtyinf-anwso_02 = 'X' AND wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03.
    ELSEIF wa_qtyinf-anwso_01 = 'X' AND wa_qtyinf-anwso_02 = 'X' AND wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03.
    ENDIF.
    PERFORM bdc_dynpro USING 'SAPMQBAA' '0101'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'QINF-FREI_DAT'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=QMBU'.
    PERFORM bdc_field USING 'QINF-FREI_DAT'
    wa_qtyinf-frei_dat.
    PERFORM bdc_field USING 'QINF-STSMA'
    wa_qtyinf-stsma.
    PERFORM bdc_transaction USING 'QI01'.
    ENDLOOP.
    PERFORM close_group. "Closing the session
    ENDFORM. "update_qi01
    *& Form write_error_log
    text
    --> p1 text
    <-- p2 text
    FORM write_error_log1 .
    DATA:
    single_line TYPE string,
    v_msg TYPE string,
    v_msg1 TYPE string.
    *-- read file, split lines into fields and put data into table
    OPEN DATASET v_file_return FOR INPUT IN TEXT MODE ENCODING NON-UNICODE. "Opening the files
    IF sy-subrc EQ 0.
    CONCATENATE text-020 v_lin INTO v_msg SEPARATED BY space.
    CONCATENATE text-021 v_lin INTO v_msg1 SEPARATED BY space.
    TRANSFER: v_msg TO v_file_return.
    TRANSFER: v_msg1 TO v_file_return.
    WRITE:/ v_msg.
    WRITE:/ v_msg1.
    ENDIF.
    ENDFORM. " write_error_log
    with regards.
    sowjanya.b.

  • For itunes 11: movie that are not purchased via itunes are loaded into and catagorized as "home videos". I want all of my movies in one spot under Movies as they always were. How can i tweak this?

    for itunes 11: movie that are not purchased via itunes are now loaded into and catagorized as "home videos". I want all of my movies in one spot under Movies as they always were. How can i tweak/resolve this?

    Cdaver wrote:
    I have this issue too and want the same result, another feed suggests selecting the movie, going to get info, and changing this under options, but I suppose you have to do that movie by movie.
    You can select all the movies you want and change them at once.

  • When Using iOs 7.1.2 OSX 10.9.4 notes are not syncing via USB. When will this be fixed. Not interested in iCloud or IMAP solution.

    When Using iOs 7.1.2 with mac OSX 10.9.4 mavericks notes are not syncing via USB.
    When will this be fixed ? Not interested in iCloud or IMAP solution. it worked before,  I can't really
    understand why apple would change one of my favorite features. I use the notes feature to
    capture  quick ideas on the road and having it synched on my computer and my phone was very useful.
    Previous blog posts elsewhere indicated this would be fixed in the latest rev of iOS, OSX and iTunes.
    But alas after the recent update it's not. Really Annoying.

    poweruser_art wrote:
    When Using iOs 7.1.2 with mac OSX 10.9.4 mavericks notes are not syncing via USB.
    When will this be fixed ? Not interested in iCloud or IMAP solution.
    Then you won't be syncing your notes anymore.
    Contacts and Calendars are the only things they restored.
    iOS: How to transfer or sync content to your computehttp://support.apple.com/kb/HT1296

  • HT1766 If I fully backup my iPad using iTunes, does it backup ebooks in iBooks that are not purchased via iTunes or will restoring from that backup only showed purchased ebooks in iBooks?

    If I fully backup my iPad using iTunes, does it backup ebooks in iBooks that are not purchased via iTunes or will restoring from that backup only showed purchased ebooks in iBooks?

    Purchased content MAY be available for redownload - Music for sure.  I think books are NOT available for redownload (not sure).
    Best practice is to keep the content on a desktop computer to be able to resync when necessary (or use a cloud service like Drop Box).

  • MouseEvents are not triggered for JMenu

    I would like to listen for MouseEvents but i'm not sure if it is a bug in java or some lack of knowledge on my side concerning event handling.
    I have a simple menu with one mouse listener and seems that mouseReleased and mouseClicked events are not triggered always as i would expect.
    if i run the code that has been attached below, than i have the following strange scenarios.
    Menu0 is not opened and click on it once:
    pressed Menu0
    clicked Menu0
    There is no mouseReleased received. why?
    Menu0 is opened and click on it once again:
    pressed Menu0
    released Menu0
    clicked Menu0
    Menu0 is collapsed and i have all the events. ok
    Menu0 is opened and click on Menu1:
    pressed Menu1
    released Menu1
    Menu0 is collapsed and there is no mouseClicked event. why?
    Menu0 is opened and go over Menu2 and click on it:
    pressed Menu2
    clicked Menu2
    There is no mouseReleased event. why?
    Press the mouse over Menu2 and release it over Menu3:
    pressed Menu2
    released Menu2
    why is it 'released Menu2' and not 'released Menu3' if it is pressed and released Menu2 than where is the clicked event anyway.
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    public class MouseEventTest
         public static void main( String[] args )
              JFrame frame;
              JMenuBar menuBar;
              JMenu menu, subMenu;
              JMenuItem menuItem;
              MouseListener mouseListener;
              mouseListener = new MouseAdapter() {
                   public void mouseEntered( MouseEvent e )
                   public void mouseExited( MouseEvent e )
                   public void mouseClicked( MouseEvent e )
                        System.err.println( "clicked " + ((JMenuItem) e.getSource()).getText());
                   public void mousePressed( MouseEvent e )
                        System.err.println( "pressed " + ((JMenuItem) e.getSource()).getText());
                   public void mouseReleased( MouseEvent e )
                        System.err.println("released " + ((JMenuItem) e.getSource()).getText());
              menuBar = new JMenuBar();
              menu = new JMenu( "Menu0" );
              menu.addMouseListener( mouseListener );
              menuBar.add( menu );
              menuItem = new JMenuItem( "Menu1" );
              menuItem.addMouseListener( mouseListener );
              menu.add( menuItem );
              subMenu = new JMenu( "Menu2" );
              subMenu.addMouseListener( mouseListener );
              menu.add( subMenu );
              menuItem = new JMenuItem( "Menu3" );
              menuItem.addMouseListener( mouseListener );
              subMenu.add( menuItem );
              menuItem = new JMenuItem( "Menu4" );
              menuItem.addMouseListener( mouseListener );               
              subMenu.add( menuItem );
              frame = new JFrame();
              frame.setTitle( "MouseEvent test for JMenu" );
              frame.setBounds( 320, 240, 320, 240 );
              frame.setJMenuBar( menuBar );
              frame.addWindowListener( new WindowAdapter() {
                   public void windowClosing( WindowEvent e ) {
                        System.exit(0);
              frame.setVisible( true );
    }

    Well there are differences across Operating Systems. For example I'm using JDK1.4.2 on XP. When I click on Menu0 I get:
    pressed Menu0
    released Menu0
    clicked Menu0
    It is always better to use a "higher" level event when possible. In this case you should be using an ActionListener, if you want to know when a menu or menuItem is clicked. Or maybe you could use a MenuListener to know when a menu is opened and closed.

  • HT6114 Does the 10.9.2 update fix the issue on 2011 macs where projectors with HDMI are not recognized via thunderbolt adapter?

    Hi Mac,
    Does the 10.9.2 update fix the issue on 2011 macs where projectors with HDMI are not recognized via thunderbolt adapter?
    Thanks in advance,
    Ricardo Arguelles

    Sordidloam wrote:
    So to be clear, this issue occurs on any input with the Denon Receiver.  Occurs from both HDMI out and MiniDisplay Port out.  Goes away when we reinstall the OS and update it to 10.9.2.  Comes back as soon as we update to 10.9.3.
    Cheers
    MLE
    Have you been able to use the Mac Mini directly attached to the plasma/LCD/projector with out going through the Denon AVR? Even with 10.9.3 installed?
    I have a Pioneer AVR and I have the Mac attached via a HDMI to HDMI and all is working for me. Can your Denon do some upscaling? Some AVR, like my VSX-53 can change the scaling of the input video. Meaning if I still had my Apple TV 2 which outputs 720P only, can be upscaled in my AVR to 1080i or 1080P or even 24fps. Heck, I could even plug in an old style Red, White, Yellow cable and upscale it to 1080P and output it HDMI.
    I am wondering if your Denon is able to do that and it might be set wrong. Check the owners manual for such settings. Even the plasma/LCD/project could be doing the upscaling too. So check that too.
    KOT

  • My Customized Workflows are not triggering

    Hi All,
    I customized workflows.But in SWEL my all customized workflows are not triggering from the last two days..Before it was working..In SWE2 also done properly and SWU3 also fine.
    Please give suggession whereis the Problem?
    Regards,
    Soni

    If you look at the details of your event linkage entry (transaction SWE2) you will find that the "Check function module" field is not empty. The function module, when executed for the event you created, raised an exception - which is the standard way for a check function module to prevent a workflow from starting.
    The check function module could be one set up for a workflow start condition, namely SWB_CHECK_FB_START_COND_EVAL. If so, check the workflow start conditions for your workflow (transaction SWB_COND).
    Otherwise, examine the check function module's code to determine what it checks and why it prevents your workflow from starting.
    <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4b027453d11d189430000e829fbbd/content.htm">SAP documentation: Using (event) linkages</a>

  • Neighbor computers are not shown via TC

    Hi There,
    when I connect my laptop via Ethernet cable I can see other computers of my network in Finder sidebar
    but when I connect the cable to TC and connect to network via TC I can't see them anymore what should I do?

    Hi ,  Thank you for your inquiry.  It is my understanding that you do not play games on your computer and would like to ensure that they are all removed. You have uninstalled "My HP Games" but when you go to All programs/Games there are still 11 items.As they are not listed in Control Panel these may just be shortcuts to a link to acquire the game.  If you double click on One of the 11 items does it launch the game or provide an installation screen? If indeed it is just the shortcut they are not yet installed and you can just delete the shortcut from the Games folder. The eBay is also just a link and can be deleted.  To say  thanks for replying please click the thumbs up button below.If this resolved your difficultly, please select solution provided to allow other people to locate this information with greater ease. Best of Luck!

  • SCSM 2012 R2 workflows and connectors are not triggered

    Hi All,
    Suddenly in my SCSM 2012 R2 Production environment , the connectors stopped synchronising at the schedule time and the Service request was in New state for very long time (stuck in New state).
    When I started troubleshooting , I saw the workflow status in SCSM console , oops!! no entries
    In operations manager event log , no logs generated regarding the connector issue or the SR workflow issue .
    Then I tried starting the AD connector manually , two event logs (information-LFX service) generated
    SyncBegin:Connector Id
    SyncEnd:Connector Id
    Then I stopped the services
    Microsoft Monitoring Agent
    System Center Data Access Service
    System Center Management Configuration
    deleted the health service state folder content and restarted the services
    Then issue is solved , the connector started syncg and the service request state changed from New to In progress and all the workflows were triggered.
    Since there is no events logged for this issue , this gonna make a huge impact in SCSM environment since workflows are the key feature in SCSM .
    Is this  a known issue in SCSM 2012 R2 and are there is any fix in the update rollups
    Are there is any reason behind why we need to flush the SCSM health service state and how this affect the functioning of SCSM?
    since we have the SCOM agent installed as part of SCSM installation and scom uses the same Health service state folder to monitor the SCSM server ??
    sorry for too many questions , just to clarify my all doubts
    Is there any permanent solution ?
    Thanks,
    Kalai

    Hi,
    This issue seems like a performance issue. It is recommended that you schedule the AD/SCCM connectors to run when console/system usage is low since it can have an impact on performance.  You can use the following instructions to reschedule the AD connectors.
    http://blog.scsmsolutions.com/2012/03/update-ad-and-sccm-connector-scheduler-with-powershell/
    And here is a similar thread for you referenc, please go through it for more details:
    Connectors are not Syncing in Service manager 2012 Sp1 RTM
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/2824c769-99ea-4ec6-ab7b-1007efdcb339/connectors-are-not-syncing-in-service-manager-2012-sp1-rtm?forum=connectors
    Here is a link about Description of Update Rollup 2 for System Center 2012 R2 Service Manager:
    https://support.microsoft.com/kb/2904710?wa=wsignin1.0
    It seems that it does not have fix for this.
    In addition, the newest one is Update Rollup 4 for System Center 2012 R2 Service Manager:
    http://support.microsoft.com/kb/2989601
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Workflow is not triggered via program RBDMANI2

    Hi,
    We have a Workflow that triggers when an IDOC ends up in an error. It works fine when the IDOC is posted through XI and also when processed from WE19. When we try to re process through the Program RBDMANI2 the even is not triggered.
    Business Object used: ZIDOCAPPL (Subtype of IDOCAPPL delegated to IDOCAPPL).
    Event: INPUTERROROCCURED
    My doubt here is will an event be triggered when an IDOC is Processed through RBDMANI2 program? If yes then am i missing or is there some settings that needs to be or should i use any specific Business Object for this scenario.
    Please throw some light upon this.
    Thanks,
    Prashanth

    Hi Prashant,
    Best way to find out which event is getting triggered with this report is by using Event Trace, Follow the below steps.
    (1)- Go to Tcode SWELS, (SWITCH ON THE TRACE).
    (2)- Now run this Report .
    (3)- Go to Tcode SWELS again.(SWITCH OFF THE TRACE).
    (4)- Go to Tcode SWEL, Execute it, You'll find the Event name and Business object name that got trigerred.
    Note: If you don't see any event getting trigerred in SWEL, this means that with this report no event is executing.
    The other way around could be to use a BADI or User-exit in that you have to externally trigger the event by using function module.
    'SAP_WAPI_CREATE_EVENT'
    Note: If events are not getting trigerred through transactions, Then you can use this function module to trigger workflow from outside, So use this function module in any badi or exit or enhancement spot that suits your requirement.
    Thanks.

  • Some NetStream statuses are not triggered anymore with FP 11.2

    I'm in charge of developing a video recorder in as3 (http://hdfvr.com) and the video recorder has been working fine for the past 2 years however with the latest FP update (11.2) it has stopped working because these 3 NetStream events are never triggered anymore:
    HDFVR.netStatusHandler(NetStream.Buffer.Empty) _state=uploading
    HDFVR.netStatusHandler(NetStream.Record.Stop) _state=idle
    HDFVR.netStatusHandler(NetStream.Unpublish.Success) _state=idle
    This happens regardless of the media server used (Red5/FMIS/Wowza)
    I have posted this issue in the Adobe Flash Player Bug Database:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3154124
    I have also informed my clients and they're waiting for a fix, unfortunately I am not sure I can do a workaround without those NetStream events.

    I've report the same problem using Flash Player 11.2.
    From test that performed using  Flash Player 11.3 beta 3 the issue seems to be solved, so I can handle NetStream.Buffer.Empty event correctly.
    I'd like to ask your suggestion how is possibile workaround this problem until Flash Player 11.3 is not release as stable version.
    Some users that use automatic update has Flash Player update to last stable release (11.2), I'd like to ask you suggestion how to correct manage this case.
    I'd like to introduce some modification in the code for handle this case for example start a timer and monitor how many data are present in buffer, and when buffer is empty, use same function that should be called when NetStream.Buffer.Empty event is raised?
    I'd kindly like to ask if you can give to me some suggestion.
    Thank you very much
    Maurizio

  • PrintJobFailed,printJobCompleted,printJobCanceled events are not triggering

    Hi,
    In my application we are printing some data. For that we are adding PrintStatusTracker listner class which impliments PrintJobListener to DocPrintJob.
    Now the problem is... after print is given i am getting only 2 events triggered in PrintJobListener i.,e printDataTransferCompleted, printJobNoMoreEvents even though it is failed to print. But other events like printJobFailed, printJobCompleted, printJobCanceled are not at all triggering.
    Please help me in this.
    Thanks
    Edited by: Bamgaram on Dec 31, 2009 9:12 AM

    Hi Andrew,
    I dont know how to post an SSCCE. if u want code pls find below.
         import javax.print.*;
         import javax.print.event.*;
         import javax.print.attribute.*;
         import java.awt.print.*;
         import java.awt.*;
         import java.awt.geom.*;
         import java.awt.event.*;
         import javax.swing.*;
    import java.io.*;
         public class PrintJob {
         static class MyComponent extends JPanel
         implements Printable {
         Font theFont = new Font("Serif", Font.ITALIC, 48);
         public void paint(Graphics g) {
         super.paint(g);
         String msg = "Hello, Printer";
         g.setFont(theFont);
         FontMetrics fm = g.getFontMetrics();
         // Center line
         int width = getWidth();
         int stringWidth = fm.stringWidth(msg);
         int x = (width - stringWidth)/2;
         int height = getHeight();
         int stringHeight = fm.getHeight();
         int ascent = fm.getAscent();
         int y = (height - stringHeight)/2 + ascent;
         g.drawString(msg, x, y);
         g.drawRect(x, y-ascent, stringWidth, stringHeight);
         public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
         int x = (int)pageFormat.getImageableX();
         int y = (int)pageFormat.getImageableY();
         g.translate(x, y);
         if (pageIndex == 0) {
         paint(g);
         return Printable.PAGE_EXISTS;
         } else {
         return Printable.NO_SUCH_PAGE;
         public static void main(String args[]) throws Exception {
         final JFrame frame = new JFrame("Printing Graphics");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         Container contentPane = frame.getContentPane();
         final Component printIt = new MyComponent();
         contentPane.add(printIt, BorderLayout.CENTER);
         JButton button = new JButton("Print");
         contentPane.add(button, BorderLayout.SOUTH);
         ActionListener listener = new ActionListener() {
         public void actionPerformed(ActionEvent e) {
         DocFlavor flavor = DocFlavor.SERVICE_FORMATTED.PRINTABLE;
         PrintService printService =
         PrintServiceLookup.lookupDefaultPrintService();
         DocPrintJob job = printService.createPrintJob();
         PrintJobListener pjlistener = new PrintJobAdapter() {
         public void printDataTransferCompleted(PrintJobEvent e) {
         System.out.println("DataTransferCompleted");
         public void printJobCompleted(PrintJobEvent objPJEvent) {
              System.out.println("printJobCompleted");
         public void printJobFailed(PrintJobEvent objPJEvent) {
              System.out.println("Failed");
         public void printJobNoMoreEvents(PrintJobEvent objPJEvent) {
              System.out.println("NoMoreEvents");
         job.addPrintJobListener(pjlistener);
         PrintRequestAttributeSet pras =
         new HashPrintRequestAttributeSet();
         DocAttributeSet das = new HashDocAttributeSet();
         Doc doc = new SimpleDoc(printIt, flavor, das);
         try {
         job.print(doc, pras);
         } catch (PrintException pe) {
         pe.printStackTrace();
         button.addActionListener(listener);
         frame.setSize(350, 250);
         frame.show();
         }

  • Docsis 2.0 and 1.1 cable modems are not detected via UBR-MC20X20V-5D line card

    Hi All,
    We have uBR10K series CMTS and recently installed UBR-MC20X20V-5D line card, requirement is to configure this line card to support docsis 1.1 and 2.0. Problem is after finished the configurations modems (Hitron and Motorola) are not detected by the system. means no modem mac address listing under "Show cable modem" command. 
    Our CMTS has the following components
    ESR-PRE2: x1
    ESR-PRE-MEM-FD128: x1
    UBR10-DTCC:  x2
    UBR-MC20X20V-5D: x1
    iOS version:     12.2(33)SCE3
    Part of running-config as follows
    cable spectrum-group 13 band 22800000 26600000
    controller Integrated-Cable 8/0/0
     rf-channel 0 cable downstream channel-id 145
     rf-channel 0 frequency 501012500 annex B modulation 256qam interleave 32
     rf-channel 0 rf-power 59.0
     no rf-channel 0 rf-shutdown
    interface Cable8/0/0
     no cable packet-cache
     cable bundle 1
     cable upstream max-ports 4
     cable upstream 0 connector 0
     cable upstream 0 spectrum-group 13
     cable upstream 0 channel-width 3200000 3200000
     cable upstream 0 docsis-mode tdma
     cable upstream 0 minislot-size 2
     cable upstream 0 range-backoff 3 6
     cable upstream 0 modulation-profile 21
     no cable upstream 0 shutdown
    diag output attached herewith. Please any one advice on how to resolve this issue.
    Thanks in advance.

    Hi All,
    We have uBR10K series CMTS and recently installed UBR-MC20X20V-5D line card, requirement is to configure this line card to support docsis 1.1 and 2.0. Problem is after finished the configurations modems (Hitron and Motorola) are not detected by the system. means no modem mac address listing under "Show cable modem" command. 
    Our CMTS has the following components
    ESR-PRE2: x1
    ESR-PRE-MEM-FD128: x1
    UBR10-DTCC:  x2
    UBR-MC20X20V-5D: x1
    iOS version:     12.2(33)SCE3
    Part of running-config as follows
    cable spectrum-group 13 band 22800000 26600000
    controller Integrated-Cable 8/0/0
     rf-channel 0 cable downstream channel-id 145
     rf-channel 0 frequency 501012500 annex B modulation 256qam interleave 32
     rf-channel 0 rf-power 59.0
     no rf-channel 0 rf-shutdown
    interface Cable8/0/0
     no cable packet-cache
     cable bundle 1
     cable upstream max-ports 4
     cable upstream 0 connector 0
     cable upstream 0 spectrum-group 13
     cable upstream 0 channel-width 3200000 3200000
     cable upstream 0 docsis-mode tdma
     cable upstream 0 minislot-size 2
     cable upstream 0 range-backoff 3 6
     cable upstream 0 modulation-profile 21
     no cable upstream 0 shutdown
    diag output attached herewith. Please any one advice on how to resolve this issue.
    Thanks in advance.

  • In java standalone alerts are not triggering

    Hi All ,
    We have configured alerts in solution manager ( in --> RZ20 -->  all j2ee components) for standalone java system
    But the issue is they are not getting triggred . i.e we are not receving any  alert if there is any change in values.
    But this work fine in DEV and Qua System
    Please help me to solve this issue
    Thanks in advance ,
    Kamal Kumar

    Hi Kalyan,
    Please dont post same queries again and again. Please are watching your thread but they are not getting idea thats why you are not getting replies.
    Please follow below points and check
    Use sender namespace only in alert rule and leave remaining all *.
    Uncheck Supress multple alerts this rule in alert rule.
    Check alert inbox for alert instead of your mailbox.
    check below thread also for the same...
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    thanks,
    madhu

Maybe you are looking for

  • Web service security not configured

    Hi All, We have new PI system 7.1 ehp1, as an initial step installation is done including post installation.I have a task of checking if everything is in place as the same have to be confirmed to the team which did the installation. When i open RWB ,

  • Re-installing OS software & wiping drive clean

    I would like to wipe my dual usb iBook clean - loose all apps, files, etc. and start from scratch, clean. I have a Tiger CD and want to know how I go about doing this. Anyone out there with instructions as to how I would do that? Thanks in advance.

  • Condition type in Purchase Order

    Hi, I have a scenario in which I am paying extra money to vendor other than material price in PO. Is there any condition type in SAP for Expeditory charges? For a now I have created z condition type but in this scenario extra amount is debited on inv

  • Preview and Grayscale wierdness

    When I view a PDF comprised of grayscale images, all of the grayscale pages are displayed in reversed white letters on black! What gives? The non-grayscale pages are perfect.

  • Anyone know about secret tracking data stored by OS4?

    I just saw a news report that iPhone and iPad 3G are secretly storing location and time data.  This data can be extracted to track the users past movements.  Does anyone know anything about this? It sounds fishy to me.  Seems like the kind of underha