Query of reservation

hi experts
I have 2 questions about reservation.
1.when creating reservation,sysytem ask to input movement type. but I didn't see some movement type with special stock. like 221Q.why no 221Q exits?
2.when I choose movement type 281 consumption for network. sysytem prompt error message:Manual reservation for order category 20 not allowed. how to do configguration to make it availiable for manual reservation?
thanks

Hi,
Check in Project System, Material - Procurement - Define Movement Types for Material Movements, check in Goods Issue, GI Project, GI SOS movement type 281 has maintained or not, secondly for 221, check in OMJJ Allowed Transactions- MB21 T_Code exist or not ? and check for other setting in OMJJ.
Regards,
Vikas

Similar Messages

  • Query on Reservation on Service Confirmation

    Hello All,
    We have a scenario where once the confirmation is created in SAP CRM system it should trigger a reservation in the SAP ECC system, we have made the required customization settings under logistics integration, we copied the standard service order SRVO to YTSV doc type and the item category SRVM to YRVM (screen shot attached below) and against it we have indicated it as reservation
    However the help document of sap mentions that the reservation can only happen with the following doc type REPA and item category RMAT, please advice if the above configuration is correct or the same needs to be changed
    Kind Regards
    Atul

    Closing, this thread
    The service confirmation item category determines the reservation, however all the configurations should be in line as RMAT item category.
    Kind Regards
    Atul

  • EXPORT 시 QUERY OPTION에 대한 사용 예(ORACLE 8I 이상)

    제품 : ORACLE SERVER
    작성날짜 : 2004-03-17
    EXPORT 시 QUERY OPTION에 대한 사용 예(ORACLE 8I 이상)
    ============================================
    PURPOSE
    ============
    oracle 8i에서 export 시 query option에 대한 사용 예
    8i에서 export의 query syntax 를 이용하여 table data의 한 부분만 exporting 이 가능
    - 8i 에서 select 문장의 where 절을 사용하는 것처럼 export 시에 부분적으로 table data 를 받아 낼수 있는 기능을 소개 한다.
    - Direct 옵션은 사용될 수 없다..
    - where 절에 해당하는 export utility는 query parameter 를 사용한다.
    UNIX syntax:
    - Example:
    1.SCOTT.Emp table의 ename 이 JAME과 비슷한 이름의 data 를 export ..
    exp scott/tiger query=\"where ename like \'JAME%\'\" tables=emp file=exp.dmp log=exp.log
    2. employee와 cust table에서 new york 주의 data 만 export ..
    exp scott/tiger query=\"where st=\'NY\'\" tables=(employee,cust) file=exp.dmp log=exp.log
    query 문장에서 UNIX reserved characters( ", ', ,< .. 등) 를 사용하는 경우에는 escape ('\') 을 반드시 사용해야 한다.
    예)query=\"where JOB = \'SALESMAN\' and salary \< 1600\"
    더 중요한 것은 command line에서 export option을 사용할때는 반드시 escape 이 있어야 하나
    parfile을 사용할때는 eacape이 불필요하다.
    예를 보면 .. p라는 이름의 file을 다음과 같이 생성
    tables=emp query="where job='SALESMAN'"
    parfile을 이용해서 export 를 실행해 보면
    [rmtdchp6]/apac/rdbms/64bit/app/oracle/product/9.2.0> exp scott/tiger parfile=p
    Export: Release 9.2.0.4.0 - Production on Wed Mar 17 00:12:34 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses KO16KSC5601 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 4 rows exported
    와 같이 정상 처리 됨을 알수 있다.
    만일 command line에서 위의 내용을 실행하게 되면 다음과 같이 error 를 만난다.
    exp scott/tiger tables=emp query="where job='SALESMAN'"
    LRM-00101: unknown parameter name 'job'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    command line에는 query 내에 single(')나 double quotes(") 를 사용한다면 반드시 double quotes(") 를 사용하여
    query 문을 묶어야 한다.그러나 query 내에서 single ('')나 double quotes(") 를 사용하지 않는다면 single quotes (')을 사용하여
    query 문을 수행할 수도 있다..
    다음 예를 보면..
    1>exp scott/tiger tables=emp query=\'where deptno=20\'
    Export: Release 9.2.0.4.0 - Production on Wed Mar 17 00:22:00 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses KO16KSC5601 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 4 rows exported
    2>exp scott/tiger tables=emp query=\'where job=\'SALESMAN\'\'
    LRM-00112: multiple values not allowed for parameter 'query'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    즉.. 정리를 하자면
    command line에서 query 내에 '," 을사용하지 않는 다면 '나 " 으로 query option을 사용할수 있다
    query=\'where deptno = 20\'
    query=\"where deptno = 20\"
    query=\'where deptno \< 2\'
    (이 경우 single 이나 double quotes 을 둘다 사용할수 있다.)
    parfile을 사용하는 경우에는 다음과 같이 단순하게 사용이 가능하다.
    query='where deptno = 20'
    query="where deptno = 20"
    query='where deptno < 20'
    WINDOWS NT / 2000 와 NETWARE syntax:
    다음의 자료를 참조바란다.
    Example:
    EXP demo/demo tables=emp file=exp1.dmp query="""where deptno>30"""
    double quotes(") 를 둘러 싸는 경우에는 space 가있으면 안된다.
    parfile의 사용은 다음과 같이 하시면 됩니다.
    file=exp66.dmp
    query="where deptno > 20"
    tables=(emp)
    log=log66.txt
    userid=scott/tiger
    Explanation
    Windows NT or Win2000의 경우 command line에서는 3 double quotes 이 필요하고
    'PARFILE 을 사용하는 경우에는 double quotes(") 한번만 필요함
    Reference Documents
    Oracle8i Utilities guide
    Note:91864.1

  • How to remove reservation no.in component general tab????

    Hi
              I have query of reservation no.which always create whenever we assign stock or non-stock item in material in general tab (Component).
    I don't want this to be created....is there any settings for this or we have to do some development only.
    Thanks
    Warm regards
    Rajat

    Dear Venu,
                     Actually after dng these settings it'll create reservation for stock material as this setting is for reservation relevance for stock material.
                      My requirement is, this reservation should not be created in the system.
    To me it seems like if we trigger a user exit that whenever a reservation is created that'll be erased from the system at the same time.
                     What you suggest?
    Warm regards
    Rajat

  • Escape reserved characters in Contains

    I have a problem to query the reserved key ("_").
    I have four records.
    Description:
    P_1234
    PA1234
    PB1234
    PC1234
    I want to search for record "P_1234" only. If I use contains(description, 'P\_1234', 0) > 0, I can get the expected result. However if I use contains(description, 'P\_%', 0) > 0, all the four records will be returned. That's not expected.
    From above example, does that mean we cannot use escape and wildcard operators together?
    Thanks in advanced.

    Thanks Ron helping look into this.
    The issue occurs on Oracle9i. I have not tried it on 10g. I listed the steps to reproduce the issue below:
    1. Create a multi_column_datastore
    ctx_ddl.create_preference('ITEM_MULTI_PREF', 'MULTI_COLUMN_DATASTORE');
    ctx_ddl.set_attribute('ITEM_MULTI_PREF', 'COLUMNS', 'ITEM_NUMBER,DESCRIPTION');
    end;
    2. Then create context index on "description" column
    CREATE INDEX ITEM_CTX_IDX ON ITEM(DESCRIPTION) INDEXTYPE IS CTXSYS.CONTEXT
         PARAMETERS('DATASTORE CTXSYS.ITEM_MULTI_PREF LEXER CTXSYS.OBJECT_LEXER SECTION GROUP CTXSYS.OBJECT_SECTION_GROUP STOPLIST CTXSYS.EMPTY_STOPLIST');
    3. Then create the four objects mentioned in my previous thread.

  • BOXIR2 FP4.6 -WebI report with merged dimensions: Incorrect data

    Issue: BOXIR2 FP 4.6 -WebI report with merged dimensions: Max value of an object from second query is displayed in the report even when the formula is based on the object from the first Query.
    Data displays properly on BOXIR2 SP2.
    Steps to reproduce.
    1.Use u2018Island Resort Marketingu2019 Universe to create a WebI report.
    2. Create a Query with objects u2018Reservation Dateu2019 and u2018Future guestsu2019 and apply a query filter where the u2018Reservation Dateu2019 is between 1/1/2001 and 31/1/2001 an Run the query.
    3. Add a second Query with the same objects i.e. u2018Reservation Dateu2019 and u2018Future guestsu2019 and apply a query filter where the u2018Reservation Dateu2019 is between 1/1/2001 and 31/12/2001.
    4. Create a report variable MaxDate using the syntax "=Max([Query 1].[Reservation Date]) In Report"
    5. Use the objects u2018Reservation Date Query 2u2019, u2018Future guests Query 2u2019 and u2018MaxDateu2019 variable to create a table in the report.
    You will find the Maxdate column displays Max date values of u2018Reservation Date Query 2u2019 instead of u2018Reservation Date Query 1u2019.
    Could you please advice me on this issue.

    Hi Hiteshwar,
    MaxDate variable returns a maximum of Reservation date  from Query 1 i.e. 1/15/01 which is correct. If you put that variable separately it will display that date correctly but you are grouping it along with objects from the query2 thatu2019s why it is displaying correct value for Query 2 where it finds 1/15/01, but for other values WEBI canu2019t group this value as it refers its formula which contains Query 1 reservation date.
    Hence we canu2019t say it is displaying values from Query 2 it is taking values from Query1 itself  for 1/15/2001 and for remaining values it is taking non matching values from Query 2 with which it is grouping.
    If you put that variable with objects from Query1 it wonu2019t display 1/15/01 but all values reservation date from query 1 contains because it is grouping based on reservation date though it is single max value.
    Even when you write "=Max(Query 2.Reservation Date) formula and use it with objects from query 1 though it contains so many values it matches (Groups) only the values from reservation date from Query 1.and displays only those values i.e. 1/1/2001 and 1/15/01.
    MaxDate returns 1/15/01 as Maximum Date value from Query 1 but Query 2 contains value far more greater than 1/15/01 hense that will be more incorrect data if WEBI displays maxdate as 1/15/01 along with Query 2 objects.
    Here we can avoid this behavior by Custom SQL but MaxDate is a report level variable hence we canu2019t edit SQL.
    If your data contains some duplicate values WEBI will repeat MaxDate value like
    Reservation date     Restaurant           Future_Guests    Total Guests 
    1/1/01                          ABC                         3                   3     
    1/15/01                       XYZ                          4                   8    
    1/16/01                       XYZ                          4                   8  
    By default, WEBI Groups Total Guests based on the Restaurant and Reservation Date, but if we want we can group those values based only on Restaurant which will duplicate Total Guest values for Restaurant XYZ. But you report contains only one dimension with all unique Values we canu2019t group those.
    I hope this is clear.
    Thanksu2026
    Pratik

  • Job and Sale order link

    If i created a link between a job and a sale order and the quantity completed is reserved against that sale order...however if there is a requirement to despatch the completed quantity against another sales order how would i cater this issue..

    Go to reservations form, query the reservation details based on supply / demand (Sales order) / item.
    Once you find the right record, Goto tools -> transfer demand and you can link it to new sales order which needs to be shipped on priority.
    Hrishi

  • Help with sql query the status of  A/P Reserve Invoice

    Hi,
    I am trying to write a query which lists all A/P Reserve Invoice info with OPEN status.
    I check the OPCH table and cannot find the rule to tell the status.
    The "DocStatus" field has two values only: 'O' for open and 'C' for closed.
    However, the status of A/P Reserve Invoice are OPEN, CLOSED, DELIVERED, PAID, etc.
    I try to use DocStatus field to filter, but the result does not match what I see in SAP.
    Could you please give me some hints about how to get the data I need? Thank you.
    Best regards,
    Sylvia
    Edited by: csylvia on Jun 23, 2011 5:54 AM

    Hi Darius,
    Thanks for your reply.
    However, I don't know what is the relationship between Purchase order and A/P Reserve Invoice.
    Do you mean using "SELECT T0.DocEntry FROM OPCH T0, OPOR T1 WHERE T0.DocNum = T1.DocNum AND T1.DocStatus = 'O';" to query the A/P Reserve Invoice data with OPEN status?
    But the result is not what I want.
    The result of "*SELECT * FROM OPOR WHERE DocStatus = 'O';*" is also not.
    I'd like to query A/P Reserve Invoice list with OPEN status, and I try the following sql query:
    SELECT DocEntry FROM OPCH WHERE DocStatus = 'O' AND InvntSttus = 'O';
    The result is close to what I need, but it's not exactly correct.
    Moreover, I don't think the sql query conditions is accurate.
    Please give me some advice. Thank you.
    Best regards,
    Sylvia

  • Query about Manual Reservation for Maintenance Order Category 30

    Hi,
    I have a problem. Generally from Maintenance Order type PM01 under Order Category 30, when we give some materials requirement, SAP automatically generate reservation for those materials and take the GL as Consumable Item.
    But in my case, that GL has to be changed depending on what perpose we are using the material. But Manual reservation is not allowed for the order category 30 and no GL can be changed for automatic reservation.
    Can anybody suggest any way-out so that we can give our desired GL No. for the reservation for Maintenance order (say Order type PM01 under category 30 which is SAP internal).
    Thanks in advance,
    Satadal

    To the best of my knowledge this is possible. To the best of my knowledge G/L account determination for every material happens after a series of checks are done internally by SAP. By checks I mean the sequence of steps as customized by the consultant in the configuration. Now at the end of the sequence if SAP has not succeeded in identifying a G/L account it will open up a tab in which u can manually enter the G/L account. For non-stock item you can anyway enter it.
    I would suggest that you post this query in the MM forum also.
    thanks
    Bala

  • "MS" reserved word in oracle text query?

    Wondering if anyone has run into the string "MS" behaving as a reserved word in oracle text queries. For example, this specification returns all records from Texas:
    '<query>
    <textquery>
    <progression>
    <seq> TX WITHIN CUSTOMER_STATE </seq>
    </progression>
    </textquery>
    </query>'
    But this one does NOT find any results for Mississippi:
    '<query>
    <textquery>
    <progression>
    <seq> MS WITHIN CUSTOMER_STATE </seq>
    </progression>
    </textquery>
    </query>'
    I've confirmed we have data that should match, and I've tried escaping it with the sequences as described in the SQL docs (I've tried single quotes, pairs of single quotes, braces, and combinations of those) . And trying to find info on the web is tough since all web queries that contain 'MS' bring back tons of Microsoft-relevant information.
    Can anyone nudge me in the right direction for a better google-search, or some materials in these forums (my initial searches here didn't turn anything up either).
    Thanks for any feedback!
    jh

    Wondering if anyone has run into the string "MS" behaving as a reserved word in oracle text queries.Maybe because »MS« is in the default english stoplist?:
    English Default Stoplist.

  • Query in Item Reservations Report

    Hi all,
    Can i know what the 'Remaining Quantity' in the Item Reservations Report mean.Also let me know when the same column will be affected and how.
    ie.When can reserved quantities and remaining quantities vary in the report?
    Regards,
    Bala.

    You may use the set_block_property procedure built-in and the 'default_where' property so as to execute the query using the contents of your item (with the name of column , of course).
    Afterwards , you navigate to the db items block (with go_block('blockname')) and execute the query (built-in 'execute_query').
    Hope it helps
    Sim

  • Reservation list query help

    Hi All
    I am trying to put together a SAP query in quickviewer that will give me visability of all open reservations with plant material information.
    The tables I am using in the query are:
    TABLE             FIELD
    RESB - RSNUM - reses number
    RESB - RSPOS - item
    RESB - BDTER - req date
    RESB - MATNR - material number
    RESB - BDMNG -

    Hi
    I hadnt completed my initial question when the thread was posted!
    I am trying to create a 'pick list' so that the warehouse can 'pick' available stock to an open reservation. We had a bespoke interface that sat on top of SAP that did all of the SAP transactions at a push of a button. However, due to the size of our data, any generic search for open reservations caused the SAP server to max out at 100% and slow the system to a halt.
    So, I am trying to replicate the 'pick list' in a simple query. I am using Quick Viewer to do this. However, whne I link the tables, I get no data. I need help in linking the tables in a logical manner to get the info displayed.
    The tables and fields I have been using are:
    RESB - RSNUM
    RESB - RSPOS
    RESB - BDTER
    RESB - MATNR
    RESB - BDMNG
    RESB - MEINS
    RESB - WERKS
    RESB - LGORT
    RESB - ENMNG
    RESB - SORTF
    RKPF - PS_PSP_PNR (only table and field I could find the WBS element data)
    RKPF - WEMPF
    MKPF - BKTXT (we use this field in system to display the WBS and Sort string together)
    MARA - MATNR
    MARD - LGPBE
    LQUA - VERME
    I am missing additional bin info if stock is held in more that 1 location (we use the default bin as a putaway info)
    I also have a problem with data repeating 4 times. We have 4 storage locations per plant (we have 3 plants that have warehouses) but even when I enter the storage location I still get the data repeating 4 times. Is this because the table is in the wrong place (not linked to right table)
    I would hope that once the data is displayed, it can be printed via SAP. I do not really want to export to excel and print from there.
    Regards
    Darren

  • Query to get the Quantities on Reservations window in Inventory

    Hi All,
    how can I get the Onhand Quantity and Available quantity on Item Reservations Details window( Inventory-->On hand Qunatity-->Reservations) in Oracle Apps 11i.I need to build a query wih all the reservation details.I need help in calculating the Quantities diplayed on the reservations form.
    Could any one pls help me on this.
    Thanks,
    PV

    Hi
    Use the following query
    SELECT SUM(transaction_quantity) A
    FROM
    MTL_ONHAND_QUANTITIES_DETAIL
    WHERE
    inventory_item_id = :INVENTORY_ITEM_ID
    AND organization_id =:WH_ID;
    QTY Reserved :---
    SELECT SUM(RESERVATION_QUANTITY) B
    FROM MTL_RESERVATIONS
    WHERE inventory_item_id = :INVENTORY_ITEM_ID
    AND organization_id = :WH_ID;
    SELECT SUM(transaction_quantity) C
    FROM
    MTL_ONHAND_QUANTITIES_DETAIL
    WHERE inventory_item_id = :INVENTORY_ITEM_ID
    AND organization_id = :WH_ID
    AND subinventory_code IN (SELECT SECONDARY_INVENTORY_NAME
    FROM
    MTL_SECONDARY_INVENTORIES
    WHERE organization_id =:WH_ID
    AND reservable_type = '2');
    Qty Available :---
    QTY_AV_BR:=nvl(A,0)- (nvl(B,0)+ nvl(C,0));
    Hope this helps you
    Thanks,
    Vijay

  • Approval Query needed for AR Reserve Invoice

    Need to create an approval for delivery doc- If AR reserve invoice not paid need to triger an approval.  how can I cutomise the query to look at base document.
    SELECT DISTINCT  'TRUE' FROM OINV T0 WHERE T0.[isIns] = 'Y' AND  T0.[DocStatus] <> 'C'
    Thanks and Regards

    Hi Anoop,
    This one should do it I believe. I have attachde the query as not everything gets copied in this forum. The query below will not work.
    SELECT distinct 'true' FROM DLN1 T0 WHERE T0.[BaseType] = 13 and  $[$38.45.1] in (SELECT docentry  FROM OINV T0 WHERE isins = 'Y' and paidtodate <> doctotal)
    There are a few limitations with approvals in B1 that are based on values on the linelevel like this one.
    The query can not see past the first line of the document. So it will only check the basedoc of the first item in the Delivery (it is possible to add an item on the first line after copying the Reserve Invoice details into the delivery).
    Apart from that, the query only checks if the payment have been fully done "(paidtodate <> doctotal)", if it has been partially paid it will still trigger the approval. If partial payment is acceptable you can change that to "paidtodate <> 0".
    Hope it helps,
    Jesper

  • Can not query from v$instance and v$session from within Pro*C program

    Hi there,
    We have Oracle 10.2.0.1 enterprise edition running on Linux (Red Hat 4 ES)
    Our Pro*C developer tries to query the version from v$instance view and is getting errors when compiling his Pro*C programs.
    The related Oracle user account has the SELECT ANY DICTIONARY privilege, so if he tries from the sqlplus, he has no problem querying the v$instance or v$session views. His problem is when he is trying to compile his Pro*C program against the very same Oracle account.
    Any help/input is greatly appreciated.
    R/ Zafer
    Here are the errors he is getting:
    Pro*C/C++: Release 10.2.0.1.0 - Production on Thu Jun 24 12:54:04 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    System default option values taken from:
    /home/oracle/product/10.2.0/Linux6
    4/precomp/admin/pcscfg.cfg
    Error at line 150, column 4 in file ../database.pc
    EXEC SQL SELECT version INTO :inputLine FROM V$INSTANCE;
    ...1
    PLS-S-00201, identifier 'V$INSTANCE' must be declared
    Error at line 150, column 4 in file ../database.pc
    EXEC SQL SELECT version INTO :inputLine FROM V$INSTANCE;
    ...1
    PLS-S-00000, SQL Statement ignored
    Semantic error at line 150, column 4, file ../database.pc:
    EXEC SQL SELECT version INTO :inputLine FROM V$INSTANCE;
    ...1
    PCC-S-02346, PL/SQL found semantic errors

    I issued FULL DB EXPORT / IMPORT privilege to the related Oracle user account and it works now.

Maybe you are looking for

  • Error in updating and displaying ouput in JSP

    Hi im doing project using jsp files.In part of my project there is vote page and vote result page. my vote_page.jsp <%@ page import="java.util.*" %> <%@ page import="java.sql.*" %> <%@ page import="java.text.*" %> <%@ page import="java.sql.Date" %> <

  • How to rectify this error "Update was terminated" when i save the tcodeMe42

    Hi, I am working in Me42 transaction, after filling the messages when i give save its throwing an error message "Update was terminated" received from author" Author name". Why is error occuring what is the cause how to rectify

  • Meta tags on module

    Hi there, I just noticed last year, I can still put a meta tags on the HTML in the module section. are they having an update seems that my meta tags on the HTML part are no longer visible or cannot be seen. Thanks.

  • Automator Group mail but no attachment

    Hi All, Trying to send out a group mail with an attachment. The group mailer is working fine except that the attachment is not being added to the group mail generated messages (only to the first message) The message is otherwise fine My workflow is a

  • Adobe Premiere Elements 9 - Mosaic Effect

    Hi. I have a video where I want to apply the mosaic effect as an inverse (i.e I want the center of my video to be clear but the outside surroundings to be mosaic). I work at a company where we can not take people on our produciton floor so we are sho