Automatically update PLA Serial Number

Hi CIN Gurus,
When we create J1IIN-Excise Invoice, the RG23A Serial numbers getting updated.
But how to get PLA Serial Number automatically updated in the database table. (J_1IPART2).
Because the client requirement is When the Invoice is printed, in that it should also list the RG23A/C or both Serial numbers updated and also the PLA Serial number(CESS or some times other excise duties).
And also to print the PLA Ledger which shows all  the entries i.e RG23A/RG23C/PLA register.
Thanks in Advance. (Expecting to Go-live in next week.)
BEST REGARDS
SRI
Edited by: Sri on Sep 27, 2008 4:44 PM

Dear MBS,
Then each and every invoice before printing and send it with the lorry we need to do the utilisation. Is it what required ?
In real time, before printing the billing document, do we need to all that ?
Is it mandatory to print the RG23A serial number and PLA Serial number in the Invoice ?
With out printing them , just mentioning the duties and reference excise invoice number , will be accepted by Excise Department ?
Thanks in Advance.
Best Regards
SRI

Similar Messages

  • 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

  • Automatic creation of serial number

    Hello guys,
       In serial number profile, in serializing procedure for PPAU and PPRL i have maintained 4-automatic(creation of serial number) and this serial number profile i have given in workscheduling view of material master.When i create the production order for this material of qty 20,it gives serial number from 1 to 20.And again  i create the production order for it of qty 20,it gives serial number to it from 20 to 40.
       Now my question is,in automatic creation of serial number from where it takes the number ranges.
      Does it take from equipment category which we assign to serial number profile?If not than from where it takes?
             Thanking you guys.

    Dear Jitendra,
    Automatic Serial Numbers come from Number Range Object which is defined in Tcode SNRO. Number range is also defined in SNRO only under number range object for specific purpose.
    You can check in SNRO----> Overview which gives you Overview of Number Range Objects & Number Ranges defined from them.
    So your serial numbers are coming automatically actually defined there only.
    Pls. go through the above.
    Hope this will clarify your doubt.
    If any doubt , pls. revert and reward if useful.
    Regards,
    Tejas

  • Any function module to update Manufacturer serial number in tcode IE02

    Hi Friends,
    I need function module or bapi to update
    Manufacturer serial number in tcode IE02 .
    Please ........
    Thank you.
    Karthik.

    Hi,
    You may use the exit
    IEQM0007
    or
    BADI:
    EQUI_SERLV_CHECK
    hope this helps.
    Regards,
    Renjith Michael.

  • Disable Automatic Creation of Serial Number at GRN

    Dear Gurus
    All my materials are subjected to serial numbers and the serial number profile is activated in the material master.
    At the time of GRN, the serial numbers to be selected from the already uploaded list.
    But there is a option to craete serial numbers automatically ( a check box to tick at MIGO GRN serial number tab)
    Need to deactivate the same as the users tend to tick this by mistake.
    Please guide me on the process.
    Thanks in Advance.
    NalindaR

    Hi  Nalinda,
    You got solve this question? I have the same problem, and I need disable de automatic creation of serial Number in all transactions, because serials nrs are always external. And I could not do anything with the profile of the serial nr in t-code OIS2.
    You can give me some  information that help in this question.
    Thanks in advance.
    Mary

  • How to configure automatic updation of check number in FCHU from FCH5

    Dear all,
    My requirement is after posting to FCH5 system automatically update this check number in Payment document number  (posted in F-53) with out using FCHU

    Dear friend,
    We are currently following the below steps
    1) out going payment in F-53
    2) Manual check creation in FCH5
    3) entering check number in posted document (step 1) above in FCHU
    we would like to combine the process of ste2 and 3.
    Thanks,
    Srini.

  • LC 8.0 Win2003server installation with turnkey. how to update the serial number

    good morning
    could anybody give me an idea howw to upadet the serail number of a trial version of livecycle 8.0. adobe gave me a LC 8.0serial number. the serial number had expired. I update it with configuration manager with a new serial number , adobe gave me, it worked. but immediatly after i updated th e8.0 version with the sp2 of LC 8.0. and the serial number went back to th eold one. and when i try the configuration manager , i gave me no screen wher i can update the serial number.
    help me please.
    best regard.
    JPW

    good morning
    could anybody give me an idea howw to upadet the serail number of a trial version of livecycle 8.0. adobe gave me a LC 8.0serial number. the serial number had expired. I update it with configuration manager with a new serial number , adobe gave me, it worked. but immediatly after i updated th e8.0 version with the sp2 of LC 8.0. and the serial number went back to th eold one. and when i try the configuration manager , i gave me no screen wher i can update the serial number.
    help me please.
    best regard.
    JPW

  • Unable to update the serial number through bdc in Sales Order

    Hi experts,
    I written the inboud FM for to update the 3rd party items serial number to the sales orders through BDC Call transaction Method.
    Here i am facing a problem when i have the 19 item Quan ,it is updating correct through idoc , when ever there is moe than 19 and at that if any serial number repeated for that if i am changing at that time it is loosing the control of the BDC and giving the control to the salesorder screen.
    how can i handle that control again has to come to BDC prgrm......
    Thnks,
    Regards,
    Bharani

    Hi,
    Can you please let me know the segment in ORDERS05 Idoc to process the Payment card information and if the standard Function Module can handle the creation of a Sales Order with data for Payment Card.
    We have a requirement to map the Tokenized Number of the Credit Card send from a store front end to ECC mapping via SAP-PI.
    Thanks in Advance,

  • Automatic Generation of Serial Number

    Hi,
    i have to generate the serial number automatically with the following pattern XM-1234567.  can anyone guide me how to proceed with (Need Logic to Generate Serial Numbers)
    Thanks & Regards
    Dinesh SUbrahamanyam

    Hi,
    You need to first create a Numebr range object, to create a Number range object goto SNRO transaction code. so here you will generate a Number range object, then in the Program call the NUMBER_GET_NEXT then evey time if you call this number it will give the next number ...
    You can check the below link.
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa0331493111d182b70000e829fbfe/frameset.htm
    Regards
    Sudheer

  • Updates and serial number

    After I download the updates FCS (Color), it ask for the serial. I put in the serial that I used to install it, but now it says the serial number is invalid.
    Any thoughts?

    Hi,
    I have the same problem. After going through loads of forums did not find a solution that would work.
    I recently updated to proapps 2008-03 as well as some other updates (incl. quicktime 7.5.5) with Software Update. After that the FCS2 applications ask for a serial nr., but will not accept the original one (Live Type works without serial nr. though). I'm absolutely sure that the serial nr. worked when I first time installed FCS2. I've updated before as well without problems (proapps 2008-001, I think)
    I have tried deleting the Final Cut Studio System ID in library/application support/proapps, but didn't make any difference. Only thing I could think of is that I don't remember exactly what name and organization I typed when I first time licensed the FCS2. I guess that should not be an issue though. I have not moved any of the applications from the applications folder at any point.
    Hope someone could shine some light on this problem.
    BTW, re-installing the whole suite will not work for me as I'm working on another side of globe from the original discs and I really need to get things done here, and soon.
    Maybe there is some way of uninstalling the update and going back to previous version?
    MM

  • Update the serial number status

    Hello Gurus,
       We are facing very often the error message "System status ESTO is active (EQU 14584774)" due to, somethime, the serial number we want to receive is on the plant already.
      we know the reason about this error and we have decide to ignore it by changing the status of the serial number in to available with SQ02.
    However, we want to automatize this status updating at the time to make the reception by posting the inbound delivery).
    Does anyone of you know about a FM to change the serial number status? or maybe a user or a badi,
    PLease, give me some ideas, as I have been looking in everywhere for an easy solution  without success.
    thanks a lot in advance

    Hi David,
    Go to the T.code BS22 and select I0184 - ESTO and double click on the line.
    Then select PMS1 - Good Receipt and change the radio button to Allowed or Warning and save it.
    Warning: Once you activate this setting, you will no more receive any error or need to change the status of the SN, even if the SN already exist in the warehouse.I mean same SN will be allowed for multiple GR transactions, even though the SN already exist in the warehouse.
    Best option is to change to warning option, provided this does not Impact your business scenario.

  • Automatic generation of serial number at time of goods receipt.

    hi all,
    reqirement is like that-- my client wants to generate the serial no. of material automatically during goods reciept,
    After generation of serial no. by the system the same material will be send to subcontracting vendor by serial no wise.
    when we take the migo of the same material(return  from vendor) serial no should be generated automatically and with reffernce to this serial number material will be sale.
    pls provide me some input regarding customization and business process.
    thanx all.
    regards
    simran tofique

    Hi,
    Use t.code: OIS2, Create Serial Number Profile Z100( Copying from 0001)& have serialization procedure(MMSL) in it. And assign Serial no. profile Z100 to a material in plant Data/Stor-2 view in general plant parameter segment.
    Now create PO with that material and then during GR for that material, you are able to enter serial number in u201CSerial numbersu201D TAB in Detail data and select check box of Create Serial Nos Automatically & post GR document. Now go back and display material document in MIGO and can see serial numbers in u201CSerial numbersu201D TAB in Detail data.
    Regards,
    Biju K

  • Automatic Determination of Serial Number in SO

    Hi
    Our Goods are SLNO assigned .It 's hard to assign manually in the sales order or in the outbound delivery.How to do SL NO automatic assignment in Sales order or in Shipping .Any help will be highly appreciated
    Thanks

    Hi Nick
    Using the serial number profile, you can use the indicator Serial number usage to determine whether the serial numbers are to be assigned automatically during a serialization procedure. This means that the dialog box for creating serial numbers is no longer displayed.
    In this step, you define profiles.
    A serial number profile must be assigned to each material that is to be serialized. This assignment is made at plant level in the material master record.
    This means that you can assign a separate serial number profile to a material for each plant. However, a material can have a mandatory serial number in one plant but not in others.
    In a serial number profile, you define the following:
    •     Thebusiness operations for which a serialization:
                  ->     Can be performed
                  ->     Must be performed
                  ->     Is performed automatically
                  ->     Is not performed
    •     Information about whether for a business operation:
              ->     Serial numbers for which no master record exists in the system can be assigned
              ->     Serial numbers which already exist in the system must be entered
    •     Information about whether a stock validation is made for stock-relevant operations and how the system should deal with inconsistencies.
    Note that this setting can only deliver meaningful results in combination with the setting of whether an operation <b>requires serial numbers</b>.
    •     The business operations, for which an equipment master record must or must not be created for each serial number
    •     The equipment category which the system should propose for the automatic assignment of serial numbers in the case of equipment master records
    Thanks
    G. Lakshmipathi

  • How to create a column that automatically creates a serial number?

    How can I create a column that creates a serial number for each entry?

    you could do something like this:
    I assumed that the serial number only needs to be present if you have entered some information in the other columns of the corresponding row.
    A2=IF(COUNTA(2:2)>0, REPT("0", 6−LEN(ROW()−1))&ROW()−1, "")
    this is shorthand for... select cell A2, then type (or copy and paste from here) the formula:
    =IF(COUNTA(2:2)>0, REPT("0", 6−LEN(ROW()−1))&ROW()−1, "")
    To fill down:
    select cell A2, copy
    select column A by clicking the columne header (the "A" at the very top)
    unselect cell A1 by holding the command key while single clicking cell A1
    paste

  • Enhancement during creation of outbound delivery to update serial number

    Dear ABAPers,
    Is there any Enhancement during creation of outbound delivery to update the serial number.
    My Requirement is In the VL10B transaction Outbound delivery will be created for the Purchase Order. During this time i want to update the serial number in the Outbound Delivery.
    Any Replies.....
    Thanks & Regards,
    Ashok kumar.
    Edited by: M Ashok kumar on Jul 22, 2010 6:41 AM

    hi
    check INVOICE_UPDATE
    Thanks
    Edited by: saurabhmani on Jul 22, 2010 3:00 PM

Maybe you are looking for