PO without RFQ, if it is mandatory in PO

Hi Experts,
I have made RFQ mandatory in PO, through field selection screen. Is it possible to allow an user to create PO without RFQ ?
Regards,
Manish Jain

HI,
case 1
If you have did with field selection then Surely System will not allow create PO with out RFQ for alll users
case 2
For keeping RFQ as mandtory ,You might have used control through function authorization if this is the case then you should assign that particular function authorization to each and every user name in SU01 ,This will be done by Basis people.
If you have not assigned this function authorization to particular user then that user can create a PO with out RFQ.
For case 3
And if you have used User exit for making RFQ mandtory for making PO then , System will not allow to create PO with out RFQ

Similar Messages

  • KR doc type posted without vendor line item a mandatory item category

    Hello Gurus,
    We have SPL document splitter activated in our ECC system. We have the business transaction variant 0300 / Z001 assigned to doc type KR. The vendor line is obligatory in the above business transaction variant (BTV). THe splitting rule is also assigned for this BTV.
    THe problem is that despite having the vendor as obligatory for this BTV, we are able to post the doc type KR (vendor invoice) without the vendor line item e.g.. doc with doc type KR and debit and credit to expense a/c.
    Please share your experience if anyone has come across this issue,
    Prakash

    Hi,
    To make the vendor line mandatory for KR document type, you can write the validation as below:-
    Step 1:-
    Create a message ID via transaction code SE91 for message class /EACC/MSG/ACC_COMP as you want to display to user.
    Step 2:-
    Go to transaction GGB0 and create the validation step at complete document level in Financial Accounting as below:-
    Pre Requisits:-
    BKPF-BLART = 'KR'.
    Check:-
    Create a exit code using user exit and check that line items have at least one vendor line item.
    For this take the help of ABAPer and create a copy of the program RGGBR000 and code your check here and assign to the application area GBLR in view V_T80D via transaction code SM30.
    Message:-
    Message created in step 1 as error message.
    Step 3:-
    Please also check that this validation has active status (Status=1) at line complete document level (level 3) for your company code in transaction OB28.
    Regards,
    Gaurav

  • PO Creation without RFQ Release-USER EXIT

    HI Gurus,
    if i am creating PO with ref to Released RFQ
    then system should allow
    if PO created with non released RFQ then system should not allow
    this is requirement
    Standard is we can create PO with Ref to Release/non Releae RFQ
    How to solve this issue? is there any USER EXIT available ?

    Hi
    Have you configured release strategy for the PR ? please check and whether the PR is going for the approval . In standard system if the release strategy is applied , system will not allow you to make PO using an unreleased PR.
    If PR is not going for the approval such PRs can be used to create PO .Check the characterstics and the values for the PR which are subjected to approval process.
    GKK

  • Mandatory field validation on Page links.

    We have created a Portal application where we included different applications as taskflows. We have also created a tabbed interface which helps us to communicate from one task flow to another taskflow. When we are in one page of taskflow and try to move to another page of different taskflow using tabbed interface we receive mandatory field validation error which prevents us to move to any other page until we fill all the mandatory fields. We need to move to different page of taskflow by using the tabbed interface even without filling all the necessary mandatory fields. Can anyone help us to resolve this issue as this is very important for our project.

    <b>Layout</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Check Pernr " >
        <htmlb:form>
          <htmlb:textView text   = "Personnel No."
                          design = "EMPHASIZED" />
          <htmlb:inputField id    = "pernr"
                            value = "<%= lv_pernr %>" />
    <%
    if lv_no_pernr = 'X'.
    %>
    <script language="Javascript">
    alert ("Personnel no. is not Valid")
    </script>
    <%endif.%>
       </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>ONINPUTPROCESSING</b>
    DATA: l_pernr TYPE persno.
      DATA: data TYPE REF TO cl_htmlb_inputfield.
      data ?= cl_htmlb_manager=>get_data( request = runtime->server->request
                                             name     = 'inputField'
                                             id       = 'pernr' ).
      IF data IS NOT INITIAL.
        l_pernr = data->value.
      ENDIF.
    CLEAR lv_no_pernr.
    SELECT SINGLE pernr FROM pa0000 INTO l_pernr WHERE pernr EQ lv_pernr.
    IF sy-subrc NE 0.
      lv_no_pernr = 'X'.
    ENDIF.
    <b>PAGE ATTRIBUTES</b>
    lv_no_pernr     TYPE     FLAG
    lv_pernr     TYPE     PERSNO
    hope this helps.
    A

  • Reg: Mandatory fields updation with BAPI

    Hi..
    We are working on BDC using BAPI. In this if flat files contians only 4 fields and the mandatory fields in the application are seven then system needs to through error message. But with BAPI the program is updating the database without throwing error eventhough all mandatory fileds are not filled up with data.. Where exactly we need to do modifications to get error message when mandatory fields are not filled up with input.
    Regards

    Hi Verendra
    Sometimes the function modules/BAPI's used by SAP do a direct update on the database tables. In such scnearios the entries are created in the system even though if the mandatory entries are not filled.
    If the number of mandatory fields are small, then before the BAPI call,  check if all the mandatory fields are filled or not;throw error in case of empty fields & bypass the BAPI call.
    In case the mandatory fields are too high, then in that case, please use BDC recording to update the data.
    Regards
    Chetan
    PS:Reward points if you find this helpful.

  • Mandatory Field issue in OIM 11g R2

    Hi,
    I have customized one field in application instance form and made it as mandatory. But when user raise the request it is allowing the user to proceed the request without filling values for that mandatory field.
    Can you please let me know how to make the application instance form field as mandatory ?

    Ketan Solanki,
    I haven't checked in MDS. Do you know the path to fetch the form details ?
    Nishith Nayan,
    Activated and restarted too but the result is same. Already this is second app instance which I am using currently.,

  • Control Mandatory fields on custom screen in Module pool program

    Hello all,
    I have developed a custom screen on which I have a table control with 5 fields. I wanted to make the first three fields mandatory. So instead of selecting the entry as "required" from the screen attributes for these input fields, I have looped at table screen in PBO and based on the screen name and screen group I have set the field screen-required = 1. By doing this, I could make these 3 fields mandatory.
    Now, when I enter the data for the first line and press enter, it is asking me to fill the required fields in the second line and so on.How can I avoid this without having to remove the mandatory symbol in the subsequent lines?
    There is an altenative way of achieving this by not making the fields mandatory on the screen but while saving we can check if the value is entered and raise a message. In this scenario the user would not know that they are obligatory fields until he hits save button.
    For example, in standard transaction VK12, if we select condition type K005 and go to the maintenance, we see that material is obligatory.
    After entering material in first line and when I hit enter, it does not ask me enter the material in the second and subsequent lines even though it is a mandatory field.
    I want to achive this functionality in my custom screen also.
    Can anyone let me know how to handle this?
    Thanks,
    Sandeep.

    sandeep akula wrote:
    I have developed a custom screen on which I have a table control with 5 fields. I wanted to make the first three fields mandatory. So instead of selecting the entry as "required" from the screen attributes for these input fields, I have looped at table screen in PBO and based on the screen name and screen group I have set the field screen-required = 1
    Why didn't you set these fields as required on the attributes? That has to be the easiest way.
    Rob

  • Manual and mandatory condition type??

    Hi
    What happens when you do not enter a value for a manual and mandatory condition type?
    What are the difference between these two?

    Manual:
    This indicator specifies whether the specific condition type can be determined manually during sales order processing.
    If we check the box then the entry is going to be manual, if we uncheck it, it is going to be automatic.
    For Base Price and Taxes, the entry should be automatic.
    For Discounts and Freights, The entry should be manual.
    If we check the box, in VA01 when we go to conditions at the header/item level, the condition type will not be listed. If we require we will have to manually enter it.
    If we uncheck the box, in VA01 when we go to conditions at the header/item level, the condition type will be listed.
    Mandatory:
    This indicator specifies that particular condition type is mandatory in the pricing procedure.
    If we check the box, then in VA01 at the header/item level in the conditions tab, if we delete the value in the condition type and try to save the document then system will not allow us to do it and throws an error.
    If we uncheck the box, then in VA01 at the header/item level in the conditions tab, if we delete the value in the condition type and try to save the document then system will allow us to save it, without giving any error.
    Mandatory check box should be checked in condition types which are compulsorily required in pricing procedure. Ex.: PR00, MWST.
    If the condition type is checked with mandatory option, then value should be maintained for that condition type, otherwise the system will not allow the user to process the document.
    Hope it helps you.
    Regards
    AK
    Please reward points if helpful

  • Mandatory condition MWST is missing V1801

    Hello Xperts,
    I have an Order that loaded without a MWST condition record (Mandatory condition MWST is missing V1801).
    Pricing Procedure – checked OK -MWST setup as ‘Required’ with Req 10.
    MWST setup OK in VK13. (10% )
    Customer Tax Indicator -1 – ok
    Material Tax Indicator -1-ok
    In analysis tab page of order item, for MWST material Tax Indicator,  value is not coming in order, instead of that  is coming(Exclamation in yellowcircle).
    Tried to Update Price (by qty change and pricing update in conditions tab)but still the same issue.
    Searched the forum threads and cud not find more info except for the below link which is not my case.
    _ http://scn.sap.com/thread/1570584
    Any inputs would be appreciated.
    Thanks in advance.

    Thanks for your assistance xperts.
    This seems to be an issue because the material gets refreshed on the first of every month (future planning date). I think when this order was loaded, the refresh job was running and the material was locked which prevented the tax classification from being read.
    Any subsequent changes/new orders do not seem to have this issue.
    Once gain great to have your inputs.
    Cheers,

  • Reg.Storage location make mandatory

    Dear Expert
    During the Purchase requisition creation the PR is saved without storage location, we want to make it error, how to make it. Pls help me.
    Storage location is must to us. how to configure it.
    thanks in advance
    Rajakumar.K

    Dear Experts
    how to make the storage location as mandatory, don't have to go to screen layout ->basic data, because plant has set to mandatory
    without tick in basic data mandatory field,like that we we to make it. Please help me.
    Thanks in advance
    Rajakumar.K

  • Error in Provisioning a user to iPlanet

    This is the error I get when I try to provision a user to Sun iPlanet Directory server in Oracle Identity Manager.
    Setting task status... "java.lang.Exception: tcUtilLDAPDirectory Standard Attribute Map Not Complete" does not correspond to a known Response Code. Using "UNKNOWN".
    Any thoughts???

    Take a look at the documentation and check what attributes that has to be populated on the process form.
    It looks like the iPlanet server is complaining that you are trying to create a user without having set all the mandatory attributes.
    Best regards
    /M

  • Webserver and app server

    I am working with Websphere 5.0. Can the app server handle http requests without web server/ is it mandatory to have web server.
    Usha

    It is mandatory with WAS, WAS comes with HTTP Server.

  • How to Hide buttons in HCM forms

    Hi Experts,
    In "Transfer" forms, with out filling mandatory fields if I press button "Check and Send" then I get a extra button called "Continue". When I click on "Continue" it takes me to the next page without asking me to fill mandatory fields. Here I want to hide that "Continue" button.
    Like wise in "End of Probation & Short Term Contract" forms, with out filling the mandatory fields if I press button "Check and Send" then I get a extra button called "Forward to Expert". In my case I want  to hide "Forward to Expert" button also.
    Please help me to fix these issues.
    Thanks & Regards,
    Harish Kumar N
    Moderator message -
    When closing old threads, there is no need to add a comment. Adding a pasted answer like "fixed by myself" only brings old threads to the top of the forum list and pushes current ones down. If you do add a comment, please indicate just how the problem was resolved.
    Edited by: Rob Burbank on Nov 2, 2011 9:30 AM

    You do not need to add this field to your list. In the view V_T588MFPROPS (SAP delivered), this field is set as mandatory. In configuration, you must maintain the view V_T588MFPROPC (Customer area) and make sure the field is not set to mandatory. This will override the SAP delivered setting and the error message will be not be displayed.
    Derrick Banks
    Banks & Company, LLC

  • Restrict Vendor for material group

    Hello Friends,
    My client has a new requirement as below:-
    I have material groups : 0001, 0002 and 0003
    For Material Group 0001 : Only Vendors A, B & C are allowed.
    For Material Group 0002 : Only Vendors  B, C & D are allowed.
    For Material Group 0003 : Only Vendors  A, C & D are allowed.
    Is this possible any ways. Please help.. If it is not possible in standard, please help with some user exit if any..
    Thanks & have a great week end...

    Friends,
    I am closing this thread since I could find an answer myself the same is shared below hoping that the same will be useful for atleast few..
    1) Create the Info record with material group without price (Make price non-    mandatory in the config.)
    2) Control creation of Info records and price update for Info records thru    EVO Parameter and assign the same with user.
    3) Make Info record mandatory for the PO
    4) Make sure that Info records are maintained for the material vendor combination only where the vendor is a selected (If you dont any one of them control them thru sourcelist or block the vendor)
    If this is done if you have not maintained atleast one PIR for material group vendor combination, you can not create a PO.
    Guys, Pls let me know if this makes sense..
    Regards

  • Field selection issue in dev & quality server for PO

    Dear All,
    I have an issue regarding PO field setting in development and quality server.
    Requirement was that PO can not be created without PR (means PR is mandatory) for a particular document type ZDOM.
    So i have created new field selection filed by copying NBF field selection and assigned with document type ZDOM.
    So when i am testing this scenario in DEV server it is working fine but after transporting to Quality server, it is not working in q system.
    Again i reimpoted the same request but still it is not working. So what could be the reason?
    Pls refer the attached screen short.

    I don't know how your development is working..
    I have done the same settings in my development client. But I can still create PO without reference PR.
    Then I have tried parameter EFB. Then its working perfect..
    Use buyers authorization in OMET..
    Check the settings..
    Here untick the option W/o Reference..
    Then assign the profile to user id in SU3.
    Then try to create PO without PR.. You will receive a authorization error...
    But the problem is its user level not at client level..
    Test and revert back..

Maybe you are looking for

  • Some Two-page Spreads export to PDF/Blurb with Errors

    Hi, I have created a Blurb book in default portrait format. Some of the two page spreads (sample: first two images in portrait format, third image squared on the top right) do not export correctly. The second image, the one, which will be on both pag

  • Attribute in system.xml.xmlelement throw an event reciver

    I want to CRUD my XmlElement throw an event reciver. the probleme is how to manipulate the list SPListItem oItem = properties.ListItem; Shp.Lists l = new Shp.Lists(); System.Net.NetworkCredential cred = new System.Net.NetworkCredential ("user", "mdp"

  • Workflow That Does Auto Numbering

    Above is a workflow that i have created but upon running it am getting the following error message Resume this workflow RequestorId: 86bf7237-b7b5-dcbd-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow i

  • SSIS Excel Create Table

    I am using a Create Table script to add a worksheet to a excel destination in SSIS.  Everything works great except when I try to include a space in the "table name".  The space gets replace with an underscore. CREATE TABLE [Excel Destination] ( [Col1

  • Description field

    Hi gurus; I have one requirements where one field is 'zyear' which hold the value like 2005..and another field 'zyear_name' which hold the year name like 'good year', 'promo year' or somthing else.., Here is my question..when I ran a query I have win