How can I update material in iw42?

Hi experts,
I need BAPI or Function to update material in transaction iw42.
Thanks'
Tatiana.

Hi,
I believe you could have search in Forum only for this.......
use BAPI_ALM_CONF_CREATE and then BAPI_TRANSACTION_COMMIT
Refer:
Long text Indicator for IW41/IW42/IW43 (Order confirmations)

Similar Messages

  • How can i update material master standard price.

    Hi Everyone,
    i would like to know if there is any way i can update my MM Std Price everytime i make any purchase.
    I.e i have std price 40, but next time when i make PO and update Inforec for 70 so i want this 70 also take effect in my material master. Is any expert can tell me about this functionality or any alternate. would be great help
    Ali

    If you are using std prices then these do not vary unless someone is manually changing them (or using a program to do this). That is the main point of std prices, they do not change unless you change them yourself.
    MAP and standard prices are used in material master and it has nothing to do with price with which you will sell your customer.
    MAP and Standard prices will just hit you inventory account and COGS account once you will do PGI.
    I am assuming that you are talking about the price at which you sell to your customer.The easy way of tracking changing prices is that you can make them manual conditions and based on your information you can put them manually in your sales order.
    It is not recommended to change standard price constantly. At this period end, modify the standard price in material Master & continue.
    This can be a regulr activity at period ends, say every month end or quater end or half yearly or yearly. In general it is prctices on yearly basis, but as per the requirement you can consider the period.
    Just go throught the links given below
    http://www.sap-img.com/materials/purchasing-tips.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/MMIVMVAL/MMIVMVAL.pdf
    Primarily, You cannot maintain both Standard Price & MAP. You can maintain only one of it.
    It is recommended that standard price should not be changed at randomly, but as a policy, if required, it should be changed at period end, say monthly, quaterly, Half-yearly or yearly.
    You can also check out transaction CK40N
    reward points if it helps
    regards
    Biju

  • How can we update insp. type in material master on mass basis.

    Hi Team,
    We are using LSMW for material master. I was told that we can not update inspection type  through LSMW. Is it possible thru LSMW if not, how can we update insp. type in material master on mass basis.
    Is there any T-Code to update mass chages for inspection type in material.
    Please suggest.
    Thanks

    Hi,
    You can use  TCode -QA08.
    This Tcode have facility to Inspection Type activation in single  / mass material.
    Also useful for deactivation, special setting at Inspection Type level.
    Regards,
    JM

  • How can I update my app store account ?

    Hi, I have a new Iphone and I wanted to add some applications from apple store.
    Unfortunately, I had a message saying that I was using app store on a new device (true) and they needed to check some security thing from my visa card. Unfortunately, I had a new  card and do not have the previous one anylonger (the previous one expires in 1 year but had to be cancelled).
    Therefore I am blocked and cannot get into my account.
    How can I update my bank account and get into the apple store again ?
    Thanks
    Nadiege

    Great, it worked. i could update the account from the laptop (but not from the phone).
    Many thanks for such a swift feedback !!

  • I upgraded from 3gs and want to use my old 3gs as an ipod. how can i update my new apple ID on the 3gs as it still shows a previous one that I had?

    I recently upgraded from 3Gs to Iphone4 and want to use my old 3Gs as an ipod. how can i update
    the user ID on the 3gs to a new one that I have as it is still showing a previous user ID?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.

  • How can i update data in JTable at run time ?

    i am trying to build a client/server architecture for conducting quizzes & online tests.. My client will return a object to the server after the test is over, which contains details about the participant, his score and other details. i am putting the incoming object to an Vector. I'll create a new thread each time for the incoming connection and insert the object to the Vector.. Now, please tell me tat, how can i update my table automatically at run time so tat, my table is updated whenever a new object is entered into vector..
    here is my code for the table..
    public class MyTableModel extends AbstractTableModel {
        String columNames[] = { "ID", "NAME", "COLLEGE", "SCORE", "CELL" };
        /** Creates a new instance of MyTableModel */
        public MyTableModel() {
            Main.List = new Vector();
            SetDefaultData();
        public int getRowCount() {
            return Main.List == null ? 0 : Main.List.size();
        public int getColumnCount() {
            return columNames.length;
        public String getColumnName(int column) {
            return columNames[column];
        public boolean isCellEditable(int row,int col) {
            return false;
        public Object getValueAt(int rowindex, int columnindex) {
            if(rowindex < 0 || rowindex >= getRowCount())
                return "";
            Student row = (Student)Main.List.elementAt(rowindex);
            switch (columnindex)
                case 0 : return row.id;
                case 1 : return row.name;
                case 2 : return row.college;
                case 3 : return row.score;
                case 4 : return row.cell;
            return "";
        public String getTitle() {
            return "Student Table";
        private void SetDefaultData() {
            Main.List.removeAllElements();
            Main.List.addElement(new Student("CS041","Keerthivasan M","MNM",95,"9884326321"));
            Main.List.addElement(new Student("CS012","Arun M","MNM",90,"9884825780"));
            Main.List.addElement(new Student("CS019","Balaji S","MNM",79,"9841742068"));
            Main.List.addElement(new Student("CS005","Anand R","MNM",89,"9884130727"));
            Main.List.addElement(new Student("CS045","Manish J","MNM",55,"9841624625"));
            Main.List.addElement(new Student("CS013","Mangal S","MNM",5,"9841961742"));
    }

    In the future Swing related questions should be posted in the Swing forum.
    how can i update my table automatically at run time so tat, my table is
    updated whenever a new object is entered into vector..You don't update the Vector directly. You should be creating a method in your TableModel, called "addRow(...)". This method will do two things:
    a) add the Student object to the Vector
    b) invoke the fireTableRowsInserted(..) method of AbstractTableModel. This will cause the table to be repainted.

  • How can we update data in LDAP server using PL/SQL.

    Hi,
    How can we update data in LDAP server using PL/SQL program.
    Is there any sample code for refrence.
    Thanks,
    Tarun

    Hi Justin,
    Thanks for your help. You got my correct requirements.
    Tim's example returning all the attributes of current user which is admin user. Please correct me if I am wrong.
    I have the following information:
    the admin user and password,server info , port and ldap_base for admin.
    I have uid and password for regular user, I am trying find the ldap_base for regular user, which may be different from adminuser.
    Please help me.
    Thanks,
    Edited by: james. on Jan 12, 2009 5:39 PM

  • I can't update IPhoto, it says "the product distribution file could not be verified it must be damaged or signed in" I bought it on iTunes and have 8,000 photos already. how can I update and correct this??

    I can't update IPhoto, it says "the product distribution file could not be verified it must be damaged or signed in" I bought it on iTunes and have 8,000 photos already. how can I update and correct this??

    You might try resetting the App Store application and clear the cookies via this menu:
    as described in this website: Make use of the Mac App Store debug menu | MacFixIt - CNET Reviews
    OT

  • How can i update data in okc_k_items and csi_item_instances tables?

    How can i update data in okc_k_items and csi_item_instances tables?
    by EBS .
    Thanks.

    For csi_item_instances table, you can use the following API:
    CSI_ITEM_INSTANCE_PUB.UPDATE_ITEM_INSTANCE
    For okc_k_items, try using the following API:
    OKC_CONTRACT_ITEM_PUB.UPDATE_CONTRACT_ITEM
    Hope this helps!

  • How can I update my iPad 3 to iOS 6 using iTunes

    How can I update my iPad 3 to iOS 6 using iTunes

    Welcome to the Apple Support Communities
    See "Update your device using iTunes" > http://support.apple.com/kb/HT4623?viewlocale=en_US&locale=en_US

  • I've moved my Aperture library to another computer, and masters are referencing an old path name.  How can I update these references?  Reloctating masters does not work in this case :(

    I've moved my Aperture library from one computer to another using Finder.
    I merged the library with one which was already on the computer.
    Now, the photos I imported have reference to the old path name on my old computer.
    How can I update these references as "Relocate Masters" does not work in this case?

    Just one suggestion to be able to reconnect all at once:
    Create a smart album containing the images with missing masters:
    File -> New ->  Smart Album,     and add a rule: File Status is "Missing"     (or File Status is "offline")
    Then select the images in this album and go to the File menu:
    and select:   File -> Locate referenced File
    If you are lucky, Aperture will reconnect all at once, if you point the first image version to its counterpart.

  • How Can I update my app new version to the registered devices

    Well, we have developed an in-house app using the Unity3d Game Engine. I'm using a Developer Enterprise account, and have already created the proper certificates, registered the devices (7 ipads) and generated the provisioning Profile. I have already clicked in the 'build an run', and the Unity Engine builds the app, that after is opened at the Xcode. I havel already fixed the bugs, and the app is working properly at the ipads.
    The problem is, I will need to Update the app, and I need to Update them without have to get them and build them at my own Mac, since they do not stay with me. I've been strugling with that for a while. I have downloaded the provisioning profile and sent by e-mail to one of the ipads, the one I'm using to test, and instaled it, but the version of my app have not been updated.
    I checked on my app icloud capabilities. The page about the Update of in-house apps is not very clear(http://help.apple.com/iosdeployment-apps/mac/1.1/#app43ad802c), and I'm new in the development for IOS.
    How can update my app at this Ipads? Is there any step-by-step to follow, more eplanatory that the link above?

    I didn't explained it correctly, I mean without getting the ipads, not the source code. I mean, at every time I need to launch a new version of the app, how can I update it through the internet, because I have installed my app running it at the ipads with the xcode, by usb. I'm using the enterprise program, so, as far as I know, the update is not through apple store.
    The ipads are in use, and I'd like to update them without have to get them to install it myself. Hope I have explained it better this time. Thank you for your help.

  • How can i update rows  in a table based on a match from a select query

    Hello
    How can i update rows in a table based on a match from a select query fron two other tables with a update using sqlplus ?
    Thanks Glenn
    table1
    attribute1 varchar2 (10)
    attribute2 varchar2 (10)
    processed varchar2 (10)
    table2
    attribute1 varchar2 (10)
    table3
    attribute2 varchar2 (10)
    An example:
    set table1.processed = "Y"
    where (table1.attribute1 = table2.attribute1)
    and (table1.attribute2 = table3.attribute2)

    Hi,
    Etbin wrote:
    Hi, Frank
    taking nulls into account, what if some attributes are null ;) then the query should look like
    NOT TESTED !
    update table1 t1
    set processed = 'Y'
    where exists(select null
    from table2
    where lnnvl(attribute1 != t1.attribute1)
    and exists(select null
    from table3
    where lnnvl(attribute2 != t1.attribute2)
    and processed != 'Y'Regards
    EtbinYes, you could do that. OP specifically requested something else:
    wgdoig wrote:
    set table1.processed = "Y"
    where (table1.attribute1 = table2.attribute1)
    and (table1.attribute2 = table3.attribute2)This WHERE clause won't be TRUE if any of the 4 attribute columns are NULL. It's debatable about what should be done when those columns are NULL.
    But there is no argument about what needs to be done when processed is NULL.
    OP didn't specifically say that the UPDATEshould or shouldn't be done on rows where processed was already 'Y'. You (quite rightly) introduced a condition that would prevent redo from being generated and triggers from firing unnecessarily; I'm just saying that we have to be careful that the same condition doesn't keep the row from being UPDATEd when it is necessary.

  • How can I update software on iPhone 3g from ios 3.1.3 to ios 4?

    Recently been given an iPhone 3g. I had to restore the phone to sync to my iTunes. Now a lot of apps will not download as I need at least iOS 4 but the phone is iOS 3. iTunes tells me that this is the latest software for this model when I check for updates. Is there anyway to update to iOS 4?

    The iPhone in question, iPhone 3g is running software version ios 3.1.3, my current iTunes is running 10.6.3. How can I update the software on said iPhone to iOS 4 from 3.1.3 if iTunes informs me that the current software is up to date.
    The iPhone has pretty much been rendered useless as I can not download majority of apps. Therefore it just works as a pretty basic phone.

  • How can I update my email address on iCloud

    How can I update my Apple ID email in iCloud?

    I'm not sure I understand your question.  What is it that you are trying to change?

Maybe you are looking for

  • Odbc error while retrieving the Query from Manage Sessions

    Log Could Not Be Retrieved Odbc driver returned an error (SQLExecDirect). Error Details Error Codes: OPR4ONWY:U9IM8TAC File: odbcstatementimpl.cpp, Line: 186 State: S1000. Code: 10058. [NQODBC] [SQL_STATE: S1000] [nQSError: 10058] A general error has

  • MATERIAL DOCUMENT not display in fb03

    Hi when I entering the material document no xxxxxxxx in Tran code fb03.The s/m doesnt show the material document.it gives error document no xxxxxxxx not exist in fiscal year 2009 or has been archived

  • Downloads do not work correctly

    When I download a file, i.e. a zip file a movie, or a torrent, it downloads the file with out the right name or extension. I can change the extension to open the file but it is a pain. For example when I tried to download a zip file it downloaded it

  • Programmatically determine OC4J instances currently on-line via OPMN or ?

    Hello, I am using OAS 10.1.3.1 and am wondering if there is a programmatic way (e.g. MBeans, web service call, etc.) via Java that I can interrogate OPMN (or any other OAS component) for what it understands to be the collection of OC4J instances that

  • Hi i want to become  storng in user exit and bapi

    hi experts., i want to become strong in the area of user exits and badi's . please send  me the documents for it , Thanks in advance. Regards, Hitu