Event Bubbling Custom Object not inheriting from control

One of the new things flash flex and xaml have are ways which
the event easily bubbles up to a parent that knows how to handle
the event. Similar to exceptions travel up until someone catches
it.
My goal is to use the frameworks event system on custom
objects. My custom objects are:
ApplicationConfiguration
through composition contains:
SecurityCollection which contains many or no SecurityElements
and
FileSystemCollection.cs which contains many or no
FileSystemElement objects
ect ect basically defining the following xml file with custom
objects.
[code]
<ApplicationConfiguration>
<communication>
<hardwareinterface type="Ethernet">
<ethernet localipaddress="192.168.1.2" localport="5555"
remoteipaddress="192.168.1.1" remoteport="5555" />
<serial baudrate="115200" port="COM1" />
</hardwareinterface>
<timing type="InternalClock" />
</communication>
<filesystem>
<add id="location.scriptfiles" value="c:\\" />
<add id="location.logfiles" value="c:\\" />
<add id="location.configurationfiles" value="c:\\" />
</filesystem>
<security>
<add id="name1" value="secret1" />
<add id="name2" value="secret2" />
</security>
<logging EnableLogging="true"
LogApplicationExceptions="true" LogInvalidMessages="true"
CreateTranscript="true" />
</ApplicationConfiguration>
[/code]
basically these custom objects abstract the xml details of
accessing attributes, writing content out of the higher application
layers.
These custom objects hold the application configuration which
contains the users options. The gui application uses these
parameters across various windows forms, modal dialog boxes ect.
The gui has a modal dialog that allows the user to modify these
parameters during runtime.
basically i manage: load, store, new, edit, delete of these
configuration files using my custom objects.
Where would event propagation help in custom objects like
described above?
ConfigurationSingleton.getInstance().ApplicationConfiguration.CommunicationElement.Hardwar eInterfaceElement.EthernetElement.RemoteIPAddress
=
System.Net.IPAddress.Parse(this.textBoxRemoteEthernetIpAddress.Text);
The EthernetElement should propagate a changed event up to
the parent ApplicationConfiguration which would persist this to the
registry, db, file or whatever backend.
currently this logic is maintained else where. I serialize
the root node which compositely serializing the nested nodes and i
check of the serialization is different from that in the backend
… This tells me if the dom was modified. It works but i would
like an event driven system.
how should i implement bubbling using custom objects?
3 implementation ideas:
1) A simple way is to implement a singleton event manager:
EventManager.RegisterRoutedEvent
http://msdn2.microsoft.com/en-us/library/ms742806.aspx
I like this idea but how can you tell which object is nested
in who… this way the event can be stopped and discontinue
propagation?
2) If i use binders as discussed in Apress’s book:
Event-Based
Programming Taking Events to the Limit
basically a binder connects the events between seperate
objects together… although it would work for my app, I would
like a more generalized approach so i can reuse the event system on
future project.
3) how does flash flex handle this..
objectproxy.as?
http://www.gamejd.com/resource/apollo_alpha1_docs/apiReference/combined/mx/utils/ObjectPro xy.html#getComplexProperty()
>Provides a place for subclasses to override how a complex
property that needs to be either proxied or daisy chained for event
bubbling is managed.
how does these systems all work....? Reflection ?
this way i can simulate this on my own custom classes.
Thanks!

I have a strong sensation that the OSMF project is quite dead.
no new submits since 2010, the contact form on the offical OSMF
project website http://www.opensourcemediaframework.com/
returns a PHP error.
and many unanswered questions about OSMF in this forum.
i think it would be wise to not use OSMF if possible, although
I'm also stuck with it since we are utilizing HDS/PHDS
protocols which are utilized in the framework.
otherwise its quite a head-ache.
I'm unable to get to a video element coming from a proxied element
that is being produced via an HDS connection.
and haven't found any solution that works.

Similar Messages

  • Earmarked funds during goods receipt (GR) is not inherited from PO.

    Hi, Everybody u2026
    We are using Earmarked Funds relevant for FM updating, but, during goods receipt (GR) and invoice receipt (IR) it is not inherited from purchase order (PO).
    In ME21N the account assignment is F and the system ask us to enter the GL Account, Order and additional the Earmarked Funds. The system is deriving correctly the fund, the funds center and the commitment item from those entered in the Earmarked Funds.
    However, during goods receipt and invoice receipt, the Earmarked Funds is not inherited from purchase order (PO) besides the others account assignments (order, fund, funds center and commitment item ) in the coding block.
    Best regards,
    Thanks

    Hello,
    I will provide some hints:
    - If it is a service PO, please check the Note 972276 (Service Purchase orders only).
    - If the posting is related to Asset, please kindly check:
        a. Note 684659
        b. Check if you have a derivation rule in FMDERIVE with the function module FMDT_READ_MD_ASSET.
        c. Check in your FI-AA customizing if you have activated the account
          assignment element but you have not specified an account assignment type for
          account assignment object for APC balance sheet postings (see note 684659 for
          details).
    I hope it helps
    Best Regards,
    Vanessa Barth.

  • Custom object not seen

    Hi,
    When I am selecting any object from record type setup(example:custom object1) I am not being able to see it in the homepage tab section(like accounts,contacts etc).It is also not shown in Personal Tab Layout.Is it possible to see it anyway?
    Arpita

    You will need to grant access within the role profile for this Custom Object. Also under Access Profile on all object the custom object should appear as a related item. If you want to add it as a tab then this can also be performed through the role management and personal mayout under My setup.
    Once you have completed all this log out and back in the you should be able to view the new record

  • Java object with ArrayList of custom objects not working

    I have a custom java object that has an ArrayList of another set of custom objects (code listed below). I can pull back a Customer object (to flex client) and it's recognized as a Customer action script object, but the ArrayList in the Customer object is not recognized as an ArrayCollection of Accounts. Instead it is an ArrayCollection of Action Script Objects.
    At first I thought something was wrong with my action script Account class, but then I tried to pull back just an Account and it was recognized as an action script Account. It's just when I have my Customer object with an ArrayList of Accounts that it isn't getting converted.
    Is there something else I need to do to have that ArrayList be recognized as an ArrayCollection of Accounts on the Flex Client side? Is there some way of specifying what type an ArrayCollection is mapped to?
    Thanks in advance for the help!
    public class Customer {
         private String name;
         private String address;
         private ArrayList<Account> accounts;
         public Customer(){
         public String getName(){
              return name;
         public void setName(String str){
              name = str;
         public String getAddress(){
              return address;
         public void setAddress(String str){
              address = str;
         public ArrayList<Account> getAccounts(){
              return accounts;
         public void setAccounts(ArrayList<Account> list){
              accounts = list;
    public class Account {
         private long accountNumber;
         private String type;
         private double balance;
         public Account(){
         public long getName(){
              return accountNumber;
         public void setName(long l){
              accountNumber= l;

    I accidently found how to make this work. I may have missed something while reading about blazeDS reflection, but I thought I'd pass this along anyway.
    What I have is I have an class A. In class A I have an arraycollection of Class B. If I want that arraycollection to return to the server with the correct class, then I need to include Class B in the compiled swf. How I have done that is to create a dummy variable of type B. Importing B will not work you actually need to have a member variable of type B even if you don't need it.
    Example
    import dataobjects.B;
    [RemoteClass(alias="dataobjects.A")]
    public class A {
       private var _b:B; //This is never used, but needed to include B object in swf to be reflected.
       private var_ bList:ArrayCollection = new ArrayCollection();
      public function A(){
      public function set bList(list:ArrayCollection):void{
         _bList = list;
      public function get bList():ArrayCollection{
        return _bList;

  • Business Area is not inheriting from Org.Unit or Cost Centre

    Hi
    Business area is assigned to Org.unit in IT1008, when I executing the action business area is not defaulting / Inheriting from Org.Management.
    Any one could help me to solve this issue.
    Thank you.
    Bachi

    It seems OM and PA are not integrated, are they?
    RHINTE20  is the report can bring data from OM to PA.

  • Audio Controls not working from Control Center.  iOS 7  7.0.1

    So my audio transport controls from control center don't work on my iphone 5C iOS 7.0.1
    Works on my iPad 3rd Gen and iPhone 4S.

    Me too. A complete restore didn't help at all, either. Doesn't control itunes, Pandora, nuthin.
    Also, my bluetooth controls in my car don't work, though music WILL play via bluetooth. Can't control from the steering wheel anymore.

  • Session level NLS_COMP NLS_SORT not inheriting from instance parameters???

    Hi all,
    I have an Oracle 11g installation with a database setup as follows: NLS_COMP=BINARY, NLS_SORT=BINARY.
    After playing a bit at the session level with NLS_COMP=LINGUISTIC and NLS_SORT=BINARY_CI, I persisted them at the instance level via ALTER SYSTEM with SCOPE=SPFILE.
    Bounced the database and voila, when I query nls_instance_parameters it reflects my changes.
    Problem is, my parameters are not applied to my session: in fact, if I query nls_session_parameters, both are still set to BINARY. (Note: using sqlplus).
    The documentation (http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/create006.htm) states:
    "A new session inherits parameter values from the instance-wide values."
    Am I missing something here? Is sqlplus somehow overriding the instance-level parameters? (I know sql developer may, depending on your options, hence I went back to basics...).
    Any help appreciated!
    Thanks in advance,
    Paolo

    Hi Sergiusz,
    Thank you again for your reply.
    In my registry NLS_LANG is set to its default value (AMERICAN_AMERICA.WE8MSWIN1252), so I assume that unless I set anything specific in my environment, NLS_COMP and NLS_SORT are affected by that and sort of reset to BINARY?
    If this is the case, then I'm struggling to understand the purpose of setting them at the instance level, given that as you said, NLS_LANG shouldn't be removed as an environmental variable and it seems to override them?
    Along the same lines, if I understand this correctly, should I have no control over the environment that my application runs in (e.g. a web application running in a shared IIS app pool), then the only option left is (re)setting my variables every time I establish a connection with the Oracle db, thereby starting a new session?
    Really appreciate your help.
    Cheers,
    Paolo

  • How can I forward a calendar event that I did not create from my iPhone?

    I a trying to find a way to forward calendar events from my iPhone, when I am not the event organizer.

    There is an app that allows this - called Forward My Meeting.  It allows you to forward any meeting in your calendar from the iPhone or iPad.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Why are some objects not printing from Illustrator after I print to PDF?

    Hi,
    I've printed a large Illustrator CS6 document to PDF (using Adobe PDF setting in print dialog box), and it looks just fine when I view the PDF. The problem is that some lines do not print when I try to print the PDF on paper. I've tried adjusting settings and printing to the PDF in different ways, but can't figure it out. Everything looks great on the screen, but some lines are missing once printed to paper. Others have tried printing the PDF as well and are also getting missing lines.
    Any suggestions?! Thanks!

    I've tried selecting print all layers, and I'm also tiling the pages to a custom page size. I've left all the other settings at default. Everything looks perfect on screen, but parts of the same object do not print. I tried to attach a screen shot but am getting an error. Basically each page has a border around it, and one side of the border is not printing on certain pages.

  • Customer Workflows Not Working from SRM Inbox

    Hi everyone,
    We are upgrdaing our EBP v3.5 system to SRM 5.0 (SRM SERVER 5.5 SP 5).
    We are using integrated ITS and have many bespoke workflows which need to executeable in the SRM inbox via the integrated ITS and ultimately the portal (EP 7.0).
    We have various issues with our bespoke workflows not working. The 2 errors we have found are:
    1. When the users click on the workitem from the SRM inbox they sometimes see 'Service Cannot be Reached' error.
    2. Other times they see the workitem details with no user decision buttons shown.
    3. Other times the user decision buttons are shown but if the user clicks on one, they see a blank page with text "workitem currently locked by user WF_BATCH" at the top. This is an 'advance with dialog' task which works fine via SAPGUI.
    Any ideas on any of the specific issues, or anything which we need to do generally to get custom workitems to be executeable via the ITS?
    Thanks a lot,
    Nick

    Hi abhijit,
    I checked that but I set it to blank in debug mode..but its still disappearing...the button disappears after pressing enter on error message.
    actually the BADI when I implemented there is one method where I set E_ADD_ON_ACTIVE flag to 'X' to bring that button(recommended by SAP). that method is not getting called...

  • Dbx events (sync, syncrtld, prog_new) not available from IDE?

    I noticed that some "dbx events" seem to be missing when dbx runs in the Sunstudio IDE (I tried Studio Express 07/08). Specifically, the events sync, syncrtld and prog_new do not work. I tried with simple statements like
    when sync { echo SYNC; }
    in .dbxrc, and this has no effect when dbx loads an executable from the IDE. In contrast, from within commandline dbx, this works.
    Is this intentional or some deliberate limitation or a bug? I sometimes used some of these events in the past, and this was quite handy.
    D.Ruppert

    Oh wow ... it's unexpected, even to me, so I'd classify it as a bug.
    Although it's been this way since Workshop days (i.e. 15 years :-).
    Here's what happens. IDE uses the 'debug' command to bring dbx to bear on
    a new target. debug, by default clears all existing bpts, including those in
    .dbxrc. 'debug -r' is designed for retaining bpts but that would conflict
    with IDE's own retention mechanisms.
    I added -perm flags to the when commands in .dbxrc and that did cause them
    to be retained, but it also doubled them as the IDE resent them back to dbx.
    Workaround: A mite awkward but perhaps creating them from the GUI might be best?
    I'd also appreciate it if you filed a bug as described in
    http://forums.sun.com/ann.jspa?annID=28
    so it shows as an external request.

  • Zynq custom board not booting from SD-Card

    Hi all,
    I have a custom designed board woth a Zynq XC7Z100 SoC and try to bring it up. The schematics are based on the ZC706 board so the MIO connections on the PS are the same.
    Now I'm trying to boot just the simple Hello World example from XSDK (Vivado Version 2014.3). Booting from JTAG and from QSPI Flash is working but booting from SD-Card fails. The FSBL is producing the following output:
    Xilinx First Stage Boot Loader
    Release 2014.3 Nov 5 2014-17:42:52
    Devcfg driver initialized
    Silicon Version 3.1
    Boot mode is SD
    SD: rc= 0
    SD: Unable to open file BOOT.BIN: 3
    SD_INIT_FAIL
    FSBL Status = 0xA009
    This Boot Mode Doesn't Support Fallback
    In FsblHookFallback function
    I've measured all data pins and they are toggling. What I've found out is that the SDIO Clk is somehow strange. When starting the FSBL it is a very slow clock (kHz) and afterwards it's speeding up to 41.6666 MHz. I've already changed the SDIO clock in Vivado from 125 MHz to 50 MHz but nothing changes, when I'm measuring it. Do I miss something out?
    Any help would be greatly appreciated.
    Thanks
    Christoph

    I believe the clock is behaving properly. The driver should connect at a slow clock at first then increase to the highest clock that the driver thinks the card can support. If you see this clock speed change, the initialization must be getting past the first few SD card messages. You could try to adding printfs in the card driver to see which message failed.
    I've had problems switching from 14.7 to 2014.3 FSBL. The later driver dropped support for older SD card and stop on very first message to the card. Maybe try a different card.
    In going from dev board to custom board, did you switch from full size SD to micro SD? The micro SD format does not have a WP signal. Maybe no CD signal either. The FSBL driver cares about both.
    Some official answers:
    http://www.xilinx.com/support/answers/59476.html
    http://www.xilinx.com/support/answers/52023.html
     

  • Object not found from dead lock graph

    Hi,
    I am frequently getting ora--00060 error. And in all the trace files i see
    Deadlock graph:
                           ---------Blocker(s)--------  ---------Waiter(s)---------
    Resource Name          process session holds waits  process session holds waits
    TX-00080021-00002b64       109     546           X       88     545           S
    TX-00210021-0000142d        88     545     X             72     547           S
    TX-00080021-00002b64        72     547     X            109     546           X
    session 546: DID 0001-006D-000104E8     session 545: DID 0001-0058-00051514
    session 545: DID 0001-0058-00051514     session 547: DID 0001-0048-0005384F
    session 547: DID 0001-0048-0005384F     session 546: DID 0001-006D-000104E8
    Rows waited on:
    Session 545: obj - rowid = 0000B0FD - AAALkXAAAAAAAAAAAA
      (dictionary objn - 45309, +*file - 0, block - 0, slot - 0*)+
    Session 547: obj - rowid = 0000B0FD - AAALkXAAAAAAAAAAAA
      (dictionary objn - 45309, file - 0, block - 0, slot - 0)
    Session 546: obj - rowid = 000031E1 - AAADHhAAFAAACjwAEc
      (dictionary objn - 12769, file - 5, block - 10480, slot - 284)When i do
    select dbms_rowid.rowid_object( 'AAALkXAAAAAAAAAAAA' ) from dual;
    It returns 47383
    Then again
    select * from all_objects where object_id = 47383;
    Returns no rows.
    And i can not undersand (dictionary objn - 45309, file - 0, block - 0, slot - 0)+
    as it is pointing to FILE 0, BLOCK 0 and SLOT 0.
    Could any one give some pointers please
    Thanks
    Edited by: EBSDBA on Mar 6, 2012 12:50 AM

    Hi,
    Mr.Jonathan, I am a fan of your posts and replies.
    Deadlock graph:
                           ---------Blocker(s)--------  ---------Waiter(s)---------
    Resource Name          process session holds waits  process session holds waits
    TX-003a0002-00000002       196     468           X      224     607           S
    TX-000e002c-00006097       224     607     X            113     616           S
    TX-003a0002-00000002       113     616     X            196     468           X
    session 468: DID 0001-00C4-00000002     session 607: DID 0001-00E0-00000004
    session 607: DID 0001-00E0-00000004     session 616: DID 0001-0071-0005E56A
    session 616: DID 0001-0071-0005E56A     session 468: DID 0001-00C4-00000002
    Rows waited on:
    Session 607: obj - rowid = 0000B0FD - AAALkXAAAAAAAAAAAA
      (dictionary objn - 45309, file - 0, block - 0, slot - 0)
    Session 616: obj - rowid = 0000B0FD - AAALkXAAAAAAAAAAAA
      (dictionary objn - 45309, file - 0, block - 0, slot - 0)
    Session 468: obj - rowid = 000031E1 - AAADHhAAFAAACjtAA9
      (dictionary objn - 12769, file - 5, block - 10477, slot - 61)
    Information on the OTHER waiting sessions:
    Session 607:
      application name: frmweb.exe, hash value=854945150
      Current SQL Statement:
      SELECT MS_MESSAGES.MSG_SEVERITY FROM GENCDE.MS_MESSAGES   WHERE MS_MESSAGES.MSG_CODE =  :1  
    Session 616:
      application name: xxxxxxx.exe, hash value=2799981571
      Current SQL Statement:
    INSERT INTO ACCCDE.GLVODMF (VD_BRANCH, VD_OFFICE, VD_VOH_TYPE, VD_VOH_YEAR, VD_VOH_NO, VD_SRL, VD_ACC, VD_CURR, VD_CEXCH, VD_SIDE, VD_FAMT, VD_LAMT,VD_STATUS) VALUES (:B13 , :B12 , :B11 , :B10 , :B9 , :B8 , :B7 , :B6 , :B5 , :B4 , :B3 , :B2 ,NVL(:B1 ,1))
    End of information on OTHER waiting sessions.
    Current SQL statement for this session:
    SELECT AVS_NEXT_NO FROM ACCCDE.ACC_VOH_NO WHERE AVS_BRANCH = :B4 AND AVS_OFFICE = :B3 AND AVS_VOH_TYPE = :B2 AND AVS_VOH_YEAR = :B1 FOR UPDATEMany a times, we also see the following
    Deadlock graph:
                           ---------Blocker(s)--------  ---------Waiter(s)---------
    Resource Name          process session holds waits  process session holds waits
    TX-000f0015-00005fa0        68     429     X            101     639           S
    TX-0018000c-0000496b       101     639     X             68     429           S
    session 429: DID 0001-0044-00172927     session 639: DID 0001-0065-0000DA9A
    session 639: DID 0001-0065-0000DA9A     session 429: DID 0001-0044-00172927
    Rows waited on:
    Session 639: obj - rowid = 0000B0FD - AAALkXAAAAAAAAAAAA
      (dictionary objn - 45309, file - 0, block - 0, slot - 0)
    Session 429: obj - rowid = 0000B0FD - AAALkXAAAAAAAAAAAA
      (dictionary objn - 45309, file - 0, block - 0, slot - 0)
    Information on the OTHER waiting sessions:
    Session 639:
      application name: frmweb.exe, hash value=854945150
      Current SQL Statement:
      SELECT SYSDATE  FROM SYS.DUAL  
    End of information on OTHER waiting sessions.
    Current SQL statement for this session:
    INSERT INTO ACCCDE.GLVODMF (VD_BRANCH, VD_OFFICE, VD_VOH_TYPE, VD_VOH_YEAR, VD_VOH_NO, VD_SRL, VD_ACC, VD_CURR, VD_CEXCH, VD_SIDE, VD_FAMT, VD_LAMT,VD_STATUS) VALUES (:B13 , :B12 , :B11 , :B10 , :B9 , :B8 , :B7 , :B6 , :B5 , :B4 , :B3 , :B2 ,NVL(:B1 ,1))
    SQL> desc ACCCDE.GLVODMF
    Name                                      Null?    Type
    VD_MVD_REC_ID                             NOT NULL NUMBER(9)
    VD_BRANCH                                 NOT NULL NUMBER(2)
    VD_OFFICE                                 NOT NULL NUMBER(2)
    VD_VOH_TYPE                               NOT NULL NUMBER(2)
    VD_VOH_YEAR                               NOT NULL NUMBER(4)
    VD_VOH_NO                                 NOT NULL NUMBER(6)
    VD_SRL                                    NOT NULL NUMBER(4)
    VD_VOH_NATURE                             NOT NULL NUMBER(1)
    VD_VOH_DT                                 NOT NULL DATE
    VD_VALUE_DT                               NOT NULL DATE
    VD_ACC                                    NOT NULL NUMBER(16)
    VD_CURR                                   NOT NULL NUMBER(3)
    VD_CEXCH                                  NOT NULL NUMBER(9,6)
    VD_BEING_FOR                              NOT NULL NUMBER(3)
    VD_COST_CENTER                                     NUMBER(3)
    VD_SIDE                                   NOT NULL NUMBER(1)
    VD_FAMT                                            NUMBER(17,3)
    VD_LAMT                                   NOT NULL NUMBER(17,3)
    VD_MAMT                                            NUMBER(17,3)
    VD_STATUS                                 NOT NULL NUMBER(1)
    VD_STATUS_DT                              NOT NULL DATE
    VD_RELATED_REC_ID                                  NUMBER(9)
    VD_REMARKS                                         VARCHAR2(255)
    VD_USER_NO                                NOT NULL NUMBER
    VD_REC_DT                                 NOT NULL DATE
    VD_REC_ID                                 NOT NULL NUMBER(9)
    VD_CLEAR_FLAG                                      NUMBER(1)
    VD_CUST_NO                                         NUMBER(8)
    VD_LINE_OF_BUSINESS                                NUMBER(3)
    SQL> DESC ACCCDE.ACC_VOH_NO
    Name                                      Null?    Type
    AVS_BRANCH                                NOT NULL NUMBER(2)
    AVS_OFFICE                                NOT NULL NUMBER(2)
    AVS_VOH_TYPE                              NOT NULL NUMBER(2)
    AVS_VOH_YEAR                              NOT NULL NUMBER(4)
    AVS_CURR_NO                               NOT NULL NUMBER(6)
    AVS_NEXT_NO                               NOT NULL NUMBER(6)
    SQL>
    select do1.owner,do1.object_name,do1.object_type,di.index_type,di.uniqueness,di.table_name,di.table_type
    from dba_objects do1, dba_indexes di
    where object_id=45309
    AND DI.INDEX_NAME=DO1.OBJECT_NAME
    OWNER,  OBJECT_NAME,     OBJECT_TYPE,   INDEX_TYPE, UNIQUENESS, TABLE_NAME, TABLE_TYPE
    ACCCDE, ACC_VD_SIDE_IDX, INDEX,         BITMAP,     NONUNIQUE,  GLVODMF,     TABLEThanks

  • ECC-GTS : Partner-Customer is not transferring from ECC to GTS

    Dear All,
    I have created a Customer in SAP ECC system and using Initial transfer of customer to GTS system . I got the below success message .
    But, when I go and  check the existence of the same Partner in GTS system , I did not find any associated Business partner record for this customer .
    I have check transfer log in sap gts under "System Monitoring Tab" but I did not find any error log for this customer  .
    Can you please help me in this regard by suggesting any other areas where I need to check to find out the solution .
    " All selected partners (1) have been processed successfully
    Message no. /SAPSLL/PLUGINR3113 "
    Vinayaka

    Hi Vinayaka,
    Are you definitely checking the correct GTS system? You can run report /SAPSLL/PLUGIN_CHECK_R3 in your feeder system to check that the maintained Logical Target System  for GTS.
    In GTS, Check the BP transfer in transaction SLG1 for any error messages at the time of transfer.
    When checking in transaction BP, are you selecting "External Number" when searching with the feeder system partner number.
    Can you check in table /SAPSLL/PNTBP for the mapping between the feeder system BP no. and the GTS no. (field BPVSY relates to external no. ie feeder system. no.) and also check if an entry exists in BUT000.
    Kind Regards
    Ann Marie

  • Jvm.dll error; Java will not open from control panel

    Hi,
    I am not too familiar with Java so bear with me. When loading some pages in I.E., they crash and I get an error message asking to send the error info to Microsoft. It mentions jvm.dll...also, I tried to open Java icon in control panel, but it will not open. I tried going to Sun home page, but it crashes with a few seconds. Help!!
    Thanks a lot!!

    Try going to this page and follow instructions: http://www.java.com

Maybe you are looking for