How to create Product, Software Component..after the XI Installation

Hi Experts,
SAP XI was installed completely. After this, I would like to test some sample File – File scenario. But I am not sure, how to create the Product, Software Component etc. I am able to login and run the SXMB_IFR to get the XI tools.
Can some one please provide the initial steps / procedure, what else I need to do (like creating Product, Software Component etc) as soon as the XI installation was finished.
Thanks in advance.
Sree

hi Sree,
You can create this in SLD>Software Catalog>new Software component and create the SWC with the new version.
As you know, the SWC acts as place holder for all your design objects. In simple terms, the newer version will be an enhancement to your older released version with added functionality.
Also refer to the following links on help.sap.com for more detailed explanation and look for the compatibility changes when developing a new software component version.
http://help.sap.com/saphelp_nw04/helpdata/en/29/17647d028113439108ce1161263b6e/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/71/0b99063e1f974d9f25951746d04dc3/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/87/59c5726d8b5141bf22831a6ce79d8a/content.htm
/people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
/people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
/people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
/people/scott.braker/blog/2005/01/20/software-deploymentcomponent-archive-basics
please reward points
Regards
Sreeram.G.Reddy

Similar Messages

  • How to add Oracle Partition Component after the RDBMS Installation

    Hi,
    I have been installed Oracle 11g R2 in Suse Linux 10 (64 bit), while in installation i deselect the Partition option. Now i need to bring the Oracle Partition option to my Oracle RDBMS.
    Please help me how to bring the Partition Option once again into my Oracle Server.
    Thanks in Advance,
    Baalaji V

    Same senario i have here, But i want to know how to install the Partition option after the RDBMS installation.
    Since i have been installed the Oracle 11g R2 Ent Edition without Partition option, Now i need to install the same.
    Thanks.

  • How to delete a software component in the IR

    I imported a software component from the SLD to the IR.
    Now I want to delete it. I can delete it in the SLD.
    But how can I get rid of it in my IR. The software component is empty.

    Theo--
    You can delete software components & versions from the IR in XI 2.0.  (We're on Service Pack 5, and I've done it to clean up our IR.)
    Here is the process:
    1. Delete all configuration and/or import objects from the SCV.  Don't forget the 2 fault data types that SAP automatically creates in every namespace.
    1a.  Activate all change lists?  I don't remember for certain if this is needed here; if it won't let you save the deleted namespaces in step 2, then do this first.
    2. Double-click on the Software Component Version so that it comes up in the right pane.  Click on the change/edit button.  Delete all the namespaces from the SCV.  Save.
    3. Activate all change lists.  (It won't let you delete the SCV if you have uncommitted changes.)
    4. Open the SCV again (if it's not still open).  On the menu at the top of the right pane, go to Software Component Version...Delete.  You may or may not have to activate changes again.
    If I remember right, the software component will disappear automatically with the deletion of the last version.
    Hope this helps!
    --Dan King
    Capgemini

  • How can i delete software component in the IR

    How can i delete software component in IR,when there are too many SCs?

    If you have to delete a SWCV, you have to delete all the namespaces with in that first. Open a name space and delete all the user defined objects in that first. Then delete the Std Fault and log data types and delete it and remove the name space from the SWCV by opening the SWCV and using - button on the name space. Now activate the changes. This will delete the name space.
    Repeat the step for all the name space with in the SWCV. After all objects are deleted. Open the SWCV and use the menu, SWCV ->Delete object.
    Regards,
    Jai Shanakr

  • How to verify Offline Software updates after the WIM is updated

    Hello,
    I'm new to SCCM 2012 and I followed this instructions to patch a WIM, but when I image a computer I cannot see the patches in the list for "installed updates" located in the "Program and Features"
    SCCM logs said 76 updates were applied and the process was a success
    My question is where I can verify the updates are in the image once a computer is imaged.
    Thanks in Advance

    Smsts.log will show which updates are installed during the task sequence. If there's error you'll have something like this :
    Update with CIID Site_E8EB38A2-4B9B-455B-8166-CD1018B5C1C4/SUM_ee69b39f-4dee-4bd9-8ff2-d01b082e2c4a
    failed with hr = 0x8007f0f4
    Apply your updates using offline servicing
    Deploy your SUG to your OSD collections
    Add "Install Updates" task in your TS
    Verify your SMSTS.log
    You shouldn't be missing updates after that. If it's the case, the error will be in SMSTS.log.
    Benoit Lecours | Blog: System Center Dudes

  • HOw to create a text file in the given path and delete it after the use?

    Hi all,
    I am trying to create a text file at the given path and delete the created file after the use.
    I am using following code.:
    import java.io.*;
    // write binary data as characters
    public class RanIO {
                                            public static void main(String f[])
                                                      // First illustrate append
                                                      String lineSep = "\n";
                                                      try {
                                                                     File temp= new File("C:/Ash","cute.txt");
                                                      boolean ch=temp.createNewFile();
                                                      if(ch)
                                                           System.out.println("file created");
                                                      else
                                                      System.out.println("file Not created");
                                                      //writing to file
                                                 /*     PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
                                                      p.print("Emp NO");
                                                      p.close();*/
                                                                // Open fileWriter in append mode
                                                                               FileWriter fos = new FileWriter(temp, true);
                                                                               BufferedWriter bw = new BufferedWriter(fos);
                                                                               PrintWriter pw = new PrintWriter(fos);
                                                                               double d=550;
                                                                          // lineSep = System.getProperty("line.separator");
                                                                          pw.print("Hello");
                                                                          //pw.print( lineSep );
                                                                          pw.print( d );
                                                                          pw.close();
                                  boolean det=temp.delete();
                                                 if(det)
                                                      System.out.println("File deleted");
                                                 else
                                                      System.out.println("File not deleted");
                                                 } catch (IOException ioe)
                                                                System.out.println( "Append IO error:" + ioe );
    My problem:
    1)
    I am not able to write to the file. I want to know, where i am going wrong.
    It is giving error message like
    "Canot resolve Symbol: temp,"
    But, FileWriter Constructor should accept a File type parameter.
    here temp is a file parameter.
    If i am not using file=new file();
    i can't delete the file after the use. i.e if i use
    PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
    how can i delete cute.txt after the use?
    2)
    I am not able to write to the text file. file is created but, a blank file.
    "Hello" is not written into the text file.
    can anyone help me in this regard
    Thanks in advance
    Ashvini

    Thank you Ram,
    But, i want to create a text file in Append mode.
    for that i used
    FileWriter fos = new FileWriter(temp,true); But, it is not accepting FileWriter constructor in
    this format. if i use
    FileWriter fos = new
    FileWriter("c:/ash/cute.txt",true); it works fine. !!!!!Here's the javadoc
    public FileWriter(File file,
    boolean append)
    throws IOExceptionConstructs a FileWriter object given a File object. If the second argument is true, then bytes will be written to the end of the file rather than the beginning.
    Parameters:
    file - a File object to write to
    append - if true, then bytes will be written to the end of the file rather than the beginning
    Throws:
    IOException - if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason
    Since:
    1.4
    Are you using jdk.13 or lower ?
    >
    ONe more doubt, Does flush method deletes a file?
    if not, then i need to use
    File temp=new File("c:/ash/cute.txt");
    FileWriter fos = new FileWriter(temp,true); //which
    is again a problem
    if(temp.delete())
    out.println("File is deleted");
    }I don't know whether i am taking it wrong ! or
    anything wrong with my coding ! but, after creating
    and writing data into a text file. I must delete it
    as it contains confidential informations.
    Regards,
    Thanks.'flush' writes to a file immediately. Else you should explicitly call 'flush' to write contents from buffer to underlying source.
    javadoc again
    PrintWriter
    public PrintWriter(Writer out,
    boolean autoFlush)Create a new PrintWriter.
    Parameters:
    out - A character-output stream
    autoFlush - A boolean; if true, the println, printf, or format methods will flush the output buffer
    cheers,
    ram.
    Question; What do you gain by opening a file, writing to it and deleting it in the same program ?

  • How to Create a Table Component Dynamically based on the Need

    Hello all,
    I have a problem i need to create dynamically tables based on the no of records in the database. How can i create the table object using java code.
    Please help.

    Winston's blog will probably be helpful:
    How to create a table component dynamically:
    http://blogs.sun.com/roller/page/winston?entry=creating_dynamic_table
    Adding components to a dynamically created table
    http://blogs.sun.com/roller/page/winston?entry=dynamic_button_table
    Lark
    Creator Team

  • How findout who created a software component:

    I am in a situation where I have to findout which user (userid) created a software component in SLD and imported them into IR and created many namespaces?
    Is there a way to find out?
    Regards,
    N.S

    hi,
    open IR click on the software component version
    then choose properties from the software component version's menu
    and then you see who changed the SWC
    (created namespaces etc)
    Regards,
    michal

  • How should I add a Software Component in the Integration Repostory?

    What should I do in the SLD and in the IR in order to add a new Software Component in the Integration Repostory?

    Hi Javier,
    Create a new s/w compnent in SLD first.
    In IR go to menu Tool ->Transfer from SLD->Import S/w component.
    Select the S/W component u created and import in in IR.
    Thanx
    Rekha.

  • How to create  an alternative bom for the same product

    Hi expert,
       I want to know how to create an alternative bom for the same product. Can i use the different bom usage to create or use the same bom usage? In addition, how can i use the production version to link the alternative bom for the same product?
    Please help me solve the problem.
    Thanks in advance for any assistance.
    George shi

    HI
    you can go with t-code CS01
    if you have the BOM already and you want to create the alternative BOM then just goto create BOM
    and enter the material and plant and uasge system will auto matically prapose the next numner ie, if you have Alt BOM1
    then next system will prappose 2.
    then you can enter the components as per you requirement
    if you go to different BOM usage then sytem will not go for alternative BOM it gives again alt bom 1.
    prodcution version you need to craet from mateial master
    each version you can go woith alternative BOMS
    Version 1 will have alt BOM1
    Version 2 can haev ALT BOM2
    -ashok

  • Error create a software component

    I am trying to create a software component in SLD, but I am getting following error.
    <b>“Unknown reference instance in CIMPropertyReference key property” </b>.
    I am giving following parameters .
    Product  : TBIT40_WORKSHOP,1.0 of SAP
    Vendor :sap
    Name :  PRASHANTH
    Version: 1.0
    can any one please help me create a SWC and also let me know how to create Product in SLD <b>I am new to XI</b> .

    Hi Prashanth,
    More on -
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/481955dc9e42c19d5a1bc3b8aead81/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/12/003479fa4c2d4aa9d175dcbb081d66/frameset.htm
    doubts in funda's of XI
    Hope this helps
    Regards,
    Moorthy

  • How to create production version & Explain with procedure

    how to create production version & Explain with procedure
    Madan

    Hi Madan,
    Production Versions are used to describe the production process to be used for planned / production order.
    Why is it required?
    Suppose you have 2/3 production lines and 2/3 alternative BOMs to produce one Finished Goods.
    How system will come to know which BOM and Routing to be used. This is done thru Prod.Version.
    In production version we maintain the combination of BOM and routing.
    Also it can be designed with lot size or validity period.
    Go to MM02--->MRP4 / Work scheduling view -
    > Prod.Version.
    Enter the validity period and lot size. and the production version should be unlocked.
    After entering the reqd. routing no. and BOM alternative , carry a check.
    After getting the Green signals ,Continue.
    Thus you have saved the prod. version.
    Mass processing TCode- C223.
    Hope it would clarify you the basic of production version.

  • How to create a generalized version of the detailed polygons?

    How to create a generalized version of the detailed polygons?
    I have a table of detailed polygons (100+ vertices) and I want to get generalized version of these polygons.
    For example, assume I have a polygon with 100 vertices. Distance between vertex n and n+1 is 1.0.
    I want to get geometry (generalized polygon, line or point) where distance between vertex n and n+1 is 10.0 or more (I want vertices to be considered as one vertex if distance between them is less then 10.0).
    Is it possible to create generalized version of polygons on the fly?
    Any help is appreciated.
    Thanks.

    Scenario A:
    If all of your polygons have no interaction among them (No polygon shares any boundary with any other ones).
    In this case you can use the sdo_util.simplify in 10g to reduce the vertices in your polygons which returns new polygon geometries on the fly.
    If you found that simplify is not doing exactly what you want, you can always roll out your own implementation using PL/SQL or the new SDOAPI JGeoemtry class in Java. Both will give you complete access to the coordinate arrays in a polygon and update them back to the database after you have simplified them in your code.
    Scenario B:
    If your polygons share boundaries, then the above methods will not work since the simplification process may not preserve the topology among your polygons. What you can do then is to use the Java topo package to create a new topology by adding all of your polygons to to an empty topology (which you first create in the database and then load into memory using oracle.spatial.topo.TopoMap). Once you have a topology built in the memory, you can use methods such as oracle.spatial.topo.TopoMap.changeEdgeCoords() to simplify the edges of your polygons. You can then recreate the simplified polygons from the topology. This is just a rough guide; for more details you need to check out the java doc for the various packages mentioned above which are shipped with 10g spatial.

  • How to create a temp table in the memory, not in disk?

    in sql server, you can create a temp table in the memory instead of disk,
    then you can do the insert, delete,update and select on it.
    after finishing, just release it.
    in Oracle,
    I am wonderfing how to create a temp table in the memory, not in disk?
    thanks,

    Thanks for rectifying me Howard.
    I just read your full article on this too and its very well explained here:
    http://www.dizwell.com/prod/node/357
    Few lines from your article
    It is true, of course, that since Version 8.0 Oracle has provided the ability to create a Keep Pool in the Buffer Cache, which certainly sounds like it can do the job... especially since that word 'keep' is used again. But a keep pool is merely a segregated part of the buffer cache, into which you direct blocks from particular tables (by creating them, or altering them, with the BUFFER POOL KEEP clause). So you can tuck the blocks from such tables out of the way, into their own part of the buffer cache... but that is not the same thing as guaranteeing they'll stay there. If you over-populate the Keep Pool, then its LRU mechanism will kick in and age its contents out just as efficiently as an unsegregated buffer cache would.
    Functionally, therefore, there can be no guarantees. The best you can do is create a sufficiently large Keep Pool, and then choose the tables that will use it with care such that they don’t swamp themselves, and start causing each other to age out back to disk.
    Thanks and Regards

  • How to create credit note automatically after PGR?

    Hello SD Gurus,
    Client's Business Process: Return Order (ZRE, ZPOR, ZARE, and ZMTR) is created with reference to billing document number and item category used for this order type is REN or ZREN. After the order is created, they do PGR (Return Delivery Type is LR) and then credit memo is created "manually". So, the issue with this process is that it is very time consuming and a lot of manual intervention is required.
    To-be Process: The requirement is to create credit note "automatically" after the PGR is done to reduce the manual intervention and expedite the process. If item category is REN, then credit note will be created with invoice value. If item category is ZREN, then credit note will be created with Zero Value.
    How should I write code in the user exit MV50AFZ1?
    Regards,
    Mohammed Anwar

    Hi
    Apart from Lakshmipathi's suggestion you can share the below logic with your ABAPER. There are two BAPIs we use to create billing automatically. Check whether you can call these BAPIs in userexit you have mentioned in your post.
    CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
    * EXPORTING
    *   CREATORDATAIN         =
    *   TESTRUN               =
    *   POSTING               =
            TABLES
              billingdatain         = billingdatain
              conditiondatain       = conditiondatain
    *   CCARDDATAIN           =
    *   TEXTDATAIN            =
    *   ERRORS                =
              return                = return3
              success               = success
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          READ TABLE return3 WITH KEY type = 'E'.
          IF sy-subrc = 0.
            record-inv_rem = return3-message.
          ENDIF.
          WAIT UP TO 2 SECONDS.
    *      READ TABLE return3 WITH KEY type = 'E'.
    *      IF return3-type = 'E'.
    *        WRITE:/ return3-message.
    *      ENDIF.
          READ TABLE success INDEX 1.
          CLEAR: vbeln_vf.
          vbeln_vf = success-bill_doc.
        ENDIF.
    Thank$

Maybe you are looking for

  • Lenovo T400 screen goes dark issue, some video driver problem

    Lenovo: Motherboard: CPU Type: Mobile DualCore Intel Core 2 Duo P8600, 2400 MHz (9 x 267) Motherboard Chipset:  Intel Cantiga GM45 System Memory: 1992 MB (DDR3 SDRAM) BIOS Type: Phoenix (08/19/08) Display: Video Adapter: Mobile Intel(R) 4 Series Expr

  • Opening pdf's in applications from safari - ipad

    When opening a pdf in an application from safari (i.e. pdf expert, goodreader) the pdf name does not show correctly.  Is there a way to properly create the pdf or open it differently to keep the name in the application? Thank you, Tom

  • Error when accessing service fcom_ip_proj_overall01

    Hi all, When executing a search in Overall Planning using NWBC a 500 SAP Internal Server Error is returned "termination: RABAX_STATE". The error from the dev_icf log file is below and a screen shot of the dump in ST22 is attached. I have attempted to

  • Change KerningMethod for all TextFrame?

    Does anyone know how to change the KerningMethod value for a TextFrame in an Illustrator file? I tried every possible way I can find without success. I thought the code below would work but it didn't //After getting the textFrame object... Illustrato

  • I'm getting an 'invalid signature' in excel 2007 when i try to open the excel file

    In sharePoint 2010. i'm trying to open the Excel 2007, Here i got issue "Invalid Signature".  Still the certificate of the user is valid.