Status Profile - Restrict any changes made in sales document

Hi SD Guru's
I have a situation here. I have maintained status profile with one of the status as "REJ - Reject Sales Order". Now when i set that status "REJ" and save the order, and open it by transaction VA02, i can make any changes in the order document such as adding new line item. I want to restrict any changes for this order now. How can i tackle this situation. Can you please help me with the same, its urgent.
Regards
Ravi

Dear Ravi
This can be controlled in two ways.
1)  Through User Exit : MV45AFZZ by not allowing the specific users to make changes
2)   With the help of your Basis Team, authorization of VA02 should not be allowed for the said users.
Thanks
G. Lakshmipathi

Similar Messages

  • How does the delta works for changes made to Sales Document

    Hi Experts,
    How does delta for 2LIS_11_VAITM for the changes made to Sales Order Header.....
    Example:
    If a sales order had 10 line items any changes at the item level are captured by 2LIS_11_VAITM
    Could you please update me on how the changes made at Sale Order Header level like Change of contract Date...etc
    Does those changes are captured by 2LIS_11_VAITM.......
    Please update

    Hi,
    SAP written lots of programs inside the Extractor, so it is not possible to tell how it will work, so you goto RSA2 in ecc and give the datasource and click on display and see the Function module and debug it you will know.
    Thanks
    Reddy

  • Email Output on any changes done in sale documents

    Hi all,
    Give me a suggestion. Is there any output type to trigger an email output to a sales partner (sales employee) when a sale document is changed.
    Regards,
    Mahibhan

    Hello Mahiban,
    Goto NACE transaction> Select V1 for sales> Select output type--> Go to description (let, BA00). Goto general tab and activate check for multiple issuing.
    If you add an order item to a sales order for which the order confirmation was already sent, you will want to send a changed output to the same customer this will trigger the same.
    Hope it helps.
    Reward points if helpful.
    Regards,
    Priyanka

  • Tcode for displaying the changes made to sales order

    hi,
    i want to know is dere any tcode which displays how many times and by whom and what are the changes made to sales order.

    hiii
    use VA03 for display..
    also refer to following link
    Regarding 'display of changes in the sales order'.
    regards
    twinkal

  • Track any changes made to the database.

    HI All,
    I've been assigned the task, where I need to track down any changes made to that schema objects, pl/sql objects and. Now, is there any procedure or package which can make it possible.
    hare krishna
    Alok

    I actually want to track all the changes in one perticualr schema. tables,
    indxes , views and pl/sql objects.Okay, I'm going to presume that means you want to track DDL changes in the nominated schema.
    the proper way to do this is not to track DDL changes in the nominated schema. Instead you set up a source control repository external to the database and store all the DDL scripts (i.e. files) there. If anybody wants to make a change to an object they have to check out the relevant script(s) and make the changes there. Once they have completed their changes they check the script back in. All builds of live (i.e. UAT and Production) systems must be done using scripts from the SC repository.
    This may sound complicated and some people who have been used to a more cowboy approach will complain. But it is the only sensible way to manage change in a database. I have the scars to prove it. Listen to the voice of experience.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • "An autonomous transaction does not see any changes made by main transact"

    Hi,
    I'm trying to reproduce the "An autonomous transaction does not see any changes made by main transaction" reffered on :
    Oracle® Database Application Developer's Guide - Fundamentals
    10g Release 2 (10.2)
    Part Number B14251-01
    chapter 2 SQL Processing for Application Developers
    Paragraph : Autonomous TransactionsI set up a simple case...
    create table emp_ as select * from emp
    begin
      update emp_ set hiredate=hiredate+100 where empno=7934;
    end;
    create or replace trigger trg_emp_
    after insert or update on emp_
    for each row
    declare
        pragma autonomous_transaction;
        emp_var emp.hiredate%type;
      begin
        select hiredate
          into emp_var
          from emp_
        where empno=:new.empno;
        dbms_output.put_line('empno: '||:new.empno);
        dbms_output.put_line('old hiredate: '||:old.hiredate);
        dbms_output.put_line('new hiredate: '||:new.hiredate);
      end;Prior to any change...
    SQL> select empno,hiredate from emp_;
    EMPNO HIREDATE
    5498 21/4/1982
    5499 11/10/1981
    5411 10/10/1981
    5410 10/10/1982
    7369 17/12/1980
    7499 20/2/1981
    7521 22/2/1981
    7566 2/4/1981
    7654 28/9/1981
    7698 1/5/1981
    7782 9/6/1981
    7788 19/4/1987
    7839 17/11/1981
    7844 8/9/1981
    7876 23/5/1987
    7900 3/12/1981
    7902 3/12/1981
    7934 23/1/1982After the change...
    SQL> begin
      2    update emp_ set hiredate=hiredate+100 where empno=7934;
      3  end;
      4  /
    empno: 7934
    old hiredate: 23/01/82
    new hiredate: 03/05/82
    PL/SQL procedure successfully completedAccording to the Oracle doc the select of the autonomous transaction should not see the change made to the hiredate column of the table in the main transaction(in the anonymous block)....
    What may i do wrong..????
    Thank you,
    Sim

    Simon:
    As Tubby pointed out, your dbms_output commands do not display the value you selected in the trigger. Your trigger based demonstration needs to be more like:
    SQL> SELECT * FROM t;
            ID DT
             1 05-SEP-2009
             2 17-JUL-2009
    SQL> CREATE TRIGGER t_ai
      2     AFTER INSERT OR UPDATE ON t
      3     FOR EACH ROW
      4  DECLARE
      5     PRAGMA AUTONOMOUS_TRANSACTION;
      6     l_dt t.dt%TYPE;
      7  BEGIN
      8     SELECT dt INTO l_dt
      9     FROM t
    10     WHERE id = :new.id;
    11     DBMS_OUTPUT.Put_Line ('ID: '||:new.id);
    12     DBMS_OUTPUT.Put_Line ('Old dt: '||:old.dt);
    13     DBMS_OUTPUT.Put_Line ('New dt: '||:new.dt);
    14     DBMS_OUTPUT.Put_Line ('Aut dt: '||l_dt);
    15  END;
    16  /
    Trigger created.
    SQL> UPDATE t SET dt = sysdate WHERE id = 2;
    ID: 2
    Old dt: 17-JUL-2009
    New dt: 25-OCT-2009
    Aut dt: 17-JUL-2009
    1 row updated.So, the automomous transaction select did not see the changed value of dt.
    I know you are just trying to understand automomous transactions here and would never do sometihg like this in production right? :-)
    Your trigger, as written, has some interesting side effects because of the automomous transaction. For example:
    SQL> INSERT INTO t VALUES(3, sysdate - 25);
    INSERT INTO t VALUES(3, sysdate - 25)
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'
    SQL> UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy');
    UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy')
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'John

  • I cannot save any changes made in the Preferences box. I go to Edit, then Preferences. When the window opens, I can check or uncheck boxes in the General window BUT, there are no Cancel or OK buttons at the bottom of the window. HELP!!

    There are no "Cancel" or "OK" buttons at the botton of my "Preferences" box that allow me save any changes that I might mak in the "General" window.  The box opens without problem and changes can be made in the "General" window however, these changes cannot be saved.  If I close the window with the "X" in the upper right hand corner and then reopen it, any changes made are lost.  I'm running Windows XP and would appreciate any help that I can get.

    I would like to change the "When you insert a CD:" option
    Oh good, that one's pretty straightforward. When you make that change in the pane, the OK is the active button. For example, I just quickly changed mine to "Import CD and Eject", and you can see that the OK button is blue in my screenshot:
    ... so to make that setting stick, all you need to do is to hit your "Enter" key, and that should press the OK.
    Unfortunately, I don't have any music in the iTunes library on the PC I'm working from at the moment. So I can't check my "Automatically download album artwork" checkbox.
    Ed, could you check for us which item is active after changing that setting? (If it's the OK button, then hitting enter should press the invisible button, just like "When you insert a CD".)
    Changing "Import Settings" is trickier, because after you get out of the "Import Settings" subdialog, the "Import Settings" button is active. So you then have to hit the tab key precisely five times (to get OK active again) and then hit Enter to get Import Settings changes to stick.

  • Error in Change Log of Sales Documents

    When i try to see the Change Log of sales document (Tools> Change Log) I get an error message
    No matching records found " (ADOC)(ODBC - 2028) [Message 131-183]
    What can it be ?

    Yes it should, but maybe those documents were created before the "History / Log" in General Settings > Services were changed from 0 to (example) 99.
    Only after this action, information will be recorded in the Chang Log.
    Regards
    Carin

  • Restricting any changes to PO and its line items

    Hi Guru,
    Is there way possible to restrict user from making any changes like modification/deletion of line items? Is there any control which can be applied here?
    Thnkx..
    Edited by: Om.P.Singh on Dec 29, 2011 3:53 PM

    Hello Dear,
    Thanks, but it about Pur Order? Is there any way otherthan SU01 control? Something can be played in Pur Ord level?
    Thanks,
    Om

  • Price change made in billing docu. should reflect in sales docu.

    All,
              My requirement is, when we change the price in a billing document(invoice) it should reflect back in the sales document. Is it possible to do this and if so how do we do this? Can any one please help me out.
    Thanks
    Visu

    Hi Vijay,
    No it is not possible. You can only update the pricing in sales document and it can be updated in invoice and not vice versa. But in order to do that you need to do the credit note and reverse PGI and do the returns delivery if it is delivery related billing, but if it is order related billing then you can just create a credit note and change the price in the sales document and then invoice again.
    Reward points if the answer is helpful
    thanks
    regards
    ravi

  • In which transction  Status Profile in Engineering Change Note

    Hi,
    In which Transaction code the Status Profile for Engineering Chage Note can be maintained.
    Regards
    Guhapriyan

    Hi Guhapriyan,
    - Transaction BS02
    or
    - Via Customizing path: Implementation Guide for R/3 Customizing (IMG) --> Logistics - General --> Engineering Change Management --> Change Type --> Define status profile
    Regards,
    Rob.

  • How to catch any changes made in a particular field of a table.

    Dear Friends,
                           How can we display changes to a filed of a particular table.
    To make it simple:--
    The Program should take values for the name of the table and the field according it will handle all the update ,deletion of a record..i mean any change happening to the respective field will be displayed.
    Suppose there is table STUDENT and a field STUDENT_ID.
    So i want to display  the newly entered student id or the deleted student id .
    thx
    ram

    Hi,
    RSSCD100                 Display Change Documents
    RSSCD100_PFCG      Display Change Documents for Role Administration
    RSSCD110                 Display change documents (cross-client)
    RSSCD150                  Display change documents
    reward if useful
    ~Lakshmiraj~

  • HT4759 How do you get changes made to your documents on a Windows 7 computer show up in your documents on your iPhone?

    How can I get changes made in documents on my Windows 7 computer to show up in the documents on my iPhone 5?  These documents show up in ICloud without showing the changes.

    You have to be accepted into the Apple Beta program before any of that works.

  • To view changes made in HU Document

    Hi,
    Please let me know how to view the changes made in the HU document?
    With Regards
    Vinu.N

    Hi Vinu,
    Please try with this
    Go to VL02N enter your delivery document which you want to check the HU changes then go to menu>Environment>Changes sytem will take you to the selection screen here you enter the required data then execute now you can able to see the details about what are all changes have been done for that delivery.
    If HU changes exists those also you can able to see in that.
    I hope it will help you,
    Regards,
    Murali.

  • Change log of Sales Documents/Item in notification

    Hi Guru,
    if sales documents/item in notification is changed or removed, the system didn't record the changes in the change log, where I can set it to record the change log for notification?
    Thanks,
    Kick

    Yes it should, but maybe those documents were created before the "History / Log" in General Settings > Services were changed from 0 to (example) 99.
    Only after this action, information will be recorded in the Chang Log.
    Regards
    Carin

Maybe you are looking for