How to do 543 for the sub-contracting components in HUM storage location

Hello,
I'm doing Sub-Contracting Goods receipt with 101 mvt type.
It happens that when i use a HUM storage location for the receipt of the materials, while posting the Goods receipt, it creates an inbound delivery.
Inbound delivery follows, Packing, Transfer Order, confirnmation and automatic Goods Receipt.
When you check the material document of the above Goods receipt, i dont see the posting of components with 543 +O mvt type. in the Goods Receipt document.  It happens that only the main material with mvt. type 101 is posted.
Also let me know is there any OSS Note which supports this above business process.
Best Regards
Srinivas Kulkarni

Dear Srinivas,
In standard, a goods receipt posting for an inbound delivery referring to a sub-contracting purchase order triggers the goods issue posting for the components from the stock of material provided to the vendor, whether the receiving storage location is HU mananged or not. I thus assume that there is some issue specific to your system that prevents the step. What exactly do you mean with "leads to stock transfers"? 
Best regards,
Christiane

Similar Messages

  • How to calculate or capture  the Sub-Contracting Charges

    In CK13N, How the Sub-Contract rate is derived.
    Kindly the tell the derivation methodlogy for SubContract Rate.
    Thanks in advance
    K.Natarajan

    Dear Natarajan,
    1.For Sub-sontracted products ,the cost of that product = Raw-materials cost (which are sent to the third
    party) + External processing cost(as per the cost mantained in ME11 for sub-contracting).So if the raw
    materials cost is Rs 10 & the processing charges are Rs 25 means then the sub-contracted product cost
    = 10+25 = Rs 35.
    2. For sub-contracted Product you will be getting only the sub-contracting cost and not the manufacturing
    cost.It will be having only raw material cost and sub-contracting charges.
    Or do you want in this way?say X is a sub-contracted part and its made up of raw materials X1 & X2 and
    once X is received ,its used for manufacturing Y ,So if you check the cost of Y it will having the sub-
    contacted item (X) cost + Internal processing cost (operation cost for producing Y),so if you check for Y it
    should show the split up of internal activity cost + sub-contracting charges +raw materials cost ?
    3.For your information,if you check CK13N for your finished product which is produced using the Sub-
    contracted product,then after giving the input and press enter ,then press F5,now you will get the exact
    split up in which you were looking for.like processing cost ,conversion cost + material cost.
    check the link - [Product Costing for Sub Contracted material|Re: Product Costing for Sub Contracted material]
    Check & Revert back.
    Regards
    Mangalraj.S

  • How to select the Alt BOM in the Sub-Contract PO

    Dear All,
    please tell me how to select the alternative BOM in the sub -contracting purchase order.
    for the above said requirement i have cretaed production versions and the BOMselction method also i have selcted in the material master data as "2" means BOM by produ ction version.
    so how can i select the alt BOm in theSub-contracting PO.
    Thanx in advanvce
    regards
    Srinivas

    Hi,
    SAP help says you have to write the production version in the subcontracting info record:
    http://help.sap.com/saphelp_46c/helpdata/en/b2/fa1ed4d51d11d1a69e0000e83235d4/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/35/b0e96787a62488e10000009b38f9b7/frameset.htm
    (I've checked a subcon-info record but sorrowfully I havent found a field for this...if you can find please let me know)
    BR
    Csaba

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • BAPI/FM for goods receipt for a Sub Contracting PO

    Hi All,
    Is there a BAPI/FM to perform goods receipt for a sub contracting PO? BAPI_GOODSMVT_CREATE can not perform goods receipt for sub contracting PO.
    My purpose would be served if I can know how to find the component material of a subcontrcting PO.
    Please help.
    Thanks,
    Rana

    Thanks for your input
    Well, I wanted to ask if the BAPI is capable of performing GR for SC PO. Instead of a question, that went as a statement :-). Your recommendation helped me to find answer to my question.
    Thanks again.

  • Error while doing MIGO for a sub-contracted item

    Hello to Everybody,
    I am facing below problem -
    Error : Incorrect CCtr <Cost Center Code> with this account (CCtr category must=D) for
    <Item Code> , while doing MIGO. (for receiving sub-contracted item from vendor).
    May I request for possible solution to above error ?
    regards,

    Dear Sanjay,
    You can determine the cost object for the posting of the  costs in the transaction OKB9.
    Following thread should resolve this issue:
    Re: cost of subcontracting
    Regards,
    Naveen.

  • Can i enhance a table via eewb for the service contract?

    Hi, expert
    I want to enhance a table for the service contract,
    when i use eewb to do the enhancement, i find only the BUPA  can do table enhancement.
    Or i can create a tran. table and display the data via a table view on the web ui ,
    but how to save the data of the table view when i click save button on the Web UI ?
    Thanks.
    Oliver.

    FYI: Found the problem. In the Administrator's Guide (of course not in the supplied packages documentation about DBMS_JOB) I found:
    "How Jobs Execute
    SNP background processes execute jobs. To execute a job, the process creates a session to run the job.
    When an SNP process runs a job, the job is run in the same environment in which it was submitted and with the owner's default privileges.
    When you force a job to run using the procedure DBMS_JOB.RUN, the job is run by your user process. When your user process runs a job, it is run with your default privileges only. Privileges granted to you through roles are unavailable."
    And of course we had set up our users to get all privileges through Roles, so CREATE TABLE wasn't one of my DEFAULT PRIVILEGES!
    It sure would be nice if Oracle documentation could get its act together and provide ALL information about a topic in a logical place. The effort to find the information about privileges occurred after it took me 1/2 hour to figure out why my submissions were failing - I didn't have the ';' included in the quoted string for the procedure to be called - which I only figured out after looking at the code for DBMS_JOB where it made the note to make sure you include the ';'. Wouldn't it be good to have that MINOR DETAIL mentioned in the description of DBMS_JOB.SUBMIT?????

  • How do we know, when the service contract is last modified ?

    How do we know, when the service contract is last modified and by whom ?
    thanks
    siva
    Edited by: sivapara on Nov 24, 2008 3:14 PM

    To add also in OKC_K_HISTORY_B for some actions.
    Thanks
    Nagamohan

  • What is setps to crete the Sub contracting with Scheduling agreement .

    Hi All,
    what is setps to crete the Sub contracting with Scheduling agreement and up to migo
    Thanks
    HAPPY

    hi
    firstly set the SPRO> MM>Purchasing>set up Subcontractor order>assigning plants to the delivery documet LB
    check following in system
    1. Shipping point created properly
    2. Shipping point has been assigned to the appropriate plant.
    3. Maintain shipping conditions in customer master
    4. Maintain loading group in material master
    5. Assignment of customer to vendor master
    then try following process
    1. Create a subcontracting Purchase Order (ME21N)
    u2022Click on u201CMaterial Datau201D tab under u201CItem detailsu201D and then click on u201CComponentsu201D to view the components / make changes.
    u2022Account Assignment and Item Category are usually blank in a subcontracting PO.
    2. Delivery of components to subcontracting vendor (ME2O)
    u2022Enter selection parameters like vendor and plant and click on Execute.
    u2022Select the desired line, click on Create Delivery and a delivery will be created.
    3. Post Goods Issue (VL02N)
    u2022The movement type is usually 541.
    4. Post Goods Receipt (MIGO)
    5. Logistics Invoice Verification (MIRO)
    *check out the doc i given in previous reply it is for SUBCONTRACT with SA *
    regards
    kunal

  • How to create F4 for the standard transaction

    Hi all ,
    How to create F4 for the standard transaction for a particular field .
    Bye

    Santosh,
        You can create F4 values for a field in a standard Transaction .
    1. First search for a standard search help meeting your requirement .
    2. If you don't find one, create your own custom (z) serach help .
    ( 1 is preferable )
    After that, include that serch help to the standard field in the transaction .
    For this u need to go to the screen
    ( F1->F9-> screen-> Field )
    Click on the property of the field and include the search help .
    You ll require the access key from the basisi guys as u r changing standard .
    Hope it helps,
    ~ laxmi
    Reward for helpful answers

  • How to implement tooltip for the list items for the particular column in sharepoint 2013

    Hi,
    I had created a list, How to implement tooltip for the list items for the particular column in SharePoint 2013.
    Any help will be appreciated

    We can use JavaScript or JQuery to show the tooltips. Refer to the following similar thread.
    http://social.technet.microsoft.com/forums/en/sharepointdevelopmentprevious/thread/1dac3ae0-c9ce-419d-b6dd-08dd48284324
    http://stackoverflow.com/questions/3366515/small-description-window-on-mouse-hover-on-hyperlink
    http://spjsblog.com/2012/02/12/list-view-preview-item-on-hover-sharepoint-2010/

  • How do I test for the presence of an active open document in Photoshop?

    I’m new to Adobe scripting, and one of my first scripts deals with the activeDocument in Photoshop.
    If there is no activeDocument, I want to display a message and terminate the script.  My efforts
    so far have been met with frustration.  While developing the script in ExtendScript Toolkit,
    I used the  test expression "activeDocument in app", and everything worked as expected. And when I installed the script
    in the Photoshop scripts folder and ran it from Photoshop with a document open, it also worked.
    But when I ran the script from Photoshop with no document open, it failed.
    Moreover, after that,the script failed when I tried to run it in ESTK.
    I did some testing and found that my test expression, "activeDocument in app"
    was returning true, even though no document was open.
    Still in ESTK, I replaced the “app” with ”Application” in the test expression.  That worked when
    I stepped through the script.  But when I tried to run it without stopping, it stopped at the
    test expression, and displayed the error message, “Application is undefined.”
    So how do I test for the presence of an open document in Photoshop ??

    After posting this, I discovered the Photoshop Scripting Forum, and I found my answer there.—
    I should have used “app.Documents.length” as my test expression.

  • Is it necessary to create a Billing Plan for the Service Contracts

    Hi All,
      Is it necessary to create a billing plan for the service contracts.
      My requirement.
      In CRM 7.0, we created a service contract. For the item in that service contract there is a Billing Plan tab.
      In that tab we have the dates for Period, Billing Date etc.
      Now our requirement is to get the Billing Date quarterly. For this we created date rules and date profiles and assigned these date profiles to header and item level transactions.
    And we are able to see the date rules under the drop down of the billing date.
    I copied the standard date rule BILL004 to ZBILL004.
      But when we changed to our date rule it is not changing to quarterly date.
      Can you please let me know  what are the configurations to be done for this.
      Is the billing plan has to be created for this kind of scenario.
    Thanks in advance
    Thanks and Regards,
    Raghu

    Hi
    On OK button's action  you can Destroy the window and navigate to Page1.
    Go through this link for more details and a step by step guide for creation of pop ups  and dialog boxes
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/903fed0d-7be4-2a10-cd96-9136707374e1?quicklink=index&overridelayout=true
    Hope it works
    Regards
    Suresh

  • How to creat deadlock for the purchase order in SAP Workflow

    How to creat deadlock for the purchase order in SAP Workflow

    Hi Ben,
    Are you using FM "CONVERT_DATE_TO_EXTERNAL" before passing delivery date?  If not, use FM like this, before passing the date to BAPI_PO_CREATE1 and it might work
      DATA: vf_doc_date(10),
                 internal_date TYPE d.
         vf_doc_date = sy-datum.              "Document date.
         internal_date = vf_doc_date.
      CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
        EXPORTING
          date_internal            = internal_date
        IMPORTING
          date_external            = vf_doc_date
        EXCEPTIONS
          date_internal_is_invalid = 1
          OTHERS                   = 2.
    Regards,
    Vivek

  • I am trying to group instruments together and send that to a sub mix.  I can group them and attach a bus and it says that they are at sub mix 1 but the volume slider for the sub mix does not affect the recorded tracks.

    I am trying to create a sub mix of several vocal tracks.  I have highlighted the tracks and have assigned them to bus 1 (sub mix 1) but the sub mix slider does alter the loudness or softness of the track.  I can move it up and down but nothing happens.

    Make sure that the input for the Sub Mix track says Bus 1.

Maybe you are looking for

  • Itunes and Quicktime won't open.

    I recently had a problem with Itunes, which deleted anything new I purchased or downloaded. I found out that if I rebuilt the library the problem could be solved, but I didn't want to risk losing any data so I didn't do it. I figured I'd wait for an

  • A few "maybe" simple questions

    I am using Dreamweaver for a few sites and having some problems. 1. For this website http://holtzenwoodwork.com It was built using netopia e site builder and has .nxg file extensions.. No matter what I do pictures will not show up in DW.. Anyone used

  • How to call stored procedures from java program?

    I have tried to run a program that calls a stored procedure on MySQL server version 5.0.17 by using connector/j 5.0, but it always fails on the statement: con.preparecall() , have looked on the internet and found out that people can all mysql stored

  • SAP workflow not published / not reaching default outbound handler

    Hi, At Velocity event (october) we had a SAP ERP workflow configured for publishing to SharePoint; after triggering workflow instances, an XML payload document was successfully published to SharePoint. Now, in the same environment; without changes on

  • Illustrator files cause finder to hang when in the web 2.0 view mode

    When I click on the hard drive and want to view its content using cover flow mode, it hangs on my AI files and will spin forever. I am using CS3. Has anyone experienced this issue before?