MB1B 301 with respect to Reservation number

Hi all,
I am trying to generate reservation number for 301 movement type by mb21 and when i use mb1b for 301 using the reservation number it is not able to find the reservation. Please suggest

Hi There
Check the Reservation, There will be movement allowed indicator field, it has to be enabled to do the transaction, if it is not enabled that reservation will not be available for posting,,
Once the Mov Allowed ind is enabled in change mode(MB22) save the document, and check in Mb26 and Post it from over there
Hope it helps
Thanks
Senthil

Similar Messages

  • My waveform chart is suppose to be with respect to time but I've noticed it is plotted with respect to the number of times through my VI

    I was under the assumption that waveform charts in LabVIEW 6i atomaticly displayed wired data with respect to time in seconds. However, I noticed that my chart plots data with respect to the number of data points my VI has generated. Is there anyway to fix this so that the chart actually plots vs. time. I've attached VI. The CIN is to a Computerboards Inc, thermocouple. Any help would be appreciated.
    Attachments:
    tepTInScan.VI ‏73 KB

    It appears that the chart is set to display relative time but since you don't have the acquisition in any kind of a loop, your relative time is pretty meaningless. You've got the dX of the chart set to be one, so yeah, at the beginning, the x scale numbers are going to be the same as the number of aquisitions until you've run it more than 60 times. At this point, you'll see the x scale show minutes and seconds. If you want absolute time for the x scale, look at the examples Real-Time Chart.vi or Variable-Time Chart XY.vi.

  • Delivery in background with respect to SO number

    Hi experts,
    Anyone kindly help me for the following case...
    In my workflow scenario, If sales order gets created, mail has to be sent to every user. Also for that sales order, delivery should be created in background and again mail has to be sent to all users...
    I m clear with sending mail. but i m struggled while creating delivery in background. i dont know how to do this. I hav an idea that it can be created using BDC recording and this recording program can be called in our method which is created in our business object.
    How to create a single BDC recording to create sales order as well as creating delivery in background... Is it possible to do like this. Or is there any function module to create delivery in background with respect to sales order number?
    kindly give some suggestion and step by step procedure to do this...
    Thanks in advance...
    Regards
    Raaams...

    Dear Raams,
    You can create delivery background automatically by maintaing Batch Jobs.
    The process of creating Batch Jobs:
    1.Tcode: SM36 for define background job/batch job
    enter job name, job class & click enter
    enter ABAP program name, varient name(optional)
    finally, u get message as batch job released
    2. Tcode: SM37 for simple job selection
    goto job log to check batch jobs are running or not(status)
    3. Tcode: SA38 for creation of varients
    If you have any concerns revert back the same
    Regards
    Amjath

  • Adobe Media Server pro 5 Scalabiltiy Requirements with respect to the number of clients connected

    what are the hardware requirements mapped to the number of clients connected to a vritual server running on a Windows 2008 R2 Server? At what point should the scaling be done, what are the best practices? The encoding rate used is 360 Kbps.

    Hi Simon
    The HTTP (HDS and HLS) streaming and recording limit in Adobe Media Server 5 Starter is 10 min. You'll need to buy a serial key if you want to record/stream for longer. Also there are no limit on number of clients for HTTP.
    Hope this helps.
    Thanks,
    Apurva

  • MIRO with reference to MIGO number

    Hi All,
    I want to have MIRO with respect to MIGO Number.
    e.g
    PO QTY 1000
    GRN 1 -
    10 Qty
    GRN 2------5 Qty
    Required scenario:
    If we run MIRO then Qty would be 15 Qty
    We have a requirement that MIRO is done GRN wise.
    like  for MIGO # 1 -
    MIRO reflects 10 Qty
    for MIGO #2----
    MIRO reflects 5 qTY

    Hi ,
    In standard SAP it is not possible to select MIGO no to do MIRO .
    Only you can use the Delivary note no. as reference for doing MIRO .
    Else , purchase order is always taken as reference and non required line item is deselcted at the time of MIRO .
    So please check how best you can use the filed delivary note in MIGO for doing MIRO .
    Regards,
    Dewang T.

  • How to trace purchase order number with respect to Purchase requestion numb

    Hi friends,
    Can u please help me how to Trace purchase order number with respect to purchase Requetuion  number. Is there any standard report  available in R/3

    Hi Vamsi,
    Thats what!!!
    Goto SE16 - EBAN - Give PR number in the iput screen.
    In the output screen you will have to do field selection from Menu - Settings - formatlist - choose fields.
    There you choose Purchase Order.
    So the output will display for you POs for the PR that you entered.
    Regards,
    Vishal

  • Prob with BAPI_GOODSMVT_CREATE when creating wrt  Reservation Number

    Hi to all,
    I have to create Goods Issue with reference to a reservation.I am using the BAPI  BAPI_GOODSMVT_CREATE .
    But when I am running the BAPI, It is giving the Error  'For reservation 0000001395   0001, no movements can be posted'.
    I have pased all the parameters as per the Documentation of the FM, But still I am not able to create Goods Issue.  Can any One help me How to achieve this.
    GOODSMVT_HEADER
    PSTNG_DATE                  10.08.2009
    DOC_DATE                      10.08.2009
    REF_DOC_NO                  1394
    GOODSMVT_CODE-GM_CODE                   = 03
    GOODSMVT_ITEM 
    MATERIAL                            MAT1
    PLANT                                  2001
    STGE_LOC                           0001
    MOVE_TYPE                        201
    ENTRY_QNT                        2
    ENTRY_UOM                       EA
    ENTRY_UOM_ISO               EA
    RESERV_NO                      1394
    RES_ITEM                           0001
    RES_TYPE                          X 
    Can any one help me whether the data I have Provided is Correct or not.If not Plese help me in Succesfully creating the Goods Issue.
    Thanks and Regards
    Meshack Appikatla.

    Hi,
    If you want to do Goods Issue against Reservation, try below mentioned:
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    goodsmvt_header = wa_header
    goodsmvt_code = c_mvt_code "Movement code-03
    IMPORTING
    materialdocument = v_matdoc
    TABLES
    goodsmvt_item = it_items
    return = it_return.
    where :
    wa_header-pstng_date = sy-datum. "Posting Date
    wa_header-doc_date = sy-datum. "Document Date
    wa_header-ref_doc_no = <Reservation Number >. "Reference Doc number
    In item data:
    wa_items-material = < Material Number >. "Material Number
    wa_items-plant = <Plant>. "Plant
    wa_items-stge_loc = <Storage Location > "Storage Location
    wa_items-move_type =261. "Movement Type - '261'
    wa_items-orderid = <Order Number from Reservation RESB-AUFNR>
    wa_items-reserv_no = <Reservation Number RESB-RSNUM>
    wa_items-res_item = <Reservation Item No RESB-RSPOS>
    wa_items-res_type = < Record Type RESB-RSART >
    wa_items-entry_qnt = quantity
    append wa_items to it_items
    Hope it helps.
    Regards
    Hiren K.Chitalia

  • How do I list the last n number of hours with respect to sysdate?

    I had a query regarding listing the last n number of hours with respect to sysdate?
    Say the current time is 1 AM, I want to get an output in the below format:
    1 AM
    12 AM
    11 PM
    10 PM
    9 PM...
    I know I can do it using a simple begin end block but I want the output to be returned in one single query.
    Any help would be very appreciated..

    Thanks!!
    I just figured it out as well!
    I used this:
    with hour_list as
         select trunc(sysdate- level/24,'HH') ,rownum
         from dual
         connect by level <=8
    select * from hour_list;

  • Stock Uploading with respect to Old Material Number of Legacy System

    Hi Experts,
    Need Your valuable Inputs,
    As we are Going Go-Live in ECC6.0
    As we have already Uploaded Material Master with the New Material Number (Internal Number Range generated by system )   Material Type, Valuation Class and Moving average indicator and related Fields in Material Master in ECC 6.0.with respect to old material number of Legacy system,
    Now we need to Upload the Stocks and Values with respect to Old Material Number by Using 561 Movement Type in the New system of ECC 6.0 , This New material number and old material number Stock and its Values should match in the New ECC 6.0 . 
    As from the Old Legacy system we have only Old Material Number, Description and its stock, Value, How can we Upload the Stock with respect to Old Material Number ?
    Kindly assist your Inputs.
    Best Regards
    Javeed Ahamed

    you have to have a mapping from old number to new number.
    you can either do it already in your source or you find the number in SAP itself with an ABAP command.
    Usually the old material number is stored in field MARA-BISMT
    if you want add the number in the source, assuming its Excel, then you you can download via SE16 from MARA just 2 fields: MATNR and BISMT. in Excel you can then use the formula VLOOKUP to get the MATNR by looking it up with old number.
    if you are a little familiar with ABAP, and you load stocks by using LSMW, then you can easily get the new material number by adding an ABAP statement to find a material number by old number
    select single  MATNR from mara into wa_MATNR
    where BISMT = oldmaterial.

  • Movement 262 against a Process Order and a RESERVATION number.

    Dear PP experts,
    Our raw materials are reels of paper. Our inventory supplies the production with a reel e.g. 1000kg and posts a 261 against this order (and against the reservation).
    By the end of the production phase any remaining raw material qties are returned to the inventory and a 262 against this order is posted (but the reservation is not updated).
    This causes the withdrawn qties shown at many pp info views to be *incorrect8. While the post goods movements lists are correct.
    A MIGO for 262 and with reference to a reservation is not possible.
    I did post finally a 262 against a reservation through COR6 and having the u201Cbackflushingu201D indicator on at the material view (process order material view). The u201CConfirmation of process order create: Goods movementu201D view had all info and MOV. TYPE 261 active and I was able to change it to 262 and saved it. All updates seems to be ok and withdrawn qties are the same with the sum of u201Cpost goods movements listu201D.
    IS THERE A WAY TO POST SUCH A MOVEMENT (262 AGAINST A RESERVATION) BUT NOT FROM COR6 (AVOIDING TO SAVE A CONFIRMATION TOO) ? Let's say to use only the screen of "Post Goods movement" of COR6 wo the 1st screen of confirmations? Or any other Tcode that might exist.
    Thanks in advance for yr suggestions.
    Kind regards,
    Elly

    Hi Elly,
    To return via reservation number is not available in SAP, however, there is a workaround.  When perform Goods Issue via Reservation (Mvt 261), there will be a material document get created.  This material document will be used as reference to perform Goods Return (Mvt 262) in which it will update the respective reservation qty.
    You may then use tcode: MBRL - Return Delivery or tcode: MIGO with A02 Return Delivery, R02 Material Document.
    1) Enter the Material Document that was used for the Goods Issue via reservation.
    2) Be careful here, select ONLY the required material(s) (by default, all materials issued via the material document is selected) and their respective qty for return.
    3) Check and Save it.
    Hope these steps help.
    Cheers!
    SweePeng

  • Goods Receipt with respect to sales order

    hi,
        goods receipt with respect to sales order ,that sales order is prepared with reference to quotation
    erroer is
    Account assignment cannot be carried out because of different origin no.
    Message no. V1134
    Diagnosis
    The sales document to which you want to refer is based on sales document 20000005 and item 000010. Therefore, the settlement and possibly inventory management are carried out using the number of the preceding document.
    System Response
    This entry is not allowed.
    Procedure
    Enter the document and the item number of the preceding sales document

    Hi,
    Refer the sales quotation number for GR instead of the sales order number.
    Regards,
    Ravi Kumar C.

  • Inspection lot creation during GR with respect to Purchase Order

    Dear Experts,
    Here is my Question
    Inspection lot creation during GR with respect to Purchase Order
    Inspection type 01 set in the material master
    inspection lot will be created during GR for a Purchase order
    from my understanding for every GR a inspection lot will be created
    No batch Management
    but the requirement is irrespective to GR qty and number of times of GR
    we need inspection only one inspection lot
    For Instance
    There is a PO for 1000 kg no batch management
    now i do GR for 100 kg for 10 times with different dates
    now i need to have only one inspection lot
    not 10 inspection lot for each 100 kg
    can any one suggest a solution, please advise my understanding is correct
    Many thanks
    Raj

    Dear Raju,
    There is a solution for that .The setting can be done two ways, either in the material master or in the configuration
    1) Material Master
    MM02> QM View> Inspection Setup> 01> Control Insplot> 'X' An inspection lot for each purchase order item/order item 0r  An inspection lot for each material document and material
    a) 'X' An inspection lot for each purchase order item/order item
    This Means
    This setting is limited for use with the inspection lot origins 01 and 04.
    An inspection lot is only created during the first goods receipt for each PO item or production order.
    b) '1' An inspection lot for each material document and material
    If you set this indicator, the system creates only one inspection lot for a material document (in a goods receipt transaction) for each material. This setting is useful, if several purchase orders or partial deliveries are processed for the same material in a goods receipt transaction.
    2) You can do this default in the config
    SPRO > Quality Management >  Quality Inspection > Inspection lot creation >  Define Default values for inspection type > 01> Control Insp lot
    Hope this helps
    Regards
    gajesh

  • Restricting issue of goods to cost center with respect to material type

    Dear Users,
    I have a requirement like we want to restrict issue of goods to cost center with respect to material type i.e., we want to issue goods to cost center only through reservation and that too only for specific material types. Is there any standard solution for this, please provide your suggestions.
    Thanks,
    Manoj

    Hi Ajay,
    Thanks for valuable input.
    I also thought in the same line , but user has the following concern on this:
    Assessment Cycle: As per Users, it cannot be used because this will allocate based on allocation basis. But they need, the values that was posted at the time of transaction and as per materials. So it wont be accurate through Assessment cycle,
    OKB9: They have different Cost center for different valuation area for the same GL Account.
    Hence through OKB9 also, we cannot post directly to COPA.
    That's the reason the above option were not adopted.
    My other concern to this is:
    In CKM3, we have two lines under consumption, one for Normal sales PGI and other is Cost Center.
    After doing revaluation of consumption in CKMLCP, we see one line under Cost Center :Revaluation of Consumption Figure"
    My question, where can I see that figure whether in any table or in Cost Center report??
    If that is also available we can try to match those values and post to COPA.
    Let me know your thought on this.
    Thanks and regards
    Kami

  • Creation of Multiple Shipments with respect to Single inbound.

    Hi,
    This is regarding creation of Multiple Shipments with respect to Single inbound.
    In standard SAP, you can create Shipment cost based on Inbound number.Requirement is here for single inbound can we create multiple Shipment document.
    Can we do shipment costing for Multiple shipment in single document through VI01.
    Yours Help in this will be highly appreciated.
    Regards
    Sunami.

    dear friend,
    to process shipment cost documents you can either call up a shipment cost document in change mode or you can create lists of the shipment cost documents
    you can create the following lists:
    -Shipment cost documents for calculation
    -Shipment cost documents for settlement
    to process a single document use t-code VI01
    to create lists of shipment cost documents to be changed use t-code  VI11
    so, if you need something very special you would think about the new enhancement...
    good luck!

  • How to populate the data or details of only the present year and the previous year with respect to the given RATNG?

    Hi All,
    I have created a form with 5 blocks (namely ENQACMHDR, ENQACMDTL, ENQACEHDR, ENQACEDTL, ENQACSPEC), where i have 8 push buttons (namely ENTER_QUERY, EXEC_QUERY, CLEAR, FIRST, NEXT, PREVIOUS, LAST & EXIT).
    This form is created just for viewing purpose only. So after I execute, all the blocks have been blocked against insert & update.
    I query on 2 fields that is 'ENQNO' and 'RATNG' (Both the fields belong to the block ENQACMDTL).
    When I click on 'EXEC_QUERY' directly, all the data of all the years populates.
    But the user wanted the data to be populated from only the present year and the previous year.
    So , on 'WHERE Clause' of the property_palette of 'ENQACMDTL' block , I put in the following condition:
    SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR( ADD_MONTHS(SYSDATE,-12) , 'YYYY') OR SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR(SYSDATE, 'YYYY')
    PROPERTY PALETTE (ENQACMDTL block)
    WHERE Clause
    SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR( ADD_MONTHS(SYSDATE,-12) , 'YYYY') OR SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR(SYSDATE, 'YYYY')
    Now the data of only the present year and the previous year is being populated. Its ok with the field of 'ENQNO'.
    The problem is when i query on field 'RATNG' . 'RATNG' is a Text_item with Number of Items displayed=5. (5 rows)
    The following are 2 columns of a Table (Name=ENQACMDTL) in Database.
    ENQNO
    RATNG
    2013900054
    500KC2
    2013900047
    800KC4
    2013520018
    750KC6
    2012900037
    1000KC2
    2012520109
    500KC2
    2012140019
    750KC6
    2011540036
    500KC2
    2011100030
    1000KC2
    2006100007
    90KD8
    2006750014
    750KC6
    2006900072
    500KC2
    The first 4 numbers of 'ENQNO' denotes the year. There are more than a lakhs of records.
    So when i query on the field 'RATNG',
    Example:For RATNG=500KC2;
    I click on ENTER_QUERY, On the field of 'RATNG' , i put in the value 500KC2 and click on  EXEC_QUERY; Details with respect to 500KC2 is displayed as well as all the other unwanted RATNG like 750KC6, 1000KC2 (which belongs to the ENQNO of the present year and the previous year) also gets displayed.
    I want details of only RATNG (500KC2) to be displayed, but only of the present year and the previous year, that is 2013900054, 2012520109 (ENQNO).
    Other than 500KC2 RATNG, no other RATNG must be displayed.
    The RATNG=500KC2 is also present for ENQNO=2011540036 , 2006900072. But I dont want these to be displayed.
    I want only the data or details of the present year and the previous year to be displayed or populated with respect to the given RATNG.
    Can You Help me or tell me what do i do for this?
    Hope I'm clear with my question!!
    If my question is not clear, let me know plz.
    Thank You.
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    Oracle forms 6i.

    On key-exeqry you have to program.  Delete all other trigger codings for checking your condition.
    It dint work on key-exeqry.
    I tried key-exeqry on form trigger, block (enqacmdtl) and also on field(:enqacmdtl.enqno) , but none of them worked.
    It did not display the message.
    I have a 'PUSH-BUTTON:EXEC_QUERY.
    For EXEC_QUERY, Trigger : WHEN_BUTTON_PRESSED;
    I added the following code:
    if to_number(substr(:enqacmdtl.enqno,1,4))<to_number(to_char(add_months(sysdate,-12),'YYYY')) then
         message('The Rating is not present for the present year and the previous year');message(' ',no_acknowledge);
         raise form_trigger_failure;
    else
         execute_query;
    end if;
    It is working fine and the message is being displayed.
    But again I have a new problem and that is;
    On the field :enqacmdtl.enqno, when i enter the '2013%' and press 'EXEC_QUERY', it works fine.
    but when i enter '2006%' and press 'EXEC_QUERY', it shows the following error
    FRM-50016: Legal characters are 0-9 - +E. It does not display the message also.
    but when i enter the complete number, '2006580002', then it works fine , that is it displays the message (The Rating is not present for the present year and the previous year).
    The problem is because of '%', only when i put in the restricted data (which does not satisfy where condition).
    How do i solve this?
    Thank You Priyasagi.

Maybe you are looking for

  • X300 no cd drive / windows 7

    Upgraded my X300 to windows 7 and now the cd drive is detected but blocked due to compatibility issues.The device manager shows an exclamation point and the drivers cannot be updated from there as they are current. Drive  has latest firmware from Len

  • Email video attachment format

    I received a video email attachment with a .me3 type of file, from my mum who was trying out her Creative NX. Does anyone know how to view this attachment? Thanks - Roger Stephens.

  • Tethered Shooting with Nikon D7000 - when?

    I was quite surprised (as, it seems, have others) to discover that tethered shooting is not yet supported with the Nikon D7000 in the latest Lightroom 3.3 release. Has Adobe made any statements regarding the availability of this feature? Does anyone

  • Not Ready Timer

    Hello, I got a requrement to display timer (to each representative) of how much time he is at "NOT READY" status. We are working with IC_AGENT profile with integrated CTI (sap sertified). Any Idea how this can be done? Thanks in Advanced Eli

  • Managing Photos and others without the use of iTunes

    Hello everyone, is there any software out there that would allow me to manage photos, music, wallpaper, themes, ect. other than iTunes, then of course I can not manage any themes with iTunes anyways. But if someone can point me in the right direction