BI - Components ?!

Hello SDNs
How ya all ?
We just had a doubt in a discussion,
What are all the Components bundled BI ?
I have seen the threads which are already existing.
I just require the Components.
Best Regards....
Sankar Kumar
+91 98403 47141

Hello Dinesh,
How r u ?
I am very fine. Nice meeting u @ the SDN Day.
I am asking in the general view, not related with BASIS.
In one of the posts I saw BI includes KM, MDM, SEM & BW, in these BW is the Major Component. Also, later EP and BPS also included into BI term.
Is this statement valid ?
Best Regards....
Sankar Kumar
+91 98403 47141

Similar Messages

  • Alarm status drawing iow: recolour JInternalFrame components

    Greetings,
    Please have a look at this picture. It's a low res snapshot of
    a few quite complicated components. Most of the functionality isn't
    visible nor relevant in the example. What you're looking at is a real time
    process of some sort. Things can go wrong in that process. In a previous
    version of my views I'd turn the background colour of some components
    red/yellow/green according to the 'alarm status' of the process. One of
    my customers suggested the idea of turning everything red/yellow/green
    inside those JInternalFrames (that's what you're looking at in the example).
    Of course one fool can ask more than a dozen of wise men can answer
    and I am not that wise, so my question is: how would one change the
    colour of all components that are part of a JInternalFrame (or any
    other container) such that the colour wouldn't be 100% opague but
    still visible by itself and still showing the information originally present
    in each individual component. iow, as if a transparent monochrome
    filter were positioned in front of that entire JContainer.
    In a naive way I like the idea; if the idea turns out to be too complicated
    to realize I'd be happy with visual alternatives also. (such as big arrows
    pointing to the JContainer where the alarm happened).
    Note that these appliations run in a 'factory' environment where people
    either hardly watch the screens or they watch them at quite a great
    distance. The changing colours should just attract their attention so they
    will walk/run/drive/ride to the screens for a second inspection.
    Any ideas are appreciated.
    kind regards,
    Jos

    Not sure I understand the question, but I keyed in on:
    as if a transparent monochrome filter were positioned in front of that entire JContainer.So maybe you could use a GlassPane:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class GlassPaneTest extends JFrame
        public GlassPaneTest()
            final JComponent glassPane = new JComponent()
                public void paintComponent(Graphics g)
                    g.setColor( getBackground() );
                    g.fillRect(0, 0, getSize().width, getSize().height);
            glassPane.setOpaque( false );
            glassPane.setBackground( new Color(240, 20, 20, 100) );
            setGlassPane( glassPane );
            glassPane.addKeyListener( new KeyAdapter()
                public void keyPressed(KeyEvent e)
                    e.consume();
            glassPane.addMouseListener( new MouseAdapter()
                public void mousePressed(MouseEvent e)
                    e.consume();
            final JButton button = new JButton( "Click Me" );
            button.setMnemonic('c');
            button.addActionListener( new ActionListener()
                public void actionPerformed(ActionEvent e)
                       glassPane.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                       glassPane.setVisible( true );
                       glassPane.requestFocus();
                       Thread thread = new Thread()
                            public void run()
                                try { this.sleep(5000); }
                                catch (InterruptedException ie) {}
                                 glassPane.setVisible( false );
                                 glassPane.setCursor(null);
                    thread.start();
            getContentPane().add(new JLabel("NORTH"), BorderLayout.NORTH );
            getContentPane().add( button );
            getContentPane().add(new JTextField(), BorderLayout.SOUTH);
        public static void main(String[] args)
            GlassPaneTest frame = new GlassPaneTest();
            frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
            frame.setSize(300, 300);
            frame.setLocationRelativeTo( null );
            frame.setVisible(true);
    }The Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/rootpane.html]How to Use Glass Panes shows how you can also do a simple drawing (your arrow?) on the glass pane.

  • DID YOU KNOW?? - ABOUT ADVANCED COMPONENTS IN THE PALETTE??

    <br>
    Hi All,
    DID YOU KNOW??
    The IDE ships with the following Advanced Components in the Palette.
    These advanced components are a set of JavaServer Page markup tags for advanced users. The components have no visual appearance and are useful to developers with experience in JSP and JavaServer Faces technologies.
    * Encoding
    * Faces Action Listener
    * Faces Converter
    * Faces Validator
    * Faces Value Change Listener
    * Faces Verbatim
    * Link
    * Load Bundle
    * Markup
    * Meta
    * Parameter
    * Script
    Lets look at MARKUP component in more detail.
    The MARKUP Component
    You can drag the Markup component Markup component icon from the Palette's Advanced category to the Visual Designer to create a standard HTML tag. The Markup component enables you to insert HTML elements into the JSP page in places that HTML is not permitted.
    When you drop this component on a page in the Visual Designer, you cannot see it on the page until you set the tag property. You can see it in the Outline window and you can select it there to edit its properties in the Properties window.
    Use the tag property to specify the type of HTML element to insert. For instance, to insert an <hr> tag, set the tag property to hr with no angle brackets and select the singleton property .
    To provide compliance with XHTML, if the HTML element you are inserting is a singleton element, you must specify the singleton property, which causes a trailing /> to be generated in the rendered HTML. For example, the <br> element is a singleton element that must be rendered as
    to make it XHTML compliant.
    If you want to specify HTML attributes in addition to id and style for the element you are inserting, use the extraAttributes property.
    Learn more :-
    http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/components/advanced_list.html
    We would like to know the following from you :-
    1) Are you using these Advanced Components in applications you are building? If so How and Where?
    2) Did you face any challenges while using them?
    3) Did you find any special usages/scenarios for using these components?
    Thanks for all your inputs and for joining in the discussion.
    K
    </br>

    What would you like in the documentation? Do you have specific questions about particular components? Do you want examples? What's missing from the online help at http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/components/advanced_list.html?

  • DID YOU KNOW?? - ABOUT DATAPROVIDER COMPONENTS IN THE PALETTE??

    Hi All,
    DID YOU KNOW??
    Practically all applications entail accessing data of some sort, often data stored in a relational database table or some sort of list, such as a vector or an array. Usually you need to read in data from the data source, but many times you have to update that data, too. The Sun Java Studio Creator integrated development environment, as another enhancement to its application model, provides data provider components that simplify accessing data sources, regardless of whether the data source is a relational database table, flat file, web service, vector, array, or some other type of data store.
    A data provider component is a nonvisual abstraction for wrapping sources of data, and it represents a more generic and flexible data binding mechanism. A glance at the Palette indicates that there are many different kinds of data providers available to you. These include data providers for cached RowSets, ResultSets, lists, arrays, maps, table rows, and method results.
    These data providers constitute a layer between a web application's components and its persistence tier, such as a database table, Array object, or Enterprise JavaBean object. This layer enables you to access data in a consistent way, even though data may come from different sources.
    Lets briefly discuss the CachedRowSetDataProvider
    The CachedRowSetDataProvider Component
    A CachedRowSetDataProvider is a wrapper to data held in a CachedRowSet. The primary purpose of a CachedRowSetDataProvider is to facilitate binding to components in the IDE. A CachedRowSet stores the data retrieved from a database. In fact, the only information held by the CachedRowSetDataProvider is a cursor position into the CachedRowSet. Multiple CachedRowSetDataProvider instances can reference the same CachedRowSet, and each instance will have its own cursor position into the CachedRowSet.
    Learn more :-
    Working With Data Providers
    http://developers.sun.com/jscreator/learning/tutorials/2/dataproviders.html
    Data Provider Components in Java Studio Creator
    http://developers.sun.com/jscreator/reference/fi/2/data-providers.html
    Using CachedRowSet and CachedRowSetDataProvider in the Sun Java Studio Creator IDE
    http://developers.sun.com/jscreator/reference/techart/2/insert_row_in_table.html
    We would like to know the following from you :-
    1) Which of the DataProviders are you using in applications you are building? Also How and Where?
    2) Did you face any challenges while using them?
    3) Did you find any special usages/scenarios for using these components?
    4) Do you have any feedback/comments/improvements which you would like to see with using Dataproviders?
    Thank you for all your inputs and for joining in the discussion.
    K

    .

  • Front end components are needed for LSO

    Dear experts,
    We want to implement Training & Eventmanagent in ESS portal. I searched in sdn .But i didn't get proper solution. It seems  from EHP5 onwards these services /iviews are obsolete and TEM is repleced by LSO only.
    for LSO Implementation which Business Package and portal components I need to be installed and which Add on to be installed in Application server.
    our landscape:  portal: NW EP 7.01 ehp2 , ess wda1.50 sp5, mss bp 1.51 sp5
                               R/3-----ECC 6.0 EHP5
    please suggest me regarding  Front end Software Components with SP's for LSO implementation.
    Thanks
    veeranji

    note that
    Usage of the learning solution landscape would be captured in the
    report as a engine metric.  There is no need to set a pricelist and
    a user type.
    All users logging into the SAP systems irrespective of the modules,
    need to be classified under the contractual user types :
    ERP Developer - BA
    ERP Professional user - AX
    ERP Limited Professional user - AY
    depending on the activities of the users matching with the usertype
    definition.
    service.sap.com -> SAP Support Portal -> Downloads -> SAP Support
    Packages -> Support Packages and Patches - Entry by Application Group ->
    SAP Application Components -> SAP ERP -> SAP ERP ENHANCE PACKAGE -> EHP4
    FOR SAP ERP 6.0 / NW7.01 -> Entry by Component -> Portal Content
    Here, you will find the two BPs:
    BP ERP INSTRUCTOR & TUTOR 1.41
    BP ERP TRAINING ADMIN 1.40
    Business Package for Learning (SAP ERP) 1.0 (PE-LSO-LPO)
    and check here
    http://help.sap.com/erp2005_ehp_04/helpdata/en/43/9065e6d9f521a6e1000000
    0a1553f6/frameset.htm

  • What are the major components in class?

    1)     What is the purpose of ‘load-of-program’? When it will be trigger?
    2)     Write the code for displaying the three parameters in single line with the first parameter as mandatory in the selection screen?
    3)     Which event triggered whenever the user call the function BACK, EXIT, CANCEL?
    4)     What are the major components in class?
    5)     What is the functional module is used to get popup screen for ALV reports?
    6)     Which type of pool is used to get drop-down list?
    7)     What is the tcode for creating the variant truncations?
    8)     Is it possible to call LDB’s number of times in same report?
    9)     What are the conditions to use control break statements in our report program?
    10)     What is the use of range statement?
    11)     What is the difference between normal reports and alv reports? With comparing to normal report are there any disadvantages in alv reports?
    12)     What are the components used to suppress the fields in the selection-screen?
    13)     What is the standard program to transport selection screen variants?
    14)     What is the event keyword for defining event block for reporting events?
    15)     What is the specific statement use when writing a drill down report?
    16)     What are the different tools to report data in sap?
    17)     Write the menu path to create a selection text in reports?
    18)     How do we omit the leading zero s while formatting outputs in reports?
    19)     What are the report truncations?
    20)     How do we align selection input in single row?
    21)     How do we suppress the display of input fields on selection screen?

    this forum is not for answering your interview questions...if you stucked with any realtime problem then post...please try to respect forum terms and conditions.
    Thank you.

  • RE : Creation of subcontrating PO - Components details

    Hi Experts,
    I am doing a subcontracting purchase order using BAPI - (Bapi_po_create1). But iam not able to update for the sub components of the materials. So, I opted for the PO creation first using Bapi_po_create1 and then using the FM Bapi_po_change iam changing the sub component details in the structure POCOMPONENTS available. PO is created successfully But still its not getting updated with subcontract details instead the system is bringing some standard values in the place of mat no., quantity, price , unit. but the return message is "Pur order changed".
    Note: For PO change iam passing the PO number generated above and the component details alone. That didnt work. Then I passed the header, Item and schedule details too still the same not geting updated but PO created.
    Please suggest.
    Thanks,
    Karthikeyan.

    Hi Karthi
    Use the below code
    loop at itab1.
    Reset values for next row
        if itab1-row ne gd_currentrow.
          append tab .
          clear tab.
          gd_currentrow = itab1-row.
        endif.
        case itab1-col.
          when '0001'. "PGNAM
            TAB-CO_CODE = itab1-value.
          when '0002'. "RONAM
            TAB-DOC_TYPE = itab1-value.
          when '0003'. "JVLEVEL
            TAB-DOC_DATE = itab1-value.
          when '0004'. "FTTYPE
            TAB-PURCH_ORG = itab1-value.
          when '0005'. "LANG
            TAB-PUR_GROUP =  itab1-value.
          when '0006'. "LTEXT
            TAB-VENDOR = itab1-value.
          when '0007'. "LTEXT
            TAB-PMNTTRMS = itab1-value.
          when '0008'. "LTEXT
            TAB-PO_ITEM = itab1-value.
          when '0009'. "LTEXT
            TAB-sched_line = itab1-value.
          when '0010'. "FTTYPE
            TAB-ACCTASSCAT = itab1-value.
          when '0011'. "FTTYPE
            TAB-ITEM_CAT = itab1-value.
          when '0012'. "FTTYPE
            TAB-MATERIAL = itab1-value.
          when '0013'. "FTTYPE
            TAB-QUANTITY = itab1-value.
          when '0014'. "FTTYPE
            TAB-UNIT  = itab1-value.
          when '0015'. "FTTYPE
           shift itab1-value left deleting leading space.
            TAB-DELIV_DATE = itab1-value.
          when '0016'. "FTTYPE
            TAB-NET_PRICE = itab1-value.
          when '0017'. "FTTYPE
            TAB-ORDERPR_UN = itab1-value.
          when '0018'. "FTTYPE
            TAB-PLANT = itab1-value.
          when '0019'. "FTTYPE
            TAB-STORE_LOC = itab1-value.
             when '0020'. "FTTYPE
            TAB-batch = itab1-value.
             when '0021'. "FTTYPE
            TAB-SD_DOC = itab1-value.
             when '0022'. "FTTYPE
            TAB-SDOC_ITEM = itab1-value.
             when '0023'. "FTTYPE
            TAB-MATERIAL1 = itab1-value.
             when '0024'. "FTTYPE
            TAB-PLANT1 = itab1-value.
             when '0025'. "FTTYPE
            TAB-QUANTITY1 = itab1-value.
             when '0026'. "FTTYPE
            TAB-UNIT1 = itab1-value.
        endcase.
      endloop.
      append tab.
      clear tab.
    sort tab by PO_ITEM sched_line.
    DELETE TAB WHERE PO_ITEM = SPACE.
    DELETE TAB WHERE sched_line = SPACE.
    loop at tab.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-material
          IMPORTING
            OUTPUT = tab-material.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-material1
          IMPORTING
            OUTPUT = tab-material1.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-vendor
          IMPORTING
            OUTPUT = tab-vendor.
      concatenate tab-doc_DATE4(4) tab-doc_DATE2(2) tab-doc_DATE+0(2) into tab-doc_DATE.
      concatenate tab-DELIV_DATE4(4) tab-DELIV_DATE2(2) tab-DELIV_DATE+0(2) into tab-DELIV_DATE.
    header-comp_code    = TAB-CO_CODE.
    header-doc_type     = TAB-DOC_TYPE.
    header-DOC_DATE     = tab-doc_DATE.
    header-creat_date   = sy-datum.
    header-item_intvl   = '10'.
    header-vendor       = TAB-VENDOR.
    header-GR_MESSAGE   = 'X'.
    header-langu        = sy-langu.
    header-pmnttrms     = TAB-PMNTTRMS.
    header-purch_org    = TAB-PURCH_ORG.
    header-pur_group    = TAB-PUR_GROUP.
    header-currency     = 'INR'.
    headerx-comp_code   = c_x.
    headerx-doc_type    = c_x.
    header-DOC_DATE     = c_x.
    headerx-creat_date  = c_x.
    headerx-item_intvl  = c_x .
    headerx-vendor      = c_x.
    headerx-GR_MESSAGE  = c_x.
    headerx-langu       = c_x.
    headerx-pmnttrms    = c_x .
    headerx-purch_org   = c_x.
    headerx-pur_group   = c_x.
    headerx-currency    =  c_x.
    *p_int = p_int + 10.
    wa_item-po_item     = TAB-PO_ITEM.
    wa_item-ACCTASSCAT  = TAB-ACCTASSCAT.
    wa_item-ITEM_CAT    = TAB-ITEM_CAT.
    p_matnr = TAB-MATERIAL.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = p_matnr
    IMPORTING
    output = p_matnr
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    wa_item-material    = p_matnr.
    wa_item-PO_UNIT     = TAB-UNIT.
    wa_item-plant       = TAB-PLANT.
    wa_item-stge_loc    = TAB-STORE_LOC.
    wa_item-quantity    = TAB-QUANTITY.
    wa_item-NET_PRICE   = TAB-NET_PRICE.
    wa_item-BATCH       = TAB-BATCH.
    wa_item-conf_ctrl   = ''.
    wa_item-ACKN_REQD   = ''.
    WA_ITEM-ERS = ''.
    APPEND wa_item TO it_item.
    wa_itemx-po_item     = TAB-PO_ITEM.
    wa_itemx-ACCTASSCAT  = c_x.
    wa_itemx-ITEM_CAT    = c_x.
    wa_itemx-material    = c_x.
    wa_itemx-PO_UNIT     = c_x.
    wa_itemx-plant       = c_x .
    wa_itemx-stge_loc    = c_x .
    wa_itemx-quantity    = c_x .
    wa_itemx-item_cat    = c_x .
    wa_itemx-acctasscat  = c_x .
    wa_itemx-NET_PRICE   = c_x .
    wa_itemx-BATCH       = c_x .
    wa_itemx-conf_ctrl   = 'X'.
    wa_itemx-ACKN_REQD   = 'X'.
    WA_ITEMX-ERS         = 'X'.
    APPEND wa_itemx TO it_itemx.
    wa_POSCHEDULE-PO_ITEM       = TAB-PO_ITEM.
    wa_POSCHEDULE-SCHED_LINE    = TAB-sched_line.
    wa_POSCHEDULE-DELIVERY_DATE = TAB-DELIV_DATE.
    wa_POSCHEDULE-QUANTITY      = TAB-QUANTITY.
    APPEND wa_POSCHEDULE TO it_POSCHEDULE.
    wa_POSCHEDULEx-PO_ITEM       = TAB-PO_ITEM.
    wa_POSCHEDULEx-SCHED_LINE    = TAB-sched_line.
    wa_POSCHEDULEx-DELIVERY_DATE = c_x.
    wa_POSCHEDULEx-QUANTITY      = c_x.
    APPEND wa_POSCHEDULEx TO it_POSCHEDULEx.
    wa_IMEPOACCOUNT-PO_ITEM      = TAB-PO_ITEM.
    wa_IMEPOACCOUNT-SERIAL_NO    = TAB-sched_line.
    wa_IMEPOACCOUNT-SD_DOC       = TAB-SD_DOC.
    wa_IMEPOACCOUNT-ITM_NUMBER   = TAB-SDOC_ITEM.
    APPEND wa_IMEPOACCOUNT TO it_IMEPOACCOUNT.
    wa_IMEPOACCOUNTX-PO_ITEM     = TAB-PO_ITEM.
    wa_IMEPOACCOUNTX-SERIAL_NO   = TAB-sched_line.
    wa_IMEPOACCOUNTX-SD_DOC      = c_x .
    wa_IMEPOACCOUNTX-ITM_NUMBER  = c_x .
    APPEND wa_IMEPOACCOUNTX TO it_IMEPOACCOUNTX.
    wa_POCOMPONENT-PO_ITEM      = TAB-PO_ITEM.
    wa_POCOMPONENT-SCHED_LINE   = TAB-sched_line.
    wa_POCOMPONENT-ITEM_NO      = TAB-sched_line.
    p_matnr1                    = TAB-MATERIAL1.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = p_matnr1
    IMPORTING
    output = p_matnr1
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    wa_POCOMPONENT-MATERIAL       = p_matnr1.
    wa_POCOMPONENT-ENTRY_QUANTITY = TAB-QUANTITY1.
    wa_POCOMPONENT-PLANT          = TAB-PLANT1.
    wa_POCOMPONENT-CHANGE_ID      = 'I'.
    APPEND wa_POCOMPONENT TO it_POCOMPONENT.
    wa_POCOMPONENTX-PO_ITEM        = TAB-PO_ITEM.
    wa_POCOMPONENTX-SCHED_LINE     = TAB-sched_line.
    wa_POCOMPONENTX-ITEM_NO        = TAB-sched_line.
    wa_POCOMPONENTX-MATERIAL       = c_x.
    wa_POCOMPONENTX-ENTRY_QUANTITY = c_x.
    wa_POCOMPONENTX-PLANT          = c_x.
    wa_POCOMPONENTx-CHANGE_ID      = c_x.
    APPEND wa_POCOMPONENTX TO it_POCOMPONENTX.
      endloop.
    CALL FUNCTION 'BAPI_PO_CREATE1'
    EXPORTING
    poheader = header
    poheaderx = headerx
    IMPORTING
    exppurchaseorder = p_pono
    TABLES
    return = return
    poitem = it_item
    poitemx = it_itemx
    POSCHEDULE = it_POSCHEDULE
    POSCHEDULEx = it_POSCHEDULEx
    POACCOUNT = it_IMEPOACCOUNT
    POACCOUNTX = it_IMEPOACCOUNTX
    POCOMPONENTS = It_POCOMPONENT
    POCOMPONENTSX = It_POCOMPONENTX.

  • IDOC for Creation of Production order and also adding components

    Hi ,
    I have a requirement like I get the data from a 3rd party system and using that i have to create production orders and also should be able to add more materials in COMPONENTS part of that Production order. I was looking for a BAPI which can handle this process.
    And also can any one help me by letting me know is there any Message type available for handling this process of Production order creation and Adding extyra components to it.
    I have a  message type LOIPRO (for Production Order) and associated function modle CLOI_MASTERIDOC_CREATE_LOIPRO for creation of master IDoc, but not sure can i handle the Components part in this.
    Please do send replies ASAP, its very urgent.
    Or else atleast suggest me the other ways of doing this .
    Also send me any BDC program if anyone has already developed for this.
    Thanks
    Kumar
    Edited by: Phani Kumar Peddagopu on Mar 19, 2008 6:56 PM

    Resolved .

  • Downloading the 10.6.8 Update Combo v1.1 and it seems stuck at "registering updated components". It's running but I've had "about a minute" left for 30 minutes now

    Trying to download the 10.6.8 Update Combo v1.1 and it seems stuck at "Registering updated components". It's been saying it has "about a minute" left for at least a half hour. What do I do?

    Try downloading it from the Apple site.  Set Safari to download to the desk top:Safari preferences>general>save downloads to desktop.  Download to desktop, and run the installer:
    http://support.apple.com/kb/DL1399

  • Stack file that is generated does not contain any java components

    We are in process of upgrading our ecc6.0 system with ehp4. The enhancement is stuck up in configuration phase for JAVA. Though we have configured Java in solution manager the stack file that is generated does not contain any java components and so the installation is stuck up. Kindly request you to advice us on this issue .
    Attached is the 'Trouble Ticket Report', PREPARE_JSPM_QUEUE_CSZ_01.LOG, and SMSDXML_EA4_20100623144541.375.txt
    ++++
    Trouble Ticket Report
    Installation of enhancement package 1 for SAP NetWeaver 7.0
    SID................: EA4
    Hostname...........: wipro
    Install directory..: e:/usr/sap/EA4
    Upgrade directory..: F:\EHPI\java
    Database...........: Oracle
    Operating System...: NT
    JDK version........: 1.6.0_07 SAP AG
    SAPJup version.....: 3.4.29
    Source release.....: 700
    Target release.....: 700
    Start release SP...: $(/J2EE/StandardSystem/SPLevel)
    Target release SP..: $(/J2EE/ShadowSystem/SPLevel)
    Current usages.....:
    ABAP stack present.: true
    The execution of PREPARE/INIT/PREPARE_JSPM_QUEUE ended in error.
    The stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml contains no components for this system.
    More information can be found in the log file F:\EHPI\java\log\PREPARE_JSPM_QUEUE_CSZ_02.LOG.
    Use the information provided to trouble-shoot the problem. There might be an OSS note providing a solution to this problem. Search for OSS notes with the following search terms:
    com.sap.sdt.j2ee.phases.PhaseTypePrepareJSPMQueue
    com.sap.sdt.ucp.phases.PhaseException
    The stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml contains no components for this system.
    PREPARE_JSPM_QUEUE
    INIT
    NetWeaver Enhancement Package Installation
    SAPJup
    Java Enhancement Package Installation
    ++++++
    PREPARE_JSPM_QUEUE_CSZ_01.LOG>>
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[2.0.7.1006]/>
    <!NAME[F:\EHPI\java\log\PREPARE_JSPM_QUEUE_CSZ_01.LOG]/>
    <!PATTERN[PREPARE_JSPM_QUEUE_CSZ_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %-100l [%t]: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Jun 28, 2010 9:21:23 AM [Info]:                      com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:754) [Thread[main,5,main]]: Phase PREPARE/INIT/PREPARE_JSPM_QUEUE has been started.
    Jun 28, 2010 9:21:23 AM [Info]:                      com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:755) [Thread[main,5,main]]: Phase type is com.sap.sdt.j2ee.phases.PhaseTypePrepareJSPMQueue.
    Jun 28, 2010 9:21:23 AM [Info]:                   com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:409) [Thread[main,5,main]]:   Parameter inputFile=EHPComponents.xml
    Jun 28, 2010 9:21:23 AM [Info]: com.sap.sdt.j2ee.phases.jspm.JSPMQueuePreparatorFactory.createJSPMQueuePreparator(JSPMQueuePreparatorFactory.java:93) [Thread[main,5,main]]: Creating JSPM SP Stack  queue preparator.
    Jun 28, 2010 9:21:24 AM [Info]: com.sap.sdt.ucp.dialog.elim.DialogEliminatorContainer.canBeOmitted(DialogEliminatorContainer.java:96) [Thread[main,5,main]]: Dialog eliminator spStackDialogEliminator allows to omit dialog SPStackLocationDialog
    Jun 28, 2010 9:21:24 AM [Info]:                  com.sap.sdt.util.validate.ValidationProcessor.validate(ValidationProcessor.java:97) [Thread[main,5,main]]: Validatable parameter SP/STACK/LOCATION has been validated by validator RequiredFields.
    Jun 28, 2010 9:21:24 AM [Info]:                  com.sap.sdt.util.validate.ValidationProcessor.validate(ValidationProcessor.java:97) [Thread[main,5,main]]: Validatable parameter SP/STACK/LOCATION has been validated by validator SPStackLocationValidator.
    Jun 28, 2010 9:21:24 AM [Info]: com.sap.sdt.j2ee.phases.jspm.JSPMSpStackQueuePreparator.createQueue(JSPMSpStackQueuePreparator.java:107) [Thread[main,5,main]]: Using SP Stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml.
    Jun 28, 2010 9:21:24 AM [Info]:                   com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParser.parseStackTag(SPXmlParser.java:488) [Thread[main,5,main]]: STACK-SHORT-NAME tag is missing. The CAPTION of the stack will be used as stack name.
    Jun 28, 2010 9:21:24 AM [Info]:                   com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParser.parseStackTag(SPXmlParser.java:582) [Thread[main,5,main]]: PRODUCT-PPMS-NAME tag is missing. The CAPTION of the product will be used as product PPMS name.
    Jun 28, 2010 9:21:24 AM [Info]:                      com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParser.parseSPXml(SPXmlParser.java:424) [Thread[main,5,main]]: Parsing of stack definition file E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml has finished.
    Jun 28, 2010 9:21:24 AM [Error]:                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:863) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Jun 28, 2010 9:21:24 AM [Error]: com.sap.sdt.j2ee.phases.jspm.JSPMSpStackQueuePreparator.createQueue(JSPMSpStackQueuePreparator.java:136) [Thread[main,5,main]]: The stack E:\usr\sap\trans\EPS\SMSDXML_EA4_20100625054857.968.xml contains no components for this system.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:906) [Thread[main,5,main]]: Phase PREPARE/INIT/PREPARE_JSPM_QUEUE has been completed.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:907) [Thread[main,5,main]]: Start time: 2010/06/28 09:21:23.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:909) [Thread[main,5,main]]: End time: 2010/06/28 09:21:24.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:910) [Thread[main,5,main]]: Duration: 0:00:00.781.
    Jun 28, 2010 9:21:24 AM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:911) [Thread[main,5,main]]: Phase status is error.
    ++++++++++++++++++++++
    [stack xml data: version=1.0]
    [SPAM_CVERS]
    ST-PI                         2005_1_7000006
    LSOFE                         600       0015
    SAP_AP                        700       0015
    SAP_BASIS                     701       0003
    SAP_ABA                       701       0003
    SAP_BW                        701       0003
    PI_BASIS                      701       0003
    PLMWUI                        700       0002
    SAP_APPL                      604       0002
    EA-APPL                       604       0002
    SAP_BS_FND                    701       0002
    EA-IPPE                       404       0002
    WEBCUIF                       700       0002
    INSURANCE                     604       0002
    FI-CA                         604       0002
    ERECRUIT                      604       0002
    ECC-DIMP                      604       0002
    EA-DFPS                       604       0002
    IS-UT                         604       0002
    IS-H                          604       0003
    EA-RETAIL                     604       0002
    EA-FINSERV                    604       0002
    IS-OIL                        604       0002
    IS-PRA                        604       0002
    IS-M                          604       0002
    SEM-BW                        604       0002
    FINBASIS                      604       0002
    FI-CAX                        604       0002
    EA-GLTRADE                    604       0002
    IS-CWM                        604       0002
    EA-PS                         604       0002
    IS-PS-CA                      604       0002
    EA-HR                         604       0005
    SAP_HR                        604       0005
    ECC-SE                        604       0002
    [PRDVERS]                                  
    01200314690900000432SAP ERP ENHANCE PACKAGE       EHP2 FOR SAP ERP 6.0          sap.com                       EHP2 FOR SAP ERP 6.0                                                    -00000000000000
    01200314690900000463SAP ERP ENHANCE PACKAGE       EHP4 FOR SAP ERP 6.0          sap.com                       EHP4 FOR SAP ERP 6.0                                                    -00000000000000
    01200615320900001296                                                            sap.com                                                                                +00000000000000
    01200615320900001469SAP ERP ENHANCE PACKAGE       EHP3 FOR SAP ERP 6.0          sap.com                       EHP3 FOR SAP ERP 6.0                                                    -00000000000000
    01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01                                           +00000000000000
    [SWFEATURE]                                                                               
    1                   01200615320900001296SAP ERP                       2005                          sap.com                       SAP ERP 6.0: SAP ECC Server
    19                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Discrete Ind. & Mill Products
    20                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Media
    21                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Utilities/Waste&Recycl./Telco
    23                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Leasing/Contract A/R & A/P
    24                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Retail
    25                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Global Trade
    26                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Financial Supply Chain Mgmt
    30                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Central Applications
    31                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Strategic Enterprise Mgmt
    33                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Human Capital Management
    37                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Oil & Gas
    38                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Catch Weight Management
    42                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Public Sector Accounting
    43                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Insurance
    44                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Hospital
    45                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: SAP ECC Server VPack successor
    46                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: ERecruiting
    47                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Defense & Public Security
    48                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Financial Services
    55                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Oil & Gas with Utilities
    56                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: Defense
    59                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: PLM Core
    69                  01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: EAM config control
    9                   01200615320900003195EHP4 FOR SAP ERP 6.0_NW701    EHP4 FOR ERP 6.0_NW701        sap.com                       EHP4 FOR SAP ERP 6.0 / NW7.01: SAP ESA ECC-SE
    ++++++++++++++++

    Though we have configured Java in solution manager the stack file that is generated does not contain any java components
    You will probably need to update Solution Manager first with a number of corrections so you can get a correctly generated stack file. Depending on your ST400 version in Solution Manager apply collective corrections from "Note 1461849 - MOpz: Collective corrections 24" or "Note 1452118 - MOpz: Collective Corrections 23". They generally deal with these kind of stack file issues.
    Nelis

  • Logical Components and Solution Landscapes - 2 PRD ECC Servers

    When I assign my PRD ECC5 server to Logical Components > SAP ECC > SAP ECC Server > SAP ECC, I select the Product Version as SAP ECC5.
    From the drop down list on Production System, I can see both my ECC 5 PRD's clients listed. I select one client, all OK. Problem is I have 2 Production ECC5's, both to be used in seperate solutions. So I can only select ONE of these,
    How can I use 2 ECC5 Production systems in Logical Components, or does it need to be configured differently?
    Thanks,
    Derek

    hi Derek,
    you can create more than one logical component under ECC. Just name it something like ZECC2 and the define the systems for this logical component. You can then use the logical component in your project system landscapes.
    To add a new one just right click on the text SAP ECC Server and select Create Logical Component.
    regards,
    Jason

  • AE CS6 won't export MP4. "Some of the required components could not be found."

    After Effects CS6 (from Production Premium) running on 64-bit Windows 7 Enterprise SP1.
    Processor: Intel Core i7-3930K CPU @ 3.20GHz
    AMD Radeon HD 7900 Series video card
    64 Gb Corsair Ram (DDR3)
    Quicktime 7.7.4 Installed
    Currently attempting to export a short (2 second) video based on the predefined "H.264" preset with the only alterations being that I want the VBR 1 Pass to target 3.5Mbs (though I've changed this with no difference in outcome) and I want the video to multiplex as MP4. I immediatley get the error prompt: "Some of the required components could not be found."
    *Just tried using the 3GPP multiplexer and received the same error message. If I try to use the MPEG4 format I get an "unknown exception" error.*
    I've exported literally hundreds of items as H.264 with a MP4 multiplexer on this machine with current hardware and software. And now...no dice. After Effects boots correctly (or at least it seems that way) though I think it takes a little longer than it used to (not sure if the system cache just needs to be rebuilt).
    After Effects CS6 has all available Adobe updates. Quicktime 7.7.4 is also up-to-date. Video Card driver is up-to-date.
    What could be going on? I'd prefer to skip re-installing this program. I've had to do this numerous times already with this suite throughout the past 12 months; really getting sick of the down-time during reinstall. Worth noting that I have closed the program, closed all programs, restarted computer multiple times.
    I am currently going through my Adobe program files for After Effects. I am specifically looking through the 'Support Files' directory. A couple interesting things: 1. My 'MediaIO->Codecs' directory was last updated on 11/8/2013 (perhaps an AE update??) but each of the files within said directory have a last modified date of late September. Did something get wrongfully deleted in the hypothetical update? 2. In 'Media Core plugins->Common' I again have a last modified date of 11/8/2013, but again each of my files within the common directory were last modified late September. I have many expected .prm files but NO ImporterMPEG4.prm; should I have a MPEG4 specific importer file, or does the MPEG importer file do all of the work. Also, I have no ExporterMP4 (or anything of the MPEG, MPEG2, MPEG4 flavor). Should I have one of these?
    Don't know if this last paragraph helps at all but my fingers are crossed.

    Thanks Katrina for all your help.
    I talked to an Apple tech support person. Actually, my call had to be elevated to the next support level. Joy. You are correct, there are multiple listings of the files in the error report even though there is only one copy.
    The support person had me do a few things. Here is what eventually seems to fix things:
    1) For the mp3's that DID copy but were listed as not found... Some files were duplicated so deleting the duplicate with the "!" was an easy fix. I found one file that I could search by song name in iTunes but could not find it by song name search on the iPod. Looking at the iPod playlist I found the file listed by the filename (not song name) and the file played fine. Then in iTunes I double clicked on the song name ("!" showing) and selected locate. I then pointed to the location on the NAS. Resync and now the name of the song on the iPod changed from filename to song name. The file was no longer listed in the error report.
    2) For the m4a files that didn't sync... the problem songs appeared three times in a search in iTunes. Two of the listings showed the "!" next to the name. I deleted these two for each song that didn't sync and all transferred fine afterward.
    Perhaps there is an issue with ID3 tags since I use filenames more than tags in organization. Still, I would think that iTunes would not get so confused or be a little more friendly with its errors, especially considering how long its been around.
    Thanks again for your help. Looks like I have a manual way to correct this issue.

  • I've installed CS6 and web Premium on a Mac running 10.9.5, and Dreamweaver,Flash and Illustrator wont launch.  All other components work normally.  In Activity monitor it says Adobe switchboard failed to respond.  Can anyone help solve this issue?

    I've installed CS6 and web Premium on a Mac running 10.9.5, and Dreamweaver,Flash and Illustrator wont launch.  All other components work normally.  In Activity monitor it says Adobe switchboard failed to respond.  Can anyone help solve this issue?

    Release: 4/25/2012
    http://support.amd.com/us/gpudownload/windows/Pages/radeonmob_win7-64.aspx

  • Can not see the menu of New Business Components Package in jdeveloper

    I am just follow the developer guide.
    and when I create the Business Components Package, the guide said that
    ========================================
    In the JDeveloper Navigator, select the OA Project where you want to create your package.
    From the main menu, choose File > New to open the New Object Gallery.
    In the Categories tree, expand the Business Tier node, and select Business Components (BC4J).
    In the Items list, select Business Components Package to open the Business Components Package Wizard. You can also right-click on the OA Project and select New Business Components Package to navigate directly to the Business Components Package Wizard.
    =====================================
    In fact I can not see the menu about Business Components (BC4J) in the File/new/buisness tier/Business Components (BC4J).
    I can only see the File/new/buisness tier/ADF Business Components.
    And can not find the "Business Components Package" under ADF Business Components either.
    I am using the JDev Extension for OA (p5856648_R12_GENERIC.zip) and EBS 12.0.0.
    And I create an OA Workspace and OA Project.
    can anyone help?

    James,
    Use search facility on forum. Chk thread Re: OAF Toolbox Tutorial Help - Search
    --Shiv                                                                                                                                                                                                                                                                       

  • [PI 7.11 SP3] PI components not correctly registering themselves after AS restart

    Hi Experts,
    We have planned a system backup shutdown and restart every night for our PI environment.
    In a random manner, some PI components as XI AF or Integration Directory are not correctly registered to SLD after that restart : for example, Integration Directory registers but it is not assigned to a PI domain.
    It is good to mention that PI instance is actually using its own SLD (local SLD) for registration.
    When the problem occurs, I follow sap note 1117249 to manually register PI components within SLD and this solves the issue.
    But the definitive solution will be to avoid incomplete SLD registration at restart … But I have not yet found any sap note for that kind of solution.
    Il someone can help J
    Thanks a lot
    Nadir

    Hey Caio,
    Thanks for the response but it doesn't actually answer my question.  But to that point, for a "basic" PI post install, which of the NWA config tasks would you run other than the "initial config" ?  And would you run them BEFORE you updated the SLD content (cimsap/CRDelta) ?
    NW: PI - AS ABAP (Basic Configuration for Idoc, Proxy): Maintain
    PI Adapter Engine in JPR Mode
    PI Demo Client
    PI Full Qualified Host Name
    PI Self Test for NetWeaver
    PI SLD Self Registration
    Specifically, I did the SAPINST - ABAP/JAVA patches - Client copy - and THEN the initial config wizard (Setup a new local SLD, ).  Also, during the initial config, I clicked the box marked "This SLD will be used as a name server for development" and my PI server hostname was already in the box  marked "object server name".  This config took about 30 minutes.  I didn't see any errors or warnings.  although I didn't view the log.  I did go into Java JEE services and Filter for Services with name "XPI".  All were green.
    THEN I tried to update the SLD content.
    any thoughts appreciated.
    NICK

  • SAP SP necessária para suportar os componentes para o SAP GRC NFE 1.0 no XI

    oi,
    Como estamos atualizando as nossas caixas de XI de SAP XI SAP PI 3.0 para 7,11, verificando o SLD notamos que Nota Fiscal componente de software está disponível. Assim, a pergunta é o que é que os Service Packs do sistema fonte precisa ter, a fim de fornecer todos os componentes necessários para a NF-e?
    temos dois sistemas de fonte da qual enviamos os dados para XI, você pode sugerir o que é o pacote de serviços adequados para apoiar SAP GRC NFE 1.0 no XI
    1> 6,0 SAP ECC, SP, 14
    EHP 2, Nível 2
    PI_Basis = 2005_1_700, Level 14
    ST = PI 2008_1_700 Nível 2
    2> 6,0 SAP ECC, EHP 4
    Muito obrigado

    Ola, vi o seu e-mail mas resolvi responder por aqui!
    Na realidade, se voce for realmente trabalhar com o GRC, dependendo da secretaria da fazenda que voce ira trabalhar aconselhor que voce aplique o sp15 no grc, consule SAP Note 1487119, nessa nota haverao todos os procedimentos necessarios.
    Como haviamos falado anteriormente por e-mail, seria necessario, caso vc realmente queira trabalhar com o GRC a aplicacao de algumas notas tecnicas no proprio GRC.
    1477834     XML Layout Version 2.00: Missing parameters in NF-e BAdI
    1487119     SAPK-10015INSLLNFE: Support Package 15 for SLL-NFE
    1496216     Rejection of NFe because of wrong data type of date fields
    1499921     Problem with validation after implementing SP15
    1498700     Problem on signing NF-e
    1497767     Fill field qTrib for new layout version 2.0
    1500046     Upgrade validation rule for field ID for version 2.0
    1500742     Adjust validation for field NADICAO and NSEQADIC layout 2.00
    1501545     Problems in trying to see a XML in the IE
    1502612     Select the NFe Status Check Service for Incoming B2B message
    1502217     Extend validation rules for <DI>/<adi>, layout 2.00
    Sem mais, precisando me mais ajuda avise

Maybe you are looking for

  • New to Verizon and 50 monthly prepay plan

    Okay, I understand when the next payment for prepay is the 16th of Dec. BUT, I don't understand when on "My Verizon" it says next payment due 2/16/12?  I have a balance in my account to cover next months prepay plan.  Also, will they take it out auto

  • Set af:outputText height

    I'm trying to set height of af:outputText with inlineStyle="height:20px" but it doesn't react at all! I tried doing this in my .css file, no change again. In the css file, setting .AFFieldText{ height:20px changes every inputText, LOV, DateFields to

  • Counting non null values

    I have a column of data and there are values and nulls how would I count just the values on a summary? Everything I have tried give me the total number of rows not the non null values..... tia Rose

  • Boot Camp Related Question - Somewhat

    Hello there. I just made this account forum-usable, so I hope I posted this in the right place. I just purchased a MacBook, the new aluminum unibody 2.4 Ghz model, and upgraded the memory from 2GB to 4GB. However, I was just wondering about Boot Camp

  • How to solve iphone4 locked on IOS5 if NO SERVICE detected

    my iphone4 after update IOS5 get NO SERVICE & Stuck to set Location & Carrier Service what can i do? help me.. sorry my english is broken. tq friend