Solman for testing

Dear Friends,
Just wanted to know from you that if in an implenetation project we have business blueprint made outside solution manager(BBP is not generted using solution manager features) then can we use solmman for such a project in phases of realization onwards. Can we doing the testing of such project through solman when the blueprint has been generated without the aid  of solman.
You views will be highly appreciated.
Rgds
Manish

Hi Manish,
You have to have the Business Blueprint structure in SolMan, so that in Configuration transaction, you can hang off Test Case documents against those respective nodes.
Blueprint document generation from SOLAR01 is not a prerequisite, but the structure is.
At least you need some 'high level' folders, if not till Process Step level.
Cheers,
Srini
Two other ways would be, as an alternative to developing a formal well structured SOLAR01:
(1) Create a namesake Scenario, a Process under that and a Process step. List all transactions that you are supposed to test against this process step.
While generating Test Plan(s), choose to include Transactions involved in the project, it will include all Transactions you keyed in.
Create Test Packages in  ways that suits your needs, into chunks of functionality or modulewise - whatever suits.
(2) Don't even create this name sake structure. Create a Test Plan, and not with reference to Project, but from Application Hierarchy.
It depends on the kind of Test Scripts you have - if they are already developed, it would warrant an alignment with that. If you dont have any word/excel files as Test Scripts, the above two options may as well suit.
Cheers,
Srini
Edited by: Srinivasan Radhakrishnan on Jul 14, 2008 9:57 AM

Similar Messages

  • Need Suggestion about Solman support & testing E CATT feature

    Hi Solman Experts .
    I need your Strong suggestion. Actually i am working in  ABAP module , I recently joined as a fresher in small company,  I got opportunity to  go Saudi for  "Solman support & testing ,E CATT"  in big MNC . Now i need suggestion , If i go and work there in these areas , If i return to India  will i get Good Job  and Salary here .
    Please suggest me. please it my career issue.

    hi Gafoor,
    I too had this kind of oppurtunity and now i am in abhudabi in crm and solman testing. No problem in this , So you can go to saudi as your wish and the future and scope for the solman is very good. So it s reasonable to go saudi .
    Regards,
    Prabhushankar

  • Updating my .ipa in DPS App Builder for testing is not working

    Hi there,
    I've build my .ipa file in DPS App Builder for testing on my iPad before I publish it to the app store. No problem. I tested it and saw some modifications to make. I made the changes on my folio, updated it in the folio builder of indesign (on the cloud). Then I get back to DPS App Builder and rebuild an .ipa file from the "Manage" and "Modify" windows, it download and test my certifates, seems to work ok. Then I've created the new .ipa file (after erasing the old one on my desktop and iTunes) but when I synch it back on my iPad it's not updated. It's still the first version of my folio without the changes.
    I tried to create a new app from the beginning but the single edition serial number does not work anymore. So my only solution is to update my folio, right? But what is the right way to do it? Am I missing something? I didn't find any answer in the step by step guide about that.
    Or is it possible to delete completly the first version in DPS App Builder to recreate it without losing my single edition serial number as I didn't submit it to Apple yet?
    Do I have something to do in the Folio Producer?
    Thanks for your help.
    Julien.

    Single Edition Serial is one time use thus modification is not possible from your end directly in case you wish to use the same serial number. For such cases you need to contact DPS Support, who can get an approval on a serial number reset after reviewing the need.
    In this case, I'll take this offline with you in reference to forum post # http://forums.adobe.com/message/5597607.

  • License for testing and production systems

    Hi Experts
    Can any one help me out on implementing license in my B1 System.
    According to our contract we have licensed following user types:
    User Type
    Licensed
    AddOn Access License    25
    Professional User                5
    Software Development Kit - Development Version 20
    We have Test/development system in one hardware and Production system on different hardware. Please advice me how to request/allocate license for my test/development system and production system.
    We tried creating a Test System in SAP Market place and requested license for test system. While requesting license for production system, it is found that the license is exceeded. In other words, developent system license also counted.
    Please advice me on the best practices of B1 license implementation.
    Thanks and regards
    Ajith G

    Hi,
    Our customer wants to Keep the production data secure. Developers and consultants should not have the access to it.
    Then you have only two options:
    1.Either you should maintain a standalone b1 server for the developers and consultants to test their solutions and scenarios.
    2.Otherwise you can create users in sql studio for accessing only the test database.
    So that as per your requirement
    All configurations and sample data will be kept in a test environment where developers and consultants can do their work.Once everything is correct Admin will do the transfer to production.
    Note:New users can be created in the sql studio under Databases-><Company Db>->Security->Users, Rt.click new user

  • How can I redirect a request for testing?

    There is no internet access on the development machine and I have written for testing purposes a servlet to simulate a web server that my app accesses.
    However I need a program or way of redirecting a (secure and non-secure) url request to the local host.
    i.e. the application calls either:
    http://www.thewebsite.com/foo?bar=1
    or
    https://secure.thewebsite.com/foo?bar=1
    which is then redirected to:
    http://localhost/thewebsite/foo?bar=1
    How can this be done?

    Hi, thanks for the replies. I thought about that
    (it's a windows machine) but there is still a couple
    of problems.
    1. I can't specify the sub-directory can I?No, but your webserver can prob. do that.
    2. I want to handle a secure request but have it also
    go to the same locationssl would have to go to ssl. But setting up ssl normally is not too hard.

  • Creating a folder for testing

    Hi all,
    This is a suggestion rather than a question.
    I sometimes need a folder with a nice small well defined set of data for testing.
    Rather than have to go to the DA and ask them to add a table to the Oracle database and then add it to the Business Area I found a simpler solution:
    In Discoverer Administrator Create a Custom Folder.
    Add SQL something like:
    SELECT 'A' AS Type, 1 AS Days, 10 AS DailyCost FROM DUAL
    UNION SELECT 'A',2,20 FROM DUAL
    UNION SELECT 'B',3,50 FROM DUAL
    UNION SELECT 'B',4,100 FROM DUAL
    This will provide a table with three fields: Type, Days & DailyCost.
    And four records.
    Save this and give it a sensible name such as TestTable and it's then available
    for running tests.
    It's not too complex to create a series of Excel formulae which will take a table of values and create the SQL to be used to create a custom folder.
    This is a fairly quick (if hackish) way of getting a table of values into the business area until such time as it can be put into the database by the DA.
    In Excel
    For a table with field names in cells A1..C1 and records in A2..C5 use the following formulae in Cells E2..E5 and then copy these four cells to get the SQL!
    ="SELECT "&IF(ISTEXT(A2),"'"&A2&"'",A2&"")&" AS "&A1&","&IF(ISTEXT(B2),"'"&B2&"'",B2&"")&" AS "&B1&","&IF(ISTEXT(C2),"'"&C2&"'",C2&"")&" AS "&C1& " FROM DUAL"
    ="UNION SELECT "&IF(ISTEXT(A3),"'"&A3&"'",A3&"")&","&IF(ISTEXT(B3),"'"&B3&"'",B3&"")&","&IF(ISTEXT(C3),"'"&C3&"'",C3&"")& " FROM DUAL"
    ="UNION SELECT "&IF(ISTEXT(A4),"'"&A4&"'",A4&"")&","&IF(ISTEXT(B4),"'"&B4&"'",B4&"")&","&IF(ISTEXT(C4),"'"&C4&"'",C4&"")& " FROM DUAL"
    ="UNION SELECT "&IF(ISTEXT(A5),"'"&A5&"'",A5&"")&","&IF(ISTEXT(B5),"'"&B5&"'",B5&"")&","&IF(ISTEXT(C5),"'"&C5&"'",C5&"")& " FROM DUAL"
    Yours nerdily
    Suhada

    Hi Suhada
    Like Rod, I'm a fellow nerd and am always on the lookout for cool ways to expand and work on data inside Discoverer.
    With your permission, I'd like to take this idea and make a posting on my blog (http://learndiscoverer.blogspot.com/). I'll give you credit for the idea but thought it might be nice if I could show it working with screenshots of Excel and inside both Discoverer Admin and Plus.
    If you don't object, please send me ([email protected]) the Excel spreadhsheet that you used for your test and I'll see if I can't get something up within the next week or so.
    Best wishes
    Michael

  • Using secatt for testing entire cycle

    How can we use SECATT tool for testing the entire series of transactions to be used in logistics functions?
    Example :
    rfq
    acceptance/rejections
    purchase order
    goods receipt
    invoice verification
    goods issue
    inventory posting/stock transfer
    all in a sequence?

    Hi Chintan Chande,
    Create eCATT scripts for each transaction and export the needed values in each script and use them as input variables in the next scripts.
    Like, Script P_Order for PO, take the PO number and create a GR WRT to PO number.
    Like wise you could link all your scripts to form a Scenario.
    After creating individual scripts for each transactions, then create a master script wherein you encapsulate/refer all of them in here..
    Like  REF ( RFQ , RFQ_1 ).
    REF ( INVENTORY , INVENTORY_1 ).
    Also, following is the link of a weblog on SDN which gives step by setp details about chaining. It also explains the terms used with necessary details -
    /people/sapna.modi/blog/2006/04/18/ecatt-chaining-parameterization-creation-of-test-datatest-configuration-system-data-part-iv
    Also, you may also use this thread for your reference.. Though this is not exactly what you are looking for, but it would help you in your case even.
    How to store export parameters in eCATT?
    Hope this helps..
    Best regards,
    Harsha
    PS: Reward points if this answers your query.

  • Crane Aerospace and electronics is looking for Test Engineers with LabVIEW experience - please disregard previous post.

    Here is the correct post:
    Are you detail-oriented, creative, and technically skilled at Engineering design and development?  Come to Crane Aerospace & Electronics and use your excellent Engineering skills to design, improve, and deliver the next generation of products in the aerospace and electronics Industry!
    We have a unique and exciting career opportunity for Engineer II, Test.
    You will be responsible for maximizing new product development and manufacturing performance through the creation and deployment of test strategies, tools, and plans.  Design and implement high performance hardware and software for test equipment.  Authoring test procedures and performing Qualification test activities.  Ensure high product quality.
    Responsibilities:
    Collaborate with customers and multi-disciplined engineers to establish/clarify test, qualification, verification and validation requirements.
    Write test plans, procedures, requirements and reports in a highly structured environment.
    Analyze, develop and deploy complex and high performance test hardware and software solutions for automated test equipment. 
    Design, develop, debug, validate & verify the fabrication of manual and automated test equipment at the circuit board and system level, and specify and procure COTS test equipment.
    Develop/maintain hardware documentation including block diagrams, schematics, BOMs, wiring diagrams and wiring lists, software documentation, and configuration control of initial release and updates. 
    Perform detailed calculations to establish test equipment specifications and design margins.
    Maintain existing test systems through bug fixes, improvements and modifications.
    Support the estimation of costs and schedules to develop or upgrade test platforms.
    To perform a number of the above responsibilities with limited supervision.
    Minimum Requirements:
    Experience: 2-5 years.  Previous work experience in aerospace, space or medical electronics industry preferred.
    Knowledge: Microprocessor / Microcontroller hardware and firmware design; Analog Circuit and power supply design; Digital Circuit Design including high-speed serial communication design; Firmware programming in c; Schematic Capture, PADS Logic preferred; Circuit Simulation; Fundamentals of magnetic proximity, temperature, and pressure sensing electronics; ESD; Familiarity with testing standards (MIL-810, MIL-704, and DO-160 preferred).  Basic laboratory test equipment; LabVIEW experience, certification preferred; Developing hardware per DO-254 and software per DO-178 preferred; Experience with Adobe FrameMaker, IBM Rational tools, TestStand, Microsoft Project preferred.
    Skills: Good interpersonal and communication skills (verbal and written)- effectively lead and/or participate in multifunctional teams in a dynamic work environment. Ability to manage multiple tasks, flexibility to switch between tasks and prioritize tasks. 
    Education/Certification: Bachelors Degree in electrical engineering, computer science, physics or related technical discipline.
    Eligibility Requirement: Must be a US Person (under ITAR rules) to be eligible.
    Working Conditions:
    Working conditions are normal for an office/manufacturing environment. Machinery operation requires the use of safety equipment to include but not limited to safety glasses, heel straps, and shop coats.
    Requires lifting 25 lbs
    Apply online today: http://ch.tbe.taleo.net/CH06/ats/careers/requisition.jsp?org=CRANEAE&cws=5&rid=3170
    Crane Aerospace & Electronics offers competitive salaries and outstanding opportunities for career growth and development.  Visit our website at CraneAE.com for more information on our company, benefits and great opportunities.
    In our efforts to maintain a safe and drug-free workplace, Crane Aerospace & Electronics requires that candidates complete a satisfactory background check and pass a drug screen prior to employment.  FAA sensitive positions require employees to participate in a random drug test pool.

    How can you say you are hiring test engineers with LabVIEW, yet the job description doesn't even mention LabVIEW.  All I see in there is CAD design.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Best practice for testing a web form after converting to a connection file

    I was using InfoPath to test a web form using a web service for the connection. I decided to deploy the form to SharePoint to make sure it worked outside of InfoPath preview mode. This required me to convert the connection to a connection file and publish
    that in SharePoint. After getting all that set up, it appears to work from SharePoint.
    Now I want to go back and work on the form some more. But in InfoPath it appears preview is no longer an option because the form is using a connection file. While trying to preview the form I am given a message that basically says the form will have to be
    published in order for it to make the connection. This would mean I would have to overwrite the form on SharePoint just to test.
    I suppose I could publish to a different form library and switch back when I'm done but it would seem that InfoPath preview should still be an option for testing. Is there something I'm missing in InfoPath that would allow me to still test with this form?

    Not sure what you're doing, but previewing IP forms with data connections should be quite possible.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs
    To put it simply, here are the basic steps:
    Create IP form based on web service
    Fill out form and test via Preview
    Convert data connection to a connection file
    Publish IP form and test on SharePoint
    Go back into IP and try to test again via Preview <--- no longer works - now stuck with testing on SharePoint which is "live"
    This could be a factor of how our SharePoint environment is configured. I have no other experience to base it on.

  • Webservice client : different wsdl file for test/production environment

    In an ADF application, I need call a web service in model project
    In my company, we have 2 environments : test and production.
    This webservice is deploye in test server and production server.
    So there are 2 different wsdl file for test/production.
    I want to make my ADF Application portable cross the 2 environments.
    An environment variable can indicate in which environment the ADF application run.
    According to this variable, application choose which wsdl/endpoint to call.
    If I use "web service Data control" wizard, how can I achieve this?
    If I use "webservice proxy" wizard, how can I achieve this?
    Thanks!!!!!!

    Hi,
    I have a model project with ws proxy client and on this proxy I added an adf ws connection called CustomerExperience
    then I can do this.
    // a test to try to overrule the adf ws connection from EM
    Context ctx = null;
    try {
    ctx = ADFContext.getCurrent().getConnectionsContext();
    WebServiceConnection wsc = (WebServiceConnection) ctx.lookup("CustomerExperience");
    CustomerExperience customerExperience = wsc.getJaxWSPort(CustomerExperience.class);
    } catch (NamingException e) {
    LOGGER.severe("got web service loading fault: "+ e.getMessage());
    throw new JboException( messages.getString("NOM-999"),
    "NOM-999",
    null );
    I exported this to an adf jar and added this to a webapp.
    On runtime the ws connection is not dectected by the webapp so need to copy this ws conn to the connections of the webapp. This works
    but can I change it from wlst instead of EM , is this possible?
    I don't see the WS connection in wlst (oracle common) adf_listURLConnection('CE_Portal')
    thanks

  • I had put my 3G sim in one IPAD 2 for testing. After 2 days I put the sim in my own IPAD 2 , but it does not accept/read the sim. Kindly advise

    I had put my 3G sim in one IPAD 2 for testing. After 2 days I put the sim in my own IPAD 2 , but it does not accept/read the sim. Kindly advise ???

    Hello Murali19,
    I would recommend following through the article linked below for some useful troubleshooting steps that may help get Personal Hotspot enabled with the desired SIM card.
    iOS: Troubleshooting Personal Hotspot
    http://support.apple.com/kb/TS2756
    Cheers,
    Allen

  • 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

  • Material Type for Test Equipments

    Hi,
    What is the standard material type used for Test Equipment.This material type is not used for consumtion.This is used only for testing purposes.
    Regards,
    Nitin Amritkar

    Hi
    You should be using material type FHMI - Production resources/Tools
    Regards
    Prasad

  • Have a test version in use for testing purposes and want to buy it now without loosung the files. How to do so?

    I've a test version in use for testing purposes and want to buy it now without loosung the files.

    Just buy it and enter your serial key.

  • Default contexts onn FW module 6500 for TESTING purposes?

    "2 Virtual Firewalls and 1 administrative context are provided for testing
    purposes"
    THE ABOVE STATEMENT IS COMING FROM THE DATASHEET OF FW MODUTE FOR 6500.
    DOES THIS MEAN THAT THE 2 CONTEXT WILL NOT WORK IN PRODUCTION?
    THANKS

    Hi
    No, as far as i am aware you can use them in production if you like. There is no license expiration. Basically you get 2 contexts + 1 admin context with the FWSM and you can use these any way you like.
    HTH
    Jon

Maybe you are looking for