Need your Suggestion - regarding sjsas & axis

Hi,
I'm working on Sun java System Application Server8.1.. I'm now developing a document based web service client which invokes the service program generated using AXIS.... I have a doubt at this point... I'm using JAX-RPC1.1 specs.... i'm including the saaj-api.jar , xmlsecs.jar in my classpath along with the default jar files which comes with the package.... the above mentioned two packages has SOAPBodyElement.class and XMLUtility.class respectively which i'm using. But when i compile the code it gives the following compilation errors ...
symbol : method newDocument(java.io.FileInputStream)
location: class com.sun.org.apache.xml.internal.security.utils.XMLUtils
reqSOAPBodyElements[0] = new SOAPBodyElement(XMLUtils.newDocument(fis).getDocumentElement());
^
CatalogPublisherServiceClient.java:73: javax.xml.soap.SOAPBodyElement is abstract; cannot be instantiated
reqSOAPBodyElements[0] = new SOAPBodyElement(XMLUtils.newDocument(fis).getDocumentElement());
^
CatalogPublisherServiceClient.java:83: cannot find symbol
symbol : method getAsDOM()
location: interface javax.xml.soap.SOAPBodyElement
System.out.println(XMLUtils.ElementToString(resSOAPBodyElement.getAsDOM()));
But when i include axis.jar file in my classpath instead of the above mentioned jar files the code gets compiled suuccessfully.... axis.jar file contains both the above mentioned class files which i'm using... My main concern is if i use axis.jar which comes with axis, jakarta's product does it mean that i'm going out of my technological environment.. can i do that or is ther any other solution to over come this problem..
When i analyse the class files of axis package it implements javax.xml.soap which is from saaj-api.jar file.. i'm bit confused with this...
if i'm using axis.jar file in my classpath does it mean that i'm working on axis environment instead of sjsas environment...
can any body provide me a solution
thanks in advance
regards,
R Vijay

FICO forums
[ERP Financials|/community [original link is broken]://SAP ERP Financials;
[ERP Financials - Asset Accounting|SAP ERP Financials  - Asset Accounting;
[ERP Financials - Financial Supply Chain Management|SAP ERP Financials - Financial Supply Chain Management;
[ERP Financials - Treasury Applications|SAP ERP Financials - Treasury Applications;

Similar Messages

  • Query performance tuning need your suggestions

    Hi,
    Below is the sql query and explain plan which is taking 2 hours to execute and sometime it is breaking up( erroring out) due to memory issue.
    Below it the query which i need to improve the performance of the code please need your suggestion in order to tweak so that time take for execution become less and also in less memory consumption
    select a11.DATE_ID DATE_ID,
    sum(a11.C_MEASURE) WJXBFS1,
    count(a11.PKEY_GUID) WJXBFS2,
    count(Case when a11.C_MEASURE <= 10 then a11.PKEY_GUID END) WJXBFS3,
    count(Case when a11.STATUS = 'Y' and a11.C_MEASURE > 10 then a11.PKEY_GUID END) WJXBFS4,
    count(Case when a11.STATUS = 'N' then a11.PKEY_GUID END) WJXBFS5,
    sum(((a11.C_MEASURE ))) WJXBFS6,
    a17.DESC_DATE_MM_DD_YYYY DESC_DATE_MM_DD_YYYY,
    a11.DNS DNS,
    a12.VVALUE VVALUE,
    a12.VNAME VNAME,
    a13.VVALUE VVALUE0,
    a13.VNAME VNAME0,
    9 a14.VVALUE VVALUE1,
    a14.VNAME VNAME1,
    a15.VVALUE VVALUE2,
    a15.VNAME VNAME2,
    a16.VVALUE VVALUE3,
    a16.VNAME VNAME3,
    a11.PKEY_GUID PKEY_GUID,
    a11.UPKEY_GUID UPKEY_GUID,
    a17.DAY_OF_WEEK DAY_OF_WEEK,
    a17.D_WEEK D_WEEK,
    a17.MNTH_ID DAY_OF_MONTH,
    a17.YEAR_ID YEAR_ID,
    a17.DESC_YEAR_FULL DESC_YEAR_FULL,
    a17.WEEK_ID WEEK_ID,
    a17.WEEK_OF_YEAR WEEK_OF_YEAR
    from ACTIVITY_F a11
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 1 ) a12
    on (a11.PKEY_GUID = a12.PKEY_GUID and
    a11.DATE_ID = a12.DATE_ID and
    a11.ORG = a12.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 2) a13
    on (a11.PKEY_GUID = a13.PKEY_GUID and
    a11.DATE_ID = a13.DATE_ID and
    a11.ORG = a13.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 3 ) a14
    on (a11.PKEY_GUID = a14.PKEY_GUID and
    a11.DATE_ID = a14.DATE_ID and
    a11.ORG = a14.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 4) a15
    on (a11.PKEY_GUID = a15.PKEY_GUID and
    89 a11.DATE_ID = a15.DATE_ID and
    a11.ORG = a15.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 9) a16
    on (a11.PKEY_GUID = a16.PKEY_GUID and
    a11.DATE_ID = a16.DATE_ID and
    A11.ORG = A16.ORG)
    join W_DATE_D a17
    ON (A11.DATE_ID = A17.ID)
    join W_SALES_D a18
    on (a11.TASK = a18.ID)
    where (a17.TIMSTAMP between To_Date('2001-02-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and To_Date('2002-09-12 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
    and a11.ORG in (12)
    and a18.SRC_TASK = 'AX012Z')
    group by a11.DATE_ID,
    a17.DESC_DATE_MM_DD_YYYY,
    a11.DNS,
    a12.VVALUE,
    a12.VNAME,
    a13.VVALUE,
    a13.VNAME,
    a14.VVALUE,
    a14.VNAME,
    a15.VVALUE,
    a15.VNAME,
    a16.VVALUE,
    a16.VNAME,
    a11.PKEY_GUID,
    a11.UPKEY_GUID,
    a17.DAY_OF_WEEK,
    a17.D_WEEK,
    a17.MNTH_ID,
    a17.YEAR_ID,
    a17.DESC_YEAR_FULL,
    a17.WEEK_ID,
    a17.WEEK_OF_YEAR;
    Explained.
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 1245 | 47 (9)| 00:00:01 |
    | 1 | HASH GROUP BY | | 1 | 1245 | 47 (9)| 00:00:01 |
    |* 2 | HASH JOIN | | 1 | 1245 | 46 (7)| 00:00:01 |
    |* 3 | HASH JOIN | | 1 | 1179 | 41 (5)| 00:00:01 |
    |* 4 | HASH JOIN | | 1 | 1113 | 37 (6)| 00:00:01 |
    |* 5 | HASH JOIN | | 1 | 1047 | 32 (4)| 00:00:01 |
    |* 6 | HASH JOIN | | 1 | 981 | 28 (4)| 00:00:01 |
    | 7 | NESTED LOOPS | | 1 | 915 | 23 (0)| 00:00:01 |
    | 8 | NESTED LOOPS | | 1 | 763 | 20 (0)| 00:00:01 |
    | 9 | NESTED LOOPS | | 1 | 611 | 17 (0)| 00:00:01 |
    | 10 | NESTED LOOPS | | 1 | 459 | 14 (0)| 00:00:01 |
    | 11 | NESTED LOOPS | | 1 | 307 | 11 (0)| 00:00:01 |
    | 12 | NESTED LOOPS | | 1 | 155 | 7 (0)| 00:00:01 |
    | 13 | NESTED LOOPS | | 1 | 72 | 3 (0)| 00:00:01 |
    | 14 | TABLE ACCESS BY INDEX ROWID| W_SALES_D | 1 | 13 | 2 (0)| 00:00:01 |
    |* 15 | INDEX UNIQUE SCAN | CONS_UNQ_W_SALES_D_SRC_ID | 1 | | 1 (0)| 00:00:01 |
    | 16 | TABLE ACCESS BY INDEX ROWID| W_DATE_D | 1 | 59 | 1 (0)| 00:00:01 |
    |* 17 | INDEX UNIQUE SCAN | UIDX_DD_TIMSTAMP | 1 | | 0 (0)| 00:00:01 |
    | 18 | TABLE ACCESS BY INDEX ROWID | ACTIVITY_F | 1 | 83 | 4 (0)| 00:00:01 |
    |* 19 | INDEX RANGE SCAN | PK_ACTIVITY_F | 1 | | 3 (0)| 00:00:01 |
    |* 20 | TABLE ACCESS BY INDEX ROWID | W_ORG_D      | 1 | 152 | 4 (0)| 00:00:01 |
    |* 21 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 22 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 23 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 24 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 25 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 26 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 27 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 28 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 29 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 30 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 31 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 32 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 33 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 34 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    -----------------------------------------------------------------------------------------------------------------------

    Hi,
    I'm not a tuning expert but I can suggest you to post your request according to this template:
    Thread: HOW TO: Post a SQL statement tuning request - template posting
    HOW TO: Post a SQL statement tuning request - template posting
    Then:
    a) you should posting a code which is easy to read. What about formatting? Your code had to be fixed in a couple of lines.
    b) You could simplify your code using the with statement. This has nothing to do with the tuning but it will help the readability of the query.
    Check it below:
    WITH tab1 AS (SELECT a.org AS org
                       , a.date_id AS date_id
                       , a.time_of_day_id AS time_of_day_id
                       , a.date_hour_id AS date_hour_id
                       , a.task AS task
                       , a.pkey_guid AS pkey_guid
                       , a.vname AS vname
                       , a.vvalue AS vvalue
                       , b.variable_obj
                    FROM    w_org_d a
                         JOIN
                            w_person_d b
                         ON (    a.task = b.task
                             AND a.org = b.id
                             AND a.vname = b.vname))
      SELECT a11.date_id date_id
           , SUM (a11.c_measure) wjxbfs1
           , COUNT (a11.pkey_guid) wjxbfs2
           , COUNT (CASE WHEN a11.c_measure <= 10 THEN a11.pkey_guid END) wjxbfs3
           , COUNT (CASE WHEN a11.status = 'Y' AND a11.c_measure > 10 THEN a11.pkey_guid END) wjxbfs4
           , COUNT (CASE WHEN a11.status = 'N' THEN a11.pkey_guid END) wjxbfs5
           , SUM ( ( (a11.c_measure))) wjxbfs6
           , a17.desc_date_mm_dd_yyyy desc_date_mm_dd_yyyy
           , a11.dns dns
           , a12.vvalue vvalue
           , a12.vname vname
           , a13.vvalue vvalue0
           , a13.vname vname0
           , a14.vvalue vvalue1
           , a14.vname vname1
           , a15.vvalue vvalue2
           , a15.vname vname2
           , a16.vvalue vvalue3
           , a16.vname vname3
           , a11.pkey_guid pkey_guid
           , a11.upkey_guid upkey_guid
           , a17.day_of_week day_of_week
           , a17.d_week d_week
           , a17.mnth_id day_of_month
           , a17.year_id year_id
           , a17.desc_year_full desc_year_full
           , a17.week_id week_id
           , a17.week_of_year week_of_year
        FROM activity_f a11
             JOIN tab1 a12
                ON (    a11.pkey_guid = a12.pkey_guid
                    AND a11.date_id = a12.date_id
                    AND a11.org = a12.org
                    AND a12.variable_obj = 1)
             JOIN tab1 a13
                ON (    a11.pkey_guid = a13.pkey_guid
                    AND a11.date_id = a13.date_id
                    AND a11.org = a13.org
                    AND a13.variable_obj = 2)
             JOIN tab1 a14
                ON (    a11.pkey_guid = a14.pkey_guid
                    AND a11.date_id = a14.date_id
                    AND a11.org = a14.org
                    AND a14.variable_obj = 3)
             JOIN tab1 a15
                ON (    a11.pkey_guid = a15.pkey_guid
                    AND a11.date_id = a15.date_id
                    AND a11.org = a15.org
                    AND a15.variable_obj = 4)
             JOIN tab1 a16
                ON (    a11.pkey_guid = a16.pkey_guid
                    AND a11.date_id = a16.date_id
                    AND a11.org = a16.org
                    AND a16.variable_obj = 9)
             JOIN w_date_d a17
                ON (a11.date_id = a17.id)
             JOIN w_sales_d a18
                ON (a11.task = a18.id)
       WHERE (a17.timstamp BETWEEN TO_DATE ('2001-02-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
                               AND TO_DATE ('2002-09-12 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
              AND a11.org IN (12)
              AND a18.src_task = 'AX012Z')
    GROUP BY a11.date_id, a17.desc_date_mm_dd_yyyy, a11.dns, a12.vvalue
           , a12.vname, a13.vvalue, a13.vname, a14.vvalue
           , a14.vname, a15.vvalue, a15.vname, a16.vvalue
           , a16.vname, a11.pkey_guid, a11.upkey_guid, a17.day_of_week
           , a17.d_week, a17.mnth_id, a17.year_id, a17.desc_year_full
           , a17.week_id, a17.week_of_year;
    {code}
    I hope I did not miss anything while reformatting the code. I could not test it not having the proper tables.
    As I said before I'm not a tuning expert nor I pretend to be but I see this:
    1) Table W_PERSON_D is read in full scan. Any possibility of using indexes?
    2) Tables W_SALES_D, W_DATE_D,  ACTIVITY_F and W_ORG_D have TABLE ACCESS BY INDEX ROWID which definitely is not fast.
    You should provide additional information for tuning your query checking the post I mentioned previously.
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Just please i forgot my security questions for the apple id and now i cant buy from app store with my visa card ?? I need your support regarding to this

    Pls i need your support regarding to this

    You need to contact Apple. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (92876)

  • Hi John I need your help regarding "Oracle EPM Health check" ?

    Hi,
    I need your views as we frequently start Hyperion services whenever it goes down (ex Workspace or EPMA or HFM).
    These services most of the time after restart does not work properly.
    Kindly suggest is it correct way to start only that service which stops or we need to bounce all Hyperion services?
    Secondly how to validate my Hyperion Environment if is it working properly.
    Version 11.1.1.3
    URL check may be OK but sometime URL opens but problem occurs after login.
    Rehards
    Hyp User
    Edited by: 936921 on Jun 13, 2012 7:16 AM

    Thanks John,
    I agree with you.
    But situation is as we have multiple customers and multiple instances.
    case 1: worspace went down ---restarting only workspace services; is it correct as we do mostly?
    case 2: EAS and reporting may down---restrting only these two services; is it correct way to resolve issue?
    case 3: HFM web services may down: starting IIS, www, http and HFM; is it correct to resolve?
    we need to understand our resolution. OR we always go and stop Hyperion and start again Hyperion all services.
    Regards
    Hyp User

  • Need your suggestion ..

    Dear folks,
    Could you share to me your suggestions please .. ??
    I have report whose type is summary and it's coming from info-cubes. The info-cube before going to info-cube, the data it's sent to ODS first.
    The source of data come from CRM System.
    The case is like this, sometimes my user wanna delete the data that has been displayed in the report.
    Could you suggest me what i should do regarding this requirement .. ?? What procedure should i do ?
    Many thanks.
    regards,
    Niel.

    Deal All,
    I'd like to express my tks to you for your response.
    The user wanna to delete the data from the report permanently.
    It means, if i have data about transaction 1 for customer A, the data should be deleted from Info-Cube and also the source (CRM).
    I've ever heard the method, that we can delete the record in ODS using mark 0recordmode in ODS with 'D'.
    My questions are :
    1. If i use that method, how can i delete the data in info-cube ?
    2. Is there other method except this ?
    fyi, my data flow :
    SAP CRM -> BW : data source -> PSA -> ODS -> Cube.
    Regards,
    Niel.

  • I need your help regarding Macbook Pro with FCS3 via USB

    Sorry for the double posting, I need your help...
    I am producing an independent TV movie. We are shooting in HDV with a Sony Z5.
    Currently I am using a 2007 iMac (1gb) for the FCS3. I am considering buying a Macbook Pro 15' i7, because I need the portability as well as a WD 1TB portable external drive.
    Just when I am about to buy the machine I started to read all about the USB vs. the Firewire. What should I do? The MBP only have one firewire port...if I use an USB portable external drive means that I won't be able to use FCS3 properly and that buying a MBP will mean spending money in something that I won't be able to make it work properly??
    Thanks for your help!!!!

    Hi there,
    As Patrick said its Firewire hubs you should avoid along with directly connecting your media drive via USB. USB hubs are fine for connecting peripherals (keyboards, tablets, mice etc). directly connecting USB media drives is not for streaming video due to their method of sending data in packets rather than as the continuous stream that firewire provides. Firewire hubs just seem to cause all sorts of headaches to those that have used them, I cant give you a specific reason other than splitting the available FW bandwidth (someone with more knowledge on this will have to chime in), its more just inherited practice.
    cheers
    ANdy

  • Need your help regarding Conditional Chart Data formatting

    I have just started using BI, so I am sorry if what I am asking is a FAQ or a very simple question.
    I have a Line Bar Combo chart whose bars I have colored differently according to some conditions. When I drill down from a year/month series to the day of a particular month, though, the conditional formatting is lost.
    http://img141.imageshack.us/img141/5677/biimage.jpg
    Can anyone suggest me if I am missing something in the program options or if there is any workaround to this behavior?
    Thanks a lot in advance.

    Letz say you have colored the year black when it is 2008 and you display it in the graph and while you drill down from year to quarter in the back ground an adiitional column will be added (Quarter) and the conditional formatting will be still there for the year but will be very small(like a dot) as your quarter is exposed on the X axis.
    The deeper you drill the wider your x-axis will be and the smaller your formatting looks.
    You cant controll the drill. It will mimic what is present in the compound layout set up at the parent level.If you need to avoid multiple columns appearing on your X-axis and do some changes to your graphs then you need to navigate
    instead of drill. if the report is 3 levels deep then it has to be 3 diff reports(maintenance will be high)
    It will be seemless to the users whether you navigate or drill. Just a suggestion. There are some things which we need to compromise :)
    Thanks
    Prash

  • Need your suggestions related to transport the structures

    Hi Experts & Gurus,
    We are planning to do data refresh from our BI Production to Q and DEV systems. We have a problem as we have some structures (some process chains or models etc.) in production and those are not available in Q & DEV. So is there any easy way we can transfer those structures in our Q & DEV, so that everything should be in sync.  Please provide me your valuable suggestions and methods.
    Regards
    Sunny

    Hi sunny,
    For that you have to create a transport of copies in Production and transport it to QA and development.
    reverse transporting is the one solution for ur requirement.
    In order to do this first make sure you have this connectivity maintained to reverse transport.
    For that you have in transaction SCC4 in quality change the type of system and open it (basically change the settings in SCC4 in quality to be the same you have in development).
    Afterwards you should in quality go to rsa1->Transport Connection and from the menu choose Edit->Transport->Switch On Standard.
    Afterwards on the same screen on the grouping (right screen area button) choose Only necessary objects.
    Also on the right screen area choose the Display to List.
    Choose on the left area the objects you want to transport.
    Click on the button of the transport (between grouping and package) and create a new transport request.
    Now this transport request is a local one. You have to create one as trasnport of copies.
    Go to transaction se01 and click on display. Liberate the transport you have just created but note it down the transport id.
    Afterwards go to transaction se01 again and click on create button and choose a new transport with the type "Transport of copies"
    Give it a name.
    Aftewards double-click on the transport id and click on change. Go to the tab Properties and on the Target field select from the list the Target System of the development and save the changes.
    Afterwards click on the button "Include objects" (Ctrl+F11) and insert the local transport id you've liberated before.
    After this just liberate the transport and on transaction stms you'll see on the development system the new transport of copies you've created and you can now transport it normally as you do.
    After all this is done just close your system on transaction SCC4 on quality system as it was before.
    Or
    Develop the changes in the Dev and retransport the changes to QA n PROD.
    Regards
    Kp

  • Need your suggestions

    <SPAN>:angry: I'm so frustrated. I'm not going to follow the lemming-IPod rush.
    <SPAN>
    Could someone please review my info and give me some suggestions as to which Creative mp3 player would best suit my needs?
    I would hate to buy the wrong player.<SPAN> I appreciate your honest opinions on your personal Creative Player.
    <SPAN>
    <SPAN>Please do not recommend a player that is soon to be discontinued!I really appreciate your help in this matter. I?m currently dropping hints that I want a player for Christmas and hope to have a product name/price to tell people when they ask what I want. <B>Must Haves: </B>Plenty of storage for 0 plus audio books and over 500 songsBookmark function for audio booksMinimum of 8 hours of continuous play
    <SPAN>Flash Memory ? don?t plan to drop it, but if a good song starts to play ? I might start dancing.<SPAN>
    <SPAN>Windows XP compatibleUpgrades and Online SupportEasy upload of audio books and songs capabilitiesDecent sound quality from headphonesComes with headphones and other cables/cords/software to start using straight from boxAccessories that are available most anywhereMinimum 30 day warranty that covers most aspects<B>Not needed: </B>Features such as: photo or video storage/view, calendar, address book, memo pad, etc.Color screen

    Once you say Flash player, your options are limited when it comes to Audible support. First off the capacity of a flash player is small for what Creative is offering. So right there you need to get a hard dri've player.
    If flash is what you <i>REALLY</i> want then consider another brand. But if you can settle for a hard dri've. Then go for a Zen Micro, Zen Neeon 5gb/6gb, or Zen Sleek. I'm not sure if the Zen Micro Photo and Zen Sleek Photo have Audible support but I would think so. Hopefully someone can confirm this as the website for both devices dont list Audible as a compatible format.
    Also the accessories part, as the market is dominated by the iPod's that pretty much all you see. The accessories are pretty much iPod only and Everything else. So with anything but an iPod your choice of accessories are limited.

  • Need your suggestion / Input about choosing Apex for new application

    Guys,
    I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
    Following are the functionality of the application:
    1) there will be 40 different entity in the application (create/edit/read/delete)
    2) Each entity and CRUD processing will be roles based
    3) On various events, send email and generate XML files for interfacing with external system
    4) Scheduling report generation and normal report generation
    5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
    6) Various search capabilities for each entity
    7) On various event and user selection: generate PDF file which user can download / print.
    8) Many client side and server side validations.
    Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
    Please let me know your thoughts based on my current situation and functionality.
    Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
    Thank you for reading the post and your support.
    -Raj

    Guys,
    I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
    Following are the functionality of the application:
    1) there will be 40 different entity in the application (create/edit/read/delete)
    2) Each entity and CRUD processing will be roles based
    3) On various events, send email and generate XML files for interfacing with external system
    4) Scheduling report generation and normal report generation
    5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
    6) Various search capabilities for each entity
    7) On various event and user selection: generate PDF file which user can download / print.
    8) Many client side and server side validations.
    Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
    Please let me know your thoughts based on my current situation and functionality.
    Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
    Thank you for reading the post and your support.
    -Raj

  • Need your suggestion in maintaining Member Proflle Details

    Hi Experts,
    I was asked to return the new updated value for the customer when successfully any changes updated to his/her information.
    My Table:
    customerid          -     Pk
    customerfirstname     -     
    customerlastname     -
    Customer bussiness phone
    customer home phone
    In Average, there will be thousands and more customer per day. Each customer will update his/her profile once or twice per day.
    Can someone suggest how can i proceed this?
    Thanks,
    Database Developer.
    Edited by: user11904889 on Sep 21, 2009 3:27 AM

    user11904889 wrote:
    I was asked to return the new updated value for the customer when successfully any changes updated to his/her information.What does that mean exactly?
    Do you need to keep the history of the records too, or just know which records have been updated?
    If you need a history, then you'll need either a) to implement something like triggers to store the changes elsewhere or b) to include a "from" date/time and "to" date/time against each record so that you can determine which are the latest records for each customer. You can then use the "from" date/time to determine which records you are interested in retrieving (i.e. those that have changed since a specified date/time).
    If you don't need a history, then simply have a "date_updated" date/time against the record and use that.

  • Need Your suggestion on Performance Management

    Hi All
    When Creating objectives it can be linked different criterian.But Whati would need to know can this be linked based on
    Person wise
    Department
    Band
    Can objectives be mapped to One - Many Many - one relations !!
    Employee /Manager should have an option remove unwanted objectives.I think it can be done.But stilli need all gurus inputs
    When An employee transfered from Org to another existing objectives will need to be attached to the employee
    Upon transfer of an employee appraisal final rating should be given by both the managers
    Do a mid-term appraisal with ratings but not to complete the appraisal.
    Do an Annual appraisal with final ratings
    Can these be possible as straight fit. Need all your valuable inputs .This is very urgent.

    When Creating objectives it can be linked different criterian.But Whati would need to know can this be linked based on
    Person wise
    Department
    Band
    Yes, u can create different eligibility profiles as required.
    Can objectives be mapped to One - Many Many - one relations !!You cannot have more than one eligibility profile linked to an objective. But you can create all the eligibility factors into a single profile. This was you will not need more than 1 eligibility profile for 1 objective.
    You can link 1 eligibility profile to more than 1 objective.
    Employee /Manager should have an option remove unwanted objectives.I think it can be done.But stilli need all gurus inputsYes.
    When An employee transfered from Org to another existing objectives will need to be attached to the employeeNot sure. But but during the appraisal, the manager can attach more objectives. Also, if you republish the plan, the extra objectives gets added to the employee's scorecard.
    Upon transfer of an employee appraisal final rating should be given by both the managers.Final rating can only be given by the appraiser.
    1. The previous appraiser can change the Main Appraiser and select the new appraiser
    2. The previous appraiser can add the new manager as a particiapnt and get his inputs.
    Do a mid-term appraisal with ratings but not to complete the appraisal.
    Do an Annual appraisal with final ratings
    You need to create 2 separate appraisal. You can create two seperate appraisal tasks in the same PMP, one for mid year and the second for annual. But the final rating column will be there, you can ignore it.

  • Need your suggestions for developing a Forum Site using Adobe Flex

    Hi ,
    I want to develop a small Forum Site where people can post questions and reply to questions .
    I want to develop the whole thing using Adobe Flex , Is there any plugin avialable for this .
    Means i mean to ask , if i go for normal J2EE there is a JForum avialable as far as i know .
    Please share your ideas .

    I meant "Don't use flex" unless you have some superb new design for a forum. I suspect that if you already had such a design, you wouldn't need to ask the question. Flex for Flex sake isn't good.
    There are already great html forum solutions out there.
    Basically, there's no point in duplicating in Flex what is already done in HTML, unless the Flex version offers a significant improvement to the user experience in some way.
    I am not aware of any Flex forum implementations and there is probably a good reason for that.
    Maybe someone else will know of one.

  • Needs your suggestion: New to SAP BI

    Hi All
    I am working in an MNC as a business analyst, related to business intelligence. But not related to SAP. I have learnt SAP through an institute. now i want to use my previous experience to get into SAP. Can i use it? Can i get in to SAP without handson experience in SAP??
    needs ur sugeestion
    thanks

    Hi,
    Below links are very useful to concentrate your BI knowledge.
    data modelling..
    http://searchsap.techtarget.com/searchSAP/downloads/April2006.pdf
    http://searchsap.techtarget.com/searchSAP/downloads/chapter-october.pdf
    Enterprise Dataware Housing.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/67efb9bb-0601-0010-f7a2-b582e94bcf8a
    Enterprise Reporting.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0901c9bb-0601-0010-49ab-c1770c527673
    http://help.sap.com/saphelp_nw04s/helpdata/en/a4/1be541f321c717e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    https://www.sdn.sap.com/irj/sdn/bi
    http://searchsap.techtarget.com/searchSAP/downloads/April2006.pdf
    http://searchsap.techtarget.com/searchSAP/downloads/chapter-october.pdf
    LO Extraction
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0af763b-066e-2910-a784-dc6731660f46
    lo extraction step by step
    LO Step by step documentation
    LO Cockpit  (SD) Step by step
    LIS Extraction
    lis extraction
    Steps for LIS Extraction
    COPA Extraction
    /people/prakash.darji/blog/2006/09/18/bpx-methodology-and-example--part-2
    How to handle COPA realignment / restatement
    /people/hari.peruri/blog/2006/11/01/execute-conversion-of-logical-system-names-bdls-in-short-time-and-in-parallel--intermediate
    Thanks,
    Sankar M

  • Need your suggestion : VMWare Workstation Network Bridge Never works

    Hi, I am new to the Archlinux, and begin to love this distribution, event though I struggling all the time to get my archlinux up to running. It is very painful move from windows to Linux because some of my company software only runs correctly under windows (most of time get error under wine...), so I need to install VMWare-Workstation on my PC.
    With the help from Arch Fan's Blog I successfully installed VMWare-WorkSation 7.1 on my arch (64bit version) and everything works fine except the network. Not matter how I struggle search on the google I just can not make the network adapter working under bridge mode. which works perfectly under windows OS.
    So I wonder is any one have the same issue and will be great help if you can share your experience.
    Thanks A lot !!
    BTW: My PC only have one Wireless Network card enabled, so I have disable the eth0 on "/etc/rc.conf"

    abraham10 wrote:Have you tried Virtual box instead and what about crossover?
    thanks for reply,
    Virtualbox not support some USB features which is required by the software and however, I found Virtualbox alway consume more system resource than VMWare-Workstation, so that is the reason I need to stick to the VMWare.

Maybe you are looking for

  • In process chain

    Hi whats the techinical difference between PROCESS CHAIN & MASS PROCESSING?  I know about mass processing how it works creating activity and assing activity to job and scheduling the job  after an event or immediate or a spcefic time... but when it c

  • SAAJ with Attachment

    Hi, I have a problem when I use SAAJ with attachment, and I using jboss + axis. This is my error: "ERROR [MimeUtils] java.io.IOException: ClientAbortException: java.net.SocketException: Connection reset by peer: socket write error" Maybe, it's the si

  • Dvd1270i light scribe won't print fully on disc

    When I attempt to print an image on a light scribe media, it never prints the full image on the disc.  I open the print area fully and check the image prior to printing, however it STILL only prints on about only 10% of the print area on the disc.

  • I Just Got A Mini. & I was woundering.

    Each time i take the music off a friends computer it'll delete all my previous music, and just add the new music from their computer. But when i attatch my IPod back to my computer all the new music i had dissappears, is there anyway i can make it st

  • Need to create a "search for a distributor/store/etc"

    Hi!  I have a client that sells a certain product that I have designed his website for him.  He has now started franchising and has asked me if i can add a page that will search for distributors in a certain zip code area.  I have no idea how to do t