Creating a new ticket

Hi SAP GURUS!!!
I Have a requirement , I wanna create a new duplicate ticket for an existing ticket in the same system.And the details in the original ticket should reflect in duplicate ticket. I got the details of ORDERADM_H TABLE AND ACTIVITY_H table..
But the problem is in PARTNER TABLE.Where i am not getting the details present in partner table.
This is my code so please check and say any solution.
INCLUDE crm_object_names_con.
selection-screen begin of block b1 with frame title text-001.
PARAMETERS tic_no TYPE crmt_object_id_db.
selection-screen end of block b1.
DATA lv_header_guid TYPE crmt_object_guid.
DATA lt_header_guid TYPE crmt_object_guid_tab.
DATA lv_object_name TYPE crmt_object_name.
DATA: lt_orderadm_h TYPE crmt_orderadm_h_wrkt,
      ls_orderadm_h TYPE crmt_orderadm_h_wrk,
      lt_appointment TYPE crmt_appointment_wrkt,
      ls_appointment TYPE crmt_appointment_wrk,
      lt_service_h TYPE crmt_service_h_wrkt,
      it_orderadm_h1 TYPE crmt_orderadm_h_comt,
      ls_orderadm_h1 TYPE crmt_orderadm_h_com,
      lt_orderadm_i TYPE crmt_orderadm_i_wrkt,
      lt_status TYPE crmt_status_wrkt,
      lt_request_objs TYPE crmt_object_name_tab,
      it_exception TYPE crmt_exception_t,
      et_objects_to_save TYPE crmt_object_guid_tab,
      it_saved_objects TYPE crmt_return_objects,
      cv_log_handle TYPE balloghndl,
      lt_customer_i TYPE crmt_customer_i_wrkt,
      es_status TYPE crmt_status_com,
      et_status TYPE crmt_status_comt,
      lt_sales TYPE   crmt_sales_wrkt,
      ls_sales TYPE crmt_sales_wrk,
      lv_ref_guid TYPE crmt_object_guid,
      wa LIKE LINE OF lt_orderadm_h.
*Temporary internal tables
DATA it_sales_temp TYPE crmt_sales_comt.
DATA ls_sales_temp TYPE crmt_sales_com.
*Declaration for read
DATA lt_partner TYPE crmt_partner_external_wrkt.
DATA ls_partner TYPE crmt_partner_external_wrk.
data lt_activity_h TYPE crmt_activity_h_wrkt.
data ls_activity_h TYPE crmt_activity_h_wrk.
*Declaration for maintain
DATA lt_partner1 TYPE crmt_partner_comt.
DATA ls_partner1 TYPE crmt_partner_com.
data it_activity_h1 TYPE crmt_activity_h_comt.
data ls_activity_h1 TYPE crmt_activity_h_com.
CLEAR lv_header_guid.
SELECT SINGLE guid FROM crmd_orderadm_h INTO lv_header_guid
                                        WHERE object_id = tic_no.
IF sy-subrc NE 0.
  EXIT.
ENDIF.
INSERT lv_header_guid INTO TABLE lt_header_guid.
     Preparing required objects for read              **
MOVE 'ORDERADM_H' TO lv_object_name.
INSERT lv_object_name   INTO TABLE lt_request_objs.
MOVE 'ACTIVITY_H' TO lv_object_name.
INSERT lv_object_name   INTO TABLE lt_request_objs.
MOVE 'SALES' TO lv_object_name.
INSERT lv_object_name      INTO TABLE lt_request_objs.
MOVE 'SERVICE_H' TO lv_object_name.
INSERT lv_object_name INTO TABLE lt_request_objs.
MOVE 'APPOINTMENT' TO lv_object_name.
INSERT lv_object_name  INTO TABLE lt_request_objs.
MOVE 'STATUS' TO lv_object_name.
INSERT lv_object_name INTO TABLE lt_request_objs.
MOVE 'STATUS_H' TO lv_object_name.
INSERT lv_object_name  INTO TABLE lt_request_objs.
MOVE 'PARTNER' TO lv_object_name.
INSERT lv_object_name  INTO TABLE lt_request_objs.
CALL FUNCTION 'CRM_ORDER_READ'
  EXPORTING
    it_header_guid       = lt_header_guid
    it_requested_objects = lt_request_objs
    iv_no_auth_check     = 'X'
  IMPORTING
    et_orderadm_h        = lt_orderadm_h
    et_orderadm_i        = lt_orderadm_i
    et_activity_h        = lt_activity_h
    et_appointment       = lt_appointment
    et_partner           = lt_partner
    et_service_h         = lt_service_h
    et_status            = lt_status
    et_sales             = lt_sales
  EXCEPTIONS
    document_not_found   = 1
    error_occurred       = 2
    document_locked      = 3
    no_change_authority  = 4
    no_display_authority = 5
    no_change_allowed    = 6.
DATA:
    ls_input_field        TYPE  crmt_input_field,
    ls_input_field_names  TYPE  crmt_input_field_names,
    it_orderadm_h      TYPE  crmt_orderadm_h_comt   ,
    it_activity_h      TYPE crmt_orderadm_h_comt,
    it_input_fields    TYPE  crmt_input_field_tab    ,
    lv_log_handle      TYPE  balloghndl,
    lt_saved_objects   TYPE  crmt_return_objects,
    lt_obj_guids       TYPE  crmt_object_guid_tab.
*PREPARING INPUT FIELDS FOR ORDERADM
IF lt_orderadm_h[] IS NOT INITIAL.
  READ TABLE lt_orderadm_h INTO ls_orderadm_h INDEX 1.
  MOVE-CORRESPONDING ls_orderadm_h TO ls_orderadm_h1.
ls_orderadm_h1-handle = 1.
ls_orderadm_h1-guid = ls_orderadm_h-guid.
  ls_orderadm_h1-mode         = 'A' .
  ls_orderadm_h1-process_type = 'SLFN'.
  ls_orderadm_h1-handle = 1.
  INSERT ls_orderadm_h1 INTO TABLE it_orderadm_h1.
ENDIF.
ls_input_field-ref_handle =  1.
ls_input_field-ref_kind  = 'A'.
ls_input_field-objectname  = 'ORDERADM_H'.
ls_input_field_names-fieldname = 'PROCESS_TYPE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
*ls_input_field_names-fieldname = 'PROCESS_TYPE'.
*INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'DESCRIPTION'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'POSTING_DATE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
INSERT ls_input_field  INTO TABLE  it_input_fields.
*PREPARING INPUT FIELDS FOR PARTNER
IF lt_partner[] IS NOT INITIAL.
  READ TABLE lt_partner INTO ls_partner INDEX 1.
  MOVE-CORRESPONDING ls_partner TO ls_partner1.
   ls_partner1-mode         = 'A' .
  ls_partner1-REF_PARTNER_FCT = 111.
  ls_partner1-ref_handle = 1.
  ls_partner1-ref_guid = ls_orderadm_h-guid.
  INSERT ls_partner1 INTO TABLE lt_partner1.
ENDIF.
ls_input_field-ref_handle =  1.
ls_input_field-ref_kind  = 'A'.
ls_input_field-objectname  = 'PARTNER'.
*ls_input_field_names-fieldname = 'REF_PARTNER_NO'.
ls_input_field_names-fieldname = 'DISPLAY_TYPE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'KIND_OF_ENTRY'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'NO_TYPE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'PARTNER_FCT'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'PARTNER_NO'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
INSERT ls_input_field  INTO TABLE  it_input_fields.
*PREPARING INPUT FIELDS FOR ACTIVITY
IF lt_activity_h[] IS NOT INITIAL.
  READ TABLE lt_activity_h INTO ls_activity_h INDEX 1.
  MOVE-CORRESPONDING ls_activity_h TO ls_activity_h1.
  ls_activity_h1-ref_handle = 1.
ls_orderadm_h1-guid = ls_orderadm_h-guid.
ls_activity_h1-ref_guid        = 'A' .
LS_ACTIVITY_H1-PRIORITY = 5.
ls_activity_h1-handle = 1.
  INSERT ls_activity_h1 INTO TABLE it_activity_h1.
ENDIF.
*ls_input_field-ref_handle =  1.
*ls_input_field-ref_kind  = 'A'.
**ls_activity_h1-ref_GUID        = LS_ORDERADM_H-GUID .
ls_input_field-objectname  = 'ACTIVITY_H'.
ls_input_field_names-fieldname = 'PRIORITY'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
INSERT ls_input_field  INTO TABLE  it_input_fields.
CALL FUNCTION 'DIALOG_SET_NO_DIALOG'.
CALL FUNCTION 'CRM_ORDER_MAINTAIN'
  EXPORTING
    it_activity_h   = it_activity_h1
    it_partner      = lt_partner1
  IMPORTING
    et_exception    = it_exception
  CHANGING
    ct_orderadm_h   = it_orderadm_h1
    ct_input_fields = it_input_fields
    cv_log_handle   = lv_log_handle.
LOOP AT it_orderadm_h1 INTO ls_orderadm_h1.
  INSERT ls_orderadm_h1-guid INTO TABLE lt_obj_guids.
ENDLOOP.
LOOP AT lt_partner1 INTO ls_partner1.
  INSERT ls_partner1-ref_guid INTO TABLE lt_obj_guids.
ENDLOOP.
CALL FUNCTION 'CRM_ORDER_SAVE'
  EXPORTING
    it_objects_to_save = lt_obj_guids
  IMPORTING
    et_saved_objects   = lt_saved_objects.
COMMIT WORK.
MESSAGE 'done' TYPE 'I' display like 'S'.

hi hardik,
I want to create a duplicate ticket from the original ticket from the same system.It is a report.
I  am getting ORDERADM_H AND ACTIVITY_H  table values IN THE DUPLICATE TICKET FROM THE ORIGINAL TICKET. But i am not getting the values present in PARTNER Table.
So for that i have posted my code.I am getting the values of PARTNER table  by putting the breakpoint in debugger.But i am not getting in the screen.
Can you suggest any code for that partner table
Regards,
Prabhushankar
Edited by: prabhushankar.b on Apr 7, 2011 9:55 AM

Similar Messages

  • Window to create a new incident missing in the home page of a key user.

    Hi all,
    we facing the following problem in SM 7.1 - SP10. We test the incident opening ZMIV as key user and in order to keep read-only the field "Installed base component", we applied the OSS note 1926788.
    All seems ok, but when we define a business role ZSOLMANREQU, copy from SOLMANREQU, and we assign it to Role configuration Key ZSOLMANREQU, window able to create a new incident disappears in the home page of the key user.
    Let me explain with some screen shot:
    Whit this configuration for business role SOLMANREQU
    the key user connecting to SAP CRM has the following home page (window to create a new incident exists):
    When we change configuration:
    The key user is not able anymore to create a new ticket in the CRM, as you can see below. The window is missing.
    Is it possible to maintain the "Create new message" window?
    Thnk yo very much
    Best regards
    Ines

    Hi Vikram,
    thank you for your reply!
    I checked my customized role configuration key ZSOLMANREQ, but this is only a definition in the customizing:
    SPRO/Customer Relationship management/UI Framework/Technical Role definition/Define Role Configuration Key
    Or maybe did you mean Business role?
    Thank you again!
    Ines

  • SCSM Suggests closed parent incidents when creating new tickets

    This may be by design, but seems a little odd to me...
    When creating a new incident, if the classification category is the same as a parent incident in the system the form brings down a bar to suggest linking the two. Which is great for effectively combining relating issues quickly. But why when a parent incident
    has been closed long ago does the console still suggest linking your new job to that.
    I can see a case where new incidents maybe related to a previous incident that has already been resolved and closed, but if this continues we'll have a lot of unnecessary suggestions popping up.
    Also need to add that this morning I reduced the data retention settings from 365 days down to 30, which may help.
    Andrew France - http://andrewsprivatecloud.wordpress.com

    Hi,
    Yes, unfortunately, this is by design (or so they say at least ;) ).
    - Reduce you Data Retention Settings (gives you other downsides though)
    - Create a Runbook that removes the Parent flag from a closed incident and set a custom parent flag instead.
    Regards
    //Anders
    Anders Asp | Lumagate | www.lumagate.com | Sweden | My blog: www.scsm.se

  • Cannot update published website without errors: requires deletion of site, then creating a new one.

    Hello all,
    This has been a long persisting issue since we purchased Muse in January 2013, but has since then led to a shutdown of my office's website and email in September. Multiple support technicians were eventually able to restore the website, as well as our email function, but the core of the problem lies in the fact that when I update my website, it becomes entirely scrambled, and the only solution provided to me right now is that I need to delete my site completely (through Adobe Business Catalyst) and then create a new one, while transferring over the same domain information. I have yet to receive guidance on how to resolve this issue properly:
    September 06 Email: detailing the series of events
    Good evening, Zak,
    I am reluctant to bring this to your attention because of the comprehensive nature of the following, but I have been told that my absolute last effort should be to contact you with what has been a persistent problem since the last time we had mediated this particular issue. Essentially, when publishing a website multiple times, sooner than later the format becomes scrambled when viewed online. I am being told I am the only customer known to have this issue, and that it needs to be investigated deeper.
    This is a blurb from our original conversation in March 2013:
    (The whole thread may be found at the following address: http://forums.adobe.com/message/5653912#5653912)
    9.Zak Williamson (Adobe), 
    Mar 12, 2013 4:03 PM   in reply to essbarr
    I'm also puzzled. This isn't a problem I've seen before for a site published to Business Catalyst.
    Please try publishing again, this time to a new temporary site (they're free). You can choose this option under More Options in the Publish dialog. I'm curious whether publishing to a new empty trial site works.
    If that doesn't work, please send me the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, SendThisFile, WeTransfer, Dropbox, etc.
    Thanks.
    10.essbarr, 
    Mar 13, 2013 6:49 AM   in reply to Zak Williamson (Adobe)
    Hi Zak,
    I published the website to a new temporary site, and it worked beautifully. Now I just have to fuss with the horizontal bar, and then I'll be super happy. Thank you for your help!
    Sincerely,
    Sarah
    Since this bit of advice, I have freely published to a new temporary site every time the website gets scrambled. I have had temporary websites titled:
    argponline01.businesscatalyst.com
    through
    argponline15.businesscatalyst.com
    along with a bunch more than I cannot recall.
    and Muse files titled:
    argp-uc.muse
    argponline.muse
    argponline_02.muse
    through
    argponline_05.muse
    argponine_3A.muse
    argponline_3B.muse
    and currently, my file name is
    argponline_4.muse (dropbox link)
    I am using Muse on a Mac Powerbook, OSX 10.8.4.
    I don't know how much of the above is relevant, but maybe it makes a difference to you.
    The timestamp on the following thread says September 5th, 2013 4.50AM, but I really sent it the evening of September 4th, 2013. No difference anyhow:
    http://forums.adobe.com/message/5653912#5653912
    What was going on in detail:
    1
    I made a few changes to my argponline_4.muse file on September 4th, 2013.
    The published website at that point was argponlined.businesscatalyst.com (D).
    The domain name was argponline.com .
    (D) was published probably about two months previous, maybe longer ago.
    When publishing (D) on September 4th, 2013, the website appeared scrambled.
    I tried to publish only modified files, as well as publish the entire site, as well as close programs, and restart the laptop.
    I decided to follow the advice given previously, and I published and launched argponlinef.businesscatalyst.com (F).
    2
    At this point I have two bookmarked websites for Adobe Business Catalyst Admin Consoles.
    For (D), the Admin Console address was argponlined.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx 
    For (F), the Admin Console address was argponlinef.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx
    I was able to sign into both.
    When signed into the Admin Console for (F), I tried to Add a New Domain, but was told that I only had a plan for one hosted website through Adobe Business Catalyst, and that I would need to purchase a plan that offered more hosted websites.
    I signed into the Admin Console for (D) and deleted the domain, but given the option to keep associated files just in case, I opted yes, to keep them.
    When signed into the Admin Console for (F), I tried to Add a New Domain, but received the following error message:
    Domain already exists. Please delete all records associated with this domain before re-adding it.
    There was nothing visible though the Admin Console for (D) to delete the associated records, so I deleted site (D) in its entirety.
    I continued to try to Add a New Domain for (F), but continued to receive the same error Domain already exists...
    3
    At this point (the morning of September 6th, 2013) we have the following set of parts:
    The published and launched site is argponlinef.businesscatalyst.com (F). 
    For (F), the Admin Console address is argponlinef.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx
    The website is now completely down, and I have disrupted email service for the office.
    I chatted with Lokesh, who determined this was a technical issue, and I was forwarded to Anshul.
    Anshul's assessment is as follows:
    Anshul: I see the error, Sarah it seems there are some Domain traces left with the system , I tried to clear then out and I am getting errors as well. In this case , we might need to escalate the case to higher level to have deeper investigation related to this issue.
    Anshul: Sarah, the issue is the domain not the site. It seems like there are some traces related this domain in the backend. This issue is more of related to BC and not Muse. I will have this issue escalated and checked with the team and request them to run internal queries to clear the traces and then you should be able to add the domain.
    4
    Soon after I received the following message from Matt Baracz:
    Matt Baracz (Adobe Business Catalyst Support)
    Sep 06 10:50 (EEST)
    Thank you for contacting us.
    I have escalated this issue to our engineering team and have requested them to clear any references to the domain argponline.com from our database. Once cleared, you will then be able to re-add the domain successfully to your site.
    As soon as I receive a response from engineering confirming that this has been actioned, I will let you know directly via this support ticket.
    Regards,
    Matt.
    Around 3 or 4pm, I had not heard anything back, so I attempted to Add a New Domain through the Admin Console for (F). (Turns out Matt works in Australia, and was unable to alert me due to the time zone difference. Understandable!)
    This was done successfully, so the website began to work again, but the email was still down.
    5
    I began a chat again, this time with Srividya. I was transferred to technical support and began conversation with Sanjit. The length of our conversation was probably around 3 hours, and I am so grateful for the time he put in. What a great guy.
    He stated that he had gone through the case details and that Engineering had fixed the issue. We spent some time coordinating the Site Domain information through the Admin Console for (F). Ultimately, email is still not working (settings were probably updated around 5pm), but I understand sometimes it takes a while. Just wanted to note, the last time I updated the email settings it worked within a couple minutes. Varying lengths of time are expected, but I am still curious what effects those variations. Regardless.
    6
    The current situation is this:
    My boss is a bit steamed that our website was down for a day and a half, and that our email is down for a relatively indeterminate amount of time. It's bad for business, and ultimately, I am responsible for these disruptions. I am incredibly concerned that the next time I update our website there will be a slew of problems, which have the potential to knock down service for the website and email again. I am desperate for a surefire way to simply and fluidly update our Adobe Muse website to Adobe Business Catalyst without making the same mistakes again.
    I don't believe I did this the right way. I looked at FAQs, Community Forums, goDaddy Support and anything I could lay my eyes on to try to do things properly, but managed to make a few well-intentioned blunders. I continued to try undo the damage I've done in the past couple days, and with utter frustration, have not been able to fix them on my own. The people who have helped me thus far have done an amazing job, but ultimately, I am happier when I am not taking up their time, or panicking here.
    When I first launched the website a few months ago, there was a step-by-step process that took me through every single action with screenshots included when appropriate. It was exponentially helpful. I was so lost without it this time around, and I was wondering if I could access it again in the future if needed.
    The following is a blurb from my conversation with Sanjit tonight:
    Sanjit: You have purchased Muse subscription , correct ?
    Sanjit: or Creative cloud >
    Sarah Rushing: Yes, we purchased Muse for 1-year, as well as Business Catalyst for 1-year
    Sanjit: Perfect
    Sanjit: With Muse you get 1 free site , so once you create a site and then publish to BC. In admin console you launch the site, that makes your free count used. Now if you create another site, then system asks you to upgrade the site to a paid site plan. ut when you delete the previous site then the free count becomes free and can be used for any other site
    Sarah Rushing: Yes, that is what I did. Is this what I need to do each time? Because I am concerned that the email and website will be disrupted every time I need to make slight adjustments to the website?
    Sanjit: No, you dont need to do that everytime. If the site is scrambled everytime you publish then please report to us. Thats not the ideal way for solution.
    Sarah Rushing: Well Sanjit, I can tell you right now, that is how it has been functioning since we bought the program. I am not entirely certain, but I believe we bought Muse and BC in January.
    Sarah Rushing: I can absolutely guarantee you that the site will inevitably scramble. Am I the only customer you have heard of to have this issue?
    Sanjit: Yes, i have not seen any other reports for this issue
    Sanjit: Well this needs a deep investigation
    Zak, anything that you could offer for clarity of process, would be incredible. I don't know if you will have time to look at this before Monday, but I can tell you I will be available at a moment's notice to fix this issue and to learn anything about Muse and Business Catalyst that you have to offer. Thank you for your time, and I hope you have a wonderful weekend.
    Sincerely,
    Sarah Rushing
    I'm concerned that no one will really read this because it is so detailed and boring and comprehensive, but it is absolutely critical that I find a proper solution before the next update to the website. Thank you so so much to anyone who can possibly provide some insight into this issue.
    Sincerely,
    Sarah Rushing

    In case anyone is experiencing the same issue, I am trying this today.
    Sachin: Okay Sarah, so is it everytime you try to republish the website, it gets scrambled?
    Sarah: Yes, that is correct. And the solution thus far was to publish to an entirely new site, meaning delete the existing one on Business Catalyst and transfer the domain information.
    Sarah: The last time I did that I experience a slew of issues that resulted in no website and email for 4 or more days. My boss was very angry.
    Sachin: Sarah, can you publish your site as a new trial site once.
    Sachin: And provide me the URL.
    Sachin: Then republish on the same trial site and let me check the results.
    Sarah: If I updated the published site within the period of a day, it will be fine. It is when I update the next day or later than that, then the website appears scrambled. So I can create a trial site for you, but it will behave normally for now.
    Sachin: Sarah, while republishing the site, did you select "Only modified file" or "All files" while publishing?
    Sarah: I tried everything.
    Sarah: I made a few changes to my argponline_4.muse file on September 4th, 2013. The published website at that point was argponlined.businesscatalyst.com (D). The domain name was argponline.com . (D) was published probably about two months previous, maybe longer ago. When publishing (D) on September 4th, 2013, the website appeared scrambled. I tried to publish only modified files, as well as publish the entire site, as well as close programs, and restart the laptop. I decided to follow the advice given previously, and I published and launched argponlinef.businesscatalyst.com (F).
    Sachin: Okay. there is one  more thing I would like you to try.
    Sachin: Publish a site as a trial site.
    Sachin: Then wait till tomorrow.
    Sachin: After that login to the admin panel of the site.
    Sarah: Okay
    Sachin: There go to Site Manager>File manager
    Sachin: There will be a file there named Muse_manifest.xml
    Sachin: Delete that file and then republish the  site from Muse.
    Sarah: So in the Adobe Admin Console, underneath Site Manager, I see Web Forms and System E-mails. No file manager?
    Sachin: Please hover the muse on your name at top right corner and click  on My details.
    Sarah: Okay, yes.
    Sachin: Now scroll down  and check the option that says Enable online content editing (incompatible with Muse)
    Sachin: And  then click  on save.
    Sarah: What does this do, and why does it say it is incompatible with Muse?
    Sachin: It will help you see  other options in BC.
    Sarah: Okay, thank you.
    Sarah: I see the File Manager now
    Sachin: Okay.
    Sachin: Now select the file named Muse_manifest.xml
    Sachin: And use the delete button on the right side.
    Sachin: but do it tomorrow
    Sachin: With a trial site
    Sachin: Not with  the live site.
    Sarah: Okay, could you please explain to me what deleting that particular file is supposed to do? I am just very interested in how this works.
    Sachin: This file contains the information about your last upload.
    Sachin: Deleting it will make sure that "ALL" the files are uploaded again from Muse.
    Sarah: Okay, so:
    Sarah: I will publish a trial site.
    Sarah: Wait until tomorrow.
    Sarah: Publish again. If I have an issue, I can log-in to the admin console for this particular trial site and go to Site Manager --> File Manager, and delete muse_manifest.xml.
    Sachin: I will create a case for you and you can respond to the case.
    Sachin: Correct.
    Sarah: After that, I will try publishing again and see if it resolves the issue.
    Sarah: That would be great, thank you Sachin.
    Sachin: Thank you for contacting us. Have a Good Day!

  • I tried to create a new google calendar in ical, but they did not show up, I tried this several times. Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can i clear them from this list?

    I tried to create a new google calendar in ical, but they did not show up, I tried this several times.
    Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can I clear them from this list?

    See https://bugs.downthemall.net/ticket/2147
    Google Search Bug
    Reported by: openid:nathan wride Owned by:
    Priority: major Milestone:
    Component: Polish/Usability Version: 2.0.10
    Keywords: Google search instant save bug Cc:
    Operating System: Windows
    Description
    Hi Guys
    I have found a bug/annoying thing that occurs frequently on google. When searching, DTA trys to download the search...
    I'll try to attach a screenshot.
    Attachments
    [https://bugs.downthemall.net/attachment/ticket/2147/Screenshot.png Screenshot.png] Download (113.0 KB) - added by openid:nathan wride 4 weeks ago.
    The screenshot that shows the bug.

  • Creating a new user in solution manager?

    Dear All,
          How to create a new user in solution manager for creating an incident?

    prathish5,
    I did this in our SolMan by following the instructions provided by a SAP document called: "Service Desk VAR Setup Master Data". I got it from the Support Portal, though I can't seem to find it now so I can't provide a link at this time.
    Anyway, assuming that your SolMan is already able to download your master data (and/or your customers', if you are a VAR), these are the steps suggested by the guide:
    1) The message creator (aka Key User) should have the following authorization roles:
    SAP_SUPPDESK_CREATE
    SAP_SUPPCF_CREATE
    SAP_SMWORK_BASIC
    SAP_SMWORK_INCIDENT_MAN
    See also SAP note 834534.
    A best practice is to create a Z copy of all of these roles (use transaction PFCG), so you can manage them and change them around if you need to. Just make sure to "activate" all the authorizations of your copy of the roles:
    - Open the roles in tr. PFCG;
    - Select Authorizations, and choose Change authorization data;
    - If you get a yellow semaphore, be sure to review the authorizations and fill them according to your security policy. You can assign global permissions for all the authorization objects by double-clicking the yellow semaphore;
    - Generate the profile, then go back and save the role;
    2) Following the guide, with tr. SU01 I created a Template user and called it KEY_USER (make sure the user type is actually Template) and assigned to it the Z roles you created in the step above;
    3) If your SolMan is working properly, you can now use report AI_SDK_SP_GENERATE_BP (tr. SA38) to create the Business Partners and SAP users automatically. The report will log in the Support Portal and read the users which are authorized to open a SAP tickets, and create a BP and user for each of them. Use the Template user KEY_USER created in step 2 as a "Reference user" and all the new users will automatically get the correct autorizations. Also if your SAP Connect (tr. SCOT) is correctly configured, you can choose to send an automatic mail to each user, with their login and generated password.
    Otherwise, you can manually create a user with transactions SU01 and BP - be sure to fill the "Identities" table here - the report AI_SDK_SP_GENERATE_BP makes all these things automatically so it's definitely your best bet.
    4) Your users should now be able to log in with the SAPgui and use transaction CREATE_NOTIF to create a new message in your SolMan. Also if you have done the preparation steps correctly they should also be able to log in your Incident Manager using their browser, and open a message there and also review their past messages.
    Those are just a quick insight of the steps you need to do. This is NOT an easy thing to configure, at least it wasn't for me; if you don't have a reliable guide to follow you're going to struggle: I strongly suggest you browse through the SAP documentations (also the blogs) - http://service.sap.com/xsearch is your best friend!
    I hope this helps a little bit. Good luck.

  • How to create a logon ticket in WAS ABAP ?

    Hi,
    Create a logon Ticket in a WAS Java is quite easy, but How create a logon ticket in a WAS ABAP ?
    If anyone have an answer for this question, I'm glad to ear it.
    Thanks in advance for your help.

    Thanks Eddy, for this link.
    In fact, I do not want to handle logon Error, but write a logon ticket for the connected user in a BSP page.
    In my case the user connect with a login + PWd in the URL. So the session stay open while timeout is not reached, or browser's window is not closed.
    When timeout is reached the user will no longer be able to browse to an other page without having to logon again. That why I would like, in the logon page, to write a logon ticket with 8 hours validity.
    In such case, if user's session timesout, next navigation will create a new session because having a valid logon ticket in browser session.
    It's quite easy to do this in WAS Java, but I do not know how to do this in WAS ABAP...
    I hope this description of my need will be more explicit.
    Taryck.

  • Can't select the new Azure sql service tiers when creating a new database or upgrading an existing one

    Hi all,
    I have set up the preview for the new Azure SQL tiers on both of the subscriptions we have for Azure. The one under my MSDN subscription to and a pay as you go subscription
    The pay as you go subscription works fine but when I try to upgrade an existing Azure sql database or create a new one on my MSDN subscription it doesn't give me the option of the new tiers.
    Using the new portal it says I need to sign up to the preview, but I already have and when I go to try to add a new subscription to the preview for Azure SQL it says all my active subscriptions are on the preview.
    Any idea what the issue could be?
    Cheers
    Ash

    Hi,
    Apologies for the inconvenience.
    I suggest you open a Billing Support Ticket. They will be able to check this for you.
    http://azure.microsoft.com/en-us/support/options/
    Regards,
    Mekh.

  • Error to create a new 'Nota Fiscal' Model

    Hi experts,
    I trying to create a new Model in 'Nota Fiscal' Model (ONFM) and this error message appears:
    So I query the table ONFM and the code 59 already exist.
    I clicked the help option to restore the numbering files but did not fix the error.
    Any Ideas to Help me????
    Thanks !
    Att.
    Eliezer

    Hi,
    Models are not part of numbering series. Please raise a ticket to SAP Support.
    Regards

  • How can I create a new iCloud account for a familiy member having a new iDevice and reuse one of my aliases for it

    Hi there,
    I moved into iCloud from the very beginning and started with one iCloud account for me and my family, making use of email aliases for family members. Now the number of personal iDevices grows and I want to create a new and separate iCloud Account for my son. The pity is, that I reserved his full name already as alias address on my initial iCloud account. If I now delete this alias, can I create a new account with the former alias as new primary email address?
    Or is there at least any transfer procedure supported for aliases between different accounts?
    Thanks for your help, lauterbachj

    Couldn't agree more... the folks who are getting penalized for this are the early adopters of .Mac/iCloud dating from the days when the only way to implement a "family" account was to use aliases. Now all my kids' / my wife's name aliases sit in my account, unable to move. I guess the good news is that if I delete them nobody else will get them, but this seems a pretty poor consolation.
    Would it really be so difficult to implement a "move this alias to another iCloud account" option that requires the "sender" and "receiver" to exchange some sort of code to implement the transation in order to prevent fraud?

  • Error while creating a new connection in ODSM for OVD

    Hi all,
    I am getting the following error while creating a new connection in ODSM for OVD.
    Error log:
    [2012-07-10T14:50:30.005+05:30] [wls_ods1] [ERROR] [] [oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JXkC9dU3FClqwsJb6G1FyhO000003D,0] [APP: odsm#11.1.1.2.0] Server Exception during PPR, #7[[
    javax.servlet.ServletException: Could not initialize class com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by:
    =======
    java.lang.NoClassDefFoundError: Could not initialize class
    com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub
    at com.octetstring.vde.admin.services.client.ServerMgrServiceLocator.getVDEAdminService(ServerMgrServiceLocator.java:58)
    at oracle.ldap.odsm.model.ovd.APServerProxy.connect(APServerProxy.java:248)
    at oracle.ldap.odsm.model.ovd.APServerProxy.authenticateAs(APServerProxy.java:684)
    at oracle.ldap.odsm.model.ovd.APServerProxy.authenticate(APServerProxy.java:286)
    at oracle.ldap.odsm.model.ovd.APServerProxy.init(APServerProxy.java:216)
    at oracle.ldap.odsm.model.ovd.APServerProxy.<init>(APServerProxy.java:198)
    at oracle.ldap.odsm.model.ovd.OVDRoot.connectOVD(OVDRoot.java:185)
    at oracle.ldap.odsm.ui.common.Connection.connect(Connection.java:120)
    at oracle.ldap.odsm.ui.common.Visit.createConnection(Visit.java:663)
    at oracle.ldap.odsm.ui.common.Login.saveChanges(Login.java:215)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1245)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    ... 28 more
    How to resolve this issue.Pls suggest me.
    Regards,
    -Deena.

    Hi Deena,
    This error:
    "[2012-07-10T14:50:30.005+05:30] [wls_ods1] [ERROR] [] [oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JXkC9dU3FClqwsJb6G1FyhO000003D,0] [APP: odsm#11.1.1.2.0] Server Exception during PPR, #7[[
    javax.servlet.ServletException: Could not initialize class com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub"
    is known issue
    Go to metalink, article: Unable To Connect To OVD 11g Webinterface Using ODSM. [ID 1282757.1]
    You need to apply that patch.
    I hope this helps,
    Thiago Leoncio.

  • Error while creating a new Domain in BEA Weblogic

    I am getting the below mentioned error while creating a new Domain in BEA Weblogic
    Preparing...
    Extracting Domain Contents...
    Creating Domain Security Information...
    Saving the Domain Information...
    Storing Domain Information...
    String Substituting Domain Files...
    Performing OS Specific Tasks...
    Performing Post Domain Creation Tasks...
    Domain Creation Failed!
    Domain Location: C:\bea\user_projects\domains\base_domain_1
    Reason: Got error in writing the node manager C:\bea\wlserver_10.0\common\nodemanager\nodemanager.domains property file!
    Exception:
    java.lang.Exception: Got error in writing the node manager C:\bea\wlserver_10.0\common\nodemanager\nodemanager.domains property file!
         at com.bea.plateng.domain.DomainNodeManagerHelper.registerDomainToNodeManager(DomainNodeManagerHelper.java:138)
         at com.bea.plateng.domain.DomainNodeManagerHelper.registerDomainToNodeManager(DomainNodeManagerHelper.java:170)
         at com.bea.plateng.domain.DomainGenerator.generate(DomainGenerator.java:435)
         at com.bea.plateng.wizard.domain.gui.tasks.DomainCreationGUITask$1.run(DomainCreationGUITask.java:232)

    Hi,
    It look two ways either you dont have permission to write any new thing to that domain.properties file or might file is got corrupted.
    Please check for the permission to that file.
    Regards,
    Kal.

  • Error while creating a new folder in resource view of workbench.

    hi
    I am getting this error while creating a new folder from the resources view.
    Please help me in this regard.
    !ENTRY com.adobe.repository.ui.eclipse.forms 4 0 2009-02-19 18:18:36.340
    !MESSAGE REP-001-011: Problem creating a resource folder
    !STACK 0
    com.adobe.repository.ui.eclipse.IDERepositoryException: com.adobe.repository.bindings.dsc.client.ResourceRepositoryClientException: ALC-REP-106-000: Caught DSCException: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: RepositoryService not found.
    at com.adobe.repository.ui.eclipse.impl.dsc.IDERepositoryDSCImpl.createFolder(IDERepositoryD SCImpl.java:117)
    at com.adobe.repository.ui.eclipse.core.Repository.createFolder(Repository.java:522)
    at com.adobe.repository.ui.eclipse.actions.NewFolderActionDelegate.workspaceRun(NewFolderAct ionDelegate.java:91)
    at com.adobe.repository.ui.eclipse.actions.WorkspaceActionDelegateRunner$1.run(WorkspaceActi onDelegateRunner.java:76)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1737)
    at com.adobe.repository.ui.eclipse.actions.WorkspaceActionDelegateRunner.run(WorkspaceAction DelegateRunner.java:83)
    at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:254)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:539)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1930)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:422)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.adobe.lcide.rcp.Application.run(Unknown Source)
    at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:92)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:68)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
    at org.eclipse.core.launcher.Main.run(Main.java:977)
    at org.eclipse.core.launcher.Main.main(Main.java:952)
    Caused by: com.adobe.repository.bindings.dsc.client.ResourceRepositoryClientException: ALC-REP-106-000: Caught DSCException: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: RepositoryService not found.
    at com.adobe.repository.bindings.dsc.client.ResourceRepositoryClient.writeResource(ResourceR epositoryClient.java:920)
    at com.adobe.repository.ui.eclipse.impl.dsc.IDERepositoryDSCImpl.createFolder(IDERepositoryD SCImpl.java:114)
    ... 31 more
    Thanks
    Ullas

    Thanks Jasmin I did as you told and was able to create folder. But while installing the Event-Dsc and the workflow-dsc I am getting some internal error as given below.
    !ENTRY com.adobe.DSC_Admin_UI 4 4 2009-02-24 15:41:34.984
    !MESSAGE install of C:\Adobe\LiveCycle8.2\deploy\adobe-event-dsc.jar failed
    !STACK 0
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:456)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl.install(ComponentRegistry Impl.java:254)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:109)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:315)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:138)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
    at sun.reflect.GeneratedMethodAccessor279.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:761)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:673)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:100)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:465)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:394)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:152)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
    at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
    Caused by: java.lang.ClassNotFoundException: com.adobe.idp.event.bootstrap.EventBootstrapImpl
    at com.adobe.idp.dsc.DSContainerSearchPolicy.findClass(DSContainerSearchPolicy.java:178)
    at org.ungoverned.moduleloader.ModuleClassLoader.loadClass(ModuleClassLoader.java:161)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:561)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:403)
    ... 70 more
    As I am using the trial version so I have isnatlled all the products Workbench, Server and the application server in the same machine. My System has 2GB Ram.
    Any help in this will be of great help
    Regards
    Ullas

  • Firefox will not open and my profile name changes, after I creat a new profile it works until I try to open again

    Firefox version 16.0.2 was working I have used FF for years. A few days ago it started to run very slow opening web sites. Then this morning when I tried to open it I saw a progress bar that looked like the kind I see after an update has been applied but FF never opened.
    I rebooted my windows 7 64 bit and tried again, nothing FF would not open and I got no error message.
    So I opened the profile manager and only found a default profile not the one I created last year with my name. I created a new profile and browsed to my old profile folder. FF opened and ran fine until I closed it and later tried to open it again then I kept getting an error box telling me that FF had crashed and asked if I wanted to send a report and restart, I did but no good it still would not open.
    I ran the profile manager again and found my profile had changed name to a bunch of numbers. I delete that profile but kept the folder then made a new one and that worked. I shut it down again and once again I get the We're sorry error box.
    By the way I had set the profile manager to open when FF loads and it is not opening so the problem is before it gets to that command.

    First I already have my view set to show everything so that is not the problem.
    But I just tried opening "Computer" from the start button then type in profiles.ini in the address bar and hit enter. The profile manager opened with my profile listed. I selected it and hit start firefox and it opened as it should.
    I closed it again and tried to open it from the shortcut in my task bar and I got the Sorry window.
    But then I tried to open it from the short cut you get when you press the start button and program list and it work!
    I went back to my desk top and tried the short cut on the desk top and it worked.
    So I deleted the short cut on the task bar and created a new one and it worked.
    I rebooted the computer and tried again and the task bar shortcut works and has the right profile.
    So it seems that the problem is that the short cut was corrupted and was causing the error that caused the program to fail to open.
    I had no idea a shortcut could do that. In the past I have had short cut stop working but never do what this one did.
    I still have no idea where the profiles.ini is.

  • How do I 'disasscociate' an e-mail address from an existing Apple ID so that that e-mail can be used to create a new separate Apple ID

    My wife and I currently share an Apple ID (it's a long story). The Apple ID we use is actually mine and uses my e-mail address as the ID itself. I have been trying to create a new Apple ID for my wife but everytime I get an error message that states: 'that e-mail is already associated with another Apple ID.' What exactly do I have to do to remove her e-mail from being associated with my Apple ID so that I can create a new Apple ID for her?

    Surfstud31 wrote:
    My wife and I currently share an Apple ID (it's a long story). The Apple ID we use is actually mine and uses my e-mail address as the ID itself. I have been trying to create a new Apple ID for my wife but everytime I get an error message that states: 'that e-mail is already associated with another Apple ID.' What exactly do I have to do to remove her e-mail from being associated with my Apple ID so that I can create a new Apple ID for her?
    Make sure her email address is not set as an alternate for your AppleID.
    Then again, you don't know if it is associated with your AppleID.
    Also, any chance she created an AppleID at one time and simply never used it/forgot about it?
    Go here -> https://appleid.apple.com/ and select Forgot your password?
    and enter her email address that shows it is in use.

Maybe you are looking for

  • I have Adobe downloaded but I cannot find where. I need to go in to repair it.

    I have been having trouble downloading Adobe. It is not under Tools>Options>Applications. It is not in my Windows program that I can find. I need to try to repair this. I have been working on this on and off for two days. tired of it. Please help if

  • Why are my imessages and text messages in a different chat when im texting one person?

    when i am texting my friend and my message sends as a text everything is fine but when she replies with an imessage it goes into a different chat so i have to keep changing chats to reply depending on whether the message is an imessage or text messag

  • Mini-Display or DVI

    I just bought a new Mac Pro and I have a samsung SyncMaster 2253bw display that uses DVI, I have it plugged into the DVI port on the back of the tower. Is that what I should be using OR should I be using the mini-display port to DVI adapter? Sorry if

  • Retail vs Educational version

    OK guys, my free trial is almost up, and despite my inadequate hardware I definately am going to buy Aperture ( new MBP coming soon!). I have the opportunity to purchase an educational version due to family at university but...I think I read that the

  • HPUX RAC ASM database crashed after pulling all FC cables on one node.

    On the node without any FC cables, syslog shows "rebooting host for integrity". On the good node: Wed Mar 31 13:42:47 2010 Errors in file /opt/oracle/admin/asmdb/bdump/asmdb2_p000_7175.trc: ORA-00600: internal error code, arguments: [kclchkrcv_2], [0