Updating the template for Test Case Description

Hi All,
Greetings...
In one of my projects, I want to customize the template provided by the SAP in test case description.
We can add test case description while creating Manual Test Case (Tx: STWB_TC), Test Script and Test Configuration (Tx: SECATT)
I want ot update the default template with the custom template.
We had tried to update the same in SOLAR_PROJECT_ADMIN --> select Project --> Project Standard --> Project Templates --> Documantation Types, selected TD1, Test Case Description of Complete Directory of Document Types and using Document Template --> Change and Import we tried to update the template. In the document type, it has been changed but it is not reflecting in the other transactions.
Please help me in this regard to update the test case description.
Thanks in Advance
Saman

Hi,
More information about the issue....
We are creating the test scripts both manual and automated.
Manual
Using the Tx. STWB_TC, we are creating the manual test cases. While doing so we will provide the test case desctiption
Automated ECATT
using the Tx. SECATT, we are creating the Test Configuration. We are providing description through the documentation option.
The SAP format for both documents is
               &DESCRIPTION&
               &PREPARATION&
               &ENTRANCE&
               &REALIZE&
               &CHECK&
               &FURTHER_HINTS&
But we want the format to be
               <DESIGNSTEPS>
               <INPUTDATA>
               <EXPECTEDRESULT>
               <TARGETSYSTEM>
So we want to update the format / template to reflect the changes.
Please guide us to do so.
Thanks and Regards
Saman

Similar Messages

  • Changing template for Test Case Description

    Hi All,
    Greetings...
    In one of my projects, I want to customize the template provided by the SAP in test case description.
    We can add test case description while creating Manual Test Case (Tx: STWB_TC), Test Script and Test Configuration (Tx: SECATT)
    I want ot update the default template with the custom template.
    We had tried to update the same in SOLAR_PROJECT_ADMIN --> select Project --> Project Standard --> Project Templates --> Documantation Types, selected TD1, Test Case Description of Complete Directory of Document Types and using Document Template --> Change and Import we tried to update the template. In the document type, it has been changed but it is not reflecting in the other transactions.
    Please help me in this regard to update the test case description.
    Thanks in Advance
    Saman

    The template is stored in the table DOKTL with documentation type TX, object TEMPLATE_CATE, language EN
    Update the last version...
    thats it

  • In Pages I used to be able to edit a template and "save a version" to update the template. Now i have to rename the template to save the changes. Why is this happening? what happen to "save a version"? its no longer an option under "file".

    In Pages, In the past, I was able to edit a template and "save a version" to update the template. Now i have to rename the template to save the changes. Why is this happening? what happen to "save a version"? its no longer an option under "file". And I can no longer open the actual template, when template is clicked, it automaticaly opens an "untitled" version???

    In your description you say the first document opens as the Title you gave it.
    Templates always open as Untitled so it sounds like you have saved a regular document, perhaps into your templates folder which is possible.
    Since you have already worked on it and it has been previously saved, Lion will now Save for you and Save a Version is available
    The other document does open as Untitled so sounds like a real template and as Peggy has pointed out will not have either Revert nor Save a Version until you Save it and have changed something in it.
    This is a classic example of just how Apple's supposedly "simplification" of the process, is leading to confusion of what has happened. That the conditions and resulting actions from those conditions is so convoluted says it all.
    It all reminds me of the Monty Python Life of Brian sketch with the "simplified" John Cleese instructions to the class, as to if you have a brother in an older dorm whether to hang your hat and bag on the hooks provided. The trouble is Apple does not get the joke, that it is transforming itself into a frequently self contradictory bumbling bureacracy. The price of unchallenged self appointed geniushood.
    The incoherent half baked stumbling juggernaut has reached new triumphs with its edict on enforced Sandboxing on developers when it is unable to follow even its own instructions.
    Peter

  • BW standard templates and test cases.

    Hi friends.
    Can any body send me some standard templates and test cases for BIW .
    My mail id is [email protected]

    Hi Akash,
                 I know about the unit testing in BIW.I have know idea about  integration testing.
    If you need idea on Unit testing i can provide you  point wise how the testing will be done
    Regards
    Ramakanth.

  • HT1918 I cancelled a payment through PayPal. How do I update the payment for that charge?  I looked at my payment information and it has my credit card information.  I'm not sure where to update the PayPal part of payment.

    I cancelled a payment through PayPal. How do I update the payment for that charge?  I looked at my payment information and it has my credit card information.  I'm not sure where to update the payment that was associated with my PayPal account?  I am not sure what that paid for?  I am trying to process updates on my IPhone &amp; IPad for apps. I have already downloaded. 

    Hi Xellana, and a warm welcome to the forums!
    I'm looking for information and pricing on possibly upgrading the processor from the PowerPC to Intel.
    While anything is possible if you had enough money... NOPE, you can't change the CPUs to Intel, nor can you get any faster PPC upgrades for it. It'd be far cheaper to buy a new IntelMac than to replace everything inside the G5, and I mean just about everything, then figure out how to machine the case & such to mount Intel Logic Board, Graphic Card & such.
    Sorry.

  • How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    HI,
    How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    Thanks Florin,
    Your piece of code has worked alot, and it was very helpful in changing the Status of the Workitem to "READY" for all the Users fo the workitem.
    Points have been rewarded for your help.
    Process: We have acheived this using the "Work Item Exits", Usng "AFTER_EXECUTION" Method.
    Note: The Exit will be executed if "exit_cancelled"  statement is present/used in the work item method. if not it is not taking to the exit code. I'm unable to find the reason for it. Florin can u please explain this point.
    Please check the link for adding the code in Work Item Exits.
    http://wiki.sdn.sap.com/wiki/display/ABAP/ProgramExitsIn+Workflow
    Please find the Code:
    method IF_SWF_IFS_WORKITEM_EXIT~EVENT_RAISED.
    Get the context of the workitem
      me->wi_context = im_workitem_context.
    After execution of the workitem call the method AFTER_EXECUTION
      if im_event_name eq swrco_event_after_execution.
        me->after_execution( ).
      endif.
    endmethod.
    METHOD AFTER_EXECUTION.
    This method acts as the Event Handler for SWRCO_EVENT_AFTER_EXECUTION
      DATA: LCL_L_WID TYPE SWW_WIID,
            L_STATUS TYPE SWR_WISTAT-STATUS,
            L_NEW_STATUS  TYPE SWR_WISTAT,
            L_SWR_MESSAG  TYPE STANDARD TABLE OF SWR_MESSAG,
            L_SWR_MSTRUC  TYPE STANDARD TABLE OF SWR_MSTRUC.
    Get work item
      CALL METHOD WI_CONTEXT->GET_WORKITEM_ID
        RECEIVING
          RE_WORKITEM = LCL_L_WID.
      L_STATUS = 'READY'.
      CALL FUNCTION 'SAP_WAPI_SET_WORKITEM_STATUS'
        EXPORTING
          WORKITEM_ID    = LCL_L_WID
          STATUS         = L_STATUS
          USER           = SY-UNAME
          LANGUAGE       = SY-LANGU
          DO_COMMIT      = 'X'
        IMPORTING
          NEW_STATUS     = L_NEW_STATUS
         RETURN_CODE    = SY-SUBRC
        TABLES
          MESSAGE_LINES  = L_SWR_MESSAG
          MESSAGE_STRUCT = L_SWR_MSTRUC.
      IF SY-SUBRC EQ 0.
      ENDIF.
    ENDMETHOD.
    Thank You Once Again,
    Ajay Kumar Chippa

  • Why doesn't OTM display the Count of test cases when a Filter is applied

    Hi,
    I would like to know if there is a way to get the count of test cases returned when a filter is applied in OTM
    Though the Group By condition returns the number/count of test case, why a particular filter when applied, does not display/return the count of test cases?

    User just wants to get a count when a filter applied? If a report has to be created for a query/filter, then that conveys that OTM lacks usability.
    How about users who does not access to Reports Tab, users who dont have access to create reports?

  • Report available for test cases (manual test script files uploaded)?

    We upload our test script files to the "Test Case" tab, assign it a status.  We are hoping to have a report that would report all test case files and their STATUSES.
    In solar_eval, there is a standard SAP report for test case provided.  However, the field "Status" for the test case file is not included in this report.
    Is there any report available that would give us this status?  If not, in which table does this data come from?  Is there anyway to build a simple SQVI query to extract the list of test cases and their statuses?
    Any help is highly appreciated!

    Hi Jo,
    It's not entirely clear on whether you are look for 'Status' values of the Test Case document itself OR for 'Status' values of the Test(s) conducted on such Test Case documents.
    I believe the following two SOLAR_EVAL reports should resolve either ways:
    (a) SOLAR_EVAL -> Project -> Configuration -> Assignments -> Documentation (Programme called is SAPLSPROJECT_SOLAR_DOC_EVAL_IM) , Tick only 'Test Cases' and switch off other tabs
    (b) SOLAR_EVAL -> Project -> Test -> Test Plan Status Analysis
    Best regards,
    Srini

  • MR 11 not updating the invoicing for services

    Hi All,
    I have a scenario where the client uses MR11 for clearing the invoices.
    He does not use MIRO for invoicing.
    During our observation it is found that using MR11 does not update the invoices for services but the invoices for the material received is updated while checking the reports like ME2N.
    I have checked the Service based IV and the GR based IV in the  invoice tab of PO.
    Can you please advice me as to why this is happening only in case of services.
    Thanks and Regards
    Sridhar.

    Hi Charlie,
    Thank you very much for the response.
    Actually I am looking for the IR reduction and not the GR reduction.
    The note you have mentioned applies for GR reduction.
    Also we are in the ECC 6 environment.
    Please update me with further information.
    Regards
    Sridhar

  • Process validation for test case is not working

    I' am using SQL Developer EAR 3.0.02.83. The is a test case defined which uses "Query returns rows" with Select count(*) from dual;
    It should return a row an that way fulfill the test.
    but when running the testcase I get the result ERROR due to:
    Query returns rows not succesful: null
    How can I find the reason? Is this a bug?
    Even other types of validation do not work, they always give null and the overall result ERROR.

    Thanks for your reply. Unfortunately our procedure returns in some cases null values, so that a unit test is not possible.
    I need to ckeck the results of the function, but not to compare them with fixed values, rather something like {VALUE$} LIKE 'x%Y'.
    I'am afraid there is no solution.
    When can I hope the relaese version to be available?

  • How to set up approval process for test case in SAP solution manager?

    Hi Experts,
    We need to setup a 2 level approval process for test case documents in SAP Solution Manager.
    e.g. If test case document is uploaded for transaction "MM01" then first it will go to Reviewer1. Once Reviewer1 approves it , should go to Reviewer2.
    Adn finally once reviewer2 approves it , it will be complete.
    What are the required configurations and steps for approval process setup? It will be helpful if screenshots and detailed steps are provided.
    Thanks.
    regards,
    Sanjana

    Hi,
    the above requirement we are going develop add on.below code is there. in this code how we can set for line level amount instead of document total amount
    Private Function GetCondition(ByVal sCondition As String) As ApprovalTemplateConditionTypeEnum
            Try
                Select Case sCondition
                    Case "Deviation from Credit Limit"
                        Return (ApprovalTemplateConditionTypeEnum.atctDeviationFromCreditLine)
                    Case "Deviation from Commitment"
                        Return (ApprovalTemplateConditionTypeEnum.atctDeviationFromObligo)
                    Case "Gross Profit %"
                        Return (ApprovalTemplateConditionTypeEnum.atctGrossProfitPercent)
                    Case "Discount %"
                        Return (ApprovalTemplateConditionTypeEnum.atctDiscountPercent)
                    Case "Deviation from Budget"
                        Return (ApprovalTemplateConditionTypeEnum.atctDeviationFromBudget)
                    Case "Total Document"
                        Return (ApprovalTemplateConditionTypeEnum.atctTotalDocument)
                End Select
            Catch ex As Exception
                MsgBox(ex.Message())
            End Try
        End Function
    Please guide me.
    Regds,
    Samapth Kumar.

  • Looking for help to update the certificate for my Exchange Email Account...

    I'm trying to update the certificate for my Exchange Email Account...Dell had me delete the account, install the new certificate on my phone, and set up the email again...But it still won't work and acts like it can't find/use the new cert.  Any suggestions besides a hard resest of the phone?

    That's a great question, LSchmitz!
    Is the e-mail account on your cell phone? Which device? If its on your phone, an Exchange e-mail, may need to be provisioned/ set up by your employer/ IT department.
    VanessaS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • I tried to update the software for my iPhone 4S. It froze, and now won't turn off, or on, or sync.  Any ideas on how to fix this?

    I tried to update the software for my iPhone 4S, 16 GB to the most recent version (8.1?).  I don't know what I was updating from, because I can't access that, but it was whatever was installed on it (I got it about a year ago, so probably 6.something). 
    It froze, and now won't turn off, or on, or sync with my macbook plus, which is what I have always sync'd it to.  (I backed it up and sync'd it right before I tried to update the software.)
    Since it originally froze almost 3 hours ago, it shows a white screen with the apple on it and a line underneath.  When I try to sync with my laptop, it says it needs me to enter a passcode on the phone, which I can't enter because the screen is frozen.  So I'm unable to access the iPhone portion of iTunes.
    I have tried to turn it off, with no luck.  I have tried rebooting my laptop and syncing, but I still get the same result.
    Does anyone know how to fix this?
    I really wanted to wait to update the software, but I was having internet connectivity issues for the past 3 weeks, and Sprint suggested updating the phone's software.
    Thanks in advance for your help!

    Hi NWL1,
    Thanks for the question. If I understand correctly, the iPhone won't update and is stuck. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support
    Thanks for using Apple Support Communities.
    Have a great day,
    Mario

  • Getting the belwo error while releasing the template for performance

    Hi
    while releasinfg the template for the predefined perfoance process ia getting the belwo error , temaplate gets crrated but not relased
    Decision maker 'Appraisee' is not assigned to category 'Performance Management Process
    Decision maker 'Appraiser' is not assigned to category 'Performance Management Process

    errors you get in the template is that there is any person authorized
    selected in the category group 'Personnel Appraisals'. Please select the
    available persons authorized in the 'Status Flow' to solve this issue.
    please check your template preparation again

  • How do I update the iOS for my 1st generation iTouch?

    I am having difficulty updating the iOS for my 1st generation iPod touch. It is currently at 3.1.3. Can anybody tell me if this is possible?

    A 1G iPod Touch cannot be upgraded past iOS 3.1.3. Sorry.
    B-rock

Maybe you are looking for