Partner function for a team in Change Request Management

I have defined a new transaction type based on Urgent Correction. I have three partner functions:
Change Manager, Team Member and Quality Assurance Team. The first two partner functions are represented by single business partner so I can define them like employee. The third one should be represented by a team of persons, so that the Correction can be seen by every person belonging to this team in their worklist. How can I define a partner function like a team and how can I assign single business partner to the team. I would have something like this:
I have three business partners A(11),B(12),C(13) belonging to the QA team(20). When I put 20 in the QA team field, i want that the correction is in the worklist of A,B,C.
Thanks
Antonello

hi antonello lapolla,
The business partner should automatically created for the Org unit.
Now if you are trying to use the existing Org unit, the business partner are not assigned to them.
Try this:
1) You will have to activate HR integration.
GO thru note 550055.
maintain table T77S0 as per the obove notes:
the following entry needs to be made:
HRALX     HRAC     X     Activate HR Integration
Check if the value X is present or not..
Also try
HRALX     PBPON     ON     description
Entry should be made if its not there already.
2) Create new Organization unit using IMG activity (Create a Root Unit for Your Organizational Structure under Service Desk node).
Now to this org unit, right click create postions or Org unit under the newly created org Unit.
Then you will find that Business partner is automatically assgined to the newly created Org unit.
If business partners are not automatically created then apply following notes:
0000997009 PPOME: Search help for business partners
0001008656 Error message 5A XXX when you assign position
Please Reward if your problem is solved.
Regards,
Suzzane.

Similar Messages

  • Change Request Management users and their profiles

    Hello!
    I would like know which users are useful for the usage of change request management functionality within SAP Solution Manager and which profiles should they have?
    Users: Requester, Service Desk Empl., Change manager, Change advisory board(?), Developer, Tester, IT Operator, Administrator(?)
    Profiles: SAP_SOCM_REQUESTER, SAP_CM_DEVELOPER_COMP, SAP_CM_CHANGE_MANAGER_COMP, SAP_CM_TESTER_COMP, SAP_CM_PRODUCTIONMANAGER_COMP, SAP_CM_ADMINISTRATOR_COMP,
    SAP_CM_OPERATOR_COMP
    The problem I have:
    I get the errors (s. bellow), when I try to set correction in Development with development profile.
    <b>- you are not authorized to perform the activity selected last
    - No maintenance cycle is open for the current system</b>
    The solution for this problem is to log in with user who has "SAP_ALL" to recheck
    the correction.
    Thank you very much!
    regards
    Thom

    Dear Thom,
    Please verify the note : 881553, this problem occur when the user not have SAP_CM_ADMINISTRATOR_COMP profile..
    Best regards..
    Claudenir Bispo

  • SAP IDM on Solution Manager with Change Request Management

    Hi Experts,
    I'm facing a question. Does SAP Identity Management manage association between user in Solution Manager and links in PPOMA_CRM tree for Ticket validation on Change Request Management project ?
    It seems that it could be done using Compliant User Provisioning from GRC Access Control application.
    Thanks for your help,
    Ben

    Hello Ben,
    as far as I know currently there is no "business level" integration between IdM 7.1 and SAP Solution Manager. You only can create SU01 user data as for any other SAP ABAP system.
    I have heard that it is planned for the future to integrate the Solution Manager also in the business suite integration options the IdM product already provides for applications such as CRM, SRM and others.
    Nevertheless you could create your own implementation for your requirements.
    Regards,
    René Feister
    SAP Consulting Germany

  • Bapi or Function Module for Change request Management status update

    Hi,
    Do we have any Bapi or function module to change the status of Change request Management.
    Ex: If the status is in To Be Processed i have to change that status to Authorized using any Bapi or FM.
    I have tried with the BAPI crm_icss_change_request but its not updating the status.
    Do you have any idea on this???
    Regards
    Pavan

    hello,
    the function module is 'SOCM_STATUS_VALUES'
    you can find an example of usage of it in the program CRM_SOCM_SERVICE_REPORT
        CALL FUNCTION 'SOCM_STATUS_VALUES'
          EXPORTING
            im_process_type       = report_list-process_type
      IM_LANGU              = SY-LANGU
          TABLES
            status_values         = lt_vsocm_stat_propt.
    I hope it helps
    best regards

  • Partner of partner function SLFN0003 could not be changed

    Hello,
    I want to resolve the Support Team by Category instead of SAP Component.
    The Support Team is determined by the Rule AC13200137 and uses the
    Category instead of SAP Component to determine the correct Support
    Team (SLFN0003).
    I've tested the rule and agents are resolved correctly
    according to Category.
    When the a service record is created the initial resolution for the
    Support team is successful based upon Category.
    However, when the Category is changed after the Support Team has been determined, the Support Team cannot be updated when the document is SAVED. In the Transaction Data -> Action ->
    Process logs displays the following error:
    Date: 13.02.2008 Time: 16:44:59
    Processing CRM_DNO_PARTNER_1 Is Started
    Partner of partner function SLFN0003 could not be changed here
    Action could not be successfully executed
    Analysis:
    When the Support Team field on the CRM_HEADER is NOT empty the resolution by Category cannot update the Support Team field.
    The workaround when a Category has been changed is to clear the Support Team field then SAVE then the Support Team is resolved correctly to reflect Category changes.
    Is there a method to FORCED the overwrite the Support Team field when the
    Category is changed?
    Please advise.
    Regards,
    Latief

    Hi Raquel,
    Thank you very much for your quick response. Unfortunately, I had to wait for an ABAP'er  to make the necessary changes. Your feedback was helpful and points have been allocated accordingly.
    Below is an extract of the code applied to the functional module "CRM_DNO_UPDATE_PARTNER" to allow overwriting the Support Team field when already determined and the CATEGORY field has been changed.
    read partner of crm transaction
        CALL FUNCTION 'CRM_ORDER_READ'
          EXPORTING
            it_header_guid       = lt_header_guid
            iv_mode              = gc_mode-display
            it_requested_objects = lt_req_objects
          IMPORTING
            et_partner           = lt_partner
          EXCEPTIONS
            OTHERS               = 0.
        READ TABLE lt_partner INTO ls_partner
             WITH KEY ref_guid    = iv_header_guid
                      partner_fct = iv_partner_fct.
        IF sy-subrc = 0 and ls_partner-partner_no <> space.
    *{   REPLACE        SODK900090                                        1
    *\      MESSAGE e116(com_partner) with iv_partner_fct
    *\              RAISING partner_fct_maintained.
        If the Support Team is unchanged, simply exit.
        Otherwise delete the existing entry.
          if ls_partner-partner_guid = iv_partner_guid.
            exit.
          else.
          fill partner data
            move-corresponding ls_partner to ls_partner_com.
            data:
              begin of logical_key,
                ref_partner_handle     like ls_partner_com-ref_partner_handle,
                ref_partner_fct    like ls_partner_com-ref_partner_fct,
                ref_partner_no     like ls_partner_com-ref_partner_no,
                ref_no_type        like ls_partner_com-ref_no_type,
                ref_display_type   like ls_partner_com-ref_display_type,
              end of logical_key.
            move-corresponding ls_partner to logical_key.
            clear: ls_partner_com-partner_fct, ls_partner_com-partner_no, ls_partner_com-display_type, ls_partner_com-no_type.
            INSERT ls_partner_com INTO TABLE lt_partner_com.
          fill input fields
            ls_input_fields-ref_guid    = iv_header_guid.
            ls_input_fields-ref_kind    = gc_object_kind-orderadm_h.
            ls_input_fields-objectname  = gc_object_name-partner.
            ls_input_fields-logical_key = logical_key.
            ls_field_names-fieldname = 'PARTNER_FCT'.
            INSERT ls_field_names INTO TABLE lt_field_names.
            ls_field_names-fieldname = 'PARTNER_NO'.
            INSERT ls_field_names INTO TABLE lt_field_names.
            ls_field_names-fieldname = 'DISPLAY_TYPE'.
            INSERT ls_field_names INTO TABLE lt_field_names.
            ls_field_names-fieldname = 'NO_TYPE'.
            INSERT ls_field_names INTO TABLE lt_field_names.
            ls_field_names-fieldname = 'KIND_OF_ENTRY'.
            INSERT ls_field_names INTO TABLE lt_field_names.
            ls_input_fields-field_names = lt_field_names.
            INSERT ls_input_fields INTO TABLE lt_input_fields.
             clear: ls_partner_com, ls_input_fields, ls_field_names.
           endif.
    *}   REPLACE
        ENDIF.
      ENDIF.
    Your assistance is highly appreciated.
    Kind Regards,
    Latief

  • Partner function for Application WA Allocation Table Output Type RTA2

    Dear Folks
    In Transaction NACE, I am trying to assign a partner function to medium 5 'External Send' for output type RTA2 in the  application WA (Allocation Table).
    My purpose is to send an email to a site/plant to inform them that there is request notification to the site. An external email should be triggered based on site. An email will be maintained in the site master.
    Please advice what partner function should I use?
    Best Regards
    Junwen

    I have the error in NACE or using tcode MN08.
    As soon I executed those transaction the system shows the condition records created for varios Doc Type (e.g LP, LPA, MK, etc) but with no partner function assigned. For example:
    Doc. Type /  Name                     /             Funct  /   Partner     /            Medium  /  Date/time  /   Language
    LP        /       Scheduling Agreement     /  blank  / blank  /                                          2      /          3   /              EN
    LPA      /      Scheduling Agreement                              / blank    / blank   /                1        /       3         /        EN
    For example, I try to assign function "OA" for Doc. Type "LP", choose value from quickpick. Then when I press enter, the system give me the error "You cannot enter a partner function for output NEU", message no. VN041. Do not allow me to continue, so I have to leave this field blank, with no change.
    Thanks,

  • Error "You cannot enter a partner function for output NEU"

    Hi Experts,
    I'm having these error "You cannot enter a partner function for output NEU" (message VN041) when I tried to assign a partner function (e.g OA)  in the conditions records for application "EV" (Purchase outline agreement). The system do not allow me to do this for any doc type (LP, LPA, MK, OA, etc). I'm using t-code NACE or MN08.
    I want to assign partner for key combination "Document Type". The conditions is already there but with no value, so I want to assign partner function "OA" or "VR".
    I already check all the configuration and looks fine. For example, define possible partner functions for output type "NEU" for application "EV" (Purc outline agree).
    Hope you can help me to find the problem.
    Thanks,
    Mairo.

    I have the error in NACE or using tcode MN08.
    As soon I executed those transaction the system shows the condition records created for varios Doc Type (e.g LP, LPA, MK, etc) but with no partner function assigned. For example:
    Doc. Type /  Name                     /             Funct  /   Partner     /            Medium  /  Date/time  /   Language
    LP        /       Scheduling Agreement     /  blank  / blank  /                                          2      /          3   /              EN
    LPA      /      Scheduling Agreement                              / blank    / blank   /                1        /       3         /        EN
    For example, I try to assign function "OA" for Doc. Type "LP", choose value from quickpick. Then when I press enter, the system give me the error "You cannot enter a partner function for output NEU", message no. VN041. Do not allow me to continue, so I have to leave this field blank, with no change.
    Thanks,

  • Change Request Management  "There is no task list for this project"

    Hello!
    I would like to use the functionality of CharM in SOLMAN 4.0.
    When I enter the Tcode /n/tmwflow/proj I receive the waring/error "There is no task list for this project" (/TMWFLOW/TRACK_N114)
    If I create my own task list via Task list --> create
    I get the warning "You cannot change task lists in the SAP namespace"
    What are the steps to define task list for my project?
    Do I need to configure SPRO ... --> Extended Configuration --> Schedule Manager?
    The second warning I get: "NO CTS projects created yet" or
    "The Solution Manager project does not have an active CTS project yet".
    How can these warnings/errors be corrected?
    Thank you very much!
    regards

    Hi,
    Pls click the check button(next to activate button)
    see the SLG1 log generated remove the errors shown in red.
    One it is done u press the refresh button & thn u cn create the task list
    chk
    https://websmp202.sap-ag.de/~sapdownload/011000358700000657692007E/ECTS_CHARM_SP12.PDF
    /people/dolores.correa/blog/2008/07/26/first-steps-to-work-with-change-request-management-scenario
    http://help.sap.com/saphelp_sm32/helpdata/en/0c/5b2160f6fa4b83a3674a210b1cdeb0/content.htm
    Regards
    Prakhar

  • Partner functions for a specific customer not seen in XD03 but appears in XD02

    Hello SAP Gurus,
    I have a situation where a partner functions for a specific customer not seen in XD03 but appears in XD02, In XD03 only one partner function (Ship to) appears but in XD02 (Sold to, Ship to, Bill to and payer appears), from the customer master I can see that account group for this customer has been changes to Sold to (Z001) from Ship to (Z002).
    I checked in settings for OB20 transaction for display customer centrally, it is in Display mode as required and not suprresed would like your inputs as to why this is happening and what can be done to fix this.
    Thanks and Regards
    Mohammed Roshan

    Hi ROshan,
      Open customer master in XD02  sales view and save it then check in XD03 it should display the partner functions.
    As you said the account group has been changed I think the records needs to be saved again.

  • Multiple Partner Functions for a Sales document Item

    Hi,
    Can you please advise on modeling scenario for showing multiple partner functions for a given sales document in BI Report ..
    Because Key figure values should not be distributed for multiple records just becos of multiple partner functions but users want to see them in the reports along with sales doc and key figure
    I am explaining bit more clearly...
    I can achieve above requirement by having below model ..
    SDOC     ITEM  PF1  PF2  PF3  AMOUNT
    1000       10      AB    CD   EF    50000
    PF : Partner Function
    but as I feel it is a complicated task  to add more and more columns fro partner functions as and when new partner functions have been added or requested to show by users at sales doc level...
    So Can you please advise a better solution to meet the same requirement.
    Thanks & Regards,
    BRK
    Please advise me on this scenario
    Thanks & Regards,
    BRK
    Edited by: BRK on Jul 22, 2008 9:19 AM
    Edited by: BRK on Jul 22, 2008 9:29 AM

    SalesDoc______Item_______PartnerFunction________Amount
    80000_________10_____________A1_______________$1000
    80000_________10_____________A2_______________$1000
    80000_________10_____________A3_______________$1000
    This will be the normal display in the cube if there is only one Partner Function.
    But what we need is
    SalesDoc______Item_______PartnerFunction________Amount
    80000_________10_____________A1_______________$1000
    80000_________10_____________A2_________________' '
    80000_________10_____________A3_________________' '
    The Amount (KF) should be populated only for the first record for a SalesDoc / Item combo.
    You load data from source to the ODS, say delta.
    Suppose that the below record is already available in the ODS.
    SalesDoc______Item_______PartnerFunction________Amount
    80000_________10_____________A1_______________$1000
    And you get the following data as DELTA in the Data_Package from the source.
    SalesDoc______Item_______PartnerFunction________Amount
    80000_________10_____________A2_______________$1000
    80000_________10_____________A3_______________$1000
    If you populate the Amount again for these 2 records, then the total would sum to $3000, which is wrong.
    So what we do is,
    Write a Select stmt for ALL ENTRIES in Data_Package and fetch the records from the target ODS. Have it in an Internal table, say t_ODS1
    Take the SalesDoc / Item from the Data_Package and chk if it is present in the internal table t_ODS1.
    If it is present, then populate the Amount as ' ' (Blank)
    Else populate the Amount as $1000.
    Say, you are getting 3 new records, which is not present in the ODS1.
    In that case, your internal table t_ODS1 will be blank.
    Now again, we need to populate the Amount only for the first record among the 3 records.
    So, here comes the "Flag".
    Set the Flag as X, when we populate the Amount.
    Everytime chk the Flag <> X.
    Only if it is <> X, populate the Amount.
    Else Leave it Balnk.
    Hope I have explained in detail
    Regards,
    Balaji V

  • Order Partner Functions for VENDORs

    Hi All,
    We are using CRM 5.0 and ECC 6.0. We successfully replicated all the VENDORs from ECC to CRM BPs with BBP000-VENDOR role as this features is supported from CRM 5.0.
    We are now trying to get the VENDOR Partner functions replicate from ECC sales order to the Partner Functions for the CRM ORDERS. Looks like SAP doesn't support this feature yet. I am getting the Partner Functions (say Z1 - Freight Carrier ) but the partner data is BLANK. So i am working on a workaround.
    My Issue I am using ORDER_SAVE BADI to enter a BP from CRM to this Partner Function that is coming empty to CRM. For some reason my code is not working. Below is my code
    Data declarations for VENDOR Partner Function*********
      data: lt_partner_ref           type CRMT_PARTNER_EXTERNAL_WRKT,
              ls_partner_ref          type CRMT_PARTNER_EXTERNAL_WRK,
              lt_partner                type CRMT_PARTNER_COMT,
              ls_partner               type CRMT_PARTNER_COM,
              lt_partner_act          type CRMT_PARTNER_COMT,
              lt_partner_attributes type CRMT_PARTNER_ATTRIBUTE_COM_TAB,
              ls_partner_attributes type CRMT_PARTNER_ATTRIBUTE_COM.
      data:lt_header_ref   type crmt_object_guid_tab,
             guid                type crmt_object_guid.
      guid =  iv_guid.
      insert guid into table lt_header_ref .
      call function 'CRM_ORDER_READ'
        EXPORTING
          it_header_guid       = lt_header_ref
        IMPORTING
          et_partner            = lt_partner_ref                 
        EXCEPTIONS
          document_not_found   = 1
          error_occurred            = 2
          document_locked       = 3
          no_change_authority  = 4
          no_display_authority  = 5
          no_change_allowed   = 6
          others                      = 7.
    Start of the code to VENDOR PARTNER FUNCTIONS for ORDER Heafer/Item ***********
        Read table lt_partner_ref into ls_partner_ref with key partner_fct = 'Z0000007'.
        if ( sy-subrc = 0 ).
            ls_partner-kind_of_entry = 'C'.
            ls_partner-partner_fct = 'Z1'.
            ls_partner-partner_no = '0010060331'.
            ls_partner-display_type = 'BP'.
            ls_partner-no_type = space.
            ls_partner-REF_HANDLE = '100'.
            INSERT ls_partner INTO TABLE lt_partner.
            ls_input_names-fieldname = 'KIND_OF_ENTRY'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'PARTNER_FCT'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'PARTNER_NO'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'DISPLAY_TYPE'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'NO_TYPE'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'REF_HANDLE'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_field-ref_guid = ls_partner_ref-ref_guid.
            ls_input_field-objectname = 'PARTNER'.
            ls_input_field-ref_handle = '100'.
            ls_input_field-logical_key = '0000'.
            ls_input_field-ref_kind = 'B'.
            INSERT ls_input_field INTO TABLE lt_input_field.
          Endif.
      call function 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_partner           = lt_partner                         "I added this for VENDOR PF
        CHANGING
          ct_input_fields   = lt_input_field
        EXCEPTIONS
          error_occurred         = 1
          document_locked    = 2
          no_change_allowed = 3
          no_authority           = 4
          others                   = 5.
    endmethod.
    Could anyone check my code and suggest any changes?
    Thanks,
    Karuna.

    Hi ROshan,
      Open customer master in XD02  sales view and save it then check in XD03 it should display the partner functions.
    As you said the account group has been changed I think the records needs to be saved again.

  • Dependency Information for Transport Requests in Change Request Management

    If two CTS projects are not assigned to SOLMAN projects, it is possible to define a dependency successor/predecessor relation between two transport requests for the import order. For example I can state that I have to import TR 1 only after the TR 2.
    When the CTS projects are assigned to SOLMAN projects, even though you have defined the dependency relation, this is not respected and from the Change Documents you can perform the import in the order you want.
    How can I activate this check also in Change Request Management?
    Thanks
    Antonello

    Some things you could take a look on:
    1) start report /TMWFLOW/CONFIG_SERVICES --> here you can define system, client and project specific locks.
    2) Transaction /TMWFLOW/CMSCONF --> also some options for locks and definition of critical objects
    3) Transaction /TMWFLOW/LOCKMON --> monitor screen for locked objects and requests.
    This is actually not the same functionality as have it in CTS projects directly especially as the locks are removed once a request is removed. The most important thing is still missing here (or at least I haven't found a way to activate): sequence control when importing requests out of parallel projects into production (to prevent downgrading). 
    Best Regards,
    Andy

  • Create, Update and Delete Partner functions for a Functional location.

    Hello
    I have a  requirement where I need to
    a.  Create /  Assign Partner functions to a Functional location,
    b. Update the new  Partners values ( PARNR ) for particular Partner Functions ( Replace new Partner values in place of old partner values )
    c.  Delete the Partner values and Partner functions for a Functional location.
    when the above changes are done, the changes should be reflected in IFLO ( Table-IFLOT ) and IHPA  ( Table-IHPA ) transactions .
    I wanted to make the above changes by using FM's or BAPI. I have searched many forums and threads, but still I was not able to get the correct solution.
    Can anyone help me out in finding BAPI or FM's to do the above changes. ?
    Note : I will have an excel sheet which has coloumns like Functional location, Partner function, Old Partner value ( PARNR ) and New Partner value (PARNR ). This data needs to be updated in IFLO and IHPA.
    Thanks and Regards,
    Karthik Ganti.

    Hello
    I have a  requirement where I need to
    a.  Create /  Assign Partner functions to a Functional location,
    b. Update the new  Partners values ( PARNR ) for particular Partner Functions ( Replace new Partner values in place of old partner values )
    c.  Delete the Partner values and Partner functions for a Functional location.
    when the above changes are done, the changes should be reflected in IFLO ( Table-IFLOT ) and IHPA  ( Table-IHPA ) transactions .
    I wanted to make the above changes by using FM's or BAPI. I have searched many forums and threads, but still I was not able to get the correct solution.
    Can anyone help me out in finding BAPI or FM's to do the above changes. ?
    Note : I will have an excel sheet which has coloumns like Functional location, Partner function, Old Partner value ( PARNR ) and New Partner value (PARNR ). This data needs to be updated in IFLO and IHPA.
    Thanks and Regards,
    Karthik Ganti.

  • Partner function for notification processing in SPRO.

    Hi Gurus,
    I have to know that what is the use of settings for Partner function for notification processing in SPRO(implementing dptmnt,person responsible,function for paging,Task processor,partner function approver).what is the function for these?
    2'nd in while creating/changing the notification in the notification screen in standard tool bar there are two Icons one for partners(ctrl+F1) and another for determine partner(F7).Pls explain what is use of this icon determine partner.???
    Pls explain in details....

    hi
    1.Refer the below threads,links
    [Partner determination procedure and partner function;
    [http://help.sap.com/saphelp_46c/helpdata/en/42/51b39b4a1211d182b80000e829fbfe/content.htm]
    2.Partner are determined from master datas like equipment,functional location during notiifcations,order creation.
    you can have defualt and mandatory partners
    Regards
    Seenu

  • Partner function for sales contract

    Hi
    I have to extract Sales related data from SAP R/3 to BW.
    Facing issue if someone just changes partner function for Sales contract as they are not captured in any of the standard extractors.
    If there is change in partner function for Sales order then it gets captured in 11 vascl but if its for contract then it doesnt get capture.
    Any solution ?
    Regards,
    monika

    Hi ! Ivy
    I guess there is a option.
    Try this out. Use the menu path IMG> Sales & Distribution> Sales> Lists> Set updating of partner index
    In the resulting screen, click on 'New Entries' make entries 0 - for sales orders and 4 - for contracts as transaction group. Under the column 'partner function' ener the partner function for which you want the report and save your entries.
    Now when you go for executing your report, click on the push button 'Partner functions' ( Say in VA05) , you will have the option for selecting the new partner functions , select and execute your report.
    Provide your feedback.
    Regards,
    PATHIK

Maybe you are looking for

  • How do I update a timer's timeout threshold in realtime?

    Hi all.  I'm trying to implement something that would look like a 'Timer event' but I couldn't find anything in Labview that could be used to trigger a case in an event structure. I also can't seem to update the internal timeout threshold of running

  • Replace char on String

    Hi All, String strValue = "ABC TPT 0694"; My String is as shown above, I am looking for a way to replace char at byte 6 (position 6) with another Char in String. For example at location 6 it is "T" I want to replace it with char "O". can any one tell

  • Could not find network adapter needed for registration

    Cisco IP Communicator has worked well for a month now. One morning I go to launch the app and I get the error message: Could not find network adapter needed for registration. I rebooted my pc and I got the same result. I reinstalled the app and got t

  • How to transfer Favorites to new PC?

    Is there a way to copy and paste my list of Favorites (names and website links) from old PC to new PC?

  • IPhone Safari launches itself after unlocking screen

    This started happening recently. Ive noticed after using safari and putting the device to sleep after waking it and unlocking the screen safari launches. When it went to sleep safari was not running, and I'm pretty sure it wasn't even in the list of