Display multiple record block in multiple canvases

Hi,
I am facing a problem while creating multiple canvases with the same blocks.
I have block A, B, C. Block B and C are detail of A. I want items from blocks B and C to appear in multiple canvases. I tried doing the synchronize with item. It works fine but I cannot see the scrollbar in other canvas. Is it possible to show scrollbar in multiple canvases?
Thanks in advance.
DK

If you mean that you want the scrollbar of the same block to be appeared on multiple canvases where items of this block are placed in different canvases... unfortunately... you cannot....
Greetings...
Sim

Similar Messages

  • Display multiple records in forms 6i

    hi every body
    will anybody plz tell me how to display multiple records in tabular view of forms 6i.for example say i have a field in a block of a form.and i have to display multiple records in another block in the same form depending upon the value of the mentioned field in the above block.
    will anybody help me??

    Why are you manually populating your data block when Oracle Forms will do this for you? Oracle Forms is tightly integrated with the Oracle Database. You should just base your Forms data block on the ISSUED table. Then you can filter the records displayed by setting the WHERE Clause property to ID = :BLOCK1.ID or you can dynamically set it with code using the SET_BLOCK_PROPERTY('BLOCK_NAME',DEFAULT_WHERE,'ID = :BLOCK.ID') built-in.
    Then, the only code you would need in your Button's When-Button-Pressed trigger would be:
    BEGIN
      GO_BLOCK('BLOCK2');
      EXECUTE_QUERY;
    END;This is the point of InoL's reply. When a Form is based on a table, you can use the "Enter Query" and "Execute Query" built-in features to query and display records.
    Sounds like you might be new to Oracle Forms development. If that is the case, you might want to go through a few Forms Tutorials to learn what Forms can do for you. ;) Just search the internet for "Oracle Forms Tutorials" and you will find many!
    Craig...

  • Problem in UPDATE statement In Multiple Record Block

    Hi Friends,
    I have problem in update Statement for updating the record in multiple record data Block.
    I have two data Block the master block is single Record block and the 2nd data block is Multiple Record data Block.
    I am inserting the fields like category,and post_no for partiular job in single data block
    Now in second Multiple Record Data Block,i am inserting the multiple record for above fileds like no. of employees work in the position
    There is no problem in INSERT Statement as it is inerting all record But whenever i want to update particular Record (in Multiple Block) of employee for that category and Post_no
    then its updating all the record.
    my code is Bellow,
    IF v_count 0 THEN
    LOOP
    IF :SYSTEM.last_record 'TRUE' THEN
    UPDATE post_history
    SET idcode = :POST_HISTORY_MULTIPLE.idcode,
    joining_post_dt = :POST_HISTORY_MULTIPLE.joining_post_dt,
    leaving_post_dt = :POST_HISTORY_MULTIPLE.leaving_post_dt,
    entry_gp_stage = :POST_HISTORY_MULTIPLE.entry_gp_stage
    WHERE post_no = :POST_HISTORY_SINGLE.post_no
    AND category = :POST_HISTORY_SINGLE.category
    AND roster_no = :POST_HISTORY_SINGLE.roster_no;
    AND idcode = :POST_HISTORY_MULTIPLE.idcode;
    IF SQL%NOTFOUND THEN
    INSERT INTO post_history(post_no,roster_no,category,idcode,joining_post_dt,leaving_post_dt,entry_gp_stage)
    VALUES(g_post_no, g_roster_no, g_category, :POST_HISTORY_MULTIPLE.idcode, :POST_HISTORY_MULTIPLE.joining_post_dt,
    :POST_HISTORY_MULTIPLE.leaving_post_dt,:POST_HISTORY_MULTIPLE.entry_gp_stage);
    END IF;
    next_record;
    ELSIF :SYSTEM.last_record = 'TRUE' THEN
    UPDATE post_history
    SET idcode = :POST_HISTORY_MULTIPLE.idcode,
    joining_post_dt = :POST_HISTORY_MULTIPLE.joining_post_dt,
    leaving_post_dt = :POST_HISTORY_MULTIPLE.leaving_post_dt,
    entry_gp_stage = :POST_HISTORY_MULTIPLE.entry_gp_stage
    WHERE post_no = :POST_HISTORY_SINGLE.post_no
    AND category = :POST_HISTORY_SINGLE.category
    AND roster_no = :POST_HISTORY_SINGLE.roster_no;
    AND idcode = :POST_HISTORY_MULTIPLE.idcode;
    IF SQL%NOTFOUND THEN
    INSERT INTO post_history(post_no,roster_no,category,idcode,joining_post_dt,leaving_post_dt,entry_gp_stage)
    VALUES (g_post_no,g_roster_no,g_category,:POST_HISTORY_MULTIPLE.idcode,
    :POST_HISTORY_MULTIPLE.joining_post_dt,:POST_HISTORY_MULTIPLE.leaving_post_dt,:POST_HISTORY_MULTIPLE.entry_gp_stage);
    END IF;
    EXIT;
    END IF;
    END LOOP;
    SET_ALERT_PROPERTY('user_alert',ALERT_MESSAGE_TEXT, 'Record Updated successfuly' );
    v_button_no := SHOW_ALERT('user_alert');
    FORMS_DDL('COMMIT');
    CLEAR_FORM(no_validate);
    Please Guide me
    Thanks in advence

    As you do a loop over all the records in the block, of course every record is updated.
    Also, what you do is not the way is intended to be used. In general, you base a block on a table,then there is no need at all for writing INSERT's or UPDATE's. Forms also know's then, which records to be updated and which not.

  • Display multiple records as sub-sections in the same report.

    I am using Crystal Reports (VS-2005).
    In a report, I have various sub-sections in the Details section. Each section represents a category and is connected with SQL command which uses LEFT OUTER JOIN.
    The first section is the main section and the subsequent sections are the child sections.
    Sometimes, a sub-section (other than the first main sub-section) picks multiple records of that category. In this case the report extends to multiple pages. Each report displays one record of this sub-section.
    I want to show the the same sub-section multiple times in the same report as opposed to multiple reports that are now automatically generated by Crystal Reports.
    How to handle this issue?

    This is a .NET programming forum related to Crystal Reports. Your question is best suited for our report design forum below. Also, when you post your question it will be helpful if you use report design terminology. We have elements like Report Header, Page Header, Groups, and Details sections. Just mentioning "sections" doesn't give us a good idea about what you are attempting to do.
    Check out the grouping options and see if it helps. You might need to create a formula to help you with your grouping though.
    If you like, I can move this to the design forum.
    [SAP Crystal Reports Design|SAP Crystal Reports;

  • Sort multiple record block

    Hi,
    i want to sort a multiple record block by pressing a key on a non updatable field in the block.
    Example:
    i have a list of adresses in the block. Now i want to jump to all Adresses which starts with B.
    Does anybody know a solution ?
    Thanks in advance. MM

    No problem:
    When your records are ordered by the name (using block's order-by-clause),
    use a procedure like the following:
    procedure find_name(p_letter in varchar2) is
    begin
      go_block('BLOCK');
      loop
        exit when :system.last_record = 'TRUE' or :block.name >= p_letter;
        next_record;
      end loop;
    end;

  • How to create Form based on a table to display multiple record

    Hello All,
    Would somebody please tell me how to create a Form based on a single table ,
    to view and insert multi record based on a single table.In other words I would like
    to have a form as shown below ,where the users can Insert,update,delete,query and so on
    Item Id PArt Number List Price
    100 Item-1 $120.oo
    200 Item-2 $150.00
    300 Item-3 $50.00
    I know I can do it as Single Record block using Tabular Format,but multiple record ?????
    Thanks in Anticipation
    Babu

    Try this method,
    1. Creat a Master Detail Form (Custom Layout and not tabular)
    and in the master block select one field.
    2. In the HTML layout for master remove the reference for
    that field(so that nothing will appear in the master block
    of the form).
    3. Before the update (in the Pl/SQL event handler select the 'Save' event and write the following code to avoid updating master block).
    p_session.set_value(p_block_name => 'MASTER_BLOCK',
    p_attribute_name => 'MASTER_ACTION',
    p_value => 'None');
    doSave;
    For eg, let's say
    Master is from 'Dept' table and Detail is from 'Emp' table(with join condition Dept.dept_id = Emp.dept_id). In the master remove everything except dept_id field and in the HTML layout for master remove the reference of the dept_id field(you cannot remove this field physically from the master layout). Now the form will look like multirow form rather than master detail form but only problem with this workaround is 'Detail Action' will be present in the detail block.
    I hope this will help you.
    Thanks
    -Krishnamurthy

  • Display multiple records with CSS

    PHP MySQL
    I have a MySQL table with several columns and multiple
    records... it is easy
    to display these records in a <table> using the repeat
    record server
    behavior applied to the <tr> that displays the records.
    I would like to do this with CSS and eleminate
    <table>'s
    My question is can this be done displaying the records in a
    <div> using the
    repeat record server behavior?
    Or is this just one of those things that a <table> is
    required?
    Jeff

    Displaying rows of data is actually the reason tables were
    originally
    invented. :)
    You need a table with the number of columns for your data and
    two rows. The
    first row is for the column headers. The second row is for
    the PHP
    placeholder that will be replaced with data. Apply the repeat
    region to
    this second row either for all rows or the number of rows you
    desire to
    display on one page .. in which case you would also use
    recordset paging.
    (previous, next)
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Jeff" <[email protected]> wrote in message
    news:erindt$i70$[email protected]..
    > PHP MySQL
    > I have a MySQL table with several columns and multiple
    records... it is
    > easy to display these records in a <table> using
    the repeat record server
    > behavior applied to the <tr> that displays the
    records.
    >
    > I would like to do this with CSS and eleminate
    <table>'s
    > My question is can this be done displaying the records
    in a <div> using
    > the repeat record server behavior?
    > Or is this just one of those things that a <table>
    is required?
    >
    > Jeff
    >

  • How to Display multiple records in Table in VC without using BAPI.

    Hi All,
    I am working on Visual composer (NW2004s SP10). I am trying to display Poitems from BAPI_PO_GETDETAIL. I am creating my front end using VC. I have created one form and one Table where I want to display POItems. I am writing my logic of retrieving data from BAPI in CAF.I am connecting them in Guided procedures.When I run my process in Guided Procedures I am getting single row displayed in table. Can Anyone help me how to display multiple rows in table.
    Regards,
    Sheetal

    Hi Sheetal,
    if the BAPI returns a table, then you get multiple rows. From which system is the BAPI, so that I can check the BAPI to give you further information.
    Best Regards,
    marcel

  • Display multiple master records

    Hi,
    I have a master and a detail block. The user wants to see all the master records and associated detail records (in oracle forms)in the same page like a master-detail report displays all info in one shot.Right now by defining master-detail relationship, I am able to display master records one by one and corresponding detail records. User has to scroll or use down arrow to look at the secone master data item value and corresponding detail records.Is this possible??
    eg:
    master
    set of detail records
    master
    set of detail records
    master
    set of detail records
    etc...
    Thanks,Raj

    The issue I am having here is with the format/display. I know by creating a view or just by joining two tables, I can get all master/detail information.But is there any way to display them in the follwing format
    Dept 10
    employees in dept 10
    Dept 20
    employees in dept 20
    Dept 30
    employees in dept 30
    etc.
    like in a report.This form should be editable.
    The number of departments are not fixed, it can grow......
    Thanks,Raj

  • Displaying multiple records on 1 screen

    scenario:
    - search dept_head thru dept_id in screen 1 via user input (dept_id)
    - screen2 has 2 buttons BACK and NEXT
    - if dept_head is only 1:
         BACK - go back to screen 1
         NEXT - exit the screen (im done on this)
    - if dept_head is more than 1: (this is my problem)
         BACK - display previous record, if on record #1 back to screen 1
         NEXT - display next record, if last record is reached - exit.
    this is my approach...
    PAI - 1st screen
    no_of_rec = 0
    select dept_id
         into v_dept_id     
         from dept
         where dept_id = user_input.
         no_of_rec = no_of_rec + 1.
    endselect.
    PBO - 2nd screen (I have a loop to display the record(s))
    LOOP.
         ' display the records to corresponding fields'
    ENDLOOP.
    if no_of_rec = 1
         'disble NEXT button'
    else
         'enable NEXT and BACK buttons'
    endif.
    PAI (2nd screen)
    rec_num = 1.
    case sy-ucomm.
    when 'NEXT'.
         rec_num = rec_num + 1
         if rec_num < no_of_rec.
         **i need to display next record in their corresponding fields - - - - how would i be able to do this??
    do i need another loop or a select statement..
    when 'BACK'.
    i also don't know how to display the records in their correponding fields in screen2..
         **please help...
    also do i have a mistake in my approach?
    thanks so much... hope you could help!

    Hi paul,
    pls add : next_record;
    OPEN prop_cur(:TXT_BACODE);
    FETCH prop_cur INTO
    :blk_address.txt_ref
    ,:blk_address.txt_address
    ,:blk_address.txt_desc
    ,:blk_address.txt_band_value
    ,:blk_address.txt_date1 ;
    next_record;
    CLOSE prop_Cur;
    Hope this will work.
    Regards
    Anu

  • Displaying multiple text

    hi to all
    how to display multiple text in only one text item or anything .
    example:
    when i type lke this:
    *balloon
    *cake
    *cap
    *cup
    in one text item or any item.
    then it will display to other forms like that
    *balloon
    *cake
    *cap
    *cup
    is this possible to do?to update?to insert in database?
    mica

    yes
    i have two blocks
    blockA where i create my records [   A    ] text item#1
    blockB where i can view my records [  A   ] text item#2
    if a create in A.. then when i goto blockB the data that i created appears in text item#2
    mica

  • Display specific row to display multiple time in jsf table 11.1.1.2.0 with

    HI ALL,
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I have to display the values in jsf frm table where i'm using DislayCertDetailVO . In dis VO i'm having a column no.of certificaties .taking dis column value when i navigate to other page jsf by selecting a specific row. here i have to display the selected row in multiple times based on the no.of.certificates column value.
    I want to display specific row to display multiple time to repeat same row in a table in jsf based on the value from bean or table in database.
    Edited by: user9010551 on Apr 28, 2010 6:14 AM
    Edited by: user9010551 on Apr 28, 2010 10:33 PM

    Hi, Trying it once more to give more clarity of my scenario.
    I have to navigate from 1 screen to the other by picking a given table record/row from the 1st screen. While displaying the record on the 2nd screen the catch is that, I have to display it as many times as the value in a cell of the selected record.
    eg.
    screen 1
    col1   col2     col3
    2 order1 item1
    [next]
    On clicking next it should look like
    screen2
    col1           col2            col3           col4
    order1 item1
    order1 item1
    where col3 and col4 will be editable by the user and col1 is the value depends how many times i have repeat the row/record
    Hope this give more clarity.

  • Load and Display Multiple Images in a Web Dynpro Table

    I am new to Web Dynpro and I am wondering if anyone can help me with an application that I am currently developing. I have a particular requirement to store images in a database table (not MIME repository) and then display them in a WD table element. An image can be of JPEG, PNG or TIFF format and is associated with an employee record.
    I want to create a view in my application that displays multiple images in a table, one image per row. I want to do this using Web Dynpro for ABAP, not Java. I have looked into pretty much all examples available for Web Dynpro and came to the conclusion that Components such as WDR_TEST_EVENTS and WDR_TEST_UI_ELEMENTS do not have any examples of images being stored in a database table and viewed in/from a Web Dynpro table element. Programs such as RSDEMO_PICTURE_CONTROL, DEMO_PICTURE_CONTROL and SAP_PICTURE_DEMO do not show this either.
    The images to be displayed in the Dynpro table are to come from a z-type table, stored in a column of data type XSTRING (RAW STRING). So I would also like to know how to upload these images into this z-type table using ABAP code (not Java).
    Your help would be greatly appreciated.
    Kenn

    Hi,
    May be this is the is the correct place to post your query.
    Web Dynpro ABAP
    Regards,
    Swarna Munukoti.
    Edited by: Swarna Munukoti on Jul 16, 2009 3:52 PM

  • Simple Event being Displayed Multiple Times

    I have a simple event from the past that is being displayed multiple times. There are no other UIDs that are the same in iCal and no other event has the same SUMMARY name.
    This particular event shows up 9 times. I can also reproduce the result from Automator by searching the specific calendar and looking for events in the date range.
    The event is as follows:
    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//Apple Inc.//iCal 3.0//EN
    CALSCALE:GREGORIAN
    BEGIN:VEVENT
    SEQUENCE:5
    TRANSP:OPAQUE
    UID:EC6F5DBC-9BCC-4007-87F2-4A9C796C8551
    DTSTART:20070330T000000
    DTSTAMP:20071206T205550Z
    SUMMARY:Babysit Paul
    CREATED:20080919T173959Z
    DTEND:20070401T120000
    END:VEVENT
    END:VCALENDAR
    I am not very familiar with the format but it looks pretty straight forward.
    The calendar is being synched via Mobile Me and is shared by another two computers. Not sure why this should be relevant since the entry on the computer and on Mobile Me both show this duplication of the event.
    The reason I was looking at all was because of the hangs in iCal since I set the sync to automatic.
    Any ideas welcome,
    Richard

    Post Author: foghat
    CA Forum: Data Connectivity and SQL
    If all the records you are displaying in your report
    truly are duplicated, you could try check off 'select distinct records'
    from the File --> Report Options menu.  While this may solve the problem for you, it would be worthwhile to determine if you are actually joining your tables correctly.
    likely the records aren't an exact duplicate and the problem is with your join criteria.  To verify this you can:  start by removing table b from the database expert altogether.  does
    that solve your problem of multiple rows?  If it does, you are not joining to table b correctlyIf you still have
    multiple rows, loan_id on its own must not make a record unique.  Is
    loan_id duplicated in either of your tables?  Just because loan_id is a
    primary key does not necessarily mean it is unique - often a record
    will have 2 or more primary keys and only when all primary keys are
    used is the record unique.   If you display all of the columns
    from both tables, you will hopefully see some (maybe just one) columns
    where the value is different between your seemingly duplicate data.
    You may need to join on this value as well.as for the type of join you are using (inner, not enforced) you should be fine. Good luck

  • Display multiple paging

    hello all,
    i am having problem to paging my result in multiple pages. i'm already searching in this forum on how to solve on paging pages but none of them can help me. here is my code..
    // paging section
    int rownumb = listof.countData(offer_type);
    out.println("row : " +rownumb);
    int perpage = 2;
    int pageno = rownumb/perpage;
    int balance = rownumb - (pageno * perpage);
    if (balance != 0) {
    pageno = pageno + 1;
    out.println(" balance : " balance "<br>");
    out.println(" rownumb pageno : " pageno "<br>");
    int inc =0;
    for (int i=1; i<=pageno ; i++) {
    if ( i == pageno) { %>
    <font color="#ff3366"><%=i%></font>
    <% }
    else { %>
    <a href="ListOffer.jsp?offer_type=<%=offer_type%>&pageno=<%=i%>"><%
    out.println("displaying page number : " i "<br></a>");
    listof.queryCategory(offer_type);
    col = listof.getColumn();
    row = listof.getRow();
    outVector = listof.getVectorRow();
    ++inc;
    // end paging
    //in my java bean file
    function countData
    String query = SELECT count(*) FROM offer
    WHERE otype= '"+offer_type+"' AND ostatus = 'posted'";
    function queryCategory
    String query = SELECT offerid, otitle, odescription, oposted_date, oexpiry_date FROM offer WHERE otype='"+offer_type+"' AND ostatus='posted' AND (oposted_date <= '"+currentDate+"' AND oexpiry_date >= '"+currentDate+"')ORDER BY offerid ASC LIMIT 2 ";
    the problem is i can't display 2 data in one pages eventhough the code already limit the data to display 2 rows in 1 pages.
    can anybody solve for me?
    </a>

    I can offer my 2-cents but...
    I'm assuming you are using a MySQL database. What does your query return when you run it from the MySQL prompt? It's good practice to execute your queries in some SQL client before hand.
    From MySQL Reference Manual:
    The LIMIT clause can be used to constrain the number of rows returned by the SELECT statement. LIMIT takes one or two numeric arguments.
    If two arguments are given, the first specified the offset of the first row to return; the second specifies the maximum number of rows to return. The offset of the initial row is 0 (not 1):
    mysql> select * from table LIMIT 5,10; # Retrieve rows 6-15
    If one argument is given, it indicates the maximum number of rows to return:
    mysql> select * from table LIMIT 5; # Retrieve first 5 rows
    In other words, LIMIT n is equivalent to LIMIT 0,n.
    Just a note, LIMIT performs much faster on large result sets, however, it is a non-standard MySQL extension, and therefore, it is suggested to avoid using it in queries.
    First thing I can see is that the way you are using LIMIT, the first two records will always be returned. You would need to pass two parameters (or at least one -> start) to queryCategory, i.e.
    public void queryCatetory(int start, int count)
    String query = "... LIMIT " + start + "," + count;
    Also, you don't need to execute another query (the countData function) to get the record count, simply move the ResultSet cursor to the last position and get the row number, i.e.
    rs.last();
    noRows = rs.getRow();
    For the pageno value, this is what you should be getting as a parameter to the page.
    int pageno = Integer.parseInt(request.getParameter("pageno"));
    For the query paging part, I can offer this bit of code which might help:
    final int ROW_COUNT = 10;
    int currPage, rowStart, rowStop, totalPages, noRows;
    String scriptName = request.getRequestURI();
    String query = "SELECT offerid, otitle, odescription, oposted_date, oexpiry_date FROM offer WHERE otype='"+offer_type+"' AND ostatus='posted' AND (oposted_date <= '"+currentDate+"' AND oexpiry_date >= '"+currentDate+"') ORDER BY offerid";
    // get the page parameter
    try { currPage = Integer.parseInt(request.getParameter("pageno"); }
    catch (NumberFormatException e) { currPage = 1; }
    // connect to database and execute query
    PreparedStatement stmt = conn.prepareStatement(query);
    ResultSet rs = stmt.executeQuery();
    // get the record count
    rs.last();
    noRows = rs.getRow();
    if (noRows == 0)
    out.println("Sorry, no records found!");
    else
    // calculate row start/stop and total pages
    // if current page is 2, we want to display records 11-20
    rowStart = (currPage - 1) * ROW_COUNT + 1;
    // alternatively, you can do:
    // rowStop = Math.min(noRows, currPage * ROW_COUNT);
    rowStop = Math.min(noRows, rowStart + ROW_COUNT - 1);
    // division by integer yeilds a truncated integer value so we
    // have to check for a remainder, but you can also do:
    // totalPages = (int)Math.ceil(ROW_TOTAL / (ROW_COUNT * 1.0));
    totalPages = (noRows / ROW_COUNT) + (noRows % ROW_COUNT == 0 ? 0 : 1);
    // set result set to start position and print the records
    rs.absolute(rowStart);
    for (int row = rowStart; row <= rowStop; row++)
    // display current record data
    rs.next();
    // print query paging links
    out.print("<p align=\"center\">");
    if (currPage > 1)
    out.print(" <a href=\"" + scriptName + "?pageno=" + (currPage - 1) + "\">< Prev</a>");
    for (int i = 1; i <= totalPages; i++)
    if (i == currPage)
    out.print(" <b>" + i + "</b>");
    else
    out.print(" <a href=\"" + scriptName + "?pageno=" + i + "\">" + i + "</a>");
    if (currPage < totalPages)
    out.print(" <a href=\"" + scriptName + "?pageno=" + (currPage + 1) + "\">Next ></a>");
    out.print("</p>");
    I'm sure there is a more elegant solution out there. I believe that the standard taglib has some tags which can do this for you. Hopefully someone can confirm this can possibly provide further details.
    Hope this helps :)

Maybe you are looking for

  • Can my wife and I share when we have separate Apple IDs

    My wife and I have seperate Apple IDs for our Macs and iPhones. We now have a couple Apple TVs and we are trying to sort out the best way to setup so we can see each of our content from iCloud and also to watch moves, play music from whatever of our

  • Help Setting Up a Theater for 50-100 In a Community Center

    Hi, folks-- I am a gringo living in central Mexico (loving it, by the way). There is a fantastic community center here that shows important indie flicks to the community free of charge. Their equipment is horrible. I am trying to put together a syste

  • How do I get photos from iphone5 to Mac book pro

    I am trying to get photos taken with my iphone5 transferred to iPhoto on my mac book pro

  • How to Convert an RMI Server into WINNT service

    I have an RMI Server, that looks like the following SimpleRMIServer.java import java.io.*; import java.rmi.*; import java.rmi.server.*; import java.rmi.registry.*; import java.rmi.*; import java.rmi.server.UnicastRemoteObject; public class SimpleRMIS

  • Schema Group for Local & Import for RFQ, Contract, PO

    Hi, I would like to create two schema for Local & Import for RFQ, Contact and PO. I have customized the schema as per my own requirement, it is working fine in PO RFQ but in Contract the same Schema is not appearing when i am trying to maintained hea