Inventory active transactions

Hi Forum Friends,
I am writing a report to display the "active" transactions from "OINM".
What i am getting is all transactions including the ones that have already been offset.
I.e.:
Recevied 2
Recevied 2
received 4
issue       -2
issue       -2
total 4
What i'd like to see is just the 4 that are still on hand, not the ones that were in and out...
I don;t know if i am making any sense.... i hope i do.
Any suggestions?
Regards,
Manuel

I'll assume you know how to tell a receipt from an issue...  My example will use > 0 to indicate a receipt, < 0 to indicate an issue.
This is gonna require arrays and some processing...
Sort the records by (warehouse, (whse location,)) transaction date.  Then put a formula field in the detail section that looks something like this (basic syntax):
global rctdate(1000) as date
global qty(1000) as number
global lastindex as number
dim i as number
dim q as number
if {qty} > 0 then  ' receipt; add to arrays
  lastindex = lastindex + 1
  rctdate(lastindex) = {trandate}
  qty(lastindex) = {qty}
else  ' Issue; relieve inventory
  q = {qty}  '  This is negative...
  i = 1
  while i <= lastindex and q < 0
    if qty(i) > 0 then
      if qty(i) + q >= 0 then
        qty(i) = qty(i) + q
        q = 0
      else
         q = q + qty(i)
      end if
    end if
    i = i + 1
  wend
end if
Then, in the group footer, display the dates of what's left with:
global rctdate(1000) as date
global qty(1000) as number
global lastindex as number
dim i as number
dim out as string
out = ''
for i = 1 to lastindex
  if qty(i) > 0 then
    out = out + cstr(rctdate(i), "MM-dd-yyyy") + wchr(10)
  end if
next i
formula = out
And do something similar with the qty() array.  Put the two formula fields side by side in the group footer, both with Can Grow set, and you'll get a list of receipt dates and remaining quantity in inventory.
HTH,
Carl

Similar Messages

  • Inventory Active Transactions ... Once again

    Hi Forum,
    I need to re-post this thread.. i am still not able to make the following formula work as a basic syntax...
    global rctdate(1000) as date
    global qty(1000) as number
    global lastindex as number
    dim i as number
    dim q as number
    if > 0 then  ' receipt; add to arrays
      lastindex = lastindex + 1
      rctdate(lastindex) =
      qty(lastindex) =
    else  ' Issue; relieve inventory
      q =   '  This is negative...
      i = 1
      while i <= lastindex and q < 0
        if qty(i) > 0 then
          if qty(i) + q >= 0 then
            qty(i) = qty(i) + q
            q = 0
          else
             q = q + qty(i)
             qty(i) = 0  ' I missed this line.
          end if
        end if
        i = i + 1
      wend
    end if
    i got the formula from Carl Sopchack...
    Right now i am using the field form OINM and is not displaying the correct transactoin number nor the correc tquantity.
    Regards,
    Manuel Roman

    First - and most important - there's only 1 'c' in my last name!    (I thought I recognized the style as I was reading it!)
    So the code you have is:
    global rctdate(1000) as date
    global qty(1000) as number
    global lastindex as number
    dim i as number
    dim q as number
    if {qty} > 0 then ' receipt; add to arrays
      lastindex = lastindex + 1
      rctdate(lastindex) = {trandate}
      qty(lastindex) = {qty}
    else ' Issue; relieve inventory
      q = {qty} ' This is negative...
      i = 1
      while i <= lastindex and q < 0
        if qty(i) > 0 then
          if qty(i) + q >= 0 then
            qty(i) = qty(i) + q
            q = 0
          else
            q = q + qty(i)
            qty(i) = 0
          end if
        end if
        i = i + 1
      wend
    end if
    So you end up with two arrays, something like:
    (I)   Date    Qty
    1   3/1/10     0
    2   3/2/10     0
    3   3/3/10     5
    4   3/4/10    94
    5   3/5/10    26
    And you state
    Right now i am using the field form OINM and is not displaying the correct transaction number nor the correct quantity.
    I don't understand what or OINM is.  Using my example, what are you expecting to see?  How are you displaying it?
    Carl

  • SMS_NOTIFICATION_SERVER process Active Transaction preventing SQL log file backup

    Hello,
    I have been working on adding a few thousand machines into our SCCM 2012 R2 environment.  Recently after attaching several of these systems there was a spike in activity in the transaction log due to the communication and inventory of these new
    machines.  The log file would fill up quickly but the log file backup would not function and allow the reuse of the log file.  Upon investigation by my DB Admin we noticed that the SMS_NOTIFICATION_SERVER process was holding open an Active Transaction
    that would last 1 hour and then restart at the end of the hour.  This process was essentially preventing the backup of the log file.  In a test, I briefly turned off the SMS_NOTIFICATION_SERVER process and we noticed the transaction log file functioning
    correctly.  I have included a screen shot of the process in the SQL Activity Monitor.  Has anyone experienced this issue and resolved it?  Is there anyway to reduce the 1 hour time frame or change the behaviour so that the process releases the
    log file for backup if the log is getting full?
    Regards,
    Dave

    We had it in Simple only briefly yesterday when working on the issue.  It is in Full recovery mode.

  • IB:How to update a serial Number which has Inventory Material Transactions?

    Dear friends
    first of all thanks for your time and valuable solutions
    Install base: How to update a serial Number which has Inventory Material Transactions
    problem description:
    Install base > quick search
    Here is Installbase record, when I query from quick search
    Rec#     Item          Item Instance           Serial Number          Status
    1     300-7000-01      3000000           1000XXX-0538JQ0003 Return for Adv Exchange
    2     300-7000-01     8000000               1000XXX-0538JQ0003-     Return for Adv Exchange
    3     300-7000-01     5000000               1000XXX-0538JQ0003-A     Return for Adv Exchange
    looking above data, first and third records are the legitimate serial numbers(correct according to the client specs), second record is not legitimate since it has a dash as suffix, we found there are many illegitimate serial Numbers exists, needs to be updated with the right serial Numbers which I analyzed in excel after pulling data from mtl_material_transactions , oe_order_lines_all , mtl_serial_numbers , mtl_system_items_b
    basically these are all RMAs
    I need to update the second record as 1094SUZ-0538JQ0003-B as per the guidelines, while updating I need to keep all the existing contracts, Warranty, what ever material transations it has, need to be same.
    we have a package updating the serial numbers using IB API (csi_Item_Instance_Pub.update_item_instance) but it is updating only the records which has no serial numbers present for that instance, if there is a serial number already exists it is not working.
    user define error msg "Serial Number 1094SUZ-0538JQ0003- has Inventory Material Transactions. This serial number cannot be used to update an existing Item Instance", but I need to update this anyway!! or am I missing something here, please advice me
    below post looks like similar issue, talks about hard update, I have no clue, by doing that the updated serial number will have same transations, contracts, dates....attached to it like the previous serial number
    IB UPDATE_ITEM_INSTANCE ERROR - doesn't allow ACTIVE_START_DATE to change
    would be great If you guys help me out, really appreciated!!
    unfortunately I couldn't find any solutoin in metalink for the existing serial number update
    code for updating the serial number using IB API
              x_msg_count := 0;
    x_msg_data := '';
    p_instance_rec.instance_id := rec.child_instance_id;
    p_instance_rec.serial_number := rec.child_serial_number;
    p_instance_rec.object_version_number := rec.child_object_number;
    p_txn_rec.transaction_id := Fnd_Api.g_miss_num;
    p_txn_rec.transaction_date := SYSDATE;
    p_txn_rec.source_transaction_date := SYSDATE;
    p_txn_rec.transaction_type_id := 1;
    csi_Item_Instance_Pub.update_item_instance
    p_api_version => 1.0,
    p_commit => Fnd_Api.g_false,
    p_init_msg_list => Fnd_Api.g_false,
    p_validation_level => 1,
    p_instance_rec => p_instance_rec,
    p_ext_attrib_values_tbl => p_ext_attrib_values_tbl,
    p_party_tbl => p_party_tbl,
    p_account_tbl => p_account_tbl,
    p_pricing_attrib_tbl => p_pricing_attrib_tbl,
    p_org_assignments_tbl => p_org_assignments_tbl,
    p_asset_assignment_tbl => p_asset_assignment_tbl,
    p_txn_rec => p_txn_rec,
    x_instance_id_lst => x_instance_id_lst,
    x_return_status => x_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data
    Thanks
    Suri

    Suri
    Used this. May not be perfect but should get you there. Only if the table is registered (all the seeded tables should be registered) this will work.
    select distinct a.table_name,b.column_name from fnd_tables a, fnd_columns b
    where a.table_id=b.table_id
    and upper(b.column_name) like '%SERIAL%'
    Also this is very old one but if you need history for this change add the history insert logic as well..
    DECLARE
    l_return_err VARCHAR2 (80);
    PROCEDURE debug (p_message IN VARCHAR2)
    IS
    BEGIN
    dbms_output.put_line (SUBSTR (p_message, 1, 255));
    END debug;
    BEGIN
    debug('======================================================================');
    debug('Switching from serial number XDT07406. to XDT07406 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'XDT07406'
    WHERE serial_num = 'XDT07406.';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'XDT07406'
    WHERE new_serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    UPDATE wsh_delivery_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in wsh_delivery_details updated :'||sql%rowcount);
    debug('======================================================================');
    debug('Switching from serial number jct20591 to JCT20591 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'JCT20591'
    WHERE serial_num = 'jct20591';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'JCT20591'
    WHERE new_serial_number = 'jct20591';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_return_err :='Updating in one of the script has this error:'|| substrb(sqlerrm, 1, 55);
    debug('Value of l_return_err='||l_return_err);
    END;
    Thanks
    Nagamohan

  • How to Unblock a Storage Bin With an Inventory Active Flag

    Hi,
    I have a storage bin that shows as being blocked by an Inventory active flag, but the inventory document has been canceled. I can't even view this document since it was canceled. Anyone have any suggestions?
    Thanks,
    Das.

    Hi,
    You should be able to click on the bin master data (click on bin # and go to inventory tab) and take the recent inventory doc # then go to li02 and delete the inv. doc. That will solve your problem.
    You could also try LX22: Edit > Deactivate.
    Reward points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • DB Polling : could not dispatch message because there is no active transaction.

    We are using SOA 11.1.1.7 . In one of our SOA composite, we are seeing following error during the instantiation at the DB polling activity (randomly)
    Error while invoking bean "cube delivery": Exception not handled by the Collaxa Cube system.[[
    an unhandled exception has been thrown in the Collaxa Cube systemr; exception reported is: "ORABPEL-05007
    could not dispatch message because there is no active transaction. there is no active transaction while scheduling a message with the dispatcher. this usually happens if the underlying subsystem rollback back the transaction without bubbling up the system or transaction exception to the bpel layer. Contact Oracle Support Services. Provide the error message and the exception trace in the log files (with logging level set to debug mode).
    We do have few more polling SOA composite, but this error is more often seen in one of the process regularly. The workaround to fix the above problem is to restart the SOA composite. Let us know, if you any thoughts on this error.
    Thanks

    Any thoughts on this ? Thanks.

  • Transaction Summaries in Inventory module Transactions

    In Inventory module -> Transactions -> Transactions summary. The user selects a particular date range and an item number. When the summarize button is clicked, a screen populates with list of source type. How does Net Qty,Net Value and Net Volume,ABS Quantity, ABS Value are calculated ? . In which table and columns we can find the Net Qty,Net Value and Net Volume,ABS Quantity, ABS Value...
    Thanks & Regards,
    SSK

    Try checking this table MTL_MATERIAL_TRANSACTIONS
    or
    Check this report Transaction Historical Summary
    I think you can get most of the values from this report
    Mahendra

  • Inventory pending transactions stuck pending transactions in with no error

    Hi everybody,
    there are some inventory pending transactions stuck pending transactions in with no error. those transactions of inter-org shipment (issue) one of items doesn't have quantities. so, why the left items that have quantities will not be released? and why there are no error in the line that doesn't have enough quantity (to mention the issue quantity is not enough )?
    thank you in advance.

    Pending transaction hold only following three types of records:
    1. Allocations done for Mover orders
    2. if you use TP:INV: Transaction Processing Mode = Batch, and if transaction manager has not yet picked up the records for processing.
    3. records are stored in Pending Transactions only for a moment, before they are transferred from Transactions Open Interface to Material Transactions (History)
    In all the cases, records are well validated, and you will never find that basic validation such as quantity missing is not present.
    How are the records getting populated there?
    Are you inserting them manually? Strongly suggest to insert the records in mtl_transactions_interface instead.
    there are couple of things to check:
    1. If all records are part of single batch and if one of the records fail then entire batch fails.
    check if transaction_batch_id is populated on these records.
    2. may be the flags such as process_flag, lock_flag, transaction_mode are not set to right values
    check if their respective values are 1, 2 and 3.
    Thanks,
    Hrishi

  • See all SQL statements that have been executed in an active transaction?

    When I query v$transaction, v$session and v$sql, all I can see is the SQL statement that is currently running in an active transaction.
    How can I view all SQL statements that have been executed in a currently running transaction since that transaction began?

    Dana N wrote:
    When I query v$transaction, v$session and v$sql, all I can see is the SQL statement that is currently running in an active transaction.
    How can I view all SQL statements that have been executed in a currently running transaction since that transaction began?In the general case: impossible.
    In some special cases you can use v$sql, v$open_cursor, or "Availabilty>View and Manage Transactions" or something else.
    But be aware, transaction could be started long time ago, all cursor could be flushed from shared pool and closed, and redo (the page from Grid Control bring Log Miner) may not always be available.

  • Undo tablespace with active transaction/segment corrupted

    How to recover if undo tablespace with active transaction/segment corrupted

    Try RMAN blockrecover or restore the tablespace from latest backup and recover it.

  • Query for Inventory Activity for whse & dates

    I am using the query below to report Inventory Activity by Whse for a selected date range. Can anyone please advise on how to add a column for Inventory Unit of Measure (OITM.InvntryUom) to this query? This would make the report more useful. Even more useful would be to also integrate batch numbers into this same query. Would this be possible also?
    The columns returned by this query currently are: Whse, ItemCode, ItemName, OpeningBalance, InQty, OutQty, and EndingBal.
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Whse nvarchar(10)
    Set @FromDate = (Select min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]')
    Set @ToDate = (Select max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]')
    Set @Whse = (Select Max(s2.Warehouse) from dbo.OINM S2 Where S2.Warehouse = '[%2]')
    Select
    @Whse as 'Warehouse',
    a.Itemcode,
    max(a.Dscription) as [Item Name],
    sum(a.[Opening Balance]) as [Opening Balance],
    sum(a.[IN]) as [IN],
    sum(a.OUT) as OUT,
    ((sum(a.[Opening Balance]) + sum(a.[IN])) - Sum(a.OUT)) as Closing
    from(
    Select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    (sum(N1.inqty)-sum(n1.outqty)) as [Opening Balance],
    0 as [IN],
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate < @FromDate
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    0 as [Opening Balance],
    sum(N1.inqty) as [IN],
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <= @ToDate and
    N1.Inqty >0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    0 as [Opening Balance],
    0 as [IN],
    sum(N1.outqty) as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and
    N1.OutQty > 0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription) a, dbo.OITM I1
    where
    a.ItemCode=I1.ItemCode 
    Group By
    a.Itemcode
    Having sum(a.[Opening Balance]) + sum(a.[IN]) + sum(a.OUT) > 0
    Order By a.Itemcode

    Try this one:
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Whse nvarchar(10)
    Set @FromDate = (Select min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]')
    Set @ToDate = (Select max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]')
    Set @Whse = (Select Max(s2.Warehouse) from dbo.OINM S2 Where S2.Warehouse = '[%2]')
    Select
    @Whse as 'Warehouse',
    a.Itemcode,
    max(a.Dscription) as ItemName,
    sum(a.OpeningBalance) as OpeningBalance,
    sum(a.INq)  as 'IN',
    sum(a.OUT) as OUT,
    ((sum(a.OpeningBalance) + sum(a.INq)) - Sum(a.OUT)) as Closing
    ,(Select  i.InvntryUom from OITM i where i.ItemCode=a.Itemcode) as UOM
    from(
    Select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    (sum(N1.inqty)-sum(n1.outqty)) as OpeningBalance,
    0 as INq,
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate < @FromDate
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    0 as OpeningBalance,
    sum(N1.inqty) ,
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <= @ToDate and
    N1.Inqty >0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    0 as OpeningBalance,
    0 ,
    sum(N1.outqty) as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and
    N1.OutQty > 0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription) a, dbo.OITM I1
    where
    a.ItemCode=I1.ItemCode
    Group By
    a.Itemcode
    Having sum(a.OpeningBalance) + sum(a.INq) + sum(a.OUT) > 0
    Order By a.Itemcode

  • How to Show Product Catalog in an Activity transaction

    Hello Experts,
    Normally a 'Product' or 'Product Hierarchy' can be associated with an 'Activity' Transaction Type.
    Our requirement is to associate a 'Product Catalog' with an 'Activity' Transaction Type.
    1. Any Inputs ?
    2. How can it be done through Object Reference?
    Many Thanks for the suggestions !!

    Hi Ramalingareddy
    For CRM 5.0 or CRM 2007 you can take a look at Best Practice guide C14 which can be located from here.
    http://help.sap.com/
    Click on SAP Best Practices Tab
    Select: Cross Industry Packages
    Select: Customer Relationship Management
    Select: Release V1.52
    Select: Technical Information
    Select: Building Block Library
    Regards
    Arden

  • Dispaly Fact Sheet in Activity Transaction

    Experts please explain the steps to dispaly fact sheet in activity transaction in webUI?

    Check the following SAPNote:
    https://service.sap.com/sap/support/notes/1066280
    Solution
    PDF Account Fact Sheet in Activities can be generated in 2 ways. One is when the user saves the Activity and the other is when the user clicks on the button 'Attach PDF Account Fact Sheet'. In Order to generate PDF Account Fact Sheet in Activities the following Customising needs to be maintained:
    1) Launch Transaction 'spro'
    2) Navigate to Customer Relationship Management -> transactions -> Settings for Activities -> Attach Account Fact sheet to Activity
    3) Here add the entries with the following details
    a) Role
    b) Transaction Type
    c) Language
    d) Save Check box (This check box indicates that the PDF is   generated while saving the activity.)
    e) Create check box (This check box indicates that the PDF is   generated when the user clicks on the 'PDF Account Fact Sheet   button' on the UI.)
    Alternatively these changes can also be made via transaction se11, view 'CRMV_ACT_PDFAFS'.
    Also please refer to the related note number 1040229 for Master Data Customising for the same.
    Edited by: Dirk Boegelspacher on Oct 29, 2009 2:50 PM

  • No display of Z-ACTIVITY transaction types in UI

    Hello All
    i had created two activity transaction types (task and appointment)  but when i checked the same in UI fortesting, i could not see them in Activities-> TASK/appointment rather i could see them under option INTETRACTION LOGS.
    Please let me know how can i make available newly created transaction types under selection option TASK/APPOINTMENT.
    Regards
    Phani

    Thanks for your quick reply...
    i had checked the category and it is TASK but could you please let em know when can i check Category and CLASS(203,interaction log) assignment.
    infact ,i had created Z-TASK as a copy of standard 1003 type
    Thanks
    Phani

  • Details Tabs rearrangement in Activity Transaction.

    When an Activity Transaction is opend (Z Tranasctin Type) currently its opening with Survey Tab. We need Details Tab to be opened when a new Transaction is opened manually.
    I tried SHD0 Transaction. In whch I tried to put Activitiy T Code as CRMD_BUS2000216. Its throwing an error saying Tranaction : CRMD_BUS2000216 is not known.
    Can someone guide on this.
    One more, We need these changes to happen only for this perticular Activity Type.

    hi venkat
    this is not any configuration problem
    as i told you in above post
    on the top of the screen there is tab named system
    under this go to local settings.
    what actually happened if the checbox for the option last transaction opened is checked,system always open the last transaction
    and nature of system is such that if you unchecked that check box,the new transaction will always open up in the way last transaction is opened,
    yes you are right here that when you click the details tab then it will always open up again in details tab
    best regards
    ashish

Maybe you are looking for

  • GRC10- HR Trigger BRF+ rule error

    Hi, We are facing an error in HR trigger. The BRF+ is configured as per the note Note 1591291 - GRC 10.0 - HR Trigger configuration. The BRF+ rule has decision table which satisfies the condition for new hire. The infotype: 0105 and subtype: 0001 Aft

  • Error In MIRO FI-MM integration

    Hi Gurus, Now i am doing CIN settigns in my project and tax procedure is TAXINN. I done all the configuration steps related to CIN. While doing MIRO, I got errors related to GL acounts. Even GL reconciliation account also not picking here. I maintain

  • Password on every purchase? and concern about purchase history screen.

    iTunes 9 is great overall, the store is much better and the iphone app organizer is a god send, but I do have 2 concerns. First, whenever I make a purchase, it asks for my password, it used to do this once per session i.e. when I launch the program a

  • Error 100 when trying to buy App

    I am trying to by an app from the App Store and keeps giving me error 100. Can you give me a solution?, I am trying to by an app from the App Store and keeps giving me error 100. Can you give me a solution?

  • Homehub 3 problems with wifi and network - please ...

    I am hoping someone can help me, as I am struggling to work out why I am getting so many problems with my network at home. I have BT Infinity, and a Homehub 3A. I have had BT broadband for years. Infinity was added in Feb 2013. The HH3A is the origin