Table name for reason for action

Hi Experts
Can anyone tell me the table name which stores the reason for action codes?
Ineed to change them
SM30
T530
Edited by: Sikindar on Mar 9, 2010 11:46 AM

Table - T530, execute via se16
View - V_T530, execute via sm35

Similar Messages

  • Table name in APO for demand planning

    Hi gurus,
    I want to upload Excel data (forecast demand) into APO SNP for the following fields
    APO product
    APO product Name
    Demand Qty
    Demand Date
    Can you please tell me the suitable table name in APO for those fields?
    Regards
    Rajib Pathak

    Hi,
    APO Product - /SAPAPO/MATKEY
    APO product name-/SAPAPO/MATKEY
    Edited by: Sreenivasu on May 21, 2009 12:16 PM

  • Short dump while marking Sales order Line item for Reason for rejection

    Hi All,
    Need your help in the following regards.
    In system Client is creating a sales order with 100+ line items and for each line item a project gets created automatically at the background as it is a make to order senario. Now what is happening is customer suddenly call's and tells to stop few line items tempororily till he gives go-ahead, so our client is marking it for reason for rejection, while doing this the network created for a project is getting deleted. Once we receive conformation for that line item agin to proceed we are removing the reason for rejection and it was suppose to create a new network, but system is taking huge time to do this and going for a shout dump saying time-out error, in few cases it is creating the network.
    Need your valuable inputs how we can address this issue to avoid the short dump. We have increased the buffer time to 30min also.
    Thanks
    regards
    kishore

    Hi,
    You can easily list out sales order that have been assigned reason for rejection..simple extract of table VBAP-ABGRU = not blank.
    This report should list out the sales order number along with some more details, as required.
    Now the report should allow to choose the documents i.e. like giving checkboxes in the left most side and once the user chooses the sales documents he wants to get processed--> the program should call change Sales Order FM or BAPI. Execute this in background.
    Regards,
    Raghu.

  • J1INQEFILE (FLAG for reason for Non-deduction/ lower deduction)

    This refers to the E-TDS return challan format. As per the new format we have to show additional column showing FLAG for reason for Non-deduction/ lower deduction. 
    Is there any patch / solution / SNOTE from SAP? 
    It is related to J1INQEFILE.
    Transaction where tax not been deducted as amount paid/credited to the vendor/party has not exceeded the threshold limit (as per the provisions of income tax act). Applicable for sections 193,194, 194A, 194B, 194BB, 194C, 194D, 194EE, 194G, 194H, 194I, 194J, 194LA

    Hi ,
    Refer to OSS note no. 1442113 - Legal Change October 2010 - ETDS / TCS file format change.
    It has the symptoms as well as the solutions for the issue .
    Cheers ,
    Dewang

  • NO TAB FOR REASON FOR REVERSAL OF GOODS

    Dear Sir,
                        My user is in MIGO -CODE he wants to cancel a material doc --by mvmt - type 202, he says where he should enter the reason. as i had gone through this MIGO -- DOC. NO entered & executed the process, but in " WHERE " tab -- the tab for reason for reverse mvmt is not appearing --.Kindlly
    clarify .
    km

    Hi
    202  reversal of  Goods receipt for a cost center
    again it is a reversal which will not required any reason
    if u are returning partial qty or full qty of material to vendor for reasons like bad quality etc. usualy we do it with Return Movements for which Resons for returning are compulsary and not for Movement reversal
    Vishal...

  • Table name in Oracle for the User Mapping field?

    Does anyone know the table name for the user Mapping field in EP6.0?
    Thanks

    Hi Alan,
    why do you want to access the DB directly?! You can access the information via the Java API, which is in general the most secure way for the DB scheme is always "subject to change without notice"...
    Best regards
    Detlev

  • Using variables as table names. Ideas for alternative designs

    Hi,
    I am designing an application which uses synonyms to pull information from 'client' DBs via DB Links. The synonyms are created with a DB_ID in the name (example: CUSTOMER_100, CUSTOMER_200... where 100 and 200 are DB IDs from 2 separate client DBs.
    I have a procedure which selects data from the synonym based on what DB_ID is passed to the procedure. I want to be able to run this one procedure for any DB_ID that is entered. I am now aware I cannot use variable names for table names and using EXECUTE IMMEDIATE doesnt seem to fit for what I am trying to do.
    Does anybody have any suggestions or re-design options I could use to achieve this generic procedure that will select from a certain synonym based on the DB info input parameters? Thanks.
    CREATE OR REPLACE PROCEDURE CUSTOMER_TEST(p_host IN VARCHAR2, p_db_name IN VARCHAR2, p_schema IN VARCHAR)
    IS
       v_hostname     VARCHAR2 (50) := UPPER (p_host);
       v_instance     VARCHAR2 (50) := UPPER (p_db_name);
       v_schema     VARCHAR2 (50) := UPPER (p_schema);
       v_db_id  NUMBER;  
       v_synonym VARCHAR2(50);
       CURSOR insert_customer
       IS
         SELECT 
           c.customer_fname,
           c.customer_lname
         FROM v_synonym_name c;
    BEGIN
    -- GET DB_ID BASED ON INPUT PARAMETERS       
      select d.db_id
      into v_db_id
      from  t_mv_db_accounts ac,
      t_mv_db_instances i,
       t_mv_dbs d,
       t_mv_hosts h
      where ac.db_ID = d.db_ID
      and i.db_ID = d.db_ID
      and i.HOST_ID = h.host_id
      and upper(H.HOST_NAME) = v_hostname
      and upper(D.DB_NAME) = v_instance
      and upper(Ac.ACCOUNT_NAME) = v_schema;
      --APPEND DB_ID TO THE SYNOYNM NAME
      v_synonym := 'CUSTOMER_'||v_db_id;
      FOR cust_rec IN insert_customer
      LOOP
         INSERT INTO CUSTOMER_RESULTS (First_Name, Last_Name)
         VALUES (cust_rec.customer_fname, cust_rec.customer_lname);
      END LOOP;
      COMMIT;
    END;
    Rgs,
    Rob

    Hi
    rules engine style with table that holds the logic or code SQL directly in the procedure and IF THEN ELSE with db_id. Latter is better because SQL is native and objects are checked every time procedure is compiled.
    James showed the simplest way but this rather complex way gives you more flexibility between instances if ever needed.
    CREATE TABLE synonym_dml(db_id number not null primary key, sql_text clob)
    INSERT INTO synonym_dml VALUES (100, 'INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer100')
    INSERT INTO synonym_dml VALUES (200, 'INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer200')
    set serveroutput on size unlimited
    create or replace
    PROCEDURE Execute_Synonym_Dml(p_host VARCHAR2, p_db_name VARCHAR2, p_schema VARCHAR) IS
    BEGIN
      FOR r IN (
        SELECT sql_text FROM synonym_dml
        --  WHERE db_id IN (
        --    SELECT d.db_id
        --    FROM t_mv_db_accounts ac, t_mv_db_instances i, t_mv_dbs d, t_mv_hosts h
        --    WHERE ac.db_id = d.db_id
        --      AND i.db_id = d.db_id
        --      AND i.host_id = h.host_id
        --      AND upper(h.host_name)      = p_hostname
        --      AND upper(d.db_name)        = p_instance
        --      AND upper(ac.account_name)  = p_schema
      LOOP
        DBMS_OUTPUT.PUT_LINE('-- executing immediately ' || r.sql_text);
        --EXECUTE IMMEDIATE r.sql_text;
      END LOOP;
    END;
    create or replace
    PROCEDURE Execute_Synonym_Dml_Too(p_host VARCHAR2, p_db_name VARCHAR2, p_schema VARCHAR) IS
      PROCEDURE DB_ID_100 IS
      BEGIN
        DBMS_OUTPUT.PUT_LINE('-- executing DB_ID_100');
        --INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer100;
      END;
      PROCEDURE DB_ID_200 IS
      BEGIN
        DBMS_OUTPUT.PUT_LINE('-- executing DB_ID_200');
        --INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer200;
      END;
    BEGIN
      FOR r IN (
        SELECT 100 db_id FROM dual
        --  SELECT d.db_id
        --  FROM t_mv_db_accounts ac, t_mv_db_instances i, t_mv_dbs d, t_mv_hosts h
        --  WHERE ac.db_id = d.db_id
        --    AND i.db_id = d.db_id
        --    AND i.host_id = h.host_id
        --    AND upper(h.host_name)      = p_hostname
        --    AND upper(d.db_name)        = p_instance
        --    AND upper(ac.account_name)  = p_schema
      LOOP
        IF (r.db_id = 100) THEN
          DB_ID_100;
        ELSIF (r.db_id = 200) THEN
          DB_ID_200;
        ELSE
          RAISE_APPLICATION_ERROR(-20001, 'Unknown DB_ID ' || r.db_id);
        END IF;
      END LOOP;
    END;
    EXECUTE Execute_Synonym_Dml('demo','demo','demo');
    EXECUTE Execute_Synonym_Dml_Too('demo','demo','demo');
    DROP TABLE synonym_dml PURGE
    DROP PROCEDURE Execute_Synonym_Dml
    table SYNONYM_DML created.
    1 rows inserted.
    1 rows inserted.
    PROCEDURE EXECUTE_SYNONYM_DML compiled
    PROCEDURE EXECUTE_SYNONYM_DML_TOO compiled
    anonymous block completed
    -- executing immediately INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer100
    -- executing immediately INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer200
    anonymous block completed
    -- executing DB_ID_100
    table SYNONYM_DML dropped.
    procedure EXECUTE_SYNONYM_DML dropped.

  • Functional Modular or table name to component for a material

    Hi,
    Please help me for finding Functional Modular or table name to get all component (Alternative BOM also) for a particular material.
    thanks

    Hi sahoo
    try this CUBM_MATERIAL_BOM_READ
    or look for other FM on se37 with bomread*
    Regards
    Marco

  • Using Table name as value for formula

    I am using a table as a list for lookup in other tables using vlookup. The entire table is the source, so I'd like to do something like:
    =Vlookup("value to lookup", TableName, 3)
    However, it seems the entire reference including columns must be included. Is this so?
    Thanks for your help.

    I understand why they didn't do this. Many times you do not need to look up the values in the A column, but in the B or C column. This forces the novice user, and advanced users, to fully evaluate their expression. e.g. Numbers should not make any assumptions about your intentions.
    A novice user might see experienced users that use the shorthand for examples, and assume that you MUST use the entire table, and they would go off making these very odd looking tables just to accommodate this misconception.
    I wouldn't doubt if they tested this with a small set of novice users and got some very confused responses. then nixed it.
    just my 2 cents from writing programs for those very users,
    Jason

  • Table name n fields for smartform design

    Dear experts,
                        I want to display employee personal number, name, month and particular months salary, with 4 employees in each row and 5 employees in each column, in every page. Employee number range and month has to be input by the user. i dont know the tables and table-fields to fetch those data. Please help me with your inputs, for this program and smartform design.

    Hi,
        Thank you so much for the reply. My abapping skills are still very poor. i tried all your tables, but couldnt retreive data from it. sorry for the late reply...now i have edited a salary register program to which has all the fields that i require-personal number, name, month, rounded net salary of that month. but it is getting displayed in left hand side only. i want 4 employee details in each row, with 7 rows in each page. help me if possible...
    thanks.

  • Table name where description for any code group is stored

    Hi All,
    Can Anybody tell me name of table where description for any code group is stored.
    Thanks in Advance
    Regards,
    Amit

    Hi Amit,
    It is in table QPGT.
    Kind regards,

  • Can You do a Firmware or Bios upgrade on a Blackberry 9550 - See below for Reason for this Question

    I have a Blackberry Storm2 9550 (Verizon) using a Consumer Cellar Sim card.
    I am on vacation in Iowa and Phone Suddenly started to give a "Congestion" error with EVERY Incoming or Outgoing Call. I first assumed "Towers" were busy, but dismissed this as it happened for 2 Hours straight. Here in Cedar Rapids, Population of 140,00+ I am surrounded by 50+ towers.
    Discovered that by Powering Down, Removing Battery, Booting up it would work Each and Every time, for a few minutes only, Then "Congestion" error AGAIN. I have taken phone to Verizon dealer and since I don't have Their Plan, They Immediately hand Phone back. I have called every Electronics dealer in this area with NO luck...I believe I NEED a Firmware Update or a Bios Flash, But No One local, can help Me. This Phone has worked FLAWLESSLY for 2 Yrs - I loved this Phone up until a few days ago.. Any Help GREATLY Appreciated... Thank You - > Dan <

    hi Brian
    which version of InDesign you have ?
    I have checked these steps on CS3 and CS4:
    first I've set ON to option in preferences to preserve links when placing
    then I've placed DOC file as AnchoredTF in new Story
    then I've copied this AnchoredTF and pasted it on page, and then I've pasted it as another AnchoredTF - each time there was new lick created to the same DOC file
    then I've set OFF to option in preferences to preserve links when placing
    and even when I again copied and pasted this AnchoredTF with placed DOC file - it still add new link on Links palette
    so maybe with InCopy stories there is next bug or next "feature" ...
    [edit]
    ok - I've checked InCopy file - after exporting TextFrame as InCopy Story
    and it's like you've said - pasting on page - new link is created - pasting as Anchored - link isn't created ... no matter if option in preferences is set or not ...
    verdict - we've found new bug
    BUT ... if you link it again - by CTRL+D method - link is preserved even if option in preferences is set to off so you can have more than one InCopy Story placed as AnchoredTF in same parent Story ...
    robin
    www.adobescripts.co.uk

  • Standard PNP selection screen problem in reason for action type

    Hi all,
    We have used standard PNP in one of our report program.
    The input for 'Reason for Action' (excluding a particular reason for action ) has no effect on the actual selection of data from the PNP. i.e. even if a particular reason for action is excluded in the selection, record pertaining to that action for reason is still picked in the PNP selection and passed on to the program through Get PERNR statement.
    The above problem seems to affect all the standard and custom HR Reports as well.
    Please advise on how exactly the excluding of a particular reason for action work in selection through PNP and is there anyway to solve the problem.
    eagerly waiting for your response.
    Thanking You,
    Regards.
    Deepak

    Thanks for your response,
    We tried but it did not work.
    Our code is as follows,
    INITIALIZATION.
    W_REPID = SY-REPID.
    PERFORM CREATE_RANGES.
    START-OF-SELECTION.
    GET PERNR.
    RP-PROVIDE-FROM-LAST P0000 SPACE PN-BEGDA PN-ENDDA.
    PERFORM GET_DATA.
    END-OF-SELECTION
    If you could give us your email id, we would email the screen shots of the selection screen and the output.
    my email id - [email protected]
    Thanking You,
    Regards
    Deepak

  • Reason for deviation  in invoice date and order date

    hi all,
    i want to know the field and table name for reason for deviation.
    suppose the difference in invoice date and order date is 7 days.
    how can i find the reason for this difference.
    thanks in advance

    Dear bala
    Obviously there will be a difference between sale order date and billing date in real time scenarios. However, if you want to capture, you have to maintain the relevant text in billing (Goto --> Header --> Header texts).
    thanks
    G. Lakshmipathi

  • Reason For Movement

    Dear all
    I have a Query regarding Stock Posting MB1C when i am Trying To post the Stock With 561 movement type its asking for Reason For Movement How to remove this or Hide this With Out Asking Please help me
    with Regards
    Pushpalas

    Dear All
    Thanks for Replying Me But I Did All the Things The Same Error is Coming
    Fill in all required entry fields
    Message no. 00055
    Diagnosis
    You have attempted to update data or start an action. However, not all required information was specified.
    System Response
    The system could not execute the action.
    Procedure
    Enter all required information. Fields in which you must enter data are prefilled with a checkmark or question mark ("?") by the system. If the current screen contains tabs, check all tabs to make sure you have filled in all required fields. Then restart the action.
    with Regards
    pushpalas

Maybe you are looking for