JManage Package Level Interaction Diagram

Hi all,
Can somebody provide me with JManage Package Level Interaction Diagram based on the source or else any ideas on the same....Its urgent
Thanks in Advance

this might give you some idea
http://jmanage.org/wiki/index.php/Architecture

Similar Messages

  • What minimum Support Package level is needed in BW 3.5 / 640 to be able to

    Hello Experts,
    A quick question:
    what minimum Support Package level is needed in BW 3.5 / 640 to be able to run the SAPGUI 7.10 (including BW add-ons)?
    I am also searching at my end.
    <removed_by_moderator>
    Read the "Rules of Engagement"
    Best Regards
    Sachin Bhatt
    Edited by: Juan Reyes on Jun 29, 2009 11:15 AM

    Hi,
    Refer the below link
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=30625
    A. FEP stands for Front-End Patch. FEPs are the patches that SAP releases for the BW front-end components of the SAP GUI.
    They can be downloaded from the SAP Service Marketplace (SMP login required), browsing to the following locations:
    BW 3.5 Addon can be found at Downloads -> SAP Support Packages and Patches -> Entry by Application Group -> SAP Frontend Components -> BI ADDON FOR SAPGUI -> BW 3.5 ADDON FOR SAPGUI 7.10-> Win32.
    BW 7.0 Addon can be found at Downloads -> SAP Support Packages and Patches -> Entry by Application Group -> SAP Frontend Components -> BI ADDON FOR SAPGUI -> BI 7.0 ADDON FOR SAPGUI 7.10-> Win32.
    Let us know if u have any issues.
    Regards,
    Ravi

  • How to use Flash to create an interactive diagram

    Hi all.
    I am an extreme newbie. I would like to create an interactive diagram and somebody said I should use Flash to do it.
    The idea is to create an organisational chart (like the ones you can produce in MS Word 2010). Each position will have its own box or button. When a user clicks on that box or button, a Word document or internet link will be activated and take the user to this other resource.
    Is it possible to do this in Flash?
    The reason why I am choosing Flash is because I would like to make alot of these diagrams and they have to go into Moodle. Apparently Flash is the only program I should use to import the diagram into Moodle.
    Can anybody please help me with some advice on how to do this?
    Thanks
    Sharyn

    For the diagram end of things... start by creating the diagram in Flash.  Whatever you intend to use as clickable items, create them as movieclip symbols so that you will be able to assign instance names to them.  You assign instance names by selecting the object on the stage and entering a unique name in the Properties panel where it says <Instance Name>.  That name will be used in the code you will use to create the clicking/linking functionality.
    The the linking end of things, start simple... create a diagram that has just one item to click and get that one item working.  What you learn from that can be applied to the larger version.  The same as stated in the first paragraph applies.  The only additional info you need is creating the actual code.  To help with that you need to decide which version of Actionscript you will be using, which might depend on which version of Flash you are using.  AS3 is the most recent version of Actionscript, and it first came into being back with Flash CS3.
    The first thing you need to do to make a movieclip useful code-wise is to assign it a unique instance name.  So you drag a copy of it out to the stage from the library, and while it's still selected, you enter that unique instance name for it in the Properties panel... let's say you name it "btn1"
    In AS3, to make a movieclip work with code, you need to add an event listener and event handler function for it.  You might need to add a few (for different events, like rollover, rollout, clicking it, but for now we'll just say you want to be able to click it to get a web page to open.  In the timeline that holds that button, in a separate actions layer that you create, in a frame numbered the same as where that button exists, you would add the event listener:
    btn1.addEventListener(MouseEvent.CLICK, btn1Click);
    The name of the unique function for processing the clicking of that button is specified at the end of the event listener assignment, so now you just have to write that function out:
    function btn1Click(evt:MouseEvent):void {
       var url:String = "http://www.awebsite.com/awebpage.html";
       var req:URLRequest = new URLRequest(url);
       navigateToURL(req);

  • Official Support from SAP on Support package levels

    I have NW7 Dual stack system. Currently at SP10
    Looking for an "official Policy" on supported SP levels from SAP, if it exists already. Please help me by providing a link that information or a document if it exists.
    We are working on an ongoing infrastructure support policy for this installation.
    Thanks in advance.
    Vasu

    You can run a certain level of support packages as long as you can live with the "deficiencies" resulting out of that. You can run on the initial installed level if you can deal with the fact, that you will need to apply a LOT of notes in case you run into an error (because of dependent notes because of the low support package level).
    There may also be cases where it´s impossible to provide a correction by note (e. g. table changes) and where corrections can only be delivered by support packages.
    Last but not least the law may force you to install a certain level (e. g. fiscal year change) to get the newest (and correct) data out of the system for all kinds of changes that may be necessary to comply the law.
    Basically you can leave your system on a certain support package as long as you wish but it may become difficult or even impossible to give you a solution if more than an ABAP code correction is necessary.
    This is especially true on dual stack systems where a change in the portal may force you to upgrade your complete backend to a certain level because there the ABAP + Java stack must be in sync --> one of the reasons why we totally avoid dual stack installations.
    Markus

  • Include only interfaces and package-level comments -

    hi jd forum -
    forgive if this is covered elsewhere. i've found references to -include, -exclude, and 'docset', but i can't find these in the documentation at http://java.sun.com/j2se/1.3/docs/tooldocs/win32/javadoc.html (maybe it's for a different version).
    i want to only include documentation for interfaces and exclude the classes -- and / or include documentation on a filename basis -- like 'document only IBI*.java.' also, i want to include ONLY package-level documentation (package.html) for some packages but not the javadocs for their associated classes...
    are these things possible? i've looked into -package, -protected, and -public, but these don't seem to cover it.
    thanks in advance;
    -m

    The -include and -exclude options and @docset tag were considered for 1.4 but then decided against by the Javadoc team as we look for other solutions.
    You can document all public interfaces by passing their source filenames in to javadoc. Say, if the source files are in ./src, then:
    javadoc -d docs ./src/com/package/Interface1.java /src/com/package/Interface2.java
    You can use the wildcard asterisk here as well:
    javadoc -d docs ./src/IBI*.java
    There's no way to document the package-level documentation without the associated classes. Javadoc 1.4 has an -exclude option, but it works only to exclude packages from the -subpackages option, which is a shortcut for passing in package names.
    A workaround could be to put the package.html file in a doc-files directory and then add a link to it in overview.html. It won't be processed, so won't have the navigation bars on the top and bottom, and cannot be automatically linked to from other places (index).
    -Doug Kramer
    Javadoc team

  • Basis Support package level of ECC 6.0

    Dear All,
    I use SAP Version ECC 6.0 (700 Kernel, 64bit) Database SQL.
    My question is what should be the support package level of ECC 6.0? SAP recommends for the latest support package level always. But, whether the latest support package level will be stable?
    We are in the blue print stage now, I haven't received any requirement from the fuctionals for the support package upgrade.
    We have modules like, SD, MM, FI, FICO, HR, PS and CS.
    Anyone worked with these modules who can provide me, the particular components related to these modules with the stable support pack level.
    Thanks in Advance,
    Abu Sandeep

    Hi,
    Yes, for a new installation always go for the last support packages.
    After going live, NEVER, NEVER apply support packages without  qualifying them for YOUR company in a test system. It takes a lot of time to do non regression tests but it is mandatory IMHO.
    Regards,
    Olivier

  • Reg. Converting a package level cursor into a Ref cursor

    Hi Guru's,
    I am in need of converting a package level cursor which contains "FOR UPDATE OF" clause into a Ref cursor where the query will be dynamically built in with the needed table name and other parameters.
    Using that cursor many Update statement's were performed with "WHERE CURRENT OF" clause included in it.
    Now I changed my cursor into Ref cursor, but when i compile the cursor that is built dynamical is not identified, since i am getting error.
    Can any one tell me how to proceed in order to implement it?
    Do I need only go for dynamic bulding of the whole procedure.
    With Best Regards,
    Vijayasekaran.N

    May be you can work it around with ROWID. Like this
    Say this is your actual code.
    declare
         cursor c
         is
         select *
           from t
            for update of name;
         lno t.no%type;
         lname t.name%type;
    begin
         open c;
         loop
              fetch c into lno, lname;
              exit when c%notfound;
              update t set name = lno||lname
               where current of c;
         end loop;
         close c;
    end;
    /With refcursor you can do this.
    declare
         type rc is ref cursor;
         c rc;
         lno t.no%type;
         lname t.name%type;
         lrowid rowid;
    begin
         open c for 'select rowid rid, t.*
                   from t
                    for update of name';
         loop
              fetch c into lrowid,lno, lname;
              exit when c%notfound;
              update t set name = lno||lname
               where rowid = lrowid;
         end loop;
         close c;
    end;
    /Edited by: Karthick_Arp on Dec 26, 2008 2:00 AM

  • What are the components & support package levels required in 4.7 to extract

    Hi All,
    In my landscape we have ECC 6.0 and 4.7EE, as of now we are extracting data from ECC 6.0 to BI 7.0.Now we have requirement to extract data from 4.7EE.
    Could you please suggest me what are the components & support package levels required in 4.7 to extract data from BI 7.0 
    i am copying current compnents and support package level below
    SAP_BASIS            620        | 0065  | SAPKB62065           | SAP Basis Component                                         |
    SAP_ABA              620        | 0065  | SAPKA62065           | Cross-Application Component                                 |
    SAP_APPL             470        | 0025  | SAPKH47025           | Logistics and Accounting                                    |
    SAP_HR                 470        | 0113  | SAPKE470B3           | Human Resources             
    ABA_PLUS            | 100        | 0009  | SAPKGPBA09           | PLUGIN ZU ABA_PLUS                                          |
    EA-IPPE                  200        | 0013  | SAPKGPIB13           | EA-IPPE 200 : Add-On Installation                           |
    PI                   | 2004_1_470 | 0001  | SAPKIPZI51           | R/3 Plug-In (PI) 2004.1 for R/3 Enterpri                    |
    PI_BASIS             | 2004_1_620 | 0003  | SAPKIPYI53           | Basis Plug-In (PI_BASIS) 2004_1_620                         |
    ST-PI                | 2008_1_620 | 0000  |      -               | SAP Solution Tools Plug-In                                  |
    EA-APPL              | 200        | 0007  | SAPKGPAB07           | SAP R/3 Enterprise PLM, SCM, Financials                     |
    EA-DFPS              | 200        | 0007  | SAPKGPDB07           | SAP R/3 ENTERPRISE DFPS                                     |
    EA-FINSERV           | 200        | 0007  | SAPKGPFB07           | SAP R/3 Enterprise Financial Services                       |
    EA-GLTRADE           | 200        | 0007  | SAPKGPGB07           | SAP R/3 Enterprise Global Trade                             |
    EA-HR                | 200        | 0011  | SAPKGPHB11           | SAP R/3 Enterprise HR Extension                             |
    EA-PS                | 200        | 0007  | SAPKGPPB07           | SAP R/3 Enterprise Public Services                          |
    EA-RETAIL            | 200        | 0007  | SAPKGPRB07           | SAP R/3 Enterprise Retail            
    Thanks & regards
    Mani.
    Edited by: manohar kumar on Nov 18, 2010 7:36 AM

    Hi,
    As far as my view there is no  such dependancy as our customers are running  in same Environemnt (R/3 4.7 EE and BI 7.0) .
    Are you facing any problem durng extraction or its just a proactive approarch .
    I hope extraction will work with your current landscape.
    Regards,

  • Patch Level not reflecting in Support Package Levels after applying

    Hello,
      MDM_TECH 555_700 patch 01 are applied to A65. But the patch is not
    getting reflected in the package level.
    We are still unable to view the component in OCS queue, even after
    uploading the component. Still the MDM_TECH 555_700 is showing
    the patch level 0.
    Please provide any solution to make the patch level reflect.
    Thanks & Regards
    Vijay

    Hi Chaitanya,
    I'm facing the same issue. We are upgrading Solution Manager 7.0 to EHP1. I cannot implement the Notes 791984 , 1015068 and 1022755 since the OCS is locked with the error in DDIC_Activation. Could you please let me know how did you implement the corrections?
    Cheers,
    Savitha

  • Routines for File name at External Data in Info Package level.

    Hi All,
    Can any one give the example codes of how to write the routine for Files at External Data in Info Package level.
    Regards
    srinivas

    Hi Srinivas
    Here iam attaching a sample code in the infopackage level this code is used to select the Current version from TVARV table ..based on the version from variable the data is loaded into the ods..
    data: l_idx like sy-tabix.
              read table l_t_range with key
                   fieldname = 'FISCPER'.
              l_idx = sy-tabix.
    tables tvarv.
    data: v_prever(6)   type c,
          v_fiscper(7)  type n.
      clear tvarv.
      select single low
       from tvarv
       into v_prever
      where name = 'ZBSK_PREVIOUS_RELEASED_VERSION' and
            type = 'P' and
            numb = '0000'.
    concatenate v_prever(4) '0' v_prever+4(2) into v_fiscper.
       concatenate  '0' v_prever+4(2) v_prever(4) into v_fiscper.
            l_t_range-low = v_fiscper .
              modify l_t_range index l_idx.
    Hope the above code helps you..
    let me know in case of any concerns.. and further help needed..
    bye
    Shu Moh..

  • High level OBIEE diagram?

    Hi, I'm wondering if anyone has a very high level OBIEE diagram, suitable for given new users a 10,000 foot view of the OBIEE system. I.e. something that shows browser talking to presentation services talking to BI Server talking to databases.
    Does anyone have anything I can blatently steal...ummm I mean reutilize?
    Thx,
    Scott

    SPowell42 wrote:
    Hi, I'm wondering if anyone has a very high level OBIEE diagram, suitable for given new users a 10,000 foot view of the OBIEE system. I.e. something that shows browser talking to presentation services talking to BI Server talking to databases.
    Does anyone have anything I can blatently steal...ummm I mean reutilize?
    Thx,
    ScottHi scott,
    There are ton's of images out there ( Not literally in tons but you know what I mean).
    Follow this link: ( https://www.google.com/search?hl=en&sugexp=les%3B&tok=3m7SX0LbsZH2wJ71o09isg&cp=26&gs_id=3&xhr=t&q=obiee+architecture+diagram&bav=on.2,or.r_gc.r_pw.r_qf.&biw=1206&bih=647&wrapid=tljp134512990497400&um=1&ie=UTF-8&tbm=isch&source=og&sa=N&tab=wi&ei=sg0tULUC4cvRAdmPgMgC )
    Feel free to re-utilize them as you wish :)

  • Java Add-in System Copy - same Java Support Package levels ?

    Hi,
    I'm looking at performing a standard SAP Netweaver 04 SAP Web Application Server system "refresh" procedure. I plan to copy the production system ( SAP WAS 640 ABAP+Java addin )to an already installed QA system that was installed originally exactly the same as Prod. Both have the same components installed and the ABAP stack Support package levels are identical. What I've found is that the Java Add-in Support package levels vary. Is it possible to perform the system copy "refresh" if the Java components differ. ( Prod J2EE is 640 SP13, QA is SP14 and Adobe & ESS/MSS components differ ).
    I've looked through the system copy guides and the NW04 SR1 system copy OSS note 785848, but can't find anything about this situation.
    Hopefully someone else out there can tell me if it's possible, without first patching Production to the same levels as the QA system being overwritten.
    Regards,
    Brian.

    Hello,
    u can do that w/o applying the patch ..but after doing system copy u have latest SP13 as of u r PRD server instead of SP14 in QA....if required then u can apply it again in QA....SP14.
    So if u not got my point then tell me...
    thanks..
    reward points..

  • Applied SP but it is not showing in SPAM Status Package Level

    Hi all,
    I have applied Basis and ABAP Support Package on our XI system.
    SP applied : SAPKB64011,SAPKB64012,SAPKB64013
                SAPKA64011,SAPKA64012,SAPKA64013
    ODS packages were successfully imported, i have verified it using
    SPAM>Directory>Imported Support Packages>Display. It is showing all green.
    But when I go to SPAM>Status>Package Level it is showing level 10 for BASIS
    and ABAP both.
    Please help, why this is happening? what to do to resolve it?
    Regards
    Naivedya

    Yes I tried Restarting server but it doesnt help.
    Regards
    Naivedya

  • Packaging an interactive application!

    Hello all,
    I hope that you are well!
    Here, I am facing a challenge with SCCM 2012 SP1 and an application that we want to package, so we can push that application with SCCM 2012 SP1.
    Here is the issue...that specific application (.exe) which as been build in 1997 :-( ...did not have an option to install it silently, no switch like /q /silent and so on.
    To install that specific application we need to follow the wizard, by clicking Next until it's installed on the PC.
    We did tried to virtualize that app with App-V 5, without obtaining a good result, we're having issue when the sequencer start.
    So, my question is...Is there anyway that I can achieve this, packaging an interactive application so we can push it with ConfigMgr 2012 SP1.
    Any ideas, are much than welcome...
    Best regards,
    Stephane

    Check if your application supports the -r switch which you can use to "record" interactive responses into a setup.iss file. This is a pretty old technology.
    http://kb.flexerasoftware.com/doc/Helpnet/installshield12helplib/CreatetheResponseFile.htm
    http://unattended.sourceforge.net/installers.php
    (see InstallShield section)
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • What are the Advantages & Disadvantages of Global Variable at Package Level

    Dear Expprts
    Please tell me,
    What is mean by Global Variable?
    What are the Advantages and Disadvantages of Global Variable at Package Level against Private Variable?

    HI
    GLOBAL VARIABLE UR USE ANY BLOCK IN PLSQL
    BUT LOCAL VARIABLE USED ONLY THERE THEY DECLARE.
    REGARDS
    MOHAMMADI

Maybe you are looking for

  • AR "Invoice Print Selected Invoices" program

    Hi to All, When we run the "Invoice Print Selected Invoices" program in AR. What table and column is used to store the flag for printing the invoice. When we look at the invoice, the more tab has the Print Option/Print Date. Where is the print date,

  • How to make a supreport to show its that in a new page

    <p>Dear all,</p><p>     I am using Crystal Report XI Release 2 with a VB6 application. I have many reports and want do show then like only one to make a big report of all stuff. I try using subreports but I want that each subreport begins in a new pa

  • ERROR IN PROCESS CHAIN WHILE ACTIVATING

    HELO EXPERTTS, I WAS ASK TO TEST AN PROCESS CHAIN IN  DEVELPOMENT SER WHICH WAS ALREADY PRESENT IN THE PRODUTION SERVER , WHEN I EXECUTED THE CHAIN IN DEVELPMENT SERVER  ATRANSPORT REQUEST WAS GENERATED AND MOVE TO THE TRANSPORT QUE. WHEN I TRY TO RU

  • Restart the server in debug mode: How to drop saved passwords?

    In NWDS server pane, I entered a wrong password when trying to restart my SAP AS Java in debug mode. Now I only get exceptions "com.sap.enginemanagement.UnauthorizedException: Incorrect login information provided" without a chance of changing the ent

  • My Mighty Mouse works like any other mouse (not a good thing...)

    I came bac to my PowerBook a couple of days ago. The first thing I noticed was that my MightyMouse didn´t work properly. It scrolled superfast, and it didn´t help to slow down the speed i System Preferences either. Then I realised that the buttons on