Why should we create Product.......

Hi experts,
Why should we have to create Product? what is the use?
In IR we have to Import SoftwareComponent then in whole senario we dont use it then why should we create it........
what is the use of version?
usefull answer will be rewarded.
Regards,
Phani

HI,
The classes of the SAP schema, the software components and their versions, and the software products and their versions are the basis for the component information
Product: Represents a collection of all versions of a product. A product is a unit that can be delivered, is visible to the customer, and that is installable and renewable. In an SAP environment, a product corresponds to an SAP technical component.
·        Product Version: Represents a particular version of a product.
·        Software Component: Represents a collection of all versions of a software component. Software components represent the reusable modules of a product. They can be upgraded or have patches installed.
·        Software Component Version: Represents a particular version of a software component.
·        Software Feature: Represents a particular aspect of the product functions. It is a logical link between Product Version and Software Component Version
http://help.sap.com/saphelp_nw04/helpdata/de/29/17647d028113439108ce1161263b6e/content.htm
Regards
Chilla

Similar Messages

  • Why should we create index on  the table after inserting data ?

    Please tell me the Reason, why should we create index on the table after inserting data .
    while we can also create index on the table before insertion of the data.

    The choice depends on a number of factors, the main being how many rows are going to be inserted in the table as a percentage of the existing rows, or the percentage growth.
    Creating index after a table has been populated works better when the tables are large or the inserts are large for the following reasons
    1. The sort and creation of index is more efficient when done in batch and written in bulk. So works faster.
    2. When the index is being written blocks get acquired as more data gets written. So, when a large number of rows get inserted in a table that already has an index , the index data blocks start splitting / chaining. This increases the "depth" of the inverted b-tree makes and that makes the index less efficient on I/O. Creating index after data has been inserted allows Orale to create optical block distribution/ reduce splitting / chaining
    3. If an index exists then it too is routed through the undo / redo processes. Thats an overhead which is avoided when you create index after populating the table.
    Regards

  • Why should we create data type

    Hi all,
    I have a basic question!
    why do we create data type and then wrap it as message type?
    why dont we directly create a message type and use that ?
    please give the answers. Thanks in Advance.

    Hi Seshu,
    Please go through below links, you get answer
    message type and datatype
    Difference between Data type and Message type - Process Integration - SCN Wiki
    Regards,
    Krupa

  • Material type for BOM that should not create production order

    Hello all,
    We have following situation in our company:
    We ship few products say for e.g A,B,C which are part of higer level BOM for product M1  to the customer, before the actual product M1 is shipped.Currently these ship-a-head products(A,B,C) is also part of  BOM for M1.
    We need to combine these ship-a-head products A,B,C as one product  M2 (thinking of a BOM) and ship that M2 to customer before M1 is shipped.
    In that case what could be the material type for product M2 so that MRP won't create any Production orders for M2.
    Also wondering Is there any other way, other than creating a BOM that could combine products A,B and C and ship to customer a-head of time.
    Thanks,
    Sre

    Hi,
    Please create BOM for Material M2 by using usage other than production..
    1     +     .     .     -     -     -     .     Production
    2     .     +     .     -     -     -     .     Engineering/Design
    3     .     .     .     .     -     -     .     Universal
    4     -     -     .     -     -     +     .     Plant Maintenance
    5     .     .     +     +     -     -     .     Sales and Distribution
    6     .     .     +     .     -     -     .     Costing
    7     .     -     .     .     -     -     -     Empties
    8     -     .     -     -     -     -     -     Stability Study
    M     .     .     .     .     -     .     .     External Munitions Display
    hope it may help you.
    Kuber

  • Why should we create a new sales document type

    I want to know the actual reason behind creating new sales document type when the standard document is available

    General procedure when setting up sales document types
    You have three options for configuring new sales document types:
    1. Change an existing sales document type.
    2. Copy an existing sales document type and change it according to your requirements.
    3. Create a new sales document type.
    Recommendation
    For small changes, SAP recommends that you copy similar existing sales document types in the standard SAP R/3 System and make the appropriate changes. Small changes might, for example, be, a changed description, a different number range or a different increment for the numbering of items.  The name is to start with the letter Z as SAP keeps this range free in the standard system.
    This procedure has the following advantages:
    All the specifications of the existing sales document type are copied. In particular, the data concerning, for example, partner determination, pricing or document flow which you would otherwise have to edit manually is copied.
    You can test your new sales document types in respect to the settings made without having to edit the other settings.
    When copying sales document types, item categories and schedule line categories, the SAP R/3 System automatically creates a log with the copied data. Using the log, you can check whether all of the copied data applies to your sales document type or whether you need to make changes.
    Actions
    1. If you need to make further changes, you should define new sales document types. To do this, you enter an alphanumeric key with a maximum of four characters for a sales document type and a textual description for the key.
    2. Maintain the specifications on the detail screen according to your requirements.

  • When creating a tablespace why should we enable LOGGING when a database is already on ARCHIVE LOG mode

    Question :
    When creating a tablespace why should we enable LOGGING when a database is already on ARCHIVE LOG mode ?
    Example:
    Create Tablespace
    CREATE SMALLFILE TABLESPACE "TEST_DATA"
    LOGGING
    DATAFILE '+DG_TEST_DATA_01(DATAFILE)' SIZE 10G
    AUTOEXTEND ON NEXT  500K MAXSIZE 31000M
    EXTENT MANAGEMENT LOCAL
    SEGMENT SPACE MANAGEMENT AUTO;
    LOGGING: Generate redo logs for creation of tables, indexes and  partitions, and for subsequent inserts. Recoverable
    Are they not logged and not recoverable if we do not enable LOGGING? What is that ARCHIVELOG mode does?

    What is that ARCHIVELOG Mode Does?
    Whenever your database is in archive log mode , Oracle will backup the redo log files in the form of Archives so that we can recover the database to the consistent state in case of any failure.
    Archive logging is essential for production databases where the loss of a transaction might be fatal.
    Why Logging?
    Logging is safest method to ensure that all the changes made at the tablespace will be captured and available for recovery in the redo logs.
    It is just the level at which we defines:
    Force Logging at DB level
    Logging at Tablespace Level
    Logging at schema Level
    Before the existence of FORCE LOGGING, Oracle provided logging and nologging options. These two options have higher precedence at the schema object level than the tablespace level; therefore, it was possible to override the logging settings at the tablespace level with nologging setting at schema object level.

  • When creating a table why should we give promary key

    when creating a table why should we give promary key

    Hi Rambabu,
    Primary key is needed so as to avoid duplicate entries and ensure that there are unique entries in the table.
    For some applications, it is useful to uniquely identify the rows in a table by one or more columns so that you can process them in a specified sequence, for example. You can do this by assigning a “primary key.” The column names that are to create the table key are represented by the keywords PRIMARY KEY. The input values of the key columns defined in this way must not be a NULL value.
    You can use the primary key to insert rows in a table in the same way as you insert rows in a base table when no primary key is defined. However, the system outputs an error message if you attempt to insert an existing value into the primary key column a second time, since the uniqueness of the column is ensured by defining the primary key.
    A primary key can consist of multiple columns. However, it is unusual for a key to be constructed from more than five columns, since this makes it difficult for users to enter unique values. The arrangement of the columns behind the keywords PRIMARY KEY defines the key sequence.
    Regards,
    Sekhar

  • HT204053 My wife and I get our iPhone 4s tomorrow.  Should we put them both on the same Apple ID, or should I create one for her.  All our apple products are on mine at this time.

    My wife and I get our iPhone 4s tomorrow.  Should we put them both on the same Apple ID, or should I create one for her.  All our apple products are on mine at this time.

    The answer to this kind of depends on what you both want to do. Apple IDs can be used for multiple Apple services. For example you could both have your own iCloud Apple IDs (which I would suggest), but have only one iTunes Store Apple ID.
    So think about how you will each use the iPhones then make your decision. Keep in mind that if you both use the same iCloud Apple ID you will receive each other's texts and emails and all the email, contacts and calendars will be the same.

  • It appears you have no support. Why should I purchase your products

    No support why should i purchase your products ?

    These are user to user forums, no one here is selling you any products.  As far as support goes, if you look around you will see that plenty of support is offered for people who post their issues here, and fairly quickly at that.  There are also support channels for directly contacting Adobe that are clearly advertised in their web site.  Where are you looking that you conclude there is no support?

  • 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.

  • Why does InDesign create widows when you split a paragraph?

    Take a look at the two screen grabs. In this first one the price £48.25 fits at the end of the fourth line.
    But I want to split the paragraph at that point. Look what happens when I do:
    Why does it do that? As you see from the first example, the type will fit happily on the line above with the same hyphenation and justification settings. Why should splitting the paragraph make a difference?
    This feature enrages every production journalist on my UK national newspaper every working day of our lives. We don't like to put minus tracking on text and the only other way I know to counteract this effect is to reduce the word space values in the justification settings for the affected paragraph (we're working in Single Line Composer, by the way – Paragraph Composer makes it even worse). Sometimes even that doesn't work without everything looking too squished. If we can't edit the text to solve the issue (and why should we if we're otherwise happy with it?) then we have to construct a fake new paragraph using fixed spaces for the indent and baseline shift to create the 1pt space we insert between pars.
    The font in this example is Corporate E Bold, in case that has any bearing.
    Is there any other way round this, some mystical unknown setting that turns it off? If not, was it ever fixed in later versions of InDesign? My company uses CS3 and is not likely to update it for many years.
    Thanks

    Because it uses paragraph composing to adjust for the best possible spacing within a line calculated on other lines here is how it works there are two types
    Adobe Single Line Composer
    and
    Adobe Paragraph Composer
    Paragraph composer is the default - and here's the rules on how both work:
    Adobe Single-Line Composer.
    Some programs use single-line composition to flow text. It goes line by line through a paragraph and sets each line as well as possible using the  hyphenation & justification settings. When you modify the spacing of one line then the lines above and below that are not taken into consideration. If you adjust the space within a line it can cause poor spacing on the next line, which as they say in the business - tough luck.
    When you use Adobe Single-Line Composer, the following rules apply:
    Adjusting word spacing is preferred over hyphenation.
    Hyphenation is preferred over glyph spacing.
    If spacing must be adjusted, removing a space is preferred over adding a space.
    Adobe Paragraph Composer
    Adobe Paragraph Composer (which was called the Multi-Line Composer in previous versions) is turned on by default. It takes a broader approach to composition by taking the entire paragraph compoistion in one go. If you have a poorly spaced line it can be fixed by adjusting the spacing in the previous lines, so that the Paragraph Composer reflows the previous line.
    The Paragraph Composer is has the following rules:
    The evenness of letter spacing and word spacing is the given the highest priority. The possible breakpoints is determined by how much they cause word and letter spacing to vary from the desired settings.
    Uneven spacing is preferred to hyphenation. A breakpoint that does not need a hyphenation is preferred over one that does.
    All possible breakpoints are ranked, and good breakpoints are preferred over bad ones.
    The paragraph composer is more sophisticated than the single-line option, offering generally better overall spacing because it sacrifices optimal spacing a bit on one line to prevent really bad spacing on another, something the single-line method does not do.
    There is one frustration in dealing with the paragraph composer: When you try to edit text or play with tracking to get rid of an orphan or widow, the paragraph composer keeps adjusting the text across several lines, often counteracting your nips and tucks. The single-line composer doesn’t do that.

  • Why should I ask the community?

    Why should I ask the community, isn’t apple the one whom I should be getting help from?
    I don’t need apple points or free staff, considering that I have to work to make my leaving. I don’t have the time or the aspiration for it. I just want to know “ Why  iweb is limited on  the web site dawn load” I understand if the web site has been designed with other software , but have no understanding otherwise and I can care less for some smart… telling me to do backups or to get told to start all over!!!
    I since I don’t have all this time and I don’t wish to make all this time for communities, I just want understand if is time to stop buying apple products.
    Oidige

    Hi everybody first my apologies to the community members, It was not my intention to offend any of you or to criticize your genuine help!
    I’m very disappointed with Apple’s business conduct and their assistance in my home town, after changing  he back cover of  my Mac book, it didn’t work anymore. I bought a new one and all my problems with iweb started.  I went to different concessionaire but they had no solution for my problem. I won’t get in the details; I just cannot understand why the iweb software doesn’t have choice to dawn load sites creates with iweb!  One  again my excuses to the community!
    Sincerely Oidige

  • Why should I adopt LABVIEW FPGA as a tool for developing my FPGA projects?

    Dear Friends, 
    Since I have started using LABVIEW FPGA, I got too many questions in my mind looking for answers! 
    1-      Does anybody can tell me “why should I adopt LABVIEW FPGA as a tool for developing my FPGA projects?”
    I mean there are many great tools in this field (e.g. Xilinx ISE, ….); what makes LABVIEW FPGA the perfect tools that can save my time and my money? 
    I’m looking for a comparison can show the following points:
    ·         The Code size and speed optimization.
    ·         Developing time.
    ·         Compiling time.
    ·         Verifying time.
    ·         Ability to developing in future.
    ·         …etc.. 2-     
    I’ve Spartan-3E kit, I’m so glad that LABVIEW support this kit; I do enjoyed programming the kit using LABVIEW FPGA, but there are too many obstacles!
    The examples come with Spartan-3E driver don't cover all peripherals on board (e.g. LAN port is not covered)! There is a declaration at NI website which is "LabVIEW FPGA drivers and examples for all on-board resources" Located at: http://digital.ni.com/express.nsf/bycode/spartan3eI don’t think that is true!
    Anyway, I will try to develop examples for the unsupported peripherals, but if the Pins of these peripherals are not defined in the UCF file, the effort is worthless! The only solution in this case is to develop VHDL code in ISE and use it in Labview FPGA using HDL node!?
    3-      I wonder if NI has any plan to add support for Processor setup in Labview FPGA (Like we do in EDK)?
    4-      I wonder if NI has any plan to develop a driver for Virtex-5 OpenSPARC Evaluation Platform ?http://www.digilentinc.com/Products/Detail.cfm?Nav​Path=2,400,599&Prod=XUPV5 
    Thnaks & regards,Walid
    Solved!
    Go to Solution.

    Thanks for your questions and I hope I can answer them appropriately
    1. LabVIEW FPGA utilizes the intuitive graphical dataflow language of LabVIEW to target FPGA technology. LabVIEW is particularly nice for FPGA programming because of its ability to represent parallelism inherent to FPGAs. It also serves as a software-like programming experience with loops and structures which has become a focus of industry lately with C-to-gates and other abstraction efforts. Here are some general comparison along the vectors you mentioned
    Code Size and speed optimization - LabVIEW FPGA is a programming language. As such, one can program badly and create designs that are too big to fit on a chip and too slow to meet timing. However, there are two main programming paradigms which you can use. The normal LabVIEW dataflow programming (meaning outside a single-cycle loop) adds registers in order to enforce dataflow and synchronization in parity with the LabVIEW model of computation. As with any abstraction, this use of registers is logic necessary to enforce LabVIEW dataflow and might not be what an expert HDL programmer would create. You trade off the simplicity of LabVIEW dataflow in this case. On the other hand, when you program inside a Single-Cycle timed loop you can achieve size and speed efficiencies comparable to many VHDL implementations. We have had many users that understand that way LabVIEW is transformed to hardware and program in such a way to create very efficient and complex systems.
    Development Time - Compared to VHDL many of our users get near infinite improvements in development time due to the fact that they do not know (nor do they have to know) VHDL or Verilog. Someone who knows LabVIEW can now reach the speeds and parallelism afforded by FPGAs without learning a new language. For harware engineers (that might actually have an alternative to LabVIEW) there are still extreme time saving aspects of LabVIEW including ready-made I/O interfaces, Simple FIFO DMA transfers, stichable IP blocks, and visualizable parallism.  I talk to many hardware engineers that are able to drastically improve development time with LabVIEW, especially since they are more knowledgable about the target hardware.
    Compilation Time - Comparable to slightly longer to due to the extra step of generating intermediate files from the LabVIEW diagram, and the increased level of hierarchy in the design to handle abstraction.
    Verification Time - One of our key development initiatives moving forward is increased debugging capabilities. Today we have the abilities to functionally simulate anything included in LabVIEW FPGA, and we recently added simluation capabilities for Imported IP through the IP Integration node on NI Labs and the ability to excite your design with simulated I/O. This functional simualation is very fast and is great for verification and quick-turn design iteration. However, we still want to provide more debugging from the timing prespective with better cycle-accurate simulation. Although significantly slower than functional simulation. Cycle-accuracy give us the next level of verification before compilation. The single cycle loop running in emulation mode is cycle accurate simluation, but we want more system level simulation moving forwrad. Finally, we have worked to import things like Xilinx chipscope (soon to be on NI Labs) for on-chip debugging, which is the final step in the verification process. In terms of verification time there are aspects (like functional simulation) that are faster than traditional methods and others that are comparable, and still other that we are continuing to refine.
    Ability to develop in the future - I am not sure what you mean here but we are certainly continuing to activiely develop on the RIO platform which includes FPGA as the key diffentiating technolgoy.  If you take a look at the NI Week keynote videos (ni.com/niweek) there is no doubt from both Day 1 and Day 2 that FPGA will be an important well maintained platform for many years to come.
    2. Apologies for the statement in the document. The sentence should read that there are example for most board resources.
    3. We do have plans to support a processor on the FPGA through LabVIEW FPGA. In fact, you will see technology on NI Labs soon that addresses this with MicroBlaze.
    4. We do not currently have plans to support any other evaluation platforms. This support was created for our counterparts in the academic space to have a platform to learn the basics of digital design on a board that many schools already have in house. We are currently foccussing on rounding out more of our off-the-shelf platform with new PCI Express R Series boards, FlexRIO with new adapter modules, cRIO with new Virtex 5 backplanes, and more.
     I hope this has anwered some of the questions you have.
    Regards 
    Rick Kuhlman | LabVIEW FPGA Product Manager | National Instruments | ni.com/fpga
    Check out the FPGA IPNet for browsing, downloading, and learning about LabVIEW FPGA IP Cores

  • Why should Adobe Reader fail to print because of settings in the Edit/Preferences?

    AdobeReaderDocumentCouldNotPrint.txt
    Glyn Price Tue 17 March 2015
    Why should Adobe Reader fail to print because of settings
    in the Edit/Preference?
    Adobe Reader XI Version 11.0.10
    MS Window 7
    File > Print > Print
    I got the error message:
    The document could not be printed
    I googled this error message and used the following
    solution that worked i.e. it then printed successfully.
    Edit >  Preferences
    Category: Security(Enhancement)   'Enable Protected  Mode at Startup'
    It was checked, changed it to unchecked.
    Category: Documents    'View documents in PDF/Mode'
    It was set to 'Only for PDF/A'
    Set it to 'Never'
    Exited Adobe Reader and restart it. Then it printed.
    I had a look on another computer system (Adobe Reader XI Version 11.0.10
    and MS Window 7) and on this different computer I could print
    without doing the above two changes.
    I'm a bit puzzled. Why preferences on one system were not
    needed on a different system?

    Here is an elaborate method of troubleshooting this problem. There may be a simpler method if anybody wants to suggest one.
    There is a general technique that is helpful in this situation. I can't give you complete instructions here, and I haven't tested this with regard to bluetooth devices, but here's the gist of it.
    Create a second log-on account for your music projects. Configure it so that when you log in to the new music account, the drivers needed for the Bluetooth devices don't load. You do this in System Preferences: Accounts.
    When it's time to do music, log out of your usual account and onto the new one.
    When you install drivers for any peripheral, you have the option of installing them "for all users" or only for the user account that is active during the installation.
    This governs whether the drivers go in root/library or root/Users/your name/library.
    If drivers are in root/library, they will load whenever the Mac is booted up and will run for all users.
    But if drivers are loaded in root/Users/your name/library, they will only load if you log in as "your name". If you have a second account called root/Users/music account/, and you log in under that, the drivers in "your name" will not load. Get it?
    To get this working right you need to be knowledgeable about moving or deleting files in the /library/ directory and subdirectories, and you need to be careful because you can unwittingly cause some damage if you are not careful.
    There is also the root/System/library directory, and in general you should never mess around with anything in there or you might hose your system.
    In summary, I would start by using the installer programs for your BlueTooth devices and DE-installing all drivers. Reboot. Log back in as your usual user account. Then RE-install each driver and see if the installer program gives you the OPTION to installl for all users or just for this user. Choose the latter. Then log on to your new Music account and see if the problems go away.

  • Can i create production order using process material ?

    Dear All.
    Please help me.
    I want to create production order using process material (material type is PROC).
    For may knowledge, process order is standard for the process material, but my customer want to use the PP module for the process material.
    But I cant convert the planned order of precess material to production order in MD05.
    The system message is "System does not support planned orders for process materials."
    The followings are my test steps.
      1. Master Creation
          - Material Master, BOM, ROUTING
    In standard, process material (Material Type : PROC) need creation of master recipe. But due to my clients need (Using production order
               for the process material), I create the work center and ROUTING
      2. DM Creation
          - In MD61, I create the planned independent requirement (Type : LSF)
      3. Planned order creation for the process material using MRP
          - In MD01, I run the total MRP, the the planned order is created.
            It's order type is "LA"
      4. Converting the planned order to Production Order
          - In this step, the system give the error "System does not support planned orders for process materials."
             and can not do anything.
    I want to know that the above case is possible, and how.
    Please Help meu2026..

    Hi
    First of if yur want to create production order or process order why do you go for material type :PROC.
    you can create the same material as FERT & go ahead.
    I do not understand the logic to select the material type as PROC.
    Pl. go through SAP library where PROC is used.
    Regards
    YMREDDY

Maybe you are looking for