How to update automatically a job status type to Complete - No Charges ?

Hello,
I'd like to update automatically (= no user intervention) jobs status type from "Complete" to "Complete - No Charges".
I've tried the Wip Mass Load program (using WIP_JOB_SCHEDULE_INTERFACE), but it didn't work because this program can only update jobs to Unreleased, Released, Complete, On Hold, or Cancelled.
Can anyone help me please ?

hello,
changing the status from "Complete" to "Complete - No Charges" without user intervation is not posssible,user has to assign it meaning that all resources have been charged,if there are any pending material transactions you can correct it & then assign this status.
regards,
ganpa

Similar Messages

  • How does system automatically picks up document type when you enter INV?

    1.How does system automatically picks up document type when you enter Invoice?
    2.What is Algorithms? Where is it used?
    3.What is the use of Customer Ledger Inquiry?

    The document type is hard coded by the system. Look at UDC table 00/DT for the document types in your system. Notice that some of those are marked as hard coded/reserved by JDE. You may wish to dowload the Accounts Receivable manual and read that to learn more about the document types.
    Not sure what you mean by algorithm, unless you are looking for how the system determines what document type to assign on invoice entry.
    These comments apply to accounts receivable and to JDE World, since you posted in the JDE World forum and are talking about the customer ledger inquiry. If you are in Enterprise One and asking about Accounts Payable, then this reply can be ignored (though Enterprise One works pretty similar to World in this respect).
    What is the use of the Customer Ledger Inquiry. To view accounts receivable detail history for a given customer, viewing on line. Whomever works in the accounts receivable department will likely use the Customer Ledger Inquiry quite a bit.
    Hope this helps a bit.
    John Dickey

  • How to update the service order status at meter level

    Hi
    I need to fetch one open service order and update the retrieved open service order status at meter level.
    I am trying to do it through BAPI_ALM_ORDER_MAITAIN but i am not able to do it.
    Please let  me know the process how to update.
    Thanks & Regards
    Pallavi

    Hi,
    Check if this code works ...
    REPORT zbapi .
    DATA t_meth TYPE TABLE OF bapi_alm_order_method.
    **Internal table for Operation (BAPI)
    DATA t_oper TYPE TABLE OF bapi_alm_order_operation.
    DATA t_comp TYPE TABLE OF bapi_alm_order_component.
    **Internal Table for Opertaions UP (BAPI)
    DATA t_comp_up TYPE TABLE OF bapi_alm_order_component_up.
    **Internal table for BAPI Return code
    DATA t_ret TYPE TABLE OF bapiret2.
    ***WORK AREA DECLARATIONS
    **Work Area for Hedaer
    DATA:wa_header TYPE caufvdb,
    wa_meth TYPE bapi_alm_order_method,
    wa_op TYPE afvgb,
    wa_comp TYPE resbb,
    wa_comp1 TYPE bapi_alm_order_component,
    wa_comp_up TYPE bapi_alm_order_component_up,
    wa_oper TYPE bapi_alm_order_operation.
    PARAMETERS:TEST.
    ****Fill Method Internal table
    CLEAR wa_meth.
    wa_meth-method = 'SAVE'.
    APPEND wa_meth TO t_meth.
    wa_meth-refnumber = sy-tabix.
    wa_meth-objecttype = 'COMPONENT'.
    wa_meth-method = 'CHANGE'.
    wa_meth-objectkey(12) = '000004000104'.
    wa_meth-objectkey+12(4) = '0010'.
    wa_meth-objectkey+16(4) = '0010'.
    APPEND wa_meth TO t_meth.
    **Component Internal table
    wa_comp1-reserv_no = '0000001072'.
    wa_comp1-res_item = '0001'.
    wa_comp1-activity = '0010'.
    wa_comp1-item_number = '0010'.
    wa_comp1-special_stock = 'B'.
    wa_comp1-requirement_quantity = '15'.
    wa_comp1-stge_loc = '0001'.
    wa_comp1-backflush = 'X'.
    APPEND wa_comp1 TO t_comp.
    **Component Update Internal table
    wa_comp_up-special_stock = 'X'.
    wa_comp_up-backflush = 'X'.
    wa_comp_up-requirement_quantity = 'X'.
    wa_comp_up-stge_loc = 'X'.
    APPEND wa_comp_up TO t_comp_up.
    **Call Bapi
    BREAK-POINT.
    CALL FUNCTION 'BAPI_ALM_ORDER_MAINTAIN'
    TABLES
    it_methods = t_meth
    it_component = t_comp
    it_component_up = t_comp_up
    return = t_ret.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.   <--- Hope u r using this too
    regards,
    Naveen
    Edited by: Naveen Deva on Apr 16, 2009 9:12 AM

  • How to update the Sent Idoc Status based on the Response From Webservice

    Hi All,
    I have to develop Idoc--SOAP Sync Process Scenario Using BPM .
    I have configured every thing using BPM and mapped
    MATMAS----SOAP Request
    SOAP Resp----STATUS.SYSTAT01
    In R/3  the Main Idoc Number(MATMAS) Status needs to be update , but it is creating the new Idoc with STATUS.SYSTAT01.
    I have used STATUS.SYSTAT01 Idoc to Update the status of the Original idoc based on the Response that is coming from webservice .
    I was posted the same thread a days ago and there Bhavesh suggested me some sugessions.
    How can we make the status of the Idoc based on some response Text
    iam unable to follow OR not able to clear my self on this.
    Please suggest me or give some over view kind of thing on this
    Regards

    Hi Suman,
    It is clearly mentioned in SAP help that "SAP Intermediate Documents (IDOCS) are EDI like documents that are asynchronous in nature."
    So Your Scenario is Asynch(receive) - Synch(WS call) -Transformation (Multimapping)- Asynch(Send to R/3).
    now go in this way:
    you can develop all the message Interfaces  of  Abstract catagory (not manditory )
    MI_AA_MATMAS   -> Abstract Asynchronous message    interface for your Matmas IDOC
    MI_AS_SOAP_ReqandResp  -> Abstarct Syncronous MI for SOAP request and response.
    MI_AA_STATUS ->Abstract Asyncronous MI for Status Idoc
    MI_AA_SOAP_Req ->  Abstarct Asyncronous MI for SOAP request .
    MI_AA_SOAP_Res ->  Abstarct Asyncronous MI for SOAP response .
    Thats all in Message interface.
    your first reciever :
    (This will receive the message asynchronously from R/3)
    create a conatainer varaiable (say preceive) and assign it message interface MI_AA_MATMAS
    Now in thw Propert TAB of this step: give this message name.
    Step2: Synchronous call :
    create container Variable psoaprequest and psoapresponse  give abstract message interface MI_AA_SOAP_Req and MI_AA_SOAP_Req  resp.
    Now in thw Propert TAB of this step:
    Synchronous Interface : MI_AS_SOAP_ReqandResp
    Request Message : psoaprequest
    Response Message: psoapresponse
    Transformation Step :
    Here you will specify Interface Mapping that will conatain Multimapping between Synch Response - MATMAs and STATUS
    Let's name it as IM_ResandMatmasToStatus
    create a container variable as pstatus and assign it abstract interface MI_AA_STATUS.
    In Property pan of this step :
    Interface mapping :IM_ResandMatmasToStatus
    Source Message :psoapresponse
                                preceive
    (IT will ask you for two source messages as IM selected in this transformation has 2 source messages)
    Target Message :pstatus
    Send step:
    Select a message as pstatus.
    thats all in IR.
    If have doubt in ID just let me know.
    Thanks
    Sunil Singh

  • How to update position (change job)

    Dear All,
    Please let me know how can we update an existing position which is used by employees. The problem here is that we need to change the job associated with the position.
    Thanks in advance,
    Avinash

    Thanks Giuseppe
    I did try Mass Move Functionality before posting this thread but that did not work for me as expected. I dont know if I did something wrong or that functionality is not suitable for this scenario. So I raised this thread hoping some one has successfully tried Mass move and can help me out.
    Mass move was working fine for me when when i was giving existing Position and Functions in target columns and moving the assignments also from source to traget positions. But when I was giving new job name (correct name that our HR want to associate with position) in target fiield its ending in warning with below message
    "*ORA-20001: This assignment was not moved/updated.*
    *Cause: You must change an assignment's organization, position, location, standard conditions, GRE/Legal Entity or grade.*
    *Action: Define a new mass move changing at least one of these attributes."*

  • How to update caret position in status bar ?

    Hello, I'm trying to display 'Line Number & Position' in my status bar, I'm not sure how to proceed from here.
    How would I update this to occur on every keystroke?
    SSCCE
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.event.KeyEvent;
    import javax.swing.BorderFactory;
    import javax.swing.Box;
    import javax.swing.JFrame;
    import javax.swing.JTabbedPane;
    import javax.swing.JTextField;
    import javax.swing.JTextPane;
    import javax.swing.border.EtchedBorder;
    import javax.swing.text.BadLocationException;
    import javax.swing.text.Element;
    import javax.swing.text.Utilities;
    public class test extends JFrame
         private static final long serialVersionUID = 1L;
         private JTextPane pane;
         @SuppressWarnings("unused")
         public static void main(String[] args)
              test t = new test();
         public test()
              super("test");
              this.setDefaultCloseOperation(EXIT_ON_CLOSE);
              this.setLayout(new BorderLayout());
              this.add(textPane(), BorderLayout.CENTER);
              this.add(statusBar(), BorderLayout.SOUTH);
              this.pack();
              this.setVisible(true);
         private JTabbedPane textPane()
              pane = new JTextPane();
              JTabbedPane tab = new JTabbedPane();
              tab.addTab("  Query  ", null, pane, "Query");
              tab.setMnemonicAt(0, KeyEvent.VK_1);
              return tab;
         private Box statusBar()
              Box sBar = Box.createHorizontalBox();
              JTextField linePosField = new JTextField(15);
              linePosField.setBackground(Color.LIGHT_GRAY);
              linePosField.setEditable(false);
              linePosField.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.RAISED));
              linePosField.setText(String.format("%s %d %s %d", "Line:",
                        getCaretRowPosition(pane), "Pos:",
                        getCaretColumnPosition(pane)));
              sBar.add(linePosField);
              return sBar;
          * Return the current line number at the Caret position.
         public int getCaretRowPosition(JTextPane textPane)
              int caretPosition = textPane.getCaretPosition();
              Element root = textPane.getDocument().getDefaultRootElement();
              return root.getElementIndex( caretPosition ) + 1;
          * Return the current Caret position.
         public int getCaretColumnPosition(JTextPane textPane)
              int offset = textPane.getCaretPosition();
              int column;
              try {
                   column = offset - Utilities.getRowStart(textPane, offset);
              } catch (BadLocationException e) {
                   column = -1;
              return column;
    }Edited by: G-Unit on Oct 17, 2010 4:08 AM

    Sorry, Found CaretListener(): Updated code;
    private JTabbedPane textPane()
       pane = new JTextPane();
       pane.addCaretListener(new CaretListener() {
          public void caretUpdate(CaretEvent e)
             linePosField.setText(String.format("%s %d %s %d", "Line:",
                getCaretRowPosition(pane), "Pos:",
                getCaretColumnPosition(pane)));
       JTabbedPane tab = new JTabbedPane();
       tab.addTab("  Query  ", null, pane, "Query");
       tab.setMnemonicAt(0, KeyEvent.VK_1);
       return tab;
    }Now I just have to figure out how to add a panel for line number to sit adjacent to my text area without throwing the whole window out of proportion. I tried adding some context menu buttons to sit next to it, and for some reason they seemed to want to grow by 500x the size specified and destroyed the whole look of the app. :s maybe I will just make do with status bar line numbers.
    Edited by: G-Unit on Oct 17, 2010 4:35 AM

  • How to determine the background job status?

    Hi Gurus,
    My program is as follows:
    1. I have used FM job_open to open a new job.
    2. SUBMIT to call another program which creates the file on application server.
    3. FM job_close to trigger that job.
    Now I want to determine the status of that triggered job (Not through SM37), Once I get a status for complete or cancelled I will be coding based on that.
    So could you please help me out for the issue?
    Thanks in advance.

    hi ,
    check table TBTCO.
    YES. u  can check for STATUS = P- Schedule/S---Released
    regards
    Prabhu
    Edited by: Prabhu Peram on Sep 18, 2008 6:43 PM

  • Header Text how to update automatic in MIRO?

    Hi,
    We want Po's Discription (PO TEXT) put in text and Header text field in (MIRO) how is it possible to do it automatically in miro. it is possible? if yes, pls it's helpful
    Regards,
    Amol

    Hi,
    with help of technical consultant please implement this BADI
    MRM_TRANSACT_DEFAULT
    Hope it will do for you
    cheers
    PK

  • HT1338 How to update automatically into beta developer's versions of mac

    Is it possible to update directly to a developer's version of Mac from a stable one?

    Glad that helped.  Like you, I am looking forward to installing Mavericks when it is released to the public this autumn.

  • How to reset Work Order System Status -NCMP Not completed

    Hi Friends,
    Please can anyone guide me how do I reset / revert the NCMP (Not completed) System Status of the Work Order. The System Status comes after I have done the Function of "Do Not Execute".
    Thanks in Advance.
    Anant

    Hi,
    1. You cannot reset it back . For future cases ensure to grey out the option using Transaction Variants SHD0 for IW31/IW32 Tcodes
    2.Steps to create transaction variant http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40d1443e-0184-2c10-c68d-c612f771fe6f?quicklink=index&overridelayout=true
    3.You can also explore user exit :IWO10026 User check on setting status 'Do not perform'
    regards
    pushpa

  • DBMS_SCHEDULER failed jobs  status

    Hi
    how to check DBMS_SCHEDULER failed jobs status ?

    Don't duplicate thread.Please close one of the threads
    oracle   failed DBMS_SCHEDULER jobs status?

  • Closed WIP job status change

    how to change closed WIP job status to released.
    Thanks
    Vijay

    If you are in the same period as you closed the job then go to Discrete Jobs>>Close Discrete Jobs Form>> Tools>> Unclose.
    Once unclosed then you can change it to released.
    If you are not in the same period, you cannot change the status.

  • WIP - Job Order Pending for Completion Transaction Reprt

    How can we get report - job order pending for completion transaction from WIP module?
    Please give us solution.
    Thanks & Regards,
    PressureJet Systems Pvt. Ltd.
    Edited by: PressureJet Systems Pvt. Ltd. on Apr 7, 2013 9:57 PM

    Can you elaborate your question more?
    Mahendra

  • Updating Phase for PM notification value after completion process

    Hi,
    I need to update Phase value for a PM notification, after its completion. This process will be triggered by a custom RFC called from PORTAL side. Could you suggest how to update phase value for PM notification confirmation/completion.
    Regards,
    Pulokesh

    Hi,
    Can you tell me where to pass the phase value in the BAPI that you have mentioned. Can anyone tell how to update Notification phase value while its closure/completion.
    Regards,
    Pulokesh
    Edited by: Pulokesh Karmakar on Aug 19, 2009 11:16 AM

  • How much time it takes for a job status to get updated in to TBTCO table?

    Hi all,
    We have a program that fetches the Job count and job name from a third party tool(UC4) and then searches for the status of the job in the TBTCO table.
    In some rare cases we found that the TBTCO table had not updated with the Job details when the call was made to it.
    Do we have any SAP scheduler settings which determines after a particular time the status gets refreshed in the TBTCO table once the job is triggered?

    hi may be checking Sy-subrc and using wait for X seconds should be a convenient way to code.
    I doubt if there is any schedule to update the table..

Maybe you are looking for