Dynamically display column

Can you please help me how can we achieve in simple sql query or procedure
If the report is being run based on “Project-Task”, a Task No. should show up in the next column. If the report is run based on “Project”, then no Task No. should be shown.

i have a report like to display
Tasknumber should popup dynamically.
If the user selects projectno then need output donot display tasknumber
project projectname
If the user selects tasknumber then need output display tasknumber too
project projectname tasknumber
what is the bestway to write it.
select distinct a.project_number,a.project_name,a.Task_number
from xxdl.xxdl_cd_pta_all a, XXDL.xxdl_cd_pta_draw_frcst b
where a.task_id= b.task_id and a.task_id =a.top_task_id and a.cd_proj_type = 'Y';

Similar Messages

  • Need to display COlumn headers dynamically in ALG Grid

    Hello,
    I need to display column headers dynamically in alv grid Display with its corresponding value.
    Column headers should be picked from a field in Final Internal table and its corresponding field will also need to pick from the same table.
    T_final... Suppose Field STCTS - (To pick coulmn headers)
                                      CCNGN - (To pick appropriate value for that column)
    Can anybody explain me how i can pass these values to ALV Grid using
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
      EXPORTING
        IT_FIELDCATALOG           = Y_I_FCAT
      IMPORTING
        EP_TABLE                  = DY_TABLE.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Any suggestions will be appreciated....
    Regards,
    Kittu

    Hi,
    Go thru this link, and the code of Mr.Dev Parbutteea
    Re: Probelm with Using Field Symbol in FM
    thanks
    Mahesh

  • XML Publisher - Dynamic Data Columns Issue

    Hi,
    I am creating a amortization report where I need to show the amortization schedule for unearned revenue. Customers have signed different years of contract and I need to show the amount as per their remaining contract months. So if there are 2 month remaining in the contract then I should show the data for 2 months only and if there are 10 months then I should display 10 months. If we run the report for both customers then it should display two lines in report. For first customer the data should be only for 2 months and for second row(customer) there should be data for next 10 months. These months should be columns in the report(like excel columns, not rows). I need to display all months in columns instead of rows.
    I have acheived that using Dynamic Data Columns as mentioned in the user guide. Everything is working fine except following issues -
    1. How to create page level total?_
    I have created page total in my template using <?add-page-total:TOTUREV;'UREV'?> and displaying using <?show-page-total:TOTUREV?> but when I run the report in excel format these page total do not display. These columns are static columns not dynamic.
    If I run the report in pdf format then the static column total is displayed correctly.
    2. When I run the report in excel format then report run fine and it shows all the columns properly but if I run the report in pdf format then the dynamic column are not displayed in their own columns, all the columns are overwriting each other in a single columns itself, its not expanding.
    3. How do I get the total for the dynamic columns?_
    I need to display the page level total for the dynamic columns also, how do I do that?
    4. When I run the report in excel format the 2 decimal places of the numbers are gone(it works fine in pdf output), like 12.50 becomes 12.5 and 14.00 becomes 14. I need to maintain those 2 decimal places. I have tried using <fo:bidi-override direction="ltr" unicode-bidi="bidi-override"><?format-number:CVALUE;'999999D99'?></fo:bidi-override> but this does not solve my problem completely. It shows the values correctly in excel but then I am not able to do any calculation on those columns, looks like it converts them to text values.
    Any help is really appreicated. Please let me know if you need the xml template and data file.
    Regards
    Hitesh

    Hi Hitesh,
    Can you please upload your RTF and XML template file? I will try to spend sometime on this issue.
    Cheers
    Sachin

  • Dynamically displaying a new region (row?) based on immediate user input

    Whew, figuring out a title was almost as hard as trying to explain what I want to do!
    Okay, a little background first.
    My app has 178 main data fields, spread across about 35 tables. The users want to be able to search any and all data fields. So, I wrote a PL/SQL package that for each master record, loops through all of the child tables and creates (more or less) an XML file for each master record (which I store in a CLOB field). When any data in any table is changed, a trigger fires to re-update that CLOB field as well. I then used Oracle Text to create an index on the CLOB field, and now the users can search across all of the available information for each master record and get a list of which records contained what they were looking for.
    So here's the first part of the problem. The app is a Mineral Occurence database for all mineral information world-wide. Say they enter "Brazil" as what they want to search for, they not only retreive all of the mineral sites in Brazil, but also all of the sites where one of the mining companies may be based in Brazil, or Brazil is one of the comments, etc. While this is the expected behaviour, it's still not quite what they expected (but they also don't want to get rid of this behaviour either).
    So, since the CLOB field is already formatted with XML-type tags, what I want to do is to have an Advanced Search page, where the user can specify the table name to search, or the field name, or both. What I'd like to do is at the end of each line, have a select list with an "AND" or "OR' box, and if that gets a value, then dynamically create another 'row' underneath the first row, with the same three 'boxes' (actually select lists), and continue on until the user has specified exactly what they want to search for.
    I would rather not have to create a whole bunch of regions or rows, and then determine at runtime whether or not to display them.
    So i would have (using underscores as the boxes/fields):
    Table to Search        Field to Search          And/Or
    ______________          _____________          _______Each of the above would be a select list.
    Anybody have ideas on how I can accomplish this? Any Javascript or AJAX-type solutions that a dummy like me can easily implement? I've seen something almost similar on Carl's example pages to Hide/Show a region(?), but understanding the underlying code and then modifying it for what I want to do is extremely complicated (for me) at best.
    Thanks.
    Bill Ferguson

    Well, after searching through the QBE results (even some of mine), the only thing that comes close is Earl's (http://htmldb.oracle.com/pls/otn/f?p=36337:14). Actually his layout is almost perfect and pretty identical to what I want/need. Vikas' example seems like what I've toyed with on some other pages in my app, using a simple UNION ALL with nulled fields in the select statement, which won't work for what I need, at least I can't seem to visualize how I could incorporate that same code logic.
    However, unlike Earl's, when/if the last column (which I'd have as the 'AND/OR' select list) is populated, I'd like to dynamically display another new row.
    Now I know I could do it by making the last column a 'Select List With Submit', but that would neccessitate my creating about 25 regions (to hopefully cover the max any of the users would ever need), and then conditionally display the region based on whether or not the previous 'AND/OR' condition field was populated. It would also require a whole slew of page refreshes, which is clunky.
    It seems like there should probably be a way with AJAX to accomplish something similar. I think I remember seeing something along these lines in the last year or so on here, but I can't find it.
    Something like a cross-breed of Earl's example page above mixed with Carl's example at http://htmldb.oracle.com/pls/otn/f?p=11933:39:4740898821262791902::NO:RP:: which would automatically fire on the poplulation of the last select list is probably the best I can accomplish, unless somebody has some better ideas on how to do this. Using Carl's htmldb_remix code, I can avoid all the submits and the resulting page refreshes, but the code itself will take an old dummy like me a while to figure out.
    Thanks for the ideas though.
    Bill Ferguson

  • SUB Totals within a Dynamic Data Column

    Has anyone ever calculated SUB Totals in a Layout with a Dynamic Data Column?
        The TOTAL for all data is expressed on the Data Column tab of the Layout as C(1):C(1) - 0FISCPER / Posting Period is the Dynamic Characteristic.  When the system actually displays the 12 columns of data for the Year, the formula for TOTAL is also adjusted - no problem here.  But the user also wants SUB Totals, by Quarter, within the Year.
        Any insight or suggections are appreciated !
    Thanks,
    Lyle

    Hello,
    use variables Q1, ..., Q4 for the quarters and create
    data colums as follows
    1 Q1 dynamic = X
    2 Total C(1)
    3 Q2 dynamic = X
    4 Total C(3)
    5 Q3 dynamic = X
    6 Total C(5)
    7 Q4 dynamic = X
    8 Total C(7)
    9 Year Total C(2)C(4)C(6)+C(8)
    Regards,
    Gregor

  • Dynamic DataGrid columns

    How can I get this example to wok with <mx:HTTPService>
    insead of the inline <mx:XML> ?
    Dynamic DataGrid columns
    Example of how to dynamically create DataGridColumns
    A completely dynamic DataGrid example.
    This example uses the xml from the Flexstore example. It
    examines the first product node and uses that to create the
    definitions for the columns. There is some example logic to change
    the columns properties.
    It then instantiates the GataGrid and its columns array,
    assigns the properties, and then the dataProvider, and then adds
    the dataGrid to the application container.
    The example is fully self-contained, since a portion of the
    catalog.xml file is included in the mxml.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- This example uses the dataProvider to build the
    dataGrid columns dynamically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    creationComplete="initApp()">
    <mx:Script><![CDATA[
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.DataGrid;
    import mx.collections.XMLListCollection;
    import mx.controls.Alert;
    [Bindable]
    private var _xlcCatalog:XMLListCollection; //the
    dataProvider for the DG
    //run by creationComplete
    public function initApp():void
    _xlcCatalog = new XMLListCollection(xmlCatalog.product);
    //wrap the XML product nodes in an XMLListCollection
    buildDG(); //creates the dataGrid
    }//initApp
    private function buildDG():void
    var aColumnDef:Array = getColumnDefArray(); //returns a
    noraml array of objects that specify DtaGridColumn properties
    var oColumnDef:Object;
    var dg:DataGrid = new DataGrid; //instantiate a new DataGrid
    var dgc:DataGridColumn;
    var aColumnsNew:Array = dg.columns
    var iTotalDGWidth:int = 0;
    for (var i:int=0;i<aColumnDef.length;i++) { //loop over
    the column definition array
    oColumnDef = aColumnDef
    dgc = new DataGridColumn(); //instantiate a new
    DataGridColumn
    dgc.dataField = oColumnDef.dataField; //start setting the
    properties from the column def array
    dgc.width = oColumnDef.width;
    iTotalDGWidth += dgc.width; //add up the column widths
    dgc.editable = oColumnDef.editable;
    dgc.sortable = oColumnDef.sortable
    dgc.visible = oColumnDef.visible;
    dgc.wordWrap = oColumnDef.wordWrap;
    aColumnsNew.push(dgc) //push the new dataGridColumn onto the
    array
    dg.columns = aColumnsNew; //assign the array back to the
    dtaGrid
    dg.editable = true;
    dg.width = iTotalDGWidth;
    dg.dataProvider = _xlcCatalog; //set the dataProvider
    this.addChild(dg); //add the dataGrid to the application
    }//buildDG
    //uses the first product node to define the columns
    private function getColumnDefArray():Array
    //Alert.show("colcount:" + xmlCatalog.toXMLString());
    var aColumns:Array = new Array();
    var node0:XML = xmlCatalog.product[0]; //get the first
    "product" node
    var xlColumns:XMLList = node0.children(); //get its child
    nodes (columns) as an XMLList
    var xmlColumn:XML
    var oColumnDef:Object;
    for (var i:int=0;i<xlColumns.length();i++) { //loop over
    the xmlList
    xmlColumn = xlColumns;
    oColumnDef = new Object();
    oColumnDef.dataField = xmlColumn.localName(); //make the
    dataField be the node name
    switch (oColumnDef.dataField) { //conditional column
    property logic
    case "name":
    oColumnDef.width = 80;
    oColumnDef.sortable = false;
    oColumnDef.visible = true;
    oColumnDef.editable = false;
    oColumnDef.wordWrap = false;
    break;
    case "description":
    oColumnDef.width = 200;
    oColumnDef.sortable = false;
    oColumnDef.visible = true;
    oColumnDef.editable = false;
    oColumnDef.wordWrap = true;
    break;
    case "price":
    oColumnDef.width = 40;
    oColumnDef.sortable = true;
    oColumnDef.visible = true;
    oColumnDef.editable = true;
    oColumnDef.wordWrap = false;
    break;
    case "image":
    oColumnDef.width = 100;
    oColumnDef.sortable = false;
    oColumnDef.visible = false;
    oColumnDef.editable = false;
    oColumnDef.wordWrap = false;
    break;
    default:
    oColumnDef.width = 50;
    oColumnDef.sortable = true;
    oColumnDef.visible = true;
    oColumnDef.editable = false;
    oColumnDef.wordWrap = false;
    break;
    aColumns.push(oColumnDef);
    return aColumns; //return the array
    }//getColumnDefArray
    ]]></mx:Script>
    <mx:XML id="xmlCatalog">
    <catalog>
    <product productId="1">
    <name>Nokia 6010</name>
    <description>Easy to use without sacrificing style,
    the Nokia 6010 phone offers functional voice communication
    supported by text messaging, multimedia messaging, mobile internet,
    games and more</description>
    <price>99.99</price>
    <image>assets/pic/Nokia_6010.gif</image>
    <series>6000</series>
    <triband>false</triband>
    <camera>false</camera>
    <video>false</video>
    <highlight1>MMS</highlight1>
    <highlight2>Large color display</highlight2>
    </product>
    <product productId="2">
    <name>Nokia 3100 Blue</name>
    <description>Light up the night with a
    glow-in-the-dark cover - when it's charged with light you can
    easily find your phone in the dark. When you get a call, the Nokia
    3100 phone flashes in tune with your ringing tone. And when you
    snap on a Nokia Xpress-on™ gaming cover*, you'll get
    luminescent light effects in time to the gaming
    action.</description>
    <price>139</price>
    <image>assets/pic/Nokia_3100_blue.gif</image>
    <series>3000</series>
    <triband>true</triband>
    <camera>false</camera>
    <video>false</video>
    <highlight1>Glow-in-the-dark</highlight1>
    <highlight2>Flashing lights</highlight2>
    </product>
    <product productId="3">
    <name>Nokia 3100 Pink</name>
    <description>Light up the night with a
    glow-in-the-dark cover - when it's charged with light you can
    easily find your phone in the dark. When you get a call, the Nokia
    3100 phone flashes in tune with your ringing tone. And when you
    snap on a Nokia Xpress-on™ gaming cover*, you'll get
    luminescent light effects in time to the gaming
    action.</description>
    <price>139</price>
    <image>assets/pic/Nokia_3100_pink.gif</image>
    <series>3000</series>
    <triband>true</triband>
    <camera>false</camera>
    <video>false</video>
    <highlight1>Glow-in-the-dark</highlight1>
    <highlight2>Flashing lights</highlight2>
    </product>
    <product productId="4">
    <name>Nokia 3120</name>
    <description>Designed for both business and pleasure,
    the elegant Nokia 3120 phone offers a pleasing mix of features.
    Enclosed within its chic, compact body, you will discover the
    benefits of tri-band compatibility, a color screen, MMS, XHTML
    browsing, cheerful screensavers, and much more.</description>
    <price>159.99</price>
    <image>assets/pic/Nokia_3120.gif</image>
    <series>3000</series>
    <triband>true</triband>
    <camera>false</camera>
    <video>false</video>
    <highlight1>Multimedia messaging</highlight1>
    <highlight2>Animated screensavers</highlight2>
    </product>
    <product productId="5">
    <name>Nokia 3220</name>
    <description>The Nokia 3220 phone is a fresh new cut
    on some familiar ideas - animate your MMS messages with cute
    characters, see the music with lights that flash in time with your
    ringing tone, download wallpapers and screensavers with matching
    color schemes for the interface.</description>
    <price>159.99</price>
    <image>assets/pic/Nokia_3220.gif</image>
    <series>3000</series>
    <triband>false</triband>
    <camera>true</camera>
    <video>false</video>
    <highlight1>MIDI tones</highlight1>
    <highlight2>Cut-out covers</highlight2>
    </product>
    </catalog>
    </mx:XML>
    </mx:Application>

    It should work the same way.
    What problem are you having?
    Tracy

  • Dynamic  Lead Columns / Data Columns

    Hi
    I want to use dyanmic data columns restricted by a characteristic relationship of another variable.
    When I use the characteristic as a lead column, it works perfect, I only see the rows for valid lines.
    When I use the characteristic as a data column, I see all possible characteristic values of that characteristics. The ones that are not valid are not ready for input, the ones that are valid are ready for input.
    I would like to use dynamic data columns but only display the columns with a valid characteristic relationships (just the way it works when I put the characteristic in the lead column)
    Should that work?
    Thanks

    Enable Zero-Suppression on your column structure. Then in your Query properties, enable zero-suppresion for columns. That way only characteristic values with data will be shown and not all possible characteristic values present in the master data tables. I should note that there should be some data in the fact table which links the keyfigure to the characteristic value, otherwise it will be suppressed.

  • Conditional display column in report

    Hi,
    If we have a single row report of 30 columns, and I want to display only the one with any values but null and hide the null ones, Is there a way to do it?
    It's the same issue discussed in this thread conditional display column in report
    thanks,
    Fadi.

    Samara - I suspect there are a few ways to do this, but none obvious or very easy as far as I can see.
    You can create dynamic SQL (as Arie and others have suggested) to only include the columns that are not null.
    You can build and output the HTML directly to the page, choosing only to include the values that are not null.
    You can create a set of conditions that you can apply to the report columns. A very crude example might be 30 hidden page items like 'SHOW_COL1' etc. (not great, I know), or perhaps you could set a hidden page item to a value like '01:02:03:'etc., with the number only being included if the value is not null (so that col3 being null gives you '01:02::04'etc.), so that the condition for each column is 'Text in expr 1 in contained in Item in expr 2', where expr 1 is '01' for column 1 etc.
    Sorry, that is a very contrived example, but it's just to illustrate that there's generally a way of doing pretty much anything in APEX. You might create your item containing the comparison expression by requerying the data in this kind of way:
    SELECT NVL2(column1, '01', '') || ':' || NVL2(column2, '02', '') || ':' etc.
    FROM table
    WHERE condition
    However, wanting to create a single-row report with nulls hidden makes we wonder what you're actually trying to achieve and whether there's a better way? Could you use a series of page items, for example?
    John.

  • Dynamic data column; pdf vs excel output

    I have created a amortization report using BIP dynamic data columns. When I run the report in excel format then report run fine and it shows all the columns properly but if I run the report in pdf format then the dynamic columns are not displayed in their own columns, all the columns are overwriting each other in a single columns itself, its not expanding.
    Any idea what could be wrong here. Why does it work fine in excel and not in pdf output.
    Please let me know if you would like to see the rtf template and xml data file.
    Regards
    Hitesh

    Can you send me the sample xml and RTF ?

  • ALV-dynamic display

    I have to display the stock of store of the corresponding plant dynamically in ALV.
    I am using the data from LIPS,LIKP,MARA,MARD table.The problem is how to display the stock dynamically?

    Hi,
       Take the stock to be displayed dynamically into an internal table, the entries in internal table such that it depends on the selection made.
    Check the following code it will give you a very good idea of how to proceed for your case.
    DATA:BEGIN OF i_kschl OCCURS 0,
           kschl LIKE komv-kschl,
           END OF i_kschl.
    i_kschl is the internal table where the dynamic columns areinted to bestored.
    DATA: it_fldcat TYPE lvc_t_fcat.
      PERFORM build_dyn_itab.
    FORM build_dyn_itab.
      DATA: new_table TYPE REF TO data,
            new_line  TYPE REF TO data,
            wa_it_fldcat TYPE lvc_s_fcat.
    COLUMN COUNT TO CREATE DYNAMIC INTERNAL TABLE   **
      DATA: v_colpos TYPE i,
            v_colpos_new TYPE i.
    LOADING THE DYNAMIC FIELD CATELOG TO BE PASSED  **
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'VBELN'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'P_NAME1'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 35.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KUNGR'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'FKART'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 4.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'BZIRK'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 6.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'PLTYP'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 2.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ERNAM'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 12.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'NAME1'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 35.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KVGRC'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 3.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KVGRD'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 3.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'AUART'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 4.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KWMENG'.
      wa_it_fldcat-datatype = 'QUAN'.
      wa_it_fldcat-intlen = 19.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'FKIMG'.
      wa_it_fldcat-datatype = 'QUAN'.
      wa_it_fldcat-intlen = 17.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'NONACC'.
      wa_it_fldcat-datatype = 'QUAN'.
      wa_it_fldcat-intlen = 19.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'BRGEW'.
      wa_it_fldcat-datatype = 'QUAN'.
      wa_it_fldcat-intlen = 19.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KDGRP'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 2.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'POSNR'.
      wa_it_fldcat-datatype = 'NUMC'.
      wa_it_fldcat-intlen = 6.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'PRSDT'.
      wa_it_fldcat-datatype = 'DATS'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'MVGR2'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 3.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ZNODNV'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 18.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'SOLD'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'BILL'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'SHIP'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'SHIPADDR'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 45.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'WAERK'.
      wa_it_fldcat-datatype = 'CUKY'.
      wa_it_fldcat-intlen = 5.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'FKDAT'.
      wa_it_fldcat-datatype = 'DATS'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'AUBEL'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ERDAT'.
      wa_it_fldcat-datatype = 'DATS'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'XBLNR'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 16.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'MATNR'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 18.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ZTERM'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 4.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'NTGEW'.
      wa_it_fldcat-datatype = 'QUAN'.
      wa_it_fldcat-intlen = 19.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KZWI2'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 18.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'NETWR'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 21.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'HZTMS'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 18.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'PRODH'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 18.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'KVGR5'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 3.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'VGBEL'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'INCO1'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 3.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'LNAME1'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 35.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'BOLNR'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 35.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'WADAT'.
      wa_it_fldcat-datatype = 'DATS'.
      wa_it_fldcat-intlen = 10.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'WAVWR'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 18.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ZDIS1'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 21.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ZTMS1'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 21.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'ZNOD1'.
      wa_it_fldcat-datatype = 'CURR'.
      wa_it_fldcat-intlen = 21.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos = v_colpos + 1.
      wa_it_fldcat-col_pos = v_colpos.
      wa_it_fldcat-fieldname = 'FLAGK'.
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 1.
      APPEND wa_it_fldcat TO it_fldcat .
      CLEAR wa_it_fldcat.
      v_colpos_new = v_colpos.
    CREATE DYNAMIC FIELD COLUMNS  **
      LOOP AT i_kschl.
        v_colpos_new = v_colpos_new + 1.
        wa_it_fldcat-col_pos = v_colpos_new.
        wa_it_fldcat-fieldname = i_kschl-kschl.
        wa_it_fldcat-datatype = 'CHAR'.
        wa_it_fldcat-intlen = 4.
        APPEND wa_it_fldcat TO it_fldcat .
        CLEAR wa_it_fldcat.
        CLEAR i_kschl.
      ENDLOOP.
      METHOD USED TO OBTAIN DYNAMIC INTERNAL TABLE AS PER CATELOG  **
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
         I_STYLE_TABLE             =
          it_fieldcatalog           = it_fldcat
        IMPORTING
          ep_table                  = new_table
         E_STYLE_FNAME             =
        EXCEPTIONS
          generate_subpool_dir_full = 1
          OTHERS                    = 2.
      IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      ASSIGN new_table->* TO <dyn_table>.
      CREATE DATA new_line LIKE LINE OF <dyn_table>.
      ASSIGN new_line->* TO <dyn_wa>.
    ENDFORM.
    The above process is to create the dynamic internal table  **
    ASSIGN COMPONENT 'PLTYP'  OF STRUCTURE <dyn_wa> TO <fs2>.
          <fs2> =  wa_output_1-pltyp.
          ASSIGN COMPONENT 'ERNAM'  OF STRUCTURE <dyn_wa> TO <fs2>.
          <fs2> =  wa_output_1-ernam.
    FORM build_condtyp.
      FIELD-SYMBOLS: <fs1>.
      LOOP AT i_kschl WHERE kschl = wa_output_1-kschl.
        ASSIGN COMPONENT i_kschl-kschl OF STRUCTURE <dyn_wa> TO <fs1>.
        <fs1> =  wa_output_1-kwert.
      ENDLOOP.
    ENDFORM.
    Th aboveprocess is to populate the contents under the dynamic column **
    Reward if found help full.
    Regards,
    Rama Murthy.P

  • Display Columns from WBS and Activities in the same Report

    Does anyone know how to display Columns from a WBS and an Activity together so that they can be output to Excel?
    I need WBS Code, Actual Start, Actual Finish and Performance % Complete from the WBS and Activity Codes from Activities.
    I can produce them in a report but this gives me all the activities in a heirarchical format which then necessitates deleting the activity lines in Excel
    The Performance % complete which I want is available in Activities at the Summary Level but the Activity Codes are not at this level
    I could put the Activity Codes in as Project Codes at the WBS level but this will require a lot of maintenance
    Maybe someone knows an easy way to do this?
    John
    Edited by: user9088233 on Feb 3, 2010 11:50 PM

    user9088233,
    Your request interested me so I gave it the old college try. There are several ways to go about this task but here's one that is fairly quick and easy.
    I carefully read your description of what you need from P6. I've built a test layout using the fields that you outlined. Here's what I came up with. This should bypass the issue of having to create a P6 export. My solution is to build a customized layout in P6 and copy that info and paste it into an Excel spreadsheet.+
    Open P6
    Open neccessary projects & open a new layout containing these columns:
    ....Project, WBS,Activity ID, Activity Name, Perf. %, & (any codes or user defined codes)
    Group & Sort by: Project, WBS
    ....*Display Options* = "Show Group Totals" & "Show Summaries Only", Choose "OK"
    ....*Edit*, Select, All, Copy
    Open Excel
    ....Paste Highlighted data into your new worksheet.
    Hope this helps but it's usually hard to understand exactly what you need unless I can view your data,
    Good Luck & let me know how it turns out,
    p3_scheduler
    Edited by: p3_scheduler on Feb 8, 2010 2:40 PM

  • Function short dump - A dynamically specified column name is unknown.

    Hello,
    I've created BRF fuction according to the  Note 1466868 - Dunning by collection strategy with BRFplus. I get short dump during simulation of function with following exception:
    "A dynamically specified column name is unknown. "
    Runtime Errors         SAPSQL_INVALID_FIELDNAME
    Exception              CX_SY_DYNAMIC_OSQL_SEMANTICS
    No.   Ty.          Program                             Include                             Line
          Name
       19 METHOD       CL_FDT_ELEMENT================CP    CL_FDT_ELEMENT================CM012   129
          CL_FDT_ELEMENT=>GET_VALUES_DDIC
       18 METHOD       CL_FDT_ELEMENT================CP    CL_FDT_ELEMENT================CM011   124
          CL_FDT_ELEMENT=>GET_VALUES
       17 METHOD       CL_FDT_WD_RENDER_VALUE_INPUT==CP    CL_FDT_WD_RENDER_VALUE_INPUT==CM00G   139
          CL_FDT_WD_RENDER_VALUE_INPUT=>VALIDATE_VALUES
    In my opinion there is uncorrect query.
    Current version:
    .  SELECT FIKRS AS VALUE NAME AS TEXT FROM FMBS_BS_T
        INTO CORRESPONDING FIELDS OF TABLE lt_value
        WHERE LANGU EQ 'E'.
    instead of:
    .  SELECT FM_AREA AS VALUE NAME AS TEXT FROM FMBS_BS_T
        INTO CORRESPONDING FIELDS OF TABLE lt_value
        WHERE LANGU EQ 'E'.
    My sap version:
    EHP4 FOR SAP ERP 6.0 / NW7.01
      SAP_BASIS     701     0003     SAPKB70103
    Do you know any note or solution  to resolve this problem.
    Best regards,
    Jacek Witczak

    Hi, I came back to working on "Dunning by collection strategy with BRFplus". According to your sugestions, I raised the level of components:
    SAP_BASIS Level 09
    SAP_ABA level 09
    PI_BASIS level 09
    SAP_BW level 09
    But still I have the same short dump.
    Shoudl we raise any other components? Maybe you know note, which resolve this problem?

  • Dynamic display name of the sender

    I have requirement like below:
    After creating and executing any Agent/iBOt in OBIEE 11g, the Display Name of the Sender in the From address of email delivered to recipients is showing as "Administrator".
    The user who is authenticated and authorized into the OBIEE also created an agent, he is asking that email should show his name in the From Address when it is delivered to the recipients.
    I know why this is happening, I have provided the Display Name of Sender as "Administrator" while configuring the Agents at the Enterprise Manager Level.
    What I am currently looking is, if there is any alternate solution to Dynamically display the name of the user who creates the Agent in the From address of the email when it is delivered to the recipients.
    Thanks in advance
    -Bharath

    Any body there with the answers !!

  • How to dynamically display .flv files in website

    I'm using a JSP for my interface.?? In the webpage, I want to pass a java variable, which holds the url to the video that was retrieved from the database, to the flash player script to dynamically determine which video to play.?? For example, this code in the page will play a movie successfully:
    <td><script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','widt h','706','height','633','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_Co mponentVersion=1&skinName=Halo_Skin_3&streamName=movies/Video1_1&autoPlay=true&autoRewind= false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage',' http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','FLVPlayer_Progressive' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="706" height="633" id="FLVPlayer">
    ?????????????????????????????? <param name="movie" value="FLVPlayer_Progressive.swf" />
    ?????????????????????????????? <param name="salign" value="lt" />
    ?????????????????????????????? <param name="quality" value="high" />
    ?????????????????????????????? <param name="scale" value="noscale" />
    ?????????????????????????????? <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Halo_Skin_3&streamName=movies/Video1_1&autoPlay=tr ue&autoRewind=false" />
    ?????????????????????????????? <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Halo_Skin_3&streamName=movies/Video1_1&autoPla y=true&autoRewind=false" quality="high" scale="noscale" width="706" height="633" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />??????????????????????????
    </object></noscript></td>
    But this code will not play the movie successfully:
    <td><script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','widt h','706','height','633','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','<%= flashVars %>','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','FLVPlayer_Progressive' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="706" height="633" id="FLVPlayer">
    ?????????????????????????????? <param name="movie" value="FLVPlayer_Progressive.swf" />
    ?????????????????????????????? <param name="salign" value="lt" />
    ?????????????????????????????? <param name="quality" value="high" />
    ?????????????????????????????? <param name="scale" value="noscale" />
    ?????????????????????????????? <param name="FlashVars" value="<%= flashVars %>" />
    ?????????????????????????????? <embed src="FLVPlayer_Progressive.swf" flashvars="<%= flashVars %>" quality="high" scale="noscale" width="706" height="633" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />??????????????????????????
    </object></noscript></td>
    The only difference in the two is that in the second, I use a java variable to set the flash Variables. The variable I use is <%= flashVars %>?? which is equal to: &MM_ComponentVersion=1&skinName=Halo_Skin_3&streamName=movies/Video2&autoPlay=false&autoRe wind=false
    When I view the resulting page source code after building and running the site, The source code is exactly the same for both of them yet one works and one doesn't.?? Any help would be greatly appreciated!

    I've been searching google all day to figure this one out.  I'm not simply trying to play a video, I can already do that... I'm retrieving the location of the video from the database and trying to pass it as an argument to the player, no different than if I was dynamically displaying an image or some text. For some reason I'm not able to do this.

  • Grouping of chracateristics by using dynamic data columns

    Hi all,
    I want to create a BPS Layout (BW3.5) with the material in the lead column and a KeyFigures, the year and the salesgroup in the data column. The salesgroup is the dynamic characteristic.
    Example:
    I want to have:
    SG1 2007/   SG1 2008/   SG2 2007/   SG2 2008...
    What the system is doing is:
    SG1 2007/   SG2 2007/   SG1 2008/   SG2 2008
    My question is: how can I change the grouping of the columns from year to salesorg?
    Can anybody help me?
    Best regards,
    Rainer

    Hi Rainer,
    Thanks for your appreciation.
    I thought there is not material in your lead column, okay if your case like that i suggest you like this.
    I suggest to .
    To choose Layout Category:
    1. Key Figures in Data Column
    Define data column dynamically for : Sales Group
    And make the fiscal year, and material as lead column.
    In the data column tab, define the key-figures there and mark Dynamic checkbox.
    Or if you want to group based on the fiscal year, you can make the fiscal year as you dynamic data column.
    Hopefully it can help you a lot.
    Best regards,
    Niel.
    thanks for the points you choose to assign.

Maybe you are looking for

  • Image: display from local drive, upload to server file system, and display from server

    Hello, I am using jdev 11.1.2.4.0... The requirement is that users would like to upload images from their local drive to server drive and they would like display images from server drive later. We don't want to keep images in database. I am not sure

  • Kaspersky Anti-Virus on Arch Linux - is it possible?

    I'm wandering if there are some Arch Linux's users who are also using Kaspersky Anti-Virus. It's my anti-virus software of choice for Windows and I would also like to run it on my primary OS, which is of course Arch. Any info on how to make it happen

  • OC4J and Handle.getEJBObject()

    Hi all, I am developing a Stateless session bean. I want to save its remote reference through a client so that I can call it later. The code is working fine in Websphere 6.0 but not in OC4J 10.1.3. The Client Code is: Hashtable env = new Hashtable();

  • Problem with starting Sun ONE Server after changing Java version

    Hi I installed Sun ONE Java Server 6.1 SP6 on Redhat Enterprise 4.0 64bit. This version uses java version "1.4.2_04" which is intalled in /opt/SUNWwbsvr/bin/https/jdk. With this configuration everything works ok. When I changed Java (/usr/java/jdk1.5

  • Restrain download of old emails

    I have a MacBook Air. My email address is a Gmail one and everytime I checked my emails it downloaded thousands of old emails that already were in my inbox. At the Apple Store they fixed something in my Gmail settings on internet and it has stopped d