How to create inbound JIT Call Manually?

Hi All,
Currently I am doing SAP JIT configuration. I have created the JIT Customer.
Now I need to get a JIT call to determine the schedule lines in the scheduling agreements. In real scenario, JIT call comes through Idoc from the customer side.
But I need to create JIT Call manually to do the configuration. So , How to create it? Is it Possible?
Thanks,
Anbazhagan E

Use transaction JIT1
Put in the Sold to customer number and the Ship to Partner description, just like in the first section of JITV, and put a unique value for this JIT Customer is the "Ext. JIT Call No." field.
When you hit enter you will get the Call Components grid or both the Component Groups and the Call Components Grids (depending on what Maintenance Mode you selected on JITV).
Let's assume your Mtce Mode = 3 - Discrete Material / Summ JC. Therefore you only get the Call Components grid on transaction JIT1.
You need to fill in certain fields at a minimum, more depending on the JIT Call Configuration.
Bare minimum, you need:
1) Customer material or Material (if you fill in one, when the program finds the matching LZJ SA, it wil default the other)
2) External Status (ex. ECRE or CR or whatever External status you have defined and linked to the CREA action in configuration)
3) Planned Ship date or Planned Requirement date
4) Quantity
If when entering the Customer material or Material, the Sales Document and Sales Item is not populated, that means you do not have a matching LZJ type SD scheduling agreement in the system. Or the data you are entering on JIT1 does not exactly match.
The SA must be there before you can do JIT1.
The JITV entry must be there before you can set up the SA.
Hope this helps at a basic level.
You may need to enter additional data at the header of the Inbound JIT Call, or at the Call Components level, depending on a particular scenario or to correctly find the SA.
If you have EDI that has come in and you want to create a similar JIT Call. Use the [Propose JIT Call button]
On the 1st screen, enter the Sold to, Partner Desc and new JIT Call number.
When you get to the 2nd screen, click the Propose JIT Call button, and enter the JIT Call you want to copy from. You just need to enter the External Status and new Planned Date. The materials and quantities and other fields get copied from the source JIT Call.

Similar Messages

  • How to create a routine call in FM (FI Module)

    How to create a routine call in FM (FI Module)

    Anu,
    I've attached a really short example that does something like what you're talking about.  It just compares the user's username and password a pre-determined username and password and then "logs the user in" based on that comparison.  Like Greycat said, you probably want to store this username and password info in some sort of file on the PDA that's in an encrypted format for both security and flexibility of your application.
    I hope this helps,
    Justin D.
    Applications Engineer
    National Instruments
    Attachments:
    LoginVI.vi ‏17 KB

  • How to create Inbound Idoc from XML file-Need help urgently

    Hi,
    can any one tell how to create inbound Idoc from XML file.
    we have xml file in application server Ex. /usr/INT/SMS/PAYTEXT.xml'  we want to generate inbound idoc from this file.we are successfully able to generate outbound XML file from outbound Idoc by using the XML port. But not able to generate idoc from XML file by using we19 or we16.
    Please let me know the process to trigger inbound Idoc with out using  XI and any other components.
    Thanks in advance
    Dora Reddy

    Hi .. Did either of you get a result on this?
    My question is the same really .. I am testing with WE19 and it seems SAP cannot accept an XML inbound file as standard.
    I see lots of mention of using a Function Module.
    Am I correct in saying therefore that ABAP development is required to create a program to run the FM and process the idoc?
    Or is there something tht can be done with Standard SAP?
    Thanks
    Lee

  • How to create a service call for more then one item

    Hi All,
            How to create a service call for more then one item. i.e. the service call should be logged for more then one item

    As you noticed this is not possible by design.
    Maybe you could have a dummy item for that purpose and register the real items to be handled in a UDT...
    HTH

  • How to create Inbound SOAP With Attachments

    Hi All,
    Does someone know how to create an Inbound SOAP Message (from SAP XI to a Business System) with attachments?
    We get an Idoc from a SAP R/3 system and transform this Idoc to an other XML format messages, but we want this message as an attachment and not as the payload in the SOAP Envelope.
    We tried the PayloadSwapBean module, but we don't have an attachment to swap with, but maybe we used the wrong paramaters.
    Thanks,
    Frank

    Hi Stefan,
    Does this quick response mean I challenged you?
    Our scenario is that we send an IDoc (ORDERS05) from our R/3-backend-system to XI (3.0/SP15). In an integration process (A/S-bridge) we transform this IDoc to an UBL-Order XML-message, and we want to send this XML-message as an attachment to a (synchronous) SOAP-call to a vendor. Like I said, despite the SAPHelp-content, we don't get this working. Whatever we try, the UBL-Ordermessage is contained in the SOAP-body.
    What makes it even more strange, is that XI itself is based on the SOAP-with-attachments-standard...
    So, any help is much appreciated!
    Regards, Fred

  • How to create inbound delivery (for ASN)?

    Hi,
    I am looking for a Bapi or a FM to create an inbound delivery for Advance shipment notification (ASN). This function module for creating will be called in the user-exit in the invoice posting idoc program. The manual way to create this inbound delivery is by VL31N. Any help and there experience will be appreciated.
    Thanks
    Ramesh

    Hi,
    I am calling this FM after creating a PO with BAPI PO_CREATE1 and it works. I also get the delivery number.
    Only create if there were no errors with the po
      read table return with key type = 'E' transporting no fields.
      check sy-subrc <> 0 and testrun <> 'X'.
      read table poschedule into ls_schedule index 1.
      ls_del_header-delivery   = lv_del_no.
      call function 'CONVERT_DATE_TO_INTERNAL'
        exporting
          date_external            = ls_schedule-delivery_date
        importing
          date_internal            = ls_del_header-deliv_date
        exceptions
          date_external_is_invalid = 1
          others                   = 2.
      if sy-subrc <> 0.
        clear ls_ret2.
        ls_ret2-message = 'Anlieferung Fehler bei Datumskonvertierung!'.
        append ls_ret2 to return.
      endif.
      ls_del_header-deliv_time = sy-uzeit.
    For each position create single delivery
      loop at poitem into ls_po_item.
        clear: ls_del_item.
        ls_del_item-delivery   = lv_del_no.
        ls_del_item-deliv_item = ls_po_item-po_item.
        ls_del_item-deliv_qty = ls_po_item-quantity.
        ls_del_item-unit      = ls_po_item-po_unit.
        ls_del_item-po_number = poheader-po_number.
        ls_del_item-po_item   = ls_po_item-po_item.
        ls_del_item-po_number = LV_EXPPURCHASEORDER.
        insert ls_del_item into table lt_del_items.
      endloop.
      Create delivery
      call function 'BBP_INB_DELIVERY_CREATE'
        exporting
          is_inb_delivery_header = ls_del_header
        importing
          ef_delivery            = ls_likp-vbeln
        tables
          it_inb_delivery_detail = lt_del_items
          return                 = lt_return.
      loop at lt_return into ls_return.
    Convert return table to bapiret2
        call function 'BALW_RETURN_TO_RET2'
          exporting
            return_in = ls_return
          importing
            return_ou = ls_ret2.
        append ls_ret2 to return.
      endloop.
      commit work and wait.

  • How To Create the HP_TOOLS partition manually?

    Hello,
         According to HP, you can create the HP_TOOLS partition manually with type FAT32 and make the partition name HP_TOOLS. I installed Windows 8 on my MSata Drive after I upgraded it and for some reason you can't install the HP_TOOLS on those drives it always gives an error. So When you download the HP UEFI Support Environment from the drivers/software from HP, it will install it on the Hard Drive which I use as a backup drive now.
    However, when you restart the computer and hit F2, you do not have the full feature to even run a system check, I have to boot it from a USB instead. How do I fix this problem so I can do a "Custom" install back of the HP Tools and be able to use it without any issues?
    What I have done was create a partition on my msata with 2.01GB like it created on my HDD. I made it Fat32 and named it like it said HP_TOOLS. I then copied over the Folder from the HDD to the MSATA Drive. Still it does not work. Any advise would greatly be appreciated!

    Bump

  • How To Create a URL Call in WebDynpro

    Hy All,
    i want to call a URL (WWW) directly from a WebDynpro-Application. But i found no stuff how to do this.
    URL myUrl = new URL("http://www.google.de");
    wdThis.wdInterfaceViewController().wdFirePlugStartAppExit(myUrl);
    I know how to read parameters of the URL, but i have Problems to create a URL-Call.
    Who can help ?
    Do I need a urlConnection ?
    Thanks for help.
    By Jürgen

    Hello Abdul, hello Sam,
    thanks for help !
    I have tested both and it is ok !.
    If i want to use the "external Link" in my Window, i have know thte Problem.
    I use the LinkToURL-Control with the Propertie "_SELF" and allways a new Browser Window come up! Where is my fault ?
    I have tested it with the following properties "_SELF, _PARENT, _TOP".
    Regards
    Jürgen

  • How to create a SRV record manually

    I need to create the SRV record manually in order to join my Windows XP machines to the Xserve domain, How can I do this?

    Drop this question, because lack of answer.

  • How to create inbound idoc and FM

    Dear All,
    How to create custom inbound idoc, the program and FM.
    Can anyone send me step by step process to create it, steps in FM and Coding.
    I have created for outbound and its working fine.
    Plz reply ASAP.
    Regards,
    Arun.

    Hi Arun,
    1) Create segment (WE31)
    2) Create IDOC Types (WE30)
    3) Create message type (WE81)
    4) Link message type with basic type (WE82)
    5) Create FM (SE37)
         here in the source code part of the function module you have to loop into the data records table of the idoc. then loop into the status recod table  to update the status of the idoc(Posted/Postedwitherrors/errors).
    6) Create Process Code (Inbound - WE41/ Outbound - WE42)
    7) Link FM and process code (WE57)
    go to WE19 to test it.
    Edited by: Chinna guntur on Sep 2, 2008 9:17 AM

  • How to create Inbound Idocs in a ABAP program? Any function Module?

    Hello Experts,
    My requirement is : I have sales order data which I extracted from third party system in my internal tables. In the same box I need to create inbound Idocs and then consequently create sales orders.
    I have used the function module IDOC_INBOUND_WRITE_TO_DB to create inbound Idocs from Sales Orders data in internal tables. I have populated all the data records with correct PSGNUM and HLEVEL values. My plan is to create inbound idocs with this function module and send those to IDOC_INPUT_ORDERS function module which creates Sales Orders.
    If a sales order in the internal table in ABAP program contains only one item, then I am getting correct idocs. But if more than one item exists for a sales order then the line item segments which got repeated in Idoc are having PSGNUM and HLEVEL values as zero when I checked in WE02. As a result the hierarchy from the second item segment is getting disturbed and getting the status 60.
    I populated T_EDIDD with data records from  IDOC_INBOUND_WRITE_TO_DB.
    To the function module IDOC_INPUT_ORDERS,  T_EDIDC and T_EDIDD are the input. I observed that in T_EDIDD also the PSGNUM and HLEVEL values are blank.
    I am getting Status 60 with message 'EDI: Syntax error in IDoc (segment cannot be identified)' for idocs which have more than one item.
    I need to extract sales data from third party and create inbound idocs and create sales orders in one ABAP program only. I need to display corresponding Idoc numbers for the corresponding third party sales order number in a listoutput.
    Can anybody please provide inputs?
    Regards.

    Hi Anjali,
    Thanks for the response.
    I have passed the PSGNUM and HLEVEL values while populating the data records. Then I sent the data records and control record information to the function module IDOC_INBOUND_WRITE_TO_DB. Inside this function module there is code to clear the PSGNUM values and HLEVEL values.
    for compatibility: clear administration data of data records
               perform data_records_wipe
                                      tables
                                          t_data_records.
    FORM DATA_RECORDS_WIPE
                      TABLES
                          T_DATA_RECORDS_IN  STRUCTURE EDIDD.
      LOOP AT  T_DATA_RECORDS_IN.
        CLEAR: T_DATA_RECORDS_IN-MANDT,
               T_DATA_RECORDS_IN-DOCNUM,
               T_DATA_RECORDS_IN-SEGNUM,
               T_DATA_RECORDS_IN-PSGNUM,
               T_DATA_RECORDS_IN-HLEVEL.
        modify t_data_records_in.
      ENDLOOP.
    ENDFORM.                               " DATA_RECORDS_WIPE
    This is the code which is clearing all the PSGNUM and HLEVEL values. After coming out of this function module we are getting the error idocs created with disturbed hierarchy.
    I need to create INBOUND Idocs with the data in ABAP program.
    Please let me know if any inputs? Is there any function module existing to create Inbound Idocs inside an ABAP program?
    Regards

  • How to create Inbound Delivery using SHPMNT03 Idoc details...

    Hi,
         I need to create <b><b>Inbound delivery</b> using idoc SHPMNT03</b> details. I am getting all the data required to create Inbound delivery is from this idoc. for that I need to create a custom function module.
    I tried with FM  IDOC_INPUT_DESADV1. But it is for only if you use DELVRY03.
    I haven't (yet) found a way to create automatically an inbound delivery when you post the goods issue from the outbound delivery.
    Does anyone experienced the use of inbound deliveries with STO and what are your recommendation?
    Thanks a lot,
    Ranjith.

    Hi there,
    Please have a look at the following link.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/dc/6b828943d711d1893e0000e8323c4f/frameset.htm
    Hope this helps,
    Kind Regards,
    Matthew

  • How to create relationship to call PO13 in ABAP program.

    Hi,
    Could anybody help me how to create relationship (like PO13) in abap program. Do we have any Function modules or any other way?
    Regards,
    Ram.

    Hi,
    You can use function module RH_INSERT_INFTY. There are plenty of threads of the forum on how to use it.
    Donnie

  • How to create inbound PO using EDI & IDOC???

    hi friends,
    I dont know abt IDOCs and EDI. Can any body give solution how to create po by using in bound process. plz give step by step. because I ever worked on EDI and IDOCs.

    Hi there,
    Please have a look at the following link.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/dc/6b828943d711d1893e0000e8323c4f/frameset.htm
    Hope this helps,
    Kind Regards,
    Matthew

  • How to create JAX-RPC WS manually

    I have a static WSDL file. Do you have any step by step instructions that show how to generate a JAX-RPC artifacts manually please? I can't do it using JDeveloper because my WSDL file is big so I got out of memory error when I tried to use JDev even though I increased the VM memory for JDev to 1024M already.
    That's why I have no choice but to generate the JAX-RPC artifacts manually.
    I'm using 10.3.1 WL.
    Thanks

    Ok just as I expected. So I guess I am left with the following two options
    1) either I switched to using JAXB in my apps instaed of xmlbeans....
    2) or if I still wanna use the old JAX-RPC web services to deploy on the Weblogic 10gR3 server i will have to create my own ant task jwsc directly......as shown below in your docs
    Programming Web Services for WebLogic Server (ant tasks)
    http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webserv/anttasks.html
    Getting Started With WebLogic Web Services Using JAX-RPC
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/webserv_rpc/index.html
    Will OEPE be supporting the old JAX-RPC anytime in the near future release? or have to create own build ant task to call jwsc ant task directly to compile JAX-RPC web services??

Maybe you are looking for