SQL Query to retriew open GRNs for Purchasning in R12

Hi All,
Can anybody help me by providing an SQL Query to retrieve all open GRNs in purchasing. As a part of re-implementation we are loading open balance from the existing system. In order to validate the open GRNs standard report is not apt results.
Thanks & Regards,
Sadanand

Hi Sadanand,
select
pv.vendor_id,
pv.segment1 vendor_num,
pv.vendor_name,
pvs.vendor_site_id,
pvs.address_line1||', '||
pvs.address_line2||', '||
pvs.address_line3||', '||
pvs.address_line4||', '||
pvs.area_code||', '||
pvs.city||', '||
pvs.country ||' - '||
pvs.zip vendor_address,
(select organization_code from org_organization_definitions
where pll.ship_to_organization_id = organization_id) org,
msi.segment1||'.'||
msi.segment2||'.'||
msi.segment3||'.'||
msi.segment4 item_code ,
msi.description item_desc,
msi.primary_unit_of_measure uom,
pll.quantity qty_ordered,
(nvl(pll.quantity,0) - nvl(pll.quantity_received,0) - nvl(pll.quantity_cancelled,0)) qty_due,
-- pod.quantity_delivered,
poh.segment1 po_num,
pol.line_num,
pll.shipment_num,
pll.need_by_date,
pol.unit_price,
jip.tax_line_no,
jit.tax_name,
jip.tax_rate,
jip.tax_amount,
hrl.location_code shipping_loc
from
po_headers_all poh,
po_lines_all pol,
po_line_locations_all pll,
po_distributions_all pod,
mtl_system_items msi,
po_vendors pv,
po_vendor_sites_all pvs,
ja_in_po_line_location_taxes jip,
ja_in_tax_codes jit,
hr_locations_all_tl hrl
where
poh.org_id = :p_org_id
and poh.authorization_status = 'APPROVED'
and poh.closed_code = 'OPEN'
and pol.po_header_id = poh.po_header_id
and ( pol.closed_code = 'OPEN' or pol.closed_code = 'OPEN FOR RECEIVING' or pol.closed_code is null )
and pll.po_line_id = pol.po_line_id
and (nvl(pll.quantity,0) - nvl(pll.quantity_received,0) - nvl(pll.quantity_cancelled,0)) > 0
and ( pll.cancel_flag = 'N' or pll.cancel_flag is null )
and pod.line_location_id = pll.line_location_id
and msi.inventory_item_id = pol.item_id
and msi.organization_id = pll.ship_to_organization_id
and pv.vendor_id = poh.vendor_id
and pvs.vendor_site_id = poh.vendor_site_id
and jip.line_location_id = pll.line_location_id
and jip.po_line_id = pll.po_line_id
and jip.po_header_id = pll.po_header_id
and jit.tax_id = jip.tax_id
and hrl.location_id (+) = pll.ship_to_location_id
order by poh.segment1 ,
pol.line_num ,
pll.shipment_num ,
jip.tax_line_no
Regards
sanjay

Similar Messages

  • Sql query to find the balances for a customer account wise.

    Hi,
    Could someone help me with the sql query to find the balances for each customer account wise. This is need to generate the report.
    presently we are using this query, but the output doesnot return the expected result.
    SELECT sum(nvl(ps.acctd_amount_due_remaining,0)) "Balance"
    FROM      ra_cust_trx_line_gl_dist_all gld,
              gl_code_combinations c,
              ar_payment_schedules_all ps,
              RA_CUSTOMER_TRX_ALL rat,
              ra_customers rc
    WHERE      c.CHART_OF_ACCOUNTS_ID = 101
    and gld.code_combination_id = c.code_combination_id
         and rat.CUSTOMER_TRX_ID=gld.CUSTOMER_TRX_ID
         and rat.CUSTOMER_TRX_ID=ps.CUSTOMER_TRX_ID
    and ps.customer_id=rc.customer_id
         and ps.status='OP'
         and ps.gl_date <= :PDATE
         and ps.org_id=:PORGID
         and ps.class in ('GUAR','INV','DM','DEP')
    and c.SEGMENT4=:Account_id
    and ps.customer_id=:Customer_id
    Thanks in advance.
    Kalyan.

    Can someone help us with this.

  • Sql query to find all contacts for an account

    I wonder if someone wrote an sql query to find all contacts for an account number in Oracle customer master. We are on EBS 11.5.10.
    I am also looking for sql query to find all ship to addresses for an account number.
    Thanks.

    Can you also post the query for people who read this post and are also looking for an answer?
    Regards,
    Johan Louwers.

  • SQL Query to find cumulative values for a Financial Year

    Dear users,
    My requirement is to create a SQL query for a table/view where I have day-wise data. I want to find out cumulative values for financial year by giving any date. It should add the values from start of financial year till that date in the financial year.
    I think creating a view of such type will post heavy burden on resources since accuimulation will be done for each day upto that day.
    Thanks

    Dear users,
    My requirement is to create a SQL query for a
    table/view where I have day-wise data. I want to
    find out cumulative values for financial year by
    giving any date. It should add the values from start
    of financial year till that date in the financial
    year.
    I think creating a view of such type will post heavy
    burden on resources since accuimulation will be done
    for each day upto that day.
    ThanksKumar's solution will serve yours purpose but m not agreed
    I think creating a view of such type will post heavy
    burden on resources since accuimulation will be done
    for each day upto that day. Khurram

  • Sql query - Selecting last recorded values for each date in specified period

    Hello,
    Can someone please help me with my problem.
    I'm trying to get last recorded balance for each day for specific box (1 or 2) in specified period of days from ms access database using ADOTool.
    I'm trying to get that information with SQL query but so far unsuccessfully...  
    My table looks like this:
    Table name: TestTable
    Date Time Location Box Balance
    20.10.2014. 06:00:00 1 1 345
    20.10.2014. 12:00:00 1 1 7356
    20.10.2014. 18:45:00 1 1 5678
    20.10.2014. 23:54:00 1 1 9845
    20.10.2014. 06:00:02 1 2 35
    20.10.2014. 12:00:04 1 2 756
    20.10.2014. 18:45:06 1 2 578
    20.10.2014. 23:54:10 1 2 845
    21.10.2014. 06:00:00 1 1 34
    21.10.2014. 12:05:03 1 1 5789
    21.10.2014. 15:00:34 1 1 1237
    21.10.2014. 06:00:00 1 2 374
    21.10.2014. 12:05:03 1 2 54789
    21.10.2014. 15:00:34 1 2 13237
    22.10.2014. 06:00:00 1 1 8562
    22.10.2014. 10:00:00 1 1 1234
    22.10.2014. 17:03:45 1 1 3415
    22.10.2014. 22:00:00 1 1 6742
    22.10.2014. 06:00:05 1 2 562
    22.10.2014. 10:00:16 1 2 123
    22.10.2014. 17:03:50 1 2 415
    22.10.2014. 22:00:10 1 2 642
    23.10.2014. 06:00:00 1 1 9876
    23.10.2014. 09:13:00 1 1 223
    23.10.2014. 13:50:17 1 1 7768
    23.10.2014. 19:47:40 1 1 3456
    23.10.2014. 21:30:00 1 1 789
    23.10.2014. 23:57:12 1 1 25
    23.10.2014. 06:00:07 1 2 976
    23.10.2014. 09:13:45 1 2 223
    23.10.2014. 13:50:40 1 2 78
    23.10.2014. 19:47:55 1 2 346
    23.10.2014. 21:30:03 1 2 89
    23.10.2014. 23:57:18 1 2 25
    24.10.2014. 06:00:55 1 1 346
    24.10.2014. 12:30:22 1 1 8329
    24.10.2014. 23:50:19 1 1 2225
    24.10.2014. 06:01:00 1 2 3546
    24.10.2014. 12:30:26 1 2 89
    24.10.2014. 23:51:10 1 2 25
    Let's say the period is 21.10.2014. - 23.10.2014. and I want to get last recorded balance for box 1. for each day. The result should look like this:
    Date Time Location Box Balance
    21.10.2014. 15:00:34 1 1 1237
    22.10.2014. 22:00:00 1 1 6742
    23.10.2014. 23:57:12 1 1 25
    So far I've managed to write a query that gives me balance for ONLY ONE date (date with highest time in whole table), but I need balance for EVERY date in specific period.
    My incorrect code (didn't manage to implement "BETWEEN" for dates...):
    SELECT TestTable.[Date], TestTable.[Time], TestTable.[Location], TestTable.[Box], TestTable.[Balance]
    FROM TestTable
    WHERE Time=(SELECT MAX(Time)
    FROM TestTable
    WHERE Location=1 AND Box=1 );
    Tnx!
    Solved!
    Go to Solution.

    For loop
    following query keep day (here 24 in below query) Variable from ( 1 to 28-29/30/31 as per month)
    SELECT TOP 1 TestTable.[Date], TestTable.[Time], TestTable.[Location], TestTable.[Box], TestTable.[Balance]
    FROM Test Table.
    WHERE  Time=(SELECT MAX(Time) FROM TestTable WHERE Location=1 AND Box=1 )
    AND DATE = "2014-10-24";
    PBP (CLAD)
    Labview 6.1 - 2014
    KUDOS ARE WELCOMED.
    If your problem get solved then mark as solution.

  • Sql query to get Thursday (Date) for the year 2014

    Hello All,
    I want to get the date for all the Thursdays in the year 2014. How can I achieve this using SQL query? Can anybody give me a hand with this? Thanks.
    Amol

    Hi,
    Check if this can help you
    DECLARE @counter INT
    DECLARE @Date Date
    SELECT @counter = 0
    Select @Date = '20131226'
    WHILE @counter <= 52
    BEGIN
    select Thursday = convert(varchar(10),DATEADD(WEEK,1, @Date),120)
    SELECT @counter = @counter + 1
    Select @Date = DATEADD(WEEK,1, @Date)
    END
    Regards
    Prasad Tandel
    Please dont forget to mark as answer if this helps you :)

  • What is sql query to print BOM hierarchy for a give item_number

    Hi,
    anyone is having sql query to print entire bom hiereachy for a given item number.
    Regards,
    ashok

    Try below query
    SELECT /* ORDERED FIRST_ROWS INDEX(MSI MTL_SYSTEM_ITEMS_U1)
    INDEX(BOM BOM_BILL_OF_MATERIALS_U2)
    INDEX(LU10 MFG_LOOKUPS_U1) INDEX(FCL FND_COMMON_LOOKUPS_U1) */
    rowidtochar(bet.rowid) row_id,
    bet.top_bill_sequence_id,
    bet.bill_sequence_id,
    bet.component_sequence_id,
    bet.component_item_id,
    bet.organization_id,
    bet.operation_seq_num,
    bet.plan_level,
    bet.extended_quantity,
    bet.item_num,
    bet.sort_order,
    bet.group_id,
    bet.item_cost,
    nvl(msi.reservable_type, 2) reservable_type,
    bet.extend_cost_flag,
    bet.top_alternate_designator,
    bet.top_item_id,
    bet.effectivity_date,
    bet.disable_date,
    bet.implementation_date,
    decode(bet.implementation_date, null, 2, 1) implemented_flag,
    bet.optional,
    bet.planning_factor,
    bet.component_yield_factor,
    bet.include_in_rollup_flag,
    bet.wip_supply_type wip_supply_type,
    ml2.meaning supply_type,
    bet.supply_subinventory,
    bet.supply_locator_id,
    bet.locator,
    bet.component_remarks,
    bet.change_notice,
    bet.component_quantity,
    bet.operation_lead_time_percent,
    bet.operation_offset,
    bet.mutually_exclusive_options,
    bet.check_atp,
    bet.required_to_ship,
    lu10.meaning so_basis,
    bet.required_for_revenue,
    bet.include_on_ship_docs,
    bet.low_quantity minimum_quantity,
    bet.high_quantity maximum_quantity,
    msi.primary_uom_code unit_of_measure,
    msi.item_type item_type,
    fcl.meaning item_type_description,
    msi.INVENTORY_ITEM_STATUS_CODE item_status,
    msi.description,
    msi.eng_item_flag,
    msi.cum_manufacturing_lead_time,
    msi.cumulative_total_lead_time,
    msi.full_lead_time manufacturing_lead_time,
    bom.assembly_item_id parent_item_id,
    bom.alternate_bom_designator parent_alternate,
    decode(bom.alternate_bom_designator, null, 2, 1) parent_alternate_flag,
    bom.assembly_type eng_bill,
    LPAD(bet.PLAN_LEVEL, LEAST(bet.PLAN_LEVEL, 8), '.') DISPLAY_PLAN_LEVEL,
    TO_CHAR(BET.EFFECTIVITY_DATE, 'HH24:MI') EFFECTIVITY_TIME,
    TO_CHAR(BET.DISABLE_DATE, 'HH24:MI') DISABLE_TIME,
    BET.EXTENDED_QUANTITY EXTENDED_QUANTITY6,          
    DECODE(BET.EXTEND_COST_FLAG, 1, BET.ITEM_COST * BET.EXTENDED_QUANTITY, 2, 0, NULL) EXTENDED_COST,
    BET.OPERATION_SEQ_NUM OPERATION_SEQ_NUM7,          
    MSI.BOM_ITEM_TYPE bom_item_type,
    MSI.REPLENISH_TO_ORDER_FLAG,
    MSI.PICK_COMPONENTS_FLAG,
    MSI.ATP_COMPONENTS_FLAG,
    MSI.ATP_FLAG,
    MSI.SHIPPABLE_ITEM_FLAG,
    MSI.MRP_PLANNING_CODE,
    MSI.SO_TRANSACTIONS_FLAG,
    MSI.CUSTOMER_ORDER_ENABLED_FLAG,
    MSI.INVOICE_ENABLED_FLAG,
    MSI.INVENTORY_ASSET_FLAG,
    MSI.SEGMENT1,
    MSI.SEGMENT1,
    BET.CURRENT_REVISION,
    MSI.GLOBAL_ATTRIBUTE6 ITEM_SPECIFICATION,
    BIC.ATTRIBUTE2 ITEM_SVC,
    BIC.ATTRIBUTE3 ITEM_SF,
    BIC.ATTRIBUTE10 ITEM_DPC,
    BIC.ATTRIBUTE12 RECV_DEPT_CD,
    BD.DEPARTMENT_CODE ROU_RECV_DEPARTMENT,
         msi.description ENG_DESC,
         msi.global_attribute6 ENG_SPEC,
         msi.primary_uom_code ENG_UOM,
         bet.component_quantity ENG_QTY,
         msi.item_type ENG_UIT,
         ml2.meaning ENG_SUPPLY_TYPE,
         bet.extend_cost_flag ENG_COST_FLAG,
    BIC.INCLUDE_IN_COST_ROLLUP INCLUDE_IN_COST_ROLLUP,
    msi.planning_make_buy_code,
    bet.Attribute13,
    bet.Attribute14,
    MSI.GLOBAL_ATTRIBUTE9,
    msi.segment9 AI_TYPE
    FROM MFG_LOOKUPS ML2,
    MFG_LOOKUPS LU10,
    FND_COMMON_LOOKUPS FCL,
    BOM_BILL_OF_MATERIALS BOM,
    MTL_SYSTEM_ITEMS MSI,
    BOM_SMALL_EXPL_TEMP BET,
    BOM_INVENTORY_COMPONENTS BIC,     
    BOM_OPERATIONAL_ROUTINGS BOR,
    BOM_OPERATION_SEQUENCES BOS,
    BOM_DEPARTMENTS BD               
    WHERE bet.component_item_id = msi.inventory_item_id
    and bet.bill_sequence_id = bom.bill_sequence_id
    and bet.organization_id = msi.organization_id
    and lu10.lookup_code (+) = bet.so_basis
    and bic.component_sequence_id(+) = bet.component_sequence_id     
    and lu10.lookup_type (+) = 'BOM_SO_BASIS'
    and fcl.lookup_code (+) = msi.item_type
    and fcl.lookup_type (+) = 'ITEM_TYPE'
    and fcl.application_id (+) = 401
    and ml2.lookup_code (+) = bet.wip_supply_type
    and ml2.lookup_type (+) = 'WIP_SUPPLY'
    and bet.assembly_item_id = bor.assembly_item_id(+)     
    and bet.organization_id = bor.organization_id(+)
    and bor.alternate_routing_designator(+) is null
    and bor.routing_sequence_id = bos.routing_sequence_id(+)
    and 10 = bos.operation_seq_num(+)               
    and bos.effectivity_date(+) <= sysdate
    and sysdate < nvl(bos.disable_date(+),sysdate + 1)
    and bos.department_id = bd.department_id(+)          
    /

  • SQL query to see table names for specific columns

    hi
    i have a database containing more than 100 tables. I want to see all the tables containg a column 'Employee_id'. plz tell me SQL query some other way.
    Thanks

    Time to learn data dictionary basics
    SELECT DISTINCT table_name
    FROM all_tab_cols
    WHERE column_name ='EMPLOYEE_ID';

  • SQL query to find long inactive forms session in R12...??

    Earlier in 11i ,I use to query Forms session using view v$session and search parameter "FRM:"
    How to do the same in R12 ?? I cannot see anything like that
    Edited by: Vicky on Mar 2, 2011 2:48 AM

    Vicky wrote:
    Earlier in 11i ,I use to query Forms session using view v$session and search parameter "FRM:"
    How to do the same in R12 ?? I cannot see anything like that
    Edited by: Vicky on Mar 2, 2011 2:48 AMI use the same query in 11i (11.5.10.2) and 12 (12.0.x and 12.1.x) everyday and both work great ...
    select * from v$session
    where action like 'FRM%';
    -- query example, modify it to your needs

  • Need SQl Query for Revenue Code and Revenue Amount in Receivables

    Hi,
    I need a SQL Query to develop data set for the following columns:
    Revenue Code,Revenue Code Description,Invoice Amount,Revenue Amount,Original Invoice Number,Original Invoice Date.
    Can i get from ra_cust_trx_line_gl_dist_all and ra_customer_trx_all and ra_customer_trx_lines_all by joining them.But for the columns whcih to take
    i am in dilemma.
    Kindly any help will be needful for me

    Hi,
    I need a SQL Query to develop data set for the following columns:
    Revenue Code,Revenue Code Description,Invoice Amount,Revenue Amount,Original Invoice Number,Original Invoice Date.
    Can i get from ra_cust_trx_line_gl_dist_all and ra_customer_trx_all and ra_customer_trx_lines_all by joining them.But for the columns whcih to take
    i am in dilemma.
    Kindly any help will be needful for me

  • How to execute multiple sql query in one time?

    HI
    I'm trying to convert my sql project In Oracle. In sql i could run multiple select statement/query in once and they return in multiple table result respectively. but in oracle its not executed.
    like:
    sqlQry := "Select * from abc; select * from qwe; select * from kkk; select * from xyz"
    its return 4 table abc, qwe,kkk,xyz to my dataset result
    how it is possible in oracle 10g

    Saten Chamoli wrote:
    I'm trying to convert my sql project In Oracle. In sql i could run multiple select statement/query in once and they return in multiple table result respectively. but in oracle its not executed.
    like:
    sqlQry := "Select * from abc; select * from qwe; select * from kkk; select * from xyz"
    its return 4 table abc, qwe,kkk,xyz to my dataset result That is pretty much a hack - there are no ANSI SQL standards supporting this syntax. It makes no sense either.
    If you want to combine 4 data sets, there are the UNION and UNION ALL set commands.
    If you want to create 4 cursors with a single call, then use the following (anonymous PL/SQL block) call:
    begin
      open :c1 for select * from abc;
      open :c2 for select * from qwe;
      open :c3 for select * from kkk;
      open :c4 for select * from xyz;
    end;Bind 4 client cursor variables to the ref cursors c1 to c4 and make the call to Oracle.
    And I suggest that you read up on Oracle concepts and fundamentals as your approach with you "sql project" shows ignorance in this regard.

  • Creating a directory via a jsp page sql query return

    Is it possible to create a directory based on the results of a sql query?
    i.e.
    My sql query returns application number 1234 for a building application (BC for short).
    Is it possible to create a directory /BC/1234
    It is then proposed to use an iframe to look into the directory so users can place and access scanned documents which are captured during the approval process.
    If so how?
    An example would be great.
    Jason

    Sorry hope your still around I've been away for a while. We've created a samber share to the file server where the documents are stored and mounted it within the web file directory. It works ok if there is an existing directory but if there isn't we want it to be created when the page looks for the folder. I've done this with an asp page it basically did a directory exist test first then create folder if it didn't. The problem is can't find an example of how to do the directory exist test then directory create syntax so an example of both would be great

  • Creating sql query using 3 tables

    There is database (supposed to be relational but it is not) and
    I cannot change the tables and it is very difficult to create SQL query.
    Please, help!
    First table T1
    a1 char 20
    time timestamp
    a2 char 7 (the same as t2.a2 when is trimmed)
    a3 number 5,0
    a4 number 8,4
    a5 number 7,3
    Second table T2
    a2 char 15
    b1 number 1,0
    b2 char 1,0
    b3 char 4
    a3 number 5,0
    Third table T3
    b3 char 4
    c1 char 4
    c2 number 7,3
    c3 number 8,4
    So, I need to create query (is it possible at all!?) from those 3 tables (a1, a2, b1,b2,b3, a4, a5, c2,c3
    where time is within interval (from, to), a3 in interval (1,2,3,4), t2.b3=t3.b3, t1.a2=t2.a2
    group by or sorted by a1, then, a2.
    Any suggestion is welcome!
    Thanks!
    By the way, I will use this query in Crystal Reports.

    As I already mentioned, I received another conditions for the query, and when I create a new one, I
    First table T1
    a1 number 5,0
    a2 char 7 (the same as t2.a2 when is trimmed)
    a3 number 8,4
    a4 number 7,3
    a_time timestamp
    Second table T2
    a2 char 15
    b1 number 1,0
    b2 char 1,0
    b3 char 4
    b4 char 4
    Third table T3
    c1 char 4
    c2 number 7,3
    c3 number 8,4
    b3 char 4
    where if c1='MIN' c2, c3 return min values,
    and if c1='MAX' c2,c3 return max values
    SQL query:
    select t1.a1, t1.a2, t2.b1, t2.b2, t2.b3, t1.a3, t1.a4, t3.c1,
    t3.c2, t3.c3, t2.b4
    from t1, t2, t3
    where (TRIM(t1.a2)=TRIM(t2.a2)
    and t1.a1=19
    and ((to_char(t1.a_time, 'YYYY-MM-DD') >= '2006-03-15')
    and (to_char(t1.a_time, 'YYYY-MM-DD') <= '2006-03-16')))
    and t3.b3=t2.b3)
    order by t1.a_time
    Result set:
    a1, a2, b1, b2, b3, a3, a4, c1('MAX'), c2', c3', b4
    a1, a2, b1, b2, b3, a3, a4, c1('MIN'), c2", c3", b4
    So when I executed SQL query it returns 2 rows for the same a2.
    I want to get 1 row for each a2 together with c3 (c4) min and c3 (c4) max values.
    How to name columns for c2 min and c2 max (the same for c3) in order to retreive 1 row per a2 value, something like this:
    a1, a2, b1, b2, b3, a3, a4, c2min, c2max, c3min, c3max, b4
    Thanks

  • SQL Query in SE11

    Hi All,
       This idea just occured to me while I was fetching data from a table through SE11.
       I was wondering is there any way of specifying an SQL Query in the selection creiteria for data selection in SE11.
       For example say in S031 table I want to get stocks of only depots and not the tables so for that I should be able to specify an SQL query in select-options of WERKS like
    SELECT * FROM J_1IWRKCUS WHERE J_1IDEPOT EQ 'X'.
       Awaiting your valuable suggestions .....

    Hi,
    Maybe you should use se16 rather than se11, because se11 is not for data selection.
    In se16 you can specify different values to show for any column of a table.
    Or maybe I didn't understand what you requested.
    Regards,
    Antoine

  • Possibility to show opening balance of a GL account through SQL query?

    Hi experts,
    Is it possible to run an SQL query in SBO that shows the opening balance
    of a GL account based on a date entered by the user?
    This is similar to how the general ledger shows the opening balance of a GL account based on the posting dates entered.
    Thanks for your ideas.

    Hi Gordon,
    Thanks for that idea.
    I am thinking of the following:
    1. Create a virtual table (#TEST) from a SELECT statement that gets all journal entries for the specified GL account BEFORE the specified posting date.
    2. Perform a SELECT statement that sums the debit and credit from (#TEST).
    This should show the opening balance of the GL account right?
    Regards,
    Eric
    Edited by: eceguerra on May 18, 2011 7:02 AM
    Edited by: eceguerra on May 18, 2011 7:02 AM

Maybe you are looking for

  • Iphone 3g not detected in my computer

    my iphone 3g does not show up as a removable storage in my computer..but it does show up in itunes to sync..i tried updating but that does not work..what shud i do?

  • Reloading an Applet Window

    Hi all, I have an applet running inside a browser. Users login and do some work and then logout. This is what I want: When users logout I want to reload my url so that users will be presented with the applet login screen again. Basically, I want to c

  • Urgent! EP7 does not talk to its local SLD

    We have configured EP7's Visual Admin SLD data supplier and the data transfer is successful. However we have some strange situations: 1) even the local SLD is stopped, "check SLD connection" at webdynpro is still a "success"; 2) when the local SLD is

  • I can't burn dvds on my mac book pro?  anyone else?

    I can't burn dvds on my macbook pro?  I've bought several brands of them in -r & +r format.  no luck.  they don't even appear on the desktop as an icon when I insert them. I can eject them via disk utility.   anyone else had this issue and solved it?

  • Free 1 Day TopLink Workshop

    http://otn.oracle.com/events/otnworkshop/toplink.html Java developers need to use relational databases for persistence. Using TopLink you can eliminate the inherent risks involved when architecting for persistence. This one-day workshop will teach yo