Creating a Simple Newspaper Grid

What is the best and simplest way to create newspaper type grid?   Especially, whether I should use a CSS box layout or a table?  Where can I get to see some examples an idiot could get their brain round?
I am not too keen to buy or build a full blown CMS - or at least not at the moment but I may want to later.
I could live with same size rows and columns and will want to get a good bit smarter as I ascend the learning curve.   My CSS skills are at present a bit limited but if I can see some examples I can understand that would help enormously.
My ideal would in the end be to create a full blown CMS where people can submit articles or links which an editor can choose whether or not to publish and where to place the content. But that would be a lot of work and a long term project.

Copy and paste the following into a new document and view it in your favourite browser
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="bootstrap/3/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="bootstrap/3/css/bootstrap-theme.min.css" />
<script type="text/javascript" src="ScriptLibrary/jquery-latest.pack.js"></script>
<script type="text/javascript" src="bootstrap/3/js/bootstrap.min.js"></script>
<style>
.three-col { 
    -moz-column-count: 3; 
    -moz-column-gap: 20px; 
    -webkit-column-count: 3; 
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px; 
</style>
</head>
<body>
<div class="container">
    <div class="row">
        <div class="col-sm-3">
            <h2>Sidebar</h2>
            <p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
        </div>
        <div class="col-sm-9">
            <div class="row">
                <div class="col-sm-3">
                    <h2>Heading</h2>
                    <p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
                </div>
                <div class="col-sm-6">
                    <h2>Heading</h2>
                    <img alt="mypic" class="img-responsive" src="http://lorempixel.com/360/280/" /> </div>
                <div class="col-sm-3">
                    <h2>Heading</h2>
                    <p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
                </div>
            </div>
            <hr>
            <div class="row">
                <div class="col-sm-12">
                    <p class="three-col">I could live with same size rows and columns and will want to get a good bit smarter as I ascend the learning curve.   My CSS skills are at present a bit limited but if I can see some examples I can understand that would help enormously.</p>
                </div>
            </div>
        </div>
    </div>
</div>
</body>
</html>

Similar Messages

  • Need simple ALV Grid prgm with interactive

    Hi experts,
    pls anyone provide some sample code for simple alv grid for the study purpose.
    i want to knw how the Interactive alv works, how to display some header details like company name and address in the top of the grid.

    hi,
    check this programme..
    Display a Secondary List using ALV Grid
    To display a secondary list when you click on one of the row items in an alv grid. The secondary list should also be an alv.
    Try out this code. You will have to make a structure ZSTR same as the output internal table.
    REPORT ZTEST_REP1 .
    TABLES : MARA,
             BHDGD,
             zstr.
    TYPES:     BEGIN OF T_MARA,
                  MATNR LIKE MARA-MATNR,
                  ERNAM LIKE MARA-ERNAM,
               END OF T_MARA.
    CLASS LCL_EVENT_RECEIVER DEFINITION DEFERRED.
    *Constants for ALV Implementation
    CONSTANTS:  C_SET                        VALUE 'X',
                C_RESET                      VALUE '0',
                C_SAVE                       VALUE 'A',
                C_EXIT(4)                    VALUE 'EXIT',
                C_BACK(4)                    VALUE 'BACK',
                C_CANC(4)                    VALUE 'CANC',
                C_PGTOP(5)                   VALUE 'PGTOP',
                C_PGUP(4)                    VALUE 'PGUP',
                C_PGDN(4)                    VALUE 'PGDN',
                C_PGEND(5)                   VALUE 'PGEND'.
    DATA : I_MARA TYPE STANDARD TABLE OF T_MARA WITH HEADER LINE,
         Internal table for fields catalouge
           I_FIELDCAT TYPE LVC_T_FCAT WITH HEADER LINE,
          i_fieldcat2 type lvc_t_fcat with header line,
         Internal table for cursor position
           I_GT_SELROWS TYPE LVC_T_ROW .
    DATA : WA_MARA LIKE I_MARA,
           WA_GRIDROW LIKE LVC_S_ROW,
           WA_GRIDCOL LIKE LVC_S_COL.
    *Data for ALV Implementation.
    DATA:  OK_CODE       LIKE SY-UCOMM,
           W_OK_CODE     LIKE SY-UCOMM,
           W_CALL        TYPE I VALUE 1,
           W_TAB         LIKE SY-UCOMM VALUE 'TAB1',
           W_SAVE,                                 "For Parameter I_SAVE
           W_VARIANT     TYPE DISVARIANT,          "For parameter IS_VARIANT
           W_GRID        TYPE REF TO CL_GUI_ALV_GRID,
          w_grid1       type ref to cl_gui_alv_grid,
           W_CONTAINER  TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
          w_container1  type ref to cl_gui_custom_container,
           W_REPID       LIKE SY-REPID,
           W_GS_PRINT    TYPE LVC_S_PRNT,
           W_GS_LAYOUT   TYPE LVC_S_LAYO,
           W_EVENT_REC   TYPE REF TO LCL_EVENT_RECEIVER,
           W_CONT_MAIN   TYPE SCRFNAME VALUE 'CCCONTAINER',
           W_LN          TYPE I,                            "line number
           W_INDEX       LIKE SY-TABIX,
           W_FLAG,
           W_TEMP_VAL    TYPE I.
    Definition:
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
        METHODS:
        HANDLE_TOP_OF_PAGE
            FOR EVENT PRINT_TOP_OF_PAGE OF CL_GUI_ALV_GRID,
        HANDLE_DOUBLE_CLICK
            FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID
                    IMPORTING E_ROW E_COLUMN.
    ENDCLASS.
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_TOP_OF_PAGE.
        PERFORM F_GET_HEADER.
      ENDMETHOD.                           "handle_top_of_page
      METHOD HANDLE_DOUBLE_CLICK.
      The event DOUBLE_CLICK provides parameters for row and column
      of the click. We use row parameter to select a line of the
      corresponding internal table.
      read selected row from internal table
          READ TABLE I_MARA INDEX E_ROW-INDEX INTO WA_MARA.
          IF SY-SUBRC <> 0.
           message i001. " Cursor position not correct.
          ELSE.
          call dialog screen and display the details
            call screen 200 starting at 10 5.
          ENDIF.
      ENDMETHOD.                           "handle_double_click
    ENDCLASS.
    start-of-selection.
    START-OF-SELECTION.
    SELECT MATNR ERNAM FROM MARA INTO TABLE I_MARA.
    End-of-Selection.
    END-OF-SELECTION.
    Start of ALV part.
      W_REPID = SY-REPID.
      W_VARIANT-REPORT = W_REPID.
      W_SAVE = C_SAVE.
      W_CONT_MAIN = W_CONT_MAIN.
      W_GS_LAYOUT = W_GS_LAYOUT.
      W_GS_PRINT  = W_GS_PRINT.
      I_FIELDCAT  = I_FIELDCAT.
      CALL SCREEN 100.
    *&      Form  f_get_header
          text
    -->  p1        text
    <--  p2        text
    FORM F_GET_HEADER.
      DATA: L_LINE1 LIKE BHDGD-LINE1,
            L_LINE2 LIKE BHDGD-LINE2.
      CONSTANTS LC_SPACE VALUE ' '.
      DATA: L_F1(7), L_F2(11), L_F3(9), L_F4(6), L_F5(11), L_F6(4), L_F7(8),
            L_F8(4),L_F9(10), L_F11(11), L_F12(24), L_F13(4),
            L_F14(3).
    take the values of line1 and line2 into two new variables, otherwise
    after coming back to the first screen from the print preview, the
    header shows the condensed lines
      L_LINE1 = BHDGD-LINE1.
      L_LINE2 = BHDGD-LINE2.
      CONDENSE L_LINE1.
      CONDENSE L_LINE2.
    *split the lines to display the whole lines within the
    *stipulated report-width
    SPLIT L_LINE1 AT LC_SPACE INTO L_F1 L_F2 L_F3 L_F4 L_F5 L_F6 L_F7 L_F8
                                        L_F9 .
      SPLIT L_LINE2 AT LC_SPACE INTO L_F11 L_F12 L_F13 L_F14.
      L_F14 = SY-PAGNO.
        WRITE:/1 L_F1, 9 L_F2, 40 L_F3, 50 L_F4, 57 L_F5, 88 L_F6, 93 L_F7 ,
               103 L_F8 , 108 L_F9 .
        WRITE:/1 L_F11, 40 TEXT-012, 78 L_F12, 103 L_F13, 108 L_F14.
    ENDFORM.                    " f_get_header
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'STAT'.
      SET TITLEBAR 'TITL'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM .
        WHEN C_EXIT OR C_BACK OR C_CANC.
          IF NOT W_CONTAINER  IS INITIAL.
            CALL METHOD W_CONTAINER->FREE.
          ENDIF.
          LEAVE TO SCREEN 0.
        WHEN C_PGTOP.
          WA_GRIDROW-INDEX = 1.
        WHEN C_PGUP.
          IF WA_GRIDROW-INDEX <= 15.
            WA_GRIDROW-INDEX = 1.
          ELSE.
            WA_GRIDROW-INDEX = WA_GRIDROW-INDEX - 15.
          ENDIF.
        WHEN C_PGDN.
          PERFORM F_GET_NO_ROWS.
          W_TEMP_VAL = W_LN - WA_GRIDROW-INDEX.
          IF W_TEMP_VAL < 15.
            WA_GRIDROW-INDEX = W_LN.
          ELSE.
            WA_GRIDROW-INDEX = WA_GRIDROW-INDEX + 15.
          ENDIF.
        WHEN C_PGEND.
          PERFORM F_GET_NO_ROWS.
          WA_GRIDROW-INDEX = W_LN.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  f_get_no_rows
          text
    -->  p1        text
    <--  p2        text
    FORM F_GET_NO_ROWS.
        DESCRIBE TABLE I_MARA  LINES W_LN.
    ENDFORM.                    " f_get_no_rows
    *&      Module  DISPLAY_0100  OUTPUT
          text
    MODULE DISPLAY_0100 OUTPUT.
      IF NOT WA_GRIDROW IS INITIAL
      AND NOT WA_GRIDCOL IS INITIAL.
        CALL METHOD W_GRID->SET_SCROLL_INFO_VIA_ID
          EXPORTING
            IS_ROW_INFO = WA_GRIDROW
            IS_COL_INFO = WA_GRIDCOL .
        CALL METHOD W_GRID->SET_CURRENT_CELL_VIA_ID
          EXPORTING
            IS_ROW_ID = WA_GRIDROW
            IS_COLUMN_ID = WA_GRIDCOL .
      ENDIF.
      CALL METHOD W_GRID->GET_SCROLL_INFO_VIA_ID
      IMPORTING
        ES_ROW_INFO = WA_GRIDROW
        ES_COL_INFO = WA_GRIDCOL .
      CALL METHOD W_GRID->GET_SELECTED_ROWS
        IMPORTING
          ET_INDEX_ROWS = I_GT_SELROWS[].
    Build the fieldcat according to structure
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
           EXPORTING
                I_STRUCTURE_NAME = 'ZSTR'
           CHANGING
                CT_FIELDCAT      = I_FIELDCAT[].
      LOOP AT I_FIELDCAT.
        W_INDEX = SY-TABIX.
        CASE I_FIELDCAT-FIELDNAME.
          WHEN 'MATNR'.
            I_FIELDCAT-SCRTEXT_S = 'MATNR'.
            I_FIELDCAT-KEY       = ' '.
            I_FIELDCAT-COL_POS   = '1'.
          WHEN 'ERNAM'.
            I_FIELDCAT-SCRTEXT_S = 'ERDAT'.
            I_FIELDCAT-OUTPUTLEN = '18'.
            I_FIELDCAT-COL_POS   = '2'.
        ENDCASE.
        MODIFY I_FIELDCAT INDEX W_INDEX.
      ENDLOOP.
      READ TABLE I_FIELDCAT INDEX 1 .
      IF W_CALL = 1.
        PERFORM F_STD_HEADER.
        CALL METHOD W_GRID->SET_TABLE_FOR_FIRST_DISPLAY
                          EXPORTING
                            IS_VARIANT                    = W_VARIANT
                            I_SAVE                        = W_SAVE
                          CHANGING
                            IT_OUTTAB                     = I_MARA[]
                            IT_FIELDCATALOG               = I_FIELDCAT[]
                         EXCEPTIONS
                           INVALID_PARAMETER_COMBINATION = 1
                           PROGRAM_ERROR                 = 2
                           OTHERS                        = 3.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          EXIT.
        ENDIF.
        CREATE OBJECT W_EVENT_REC.
        SET HANDLER W_EVENT_REC->HANDLE_TOP_OF_PAGE FOR W_GRID.
        CREATE OBJECT W_EVENT_REC.
        SET HANDLER W_EVENT_REC->HANDLE_DOUBLE_CLICK FOR W_GRID.
        W_FLAG = C_RESET.
        CALL METHOD CL_GUI_CONTROL=>SET_FOCUS EXPORTING CONTROL = W_GRID.
        W_CALL = 0.
      ENDIF.
    ENDMODULE.                 " DISPLAY_0100  OUTPUT
    *&      Form  f_std_header
          text
    -->  p1        text
    <--  p2        text
    FORM F_STD_HEADER.
    ENDFORM.                    " f_std_header
    *&      Module  DYNPRONR_CHECK_500  OUTPUT
          text
    MODULE DYNPRONR_CHECK_500 OUTPUT.
    if w_dynpronr is initial.
       w_dynpronr = '0100'.
    endif.
      ENDMODULE.                 " DYNPRONR_CHECK_500  OUTPUT
    *&      Module  create_objects_0100  OUTPUT
          text
    MODULE create_objects_0100 OUTPUT.
      check w_container is initial .
      create object w_container
        exporting
           container_name = 'CC'.
      create object w_grid
        exporting
           i_parent = w_container.
      w_flag = c_set.
      w_flag = w_flag.
    ENDMODULE.                 " create_objects_0100  OUTPUT
    *&      Module  STATUS_0200  OUTPUT
          text
    MODULE STATUS_0200 OUTPUT.
      SET PF-STATUS 'ST20'.
      SET TITLEBAR '200'.
      zstr-matnr    = wa_mara-matnr.
      zstr-ernam    = wa_mara-ernam.
    ENDMODULE.                 " STATUS_0200  OUTPUT
    *&      Module  USER_COMMAND_0200  INPUT
          text
    MODULE USER_COMMAND_0200 INPUT.
      move ok_code to w_ok_code.
      clear ok_code.
      case w_ok_code.
        when c_back or c_exit or c_canc.
          leave to screen 0.
      endcase.
      clear w_ok_code.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    *-- End of Program
    Regards,
    Deepthi.

  • Error while creating a simple trigger in Oracle8i Lite

    Hi,
    I have Oracle8i Lite release 4.0.
    I want to create a simple trigger on 8i Lite.
    first I created .java file and got the .class file after successful compilation.
    The .class file is sitting in my local C:\ drive.
    I have a table having only two columns in 8i Lite and the structure is
    TABLE : SP
    ACC_NO NUMBER,
    ACC_DESC VARCHAR2(20)
    Then I issued the command :
    SQL> ALTER TABLE SP ATTACH JAVA SOURCE "JournalInst" in '.';
    After that getting the following error :
    alter table sp attach java source "JournalInst" in '.'
    ERROR at line 1:
    OCA-30021: error preparing/executing SQL statement
    [POL-8028] error in calling a java method
    Following is the cause/action for the error code :
    POL-8028 Error in calling a Java method
    Cause: Most commonly refers to a problem when converting between Java and Oracle Lite datatypes.
    Action: Check the calling parameters.
    I can't understand where I am wrong ?
    Could anybody help me out ?
    Here is my source code of .java file
    import java.lang.*;
    import java.sql.*;
    class JournalInst {
    public void INSERT_JOURNAL(Connection conn, double AccNo, String AccDesc)
    System.out.println("Record Inserted for :"+AccNo +" "+AccDesc);
    Thanks in advance for solutions.
    Sarada
    null

    I just started with 8i Lite, but as far as I know 8i Lite does not support PL/SQL code.
    So you have to write your triggers and stored procedures in Java.
    Ciao

  • Error while creating a simple function, procedure or triger in Oracle8i Lite

    Hi,
    I have Oracle8i Lite release 4.0.
    While creating a simple proceudre/function/trigger on the database, it's throwing the following error:
    create or replace function test return number is
    ERROR at line 1:
    OCA-30021: error preparing/executing SQL statement
    [POL-5228] syntax error
    Here is my sample code.
    create or replace function test return number is
    begin
    return 0;
    end;
    Tried to create the same function in the user SYSTEM too but got the same error message.
    Thanks in advance for the soluton.
    null

    I just started with 8i Lite, but as far as I know 8i Lite does not support PL/SQL code.
    So you have to write your triggers and stored procedures in Java.
    Ciao

  • Can't create a "simple" group/course - and no upload

    Hi all,
    I'm quite new to this task of managing iTunesU for my institution (ICTP, www.ictp.it), and we just got admitted to the iTunesU platform since few days, so please bear with my poor experience (but I'm carefully reading the guides provided by Apple).
    Now... I've had no problem in creating/editing a few test pages/groups/courses, but I'm not able at all to create a "simple" group course, the edit menu only lead me to the two options: "smart" and "feed". And I cannot find the tool menu item to do the "Upload and Manage Files" (I guess it doesn't appear because there are no simple groups, the only ones that can accept manual uploads, am I right?).
    Just to explain better: of course I'll eventually implement a transfer script to upload our videos (I'm working on re-encoding some thousands hours of lectures...), but for now I would like to make some preliminary tests, and upload manually a few videos. What am I doing wrong?
    Is it possible that maybe our approval is still pending, and I'm not allowed to upload anything? But I can edit the site (but not publish it).
    I tried both interfaces, the iTunes.app native and the web one (the "iTunesU Public Site Management" on phobos.apple.com):
    the former is more complete but is missing upload option and "simple" group course creation, while the latter gives me only tools to edit the graphic appearance of the main page (banner, styles, etc...).
    thank you for any help, it will be appreciated very much!
    Carlo,
    Trieste (Italy)

    I think I've found the answer by myself in this thread:
    https://discussions.apple.com/thread/2018158?threadID=2018158&tstart=0
    Unfortunately, it's not the answer I was hoping for... apparently the option to store contents in Apple's servers isn't available anymore for newcomers to iTunesU.
    Now I have to manage a way to do local storage and RSS feeds, new challenge!
    Hope this may help others,
    Carlo.

  • I am trying to create a simple animated gif in Photoshop. I've set up my frames and want to use the tween to make the transitions less jerky. When I tween between frame 1 and frame 2 the object in frame two goes out of position, appearing in a different p

    I am trying to create a simple animated gif in Photoshop. I've set up my frames and want to use the tween to make the transitions less jerky. When I tween between frame 1 and frame 2 the object in frame two goes out of position, appearing in a different place than where it is on frame 2. Confused!

    Hi Melissa - thanks for your interest. Here's the first frame, the second frame and the tween frame. I don't understand why the tween is changing the position of the object in frame 2, was expecting it to just fade from one frame to the next.

  • Is There A Way To Create A Simple File/Folder Tree...

    Hi,
    Please forgive me if this has already been covered but I have searched and found no answer...
    I am trying to create a web page to run on my local network, through iweb and apache, and have got everything I need working except this. I aim to be able to access my work files (masses of word documents and power-points) through the website but I can see no obvious way of doing this through iweb (short of adding individual hyperlinks to each file). Is there a tool or process I can use to create a simple folder tree in html that I can add to my site that lists all my files and allows my to "save target as" in windows (our college techie is still devoted to windows) ?
    Thanks in advance for any help...
    KP

    If you wanted to send a video as an mms from a mobile phone, the best option for exporting would be 3G in the quicktime export menu ( File > Export and it's in the drop down list).
    Keep it short and small and you shouldn't have any probs. There are some miserly operators out there who block MMSs bigger than 100K

  • How can i create a simple netweaver portal page that shows text and images?

    Hi,
    i have a simple question or maybe it's not so simple.
    I am completly new to SAP Netweaver 2004s Portal. At the moment i'm trying to understand the struture of the whole thing. I already know how to create roles, worksets and pages and i know how to combine the different elements so a user can acces them.
    And now i want to create a simple portal page that shows text and images. Is it possible to create such a simple page with the portal content studio? What iView do i have to use?
    (I just want to create a start page with a welcome text on it.)

    Marc
    Considering that you would any ways go ahead with complex development from this simple start page I recommend create a Web dynpro Iview for your start page (include the Iview in your page).
    For putting the contents use Netweaver Developer studio to build a simple start page application and put your static text on that Iview.
    Please go through the following log after your NWDS development is over - This will make you comfortable for further challenging work.
    http://help.sap.com/saphelp_erp2005/helpdata/en/b7/ca934257a5c96ae10000000a155106/frameset.htm
    Do reward points if this helps and let me know of you want anything more.

  • How to create a simple idoc in practice? can you provide an example?

    how to create a simple idoc in practice? can you provide an example with full source code?

    Try with the follwoing steps
    Sending System(Outbound ALE Process)
    Tcode SALE „³ for
    a) Define Logical System
    b) Assign Client to Logical System
    Tcode SM59-RFC Destination
    Tcode BD64 ¡V Create Model View
    Tcode BD82 ¡V Generate partner Profiles & Create Ports
    Tcode BD64 ¡V Distribute the Model view
    This is Receiving system Settings
    Receiving System(Inbound ALE )
    Tcode SALE „³ for
    a) Define Logical System
    b) Assign Client to Logical System
    Tcode SM59-RFC Destination
    Tcode BD64 ¡V Check for Model view whether it has distributed or not
    Tcode BD82 -- Generate partner Profiles & Create Ports
    Tcode BD11 Getting Material Data
    Tcode WE05 ¡V Idoc List for inbound status codes
    Message Type MATMAS
    Tcode BD10 ¡V Send Material Data
    Tcode WE05 ¡V Idoc List for watching any Errors
    1)a Goto Tcode SALE
    Click on Sending & Receiving Systems-->Select Logical Systems
    Here Define Logical Systems---> Click on Execute Button
    go for new entries
    1) System Name : ERP000
    Description : Sending System
    2) System Name : ERP800
    Description : Receiving System
    press Enter & Save
    it will ask Request
    if you want new request create new Request orpress continue for transfering the objects
    B) goto Tcode SALE
    Select Assign Client to Logical Systems-->Execute
    000--> Double click on this
    Give the following Information
    Client : ERP 000
    City :
    Logical System
    Currency
    Client role
    Save this Data
    Step 2) For RFC Creation
    Goto Tcode SM59-->Select R/3 Connects
    Click on Create Button
    RFC Destination Name should be same as partner's logical system name and case sensitive to create the ports automatically while generating the partner profiles
    give the information for required fields
    RFC Destination : ERP800
    Connection type: 3
    Description
    Target Host : ERP000
    System No:000
    lan : EN
    Client : 800
    User : Login User Name
    Password:
    save this & Test it & RemortLogin
    3)
    Goto Tcode BD64 -- click on Change mode button
    click on create moduleview
    short text : xxxxxxxxxxxxxx
    Technical Neme : MODEL_ALV
    save this & Press ok
    select your just created modelview Name :'MODEL_ALV'.
    goto add message type
    Model Name : MODEL_ALV
    sender : ERP000
    Receiver : ERP800
    Message type :MATMAS
    save & Press Enter
    4) Goto Tcode BD82
    Give Model View : MODEL_ALV
    Partner system : ERP800
    execute this by press F8 Button
    it will gives you sending system port No :A000000015(Like)
    5) Goto Tcode BD64
    seelct the modelview
    goto >edit>modelview-->distribute
    press ok & Press enter
    6)goto Tcode : BD10 for Material sending
    Material : mat_001
    Message Type : MATMAS
    Logical System : ERP800
    and Execute
    7)goto Tcode : BD11 for Material Receiving
    Material : mat_001
    Message Type : MATMAS
    and Execute --> 1 request idoc created for message type Matmas
    press enter
    Thanks & regards
    Sreenivas
    Here Master Idoc set for Messge type MATMAS-->press Enter
    1 Communication Idoc generated for Message Type
    this is your IDOC
    Take a look at this guide.
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/ale/configuration.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapdevelopment.co.uk/training
    http://www.sappro.com/downloads/OneClientDistribution.pdf
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    Create The Extension Segment
    Transaction: WE31
    The first step in extending an IDoc is to create the new segments that will go into that IDoc. There are some rules that you need to follow when creating the segments:
    - The name of each segment type must start with ‘Z1’
    - For each field in the segment you need to define a field name and a
    data element.
    - The data element for the segment structure must be of data type ‘CHAR’.
    How to create new segments:
    Run the segment maintenance transaction WE31.
    Type your new segment name, and click on Create.
    Define the fields of your segment:
    Field name
    Data Element for the field (from the ABAP dictionary).
    Do not change the Export length!
    Save the segment
    Run Segment -->Check to check the segment for consistency.
    Release the segment for transport. Select Edit -->Set Release. Note that the “Release’ column now has a check mark.
    Create the Extension IDoc Type
    Transaction: WE30
    After you create the segments to be added to the extension type, you can create the extension type itself. Execute transaction WE30, enter the extension name, select Extension type, and click Create. You now have three options:
    Create new type: Does not refer to other extension types
    Create copy: Copies info from an extension type that already exists
    Create successor: Extends an extension type from a previous release
    of R/3. You can only have one version of an extension type for
    each release.
    Enter the Basic IDoc type that this extension type will extend.
    The screen now shows the structure of the IDoc type you used as
    a reference.
    Position the cursor on one of the segments and click Create. This will insert an extension segment as a child of the selected segment.
    NOTE: A segment cannot appear more than once in an IDoc type! You must control the use of duplicate segments with the segment attributes (the next screen).
    The segment attribute screen appears. Enter the information and save.
    Extension segments should not be mandatory (for future upgrades), and will need to have minimum and maximum number of instances defined. This answers the question, “for each instance of the parent segment, how many instances of the child segment may we have?”
    You can press the Segment Editor pushbutton to view or change the segment definition.
    Create the new Message Type
    You can only use an extension IDoc type by assigning it to a message type. You can create a new message type for this.
    First the message type itself needs to be created.
    Transaction: WE81
    Create a new entry and save. Use SAP established customer naming conventions (good form is to start with a Z and retain the rest of the related SAP message type, so, for example, MATMAS becomes ZMATMAS).
    After creating the message type, associate it with the corresponding Basic IDoc Type and Extension Type. This relationship is used when IDocs are sent to or received from a partner to determine what segments are valid and what the hierarchy for those segments is.
    Transaction: WE82
    Create a new entry and enter the Message type, Basic IDoc type, Extension type, and Release, and save your data. Note: the release assignment is not valid for prior SAP releases.
    One message type can be associated with many basic IDoc types; however, you need a one-to-one relationship for distribution via ALE.
    regards,
    srinivas
    *reward for useful answers*</b>

  • How to create a simple app using the MVC approach?

    Hello gurus i'm trying to learn the SAPUI5 and i'm trying to create a simple app using the MVC i created the app and trying to add a lable to the view but there is nothing appear when i run it the code for the HTML page
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.m"
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <!-- only load the mobile lib "sap.m" and the "sap_mvi" theme -->
      <script>
      sap.ui.localResources("mytestapp");
      var view = sap.ui.view({id:"idshell1", viewName:"mytestapp.shell", type:sap.ui.core.mvc.ViewType.JS});
      view.placeAt("content");
      </script>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>
    the code for the view
    sap.ui.jsview("mytestapp.shell", {
      /** Specifies the Controller belonging to this View.
      * In the case that it is not implemented, or that "null" is returned, this View does not have a Controller.
      * @memberOf mytestapp.shell
      getControllerName : function() {
      return "mytestapp.shell";
      /** Is initially called once after the Controller has been instantiated. It is the place where the UI is constructed.
      * Since the Controller is given to this method, its event handlers can be attached right away.
      * @memberOf mytestapp.shell
      createContent : function(oController) {
      var oLabel = new sap.ui.commons.Label("l1");
      oLabel.setText("Test label");
      oLabel.placeAt("content");
    i dont know what is wrong or if i should use a container to display my controls
    any help will be appreciated
    thanks in advance

    Hi,
    Instead of   oLabel.placeAt("content"); use return oLabel;
    so it will as below,
    createContent : function(oController) {
      var oLabel = new sap.ui.commons.Label("l1");
      oLabel.setText("Test label");
      return oLable;
    Regards,
    Chandra

  • Creating a Simple IOS / Android APP with web pages?

    Hi all,
    Recently I created a simple backend database driven website for a clients customers to see their info. The client wants to have his own "Company App", primarily for the marketing aspects. I was thinking that it might be possible to have a super simple basic app just showing/using the web pages that we already have.
    I already made some pages with custom tailored css to iphone and could expand this concept to other models - android etc.
    I have never tried to make an ios or andriod app before, but...
    Q: Would it be possible to create a simple app DEMO that can display/use the css iphone page I already made? If I wanted to look more into this (and even work with other dev's) where would I start?

    Mobile Apps are standalone pieces of mobile software that you design, compile with Phone Gap and then upload to Google Play or Apple's App store.  From there mobile users can purchase (most are free) download & install apps on their device.   Apps include just about everything from GPS & traffic info, to sports, games, entertainment, health & fitness tracking. You name it, it's probably out there.   A mobile app is not a web site, although the app may indeed be tied to the creator's web site so he can sell more apps.   But an app is just an app.  A web site is a web site.  2 different things.
    If you want to explore Mobile App development, I recommend this introductory tutorial
    Create & package Mobile app with DW, jQuery Mobile & PhoneGap
    http://www.adobe.com/devnet/dreamweaver/articles/dw-phonegap-mobile-app.html
    Nancy O.

  • Always fail to deploy to server when (Create a Simple EJB Session Bean )

    Hi,
    I'm trying the "Oracle JDeveloper 11g Tutorials" - "Create a Simple EJB Session Bean", I just follow the instructions in that page. But when I tried to run it, it always failed. Can anyone help me to have a look. I paste the log below. thank you.
    There's an error in the log "java.lang.ClassNotFoundException: oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener". but I don't know what's that meaning.
    E:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.56\DefaultDomain\bin\startWebLogic.cmd
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m
    WLS Start Mode=Development
    CLASSPATH=;e:\Oracle\MIDDLE~1\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;e:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;e:\Oracle\MIDDLE~1\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;e:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;e:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.0.0.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;e:\Oracle\MIDDLE~1\modules\ORGAPA~1.5/lib/ant-all.jar;e:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;E:\Oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;;
    PATH=e:\Oracle\MIDDLE~1\patch_wls1030\profiles\default\native;e:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;e:\Oracle\MIDDLE~1\patch_cie660\profiles\default\native;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;e:\Oracle\MIDDLE~1\modules\ORGAPA~1.5\bin;e:\Oracle\MIDDLE~1\JDK160~1\jre\bin;e:\Oracle\MIDDLE~1\JDK160~1\bin;C:\oracle\product\10.2.0\client_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;G:\D\JACKYH\Installed\apache-ant-1.7.1\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CollabNet Subversion;U:.;V:.;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_05"
    Java(TM) SE Runtime Environment (build 1.6.0_05-b13)
    Java HotSpot(TM) Client VM (build 10.0-b19, mixed mode)
    Starting WLS with line:
    e:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m -DproxySet=false -Djbo.34010=false -Xverify:none -da -Dplatform.home=E:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=e:\Oracle\MIDDLE~1\patch_wls1030\profiles\default\sysext_manifest_classpath;e:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath;e:\Oracle\MIDDLE~1\patch_cie660\profiles\default\sysext_manifest_classpath -Dweblogic.Name=DefaultServer -Djava.security.policy=E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy weblogic.Server
    <12/11/2008 10:54:31 AM EST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    E:\Oracle\Middleware\patch_wls1030\profiles\default\sysext_manifest_classpath\weblogic_ext_patch.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_TW.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_TW.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\testclient_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\testclient_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_TW.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_TW.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\workshop_ja.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\workshop_ko.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_CN.jar;E:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_TW.jar>
    <12/11/2008 10:54:32 AM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 10.0-b19 from Sun Microsystems Inc.>
    <12/11/2008 10:54:32 AM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for CR380042 Thu Sep 11 13:33:40 PDT 2008
    WebLogic Server Temporary Patch for 7372756 Fri Sep 12 17:05:44 EDT 2008
    WebLogic Server 10.3 Mon Aug 18 22:39:18 EDT 2008 1142987 >
    <12/11/2008 10:54:33 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <12/11/2008 10:54:33 AM EST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <12/11/2008 10:54:34 AM EST> <Notice> <Log Management> <BEA-170019> <The server log file E:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.56\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <12/11/2008 10:54:36 AM EST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <12/11/2008 10:54:38 AM EST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at 'E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddi.war'.>
    <12/11/2008 10:54:38 AM EST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at 'E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddiexplorer.war'.>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <12/11/2008 10:54:39 AM EST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <12/11/2008 10:54:39 AM EST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <12/11/2008 10:54:39 AM EST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.12.54:7101 for protocols iiop, t3, ldap, snmp, http.>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <12/11/2008 10:54:39 AM EST> <Warning> <Server> <BEA-002611> <Hostname "jackyh.dst.com.au", maps to multiple IP addresses: 192.168.12.54, 127.0.0.1>
    <12/11/2008 10:54:39 AM EST> <Warning> <Server> <BEA-002611> <Hostname "localhost", maps to multiple IP addresses: 192.168.12.54, 127.0.0.1>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <12/11/2008 10:54:39 AM EST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    DefaultServer startup time: 13829 ms.
    DefaultServer started.
    [Running application SessionEJB on Server Instance DefaultServer...]
    ---- Deployment started. ---- 12/11/2008 10:54:43
    Target platform is (Weblogic 10.3).
    Running dependency analysis...
    2008-11-12 10:54:43.882: Writing EJB JAR file to E:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.56\o.j2ee\drs\SessionEJB\SessionEJB-Project1-ejb
    2008-11-12 10:54:43.914: Wrote EJB JAR file to E:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.56\o.j2ee\drs\SessionEJB\SessionEJB-Project1-ejb
    2008-11-12 10:54:44.148: Writing EAR file to E:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.56\o.j2ee\drs\SessionEJB
    2008-11-12 10:54:44.164: Wrote EAR file to E:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.56\o.j2ee\drs\SessionEJB
    Deploying Application...
    <12/11/2008 10:54:46 AM EST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1226447686226' for task '0'. Error is: 'weblogic.management.DeploymentException: '
    weblogic.management.DeploymentException:
         at weblogic.application.internal.flow.BaseLifecycleFlow$CreateListenerAction.run(BaseLifecycleFlow.java:171)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.application.internal.flow.BaseLifecycleFlow$BaseAction.invoke(BaseLifecycleFlow.java:99)
         at weblogic.application.internal.flow.HeadLifecycleFlow.createListener(HeadLifecycleFlow.java:117)
         Truncated. see log file for complete stacktrace
    java.lang.ClassNotFoundException: oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:283)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         Truncated. see log file for complete stacktrace
    >
    <12/11/2008 10:54:46 AM EST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'SessionEJB'.>
    <12/11/2008 10:54:46 AM EST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.management.DeploymentException:
         at weblogic.application.internal.flow.BaseLifecycleFlow$CreateListenerAction.run(BaseLifecycleFlow.java:171)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.application.internal.flow.BaseLifecycleFlow$BaseAction.invoke(BaseLifecycleFlow.java:99)
         at weblogic.application.internal.flow.HeadLifecycleFlow.createListener(HeadLifecycleFlow.java:117)
         Truncated. see log file for complete stacktrace
    java.lang.ClassNotFoundException: oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:283)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         Truncated. see log file for complete stacktrace
    >
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application SessionEJB on DefaultServer.: .
    weblogic.management.DeploymentException:
    #### Deployment incomplete. #### 12/11/2008 10:54:46
    oracle.jdeveloper.deploy.DeployException
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:247)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:157)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:436)
         at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
         at oracle.jdevimpl.runner.adrs.AdrsStarter$4$1.run(AdrsStarter.java:1316)
    Caused by: oracle.jdeveloper.deploy.DeployException
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:413)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:238)
         ... 11 more
    Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:395)
         ... 12 more
    #### Cannot run application SessionEJB due to error deploying to DefaultServer.
    [Application SessionEJB stopped and undeployed from Server Instance DefaultServer]

    Steve,
    I'm facing the same issue as user#####.
    Your workaround does not work ; when I deploy manuelly the ear file, with a new weblogic-application.xml, I get the same error.
    Does that happen a lot ? :p
    Edit :
    my web.xml :
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
      <description>Empty web.xml file for Web Application</description>
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
      </context-param>
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
        <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
        <param-value>false</param-value>
      </context-param>
      <filter>
        <filter-name>JpsFilter</filter-name>
        <filter-class>oracle.security.jps.ee.http.JpsFilter</filter-class>
      </filter>
      <filter>
        <filter-name>trinidad</filter-name>
        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
      </filter>
      <filter>
        <filter-name>adfBindings</filter-name>
        <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>JpsFilter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>INCLUDE</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>trinidad</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>adfBindings</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/afr/*</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>35</session-timeout>
      </session-config>
      <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
      </mime-mapping>
      <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
      </mime-mapping>
    </web-app>Luc-
    Edited by: Lucas Ismag on 4 déc. 2008 05:33

  • Creating a simple HelloWorld! Application with NWDS 7.3

    Good morning experts!
    I have got a problem:
    I would like to create a simple "Hello World!" Application (JSP i think) with SAP NWDS (NetWeaver Developer Studio) 7.3.
    Then, I want to deploy it on SAP NetWeaver Portal 7.3.
    First of all, I have set up in the "Preferences" in the NWDS under "SAP AS Java" my NetWeaver Portal 7.3 System.
    So: Can you give me a link to a Tutorial, where I can develop such a JSP-HelloWorld-Site, which I can deploy on the J2EE of NW Portal 7.3 ?
    I have tried out several Tutorials in the past, but noone I could build, because there were always errors on the Deployment-Descriptor

    Hello together!
    After searching for 5 hours I have found such a Tutorial.
    There you have the link, maybe somebody has the same problem:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/503193d9-f586-2b10-4eb6-e8b46dc096db
    Best Regards.

  • Unable to Create a Simple LOV

    I am trying to create a simple LOV, but I keep getting the 'LOV query is invalid, a display and a return value are needed, the column names need to be different' error.
    This is my query:
    SELECT evaluation d, evaluation r
    FROM GRT_PRJ_EVALUATIONS
    WHERE prj_seq = :P1152_prj_id
    ORDER BY 1;
    I have a similar LOV that only selects the same single column, and it creates just fine:
    SELECT rgn_code d, rgn_code r
    FROM GRT_REGION
    WHERE upper(rgn_code) NOT IN ('HQ', 'PB', 'XX')
    ORDER BY 1;
    Can you please advise as to what the problem is with the first query?
    Many thanks,
    Laura

    Thank you all very much for these helpful ideas. I have tried them all but was not able to create my lov. I finally changed my lov to return a different column than what was displayed and it allowed me to create it. I've created many lovs that display/return the same column without any problems, but this time there was just something about it that it didnt like. Thank you very much though for your help. ~ Laura

  • I have a new iMac and would like to buy a cheap version of Photoshop to create a simple flyer.  If I look on ebay or similar, what version do I require?

    I have a new iMac and would like to buy a cheap legal version of Photoshop to create a simple flyer.  If I look on ebay or similar, what version do I require?
    I understand that Photoshop 5 is not compatible?
    I used to use CS5 at work which was very good, doing a little reserach it appears as if this suite has been replaced by a monthly 'cloud' charge which for me as a basic home user is unnecessary.
    Appreciate any help.

    Hello Simonlala;
    Anyone that buys an iMac should not have to buy "cheap".  it's like putting "retread tires" on a brand new Farrari! Ugh! 
    To find a cheap version of PS is to locate an obsolete version only?  Software surplus business may have some or check the obituary columns to see if any Photographers or Gaphic Designers have left some things behind?
    Some options...enroll in a community college Multimedia class and you will not only have access to Photoshop, you'll have access to much more software for the price of the course.  It will also qualify you as a student and you can get a discounted rate on the Adobe Creative Cloud subscription as well. 
    If you are only making "simple flyers" would not MS Word or OpenOffice software do the job for you?  There are applications for that purpose and Photoshop is not the only way to skin this cat!  Or you can always buy a box of Crayola's and make a pamphlet that way?
    And as a bonus, you may learn something from the course you enroll in.
    I am a student and subscribe to Adobe Creative Cloud...it's reasonable for my purposes for now.

Maybe you are looking for

  • Beginner needs help with css layout

    i'm new to using dw (cs3) and css, though i have some background in html and coding. i'm creating a page using the "one column elastic, centered, header and footer" layout and i have a banner header with a horizontal spry menu bar at the bottom of th

  • All of a sudden, auto-complete does not remember my preferred email addresses when I send an email.

    Previously when I would create an email and start to fill in the "To" box with an email address, Thunderbird remembered my most used choice. Now, auto-complete simply puts in the alphabetical option and I have to scroll through a long list to find th

  • TV and wood stove?!

    Hi there,  So I have a 55" TV and am recently relocating to a house that has a wood stove in the living room, the most logical place for this TV to go is near the wood burner.... Question is how close can my TV get to that wood burner without causing

  • Firewire copy from PC to MacBookPro

    I need to copy the files from my PC to the MacBookPro, without having to take the extra time to copy and paste from an external drive. I have found instructions on some forums, but I must not be doing all the proper settings. The seller's tech people

  • SC with discount price

    Dear All, In SRM 7.02, Creating a SC from internal goods and service... 1. We need to add the discount in the SC line item..how can i added the same...? 2. I have backend contract with Discount and Scales defined in the item level..when i create a SC