GR Based IV check box

Hi. I need help in controlling the GR Based IV check box in creating the PO.
We normally set this in the vendor master. But then, How can I set the GR BASED IV checkbox base on the PO document type that will be used?
Let say I want all sap standard types of PO to be GR Based and some Z type PO to be not a  GR based IV PO.  Is this possible?
Is there a User-Exit for this?

HI,
Since you want to set the GR based IV to set for all Standard Purchase order- at doc type level.
So the first thing is the vendor master setting which you are already doing.
Second you can also do it by the info record .by creating info record for all vendor and material /Material Group ..we can control the GR IV indicator
Third  thing is Controlling it by the screen layout.
SPRO-Material Mangement-Purchasing- Purchase order-Define doc types
here in the definition of Doc type ,attach a screen layout.
SPRO-Material Mangement-Purchasing- Purchase order- Define screen Layout at doc type level.
in this Screen layout in the tab --GRIR control. make the GR based invoice as mandatory,so that it cant be skipped while created or change of PO and user will check it even if it is missed out.
hope so it helps
Regards
Anjanna

Similar Messages

  • Need to change the LOV field based on checked box selection in OAF page

    Dear ALL,
    I have a requirement as below:
    I have a custom OAF page having a lov  field which is mandatory, a check box and a two text fields.
    So based on LOV value selection i am defaulting two text field value automatically.
    So my requirement is when user selects the check box automatically the LOV field should be non mandatory and user can insert in values to the lov field and text field and submit it.
    SO basically based on check box field selection i need to make the lov field in such a way it should accept all the values what user enters instead of check the query added in VO behind the LOV.
    Please suggest me some pointers to achieve this requirement.
    Thanks
    Deb

    hi,
    in PFR use:
    if ("checkevent".equals(pageContext.getParameter(EVENT_PARAM))) 
                     HashMap hashMap = new HashMap();
                     String checkboxval=pageContext.getParameter("item2");
                  hashMap.put("checkboxval",checkboxval);
                    pageContext.setForwardURLToCurrentPage(hashMap ,
                    true, // retain the AM
                    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
                    OAWebBeanConstants.IGNORE_MESSAGES);
    and in PR use:
    if((pageContext.getParameter("checkboxval'))!=null)
    OAMessageLovInputBean lovInputBean=(OAMessageLovInputBean)webBean.findIndexedChildRecursive("item3");
          lovInputBean.setRequired("false");
    try it
    Regards
    Mahesh

  • GR based IV check box suppressed - Extended Classic Scenario

    Hello Folks,
    How are you doing today ?
    We are working in SRM 5.0 Extended Classic scenario.
    When created the Local PO in SRM with GR Based IV Check box active, the
    follow-on back-end Purchase order is generated without this flag. In
    other terms, system is creating the follow-on ECC PO without GR Based
    IV check box active. As a result, we are unable to run the ERS cycle.
    Back-end system in above scenario is ECC 6.0. And vendor settings are
    maintained with GR based IV flag on in both ECC and SRM.
    Kindly advice.
    Thank you for your assistance !

    Hi Ravi and Yann,
    Thank you for your inputs. OSS note-956083 can not be applied in my case due to the hight system version (patch level 550).
    I have already raised this issue to SAP, but in the lack of proper infrastrucure SAP can not access the system. (BASIS guys are still struggling with it)
    Well...let me give you recap-
    We have not activated nor implemented any BAdi so far (Vanila SRM 5.0 EC scenario) PO creation for goods is working fine and as desired. But when it come across with PO with limit item or services, system throws an error as -
    "PO 5100000263: Service-based invoice verif. requires GR "NO" or G R-based invoice verif."
    Would deeply appreciate if you guys can share insight on this issue.
    Thank you for your assistance!

  • Default settings for gr based ir check box for asset PO

    dear experts,
                  in vendor master record in purchasing data tab i have checked gr based iv check box, and hence whenever i am creating a Po with X vendor for material system is automatically  checking the check box in po for gr based iv but with the same vendor X if i am creating a PO for Asset itis not checking the gr based iv check box by default.
           can you pls tell me where the default setting for gr based  iv lies for the asset procurement.
    thanks
    ujwal

    HI Ujjwala,
    The setting in spro in Acct assigment,  u are talking about is GR Receipt or Invoice Receipts.
    These are not GR Based Invoice Verification.
    GR based Invoice Verification comes from either ur inforecords or vender master.
    if u check or uncheck these in spro in acct assigment, then it will comes ur Deliver Tab not ur invoice Verification Tab.
    one thing more, if u make it mutiple Acct assigment, then it will be Non Valuated G/R Based IV.
    Hope Clear U !
    REgards,
    Pardeep Malik

  • Hiding text box based on check box checking

    Hello,
    I have a jsp in which based on whether the check box is checked or unchecked I want to hide or show a text box. I am including the text box in a div tag & calling a javascript function to set the style of the div to hidden or shown based on whether the check box is checked or not. although i am getting the correct values in the alerts the text box is not getting hidden.
       <td class="label"><label for="chk1"><gbms:message key="lblSearchforDeletedCustomer"/>:</label></td><td class="input">
                  <html-el:checkbox property="chk1" value="N" tabindex="3" onclick="javascript:checkboxClicked(document.forms['formCustomerOrVehicleMaintenance'])" onfocus="fnShowError(document.formCustomerOrVehicleMaintenance.chk1);"></html-el:checkbox> <gbms:message key="chek"/> 
                                 </td>
                                 <div id="delDateDiv" style:hidden>
                            <td class="label"><label for="txtDeleteDate"><gbms:message key="lblDeletedAsOf"/>:</label></td><td class="input">
                 <html-el:text property="txtDeleteDate" size="6" maxlength="40" tabindex="3" onchange="fnChanged()" onfocus="fnShowError(document.formCustomerVehicleMaintenanceDelete.txtDeleteDate);"></html-el:text> <a href="#" onclick="cal1xx.select(document.forms[0].txtDeleteDate,'anchor1xx','MMddyy'); return false;" name="anchor1xx"><img src="<%=request.getContextPath()%>/css/common/calendar.gif" border="0" style="cursor: hand"></a><gbms:help jsp="customerVehicleMaintenanceDelete" module="admin" languageCode="<%=request.getLocale().getLanguage()%>" field="DeletedAsOf"/>
                        </td></div>javascript function being called..
    function checkboxClicked(aThis)
                        var aform = document.forms['formCustomerOrVehicleMaintenance'];
                        var aDiv = document.getElementById('delDateDiv');
                        alert(aDiv.style.visibility);
                        alert(aDiv.innerHTML);
                        alert(aform.chk1.checked);
                        if(aThis.chk1.value == true)
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = false;
                             aDiv.style.visibility = 'visible';
                        else
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = true;
                             aDiv.style.visibility = 'hidden';
                   }

    in my javascript function the value returned is true when checkbox is checked & false when it is unchecked. visibility is also giving correct value in the alert. but still field is not hiding
              function checkboxClicked()
                        var aform = document.forms['formCustomerOrVehicleMaintenance'];
                        var aDiv = document.getElementById('delDateDiv');
                        alert(aDiv.style.visibility);
                        alert(aform.chk1.checked);
                        if(aform.chk1.checked)
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = false;
                             aDiv.style.visibility = 'visible';
                             alert("inside if");
                             alert(aDiv.style.visibility);
                        else
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = true;
                             aDiv.style.visibility = 'hidden';
                             alert("inside else");
                             alert(aDiv.style.visibility);
                   }

  • Populate drop-down lists based on check box selections

    Hi. I'm creating a Service Work Order form. At the top, there are several check boxes for the various services we provide, under that , more text fields, drop downs and checkboxes to elaborate on those services, and then at the bottom, fields for pricing.
    I'd like the top half of the form to drive the pricing info that is available or that auto-populates at the bottom.
    Ideally, I'd like to make the pricing specific based on 3 things:
    the service checkbox
    the client
    and the details on that service
    For example:
    If Client XYZ wants Service A that includes subservice B
    $123 should show up on the bottom half in the field for that service
    If Client ABC wants Service B that includes subservice C
    $456 should show up on the bottom half in the field for that service
    Does that make sense?
    I've been unable to get code to work in either the calculate and pre-Open options
    I first tried calculate and used this code (which was just a guess on my part)
    if (CheckBox1 == 1) and if (CheckBox9 == 1) then
    $.rawValue = 50
    elseif
    (CheckBox2 == 1) and if (CheckBox9 == 1) then
    $.rawValue = 50
    elseif
    (CheckBox5 == 1) and if (CheckBox9 == 1) then
    $.rawValue = 55
    elseif
    (CheckBox6 == 1) and if (CheckBox9 == 1) then
    $.rawValue = 55
    elseif
    (CheckBox7 == 1) and if (CheckBox9 == 1) then
    $.rawValue = 50
    elseif
    (CheckBox8 == 1) and if (CheckBox9 == 1) then
    $.rawValue = 50
    else
    $.rawValue = 0
    endif
    That didn't do anything but give me an error about "and"
    So I tried putting code in pre-Open:
    // clear the dropdown displayed value and items
    this.rawValue = null;
    this.clearItems();
    // repopulate the items based on the checkboxes
    if(offshore.rawValue == 1)
        this.addItem("$40.00", "offshore_001");
        this.addItem("$45.00", "offshore_002");
        this.addItem("$50.00", "offshore_003");
    if(inland.rawValue == 1)
        this.addItem("$40.00", "inland_001");
        this.addItem("$45.00", "inland_002");
        this.addItem("$50.00", "inland_003");
    I got no error but nothing populated and the drop-down was, in effect, disabled.
    Any help would be appreciated.
    Thanks!

    Gavin,
    This sounds like an issue that is not related to JHeadstart. To simplify the test case, you could create a simple drag-and-drop ADF application without JHeadstart and see if the same problem occurs there.
    Your suggestion that it is related to the where clause seems likely. Please find out what kind of object USER_ENV is, and how it is initialized. Maybe this initialization is skipped when bouncing the application.
    What happens if you perform the query in SQL*Plus, without doing anything about the USER_ENV?
    Maybe you should ask the Oracle Applications discussion forum...
    kind regards,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • Multiple Inserts based on check box?

    I have an insert form that depending on if checkboxes are
    checked, inserts the data. How can I insert a record for the number
    of check boxes checked?
    Example:
    CB 1 = Checked
    CB 2 = Not Checked
    CB 3 = Checked
    So I need to insert a record for CB 1 and CB 3. How can I do
    this?
    What I'm doing is tying a sales lead to the sales man
    selected. I'm using check boxes because I figured it was easiest
    but I'm open to suggestions.

    In your example, CB 1 and CB 3 are checked. But your
    explanation states you need to insert a record for CB 1 and CB 2.
    What am I missing?
    Keep in mind that you will not see the variable FORM.CB2,
    since unchecked checkboxes to not pass their name to the action
    page. Maybe the code below will help. By naming all the check boxes
    the same, you receive a comma-delimited list of the values of only
    the checked checkboxes. You can then put this in a list loop and
    update your database.

  • Set variable in main mxml based on check box selection in another mxml

    I have a two mxml, In one of my mxml I have a checkbox, on checkbox_click event I want to pass some value to my main.mxml.
    Using this value I want to toggle the visibility of map layer in main.mxml.
    So far I have declared a bindable boolean variable in my main application mxml.
    And written a function to set the value of this boolean variable depending on some other variable in the second mxml. This second boolean variable is set depending on the checkbox selection in second mxml. now I do not understand from where should I call this function so that everytime checkbox is checked or unchecked value of my bindable boolean variable (declared in main app) changes.
    Is there any other way of doing this?
    Thanks in Advance

    This makes it even easier:
    -------------- MyComp.mxml ----------------
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml">
      <mx:Script>
        <![CDATA[
          import mx.collections.ArrayCollection;
          import mx.events.ListEvent;
          [Bindable] public var compBool:Boolean = false;
          private function toggleVisibility(evt:ListEvent):void{
            if(cmbx.selectedLabel == "show"){
              compBool = true;
            }else{
              compBool = false;
        ]]>
      </mx:Script>
      <mx:ComboBox id="cmbx" dataProvider="{new ArrayCollection(['hide', 'show'])}"
        change="toggleVisibility(event)"/>
    </mx:VBox>
    -------------- mainapp.mxml -------------
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      xmlns:comp="*">
      <comp:MyComp id="compObj"/>
      <mx:Label text="Map Component" visible="{compObj.compBool}" includeInLayout="{compObj.compBool}"/>
    </mx:Application>
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.stardustsystems.com
    Adobe Flex Development and Support Services

  • Query based on check box selection

    Hi,
    Can anyone tell me how to write query or what is the way for the following problem
    i have 2 regions in my report 1st region is the html one which has multiselect depending upon selection from the multiselect when user clicks submit
    another region that is the interactive report that is displayed.
    can anyone tell me how to query for ir for the same and what other things i need to do?
    Thanks and Regards,

    keny_01 wrote:
    Hi,
    Can anyone tell me how to write query or what is the way for the following problem
    i have 2 regions in my report 1st region is the html one which has multiselect depending upon selection from the multiselect when user clicks submit
    another region that is the interactive report that is displayed.
    can anyone tell me how to query for ir for the same and what other things i need to do?
    Thanks and Regards,Not sure I quite understand... when you say multiselect - is that the checkbox?

  • If GR based IV checked for items without excise duty, MIRO posting hanging.

    Iam working in a client location, one of client business scenario is MIRO posting without excise (Only VAT or CST). for this case i have not maintained vendor excise details in J1ID.
    When a MIRO with reference to PO for an item ticked for "GR based IV" is posted, the system is hanging or is not posting and not issuing any message. Specifically for an item to which exicse is not applicable.
    please send your expert advice on this
    Edited by: J Sridharan on Mar 30, 2009 3:55 PM

    Thanks for your response
    this issue is further briefed below
    we are working for a indian client with CIN. most of the PO's which is created in SAP system with all Excise parameters and applicable taxes. further all PO's created with GR based IV check box enabled.
    now the issue is, in some of the purchases vendor is not applicable for excise, so there is no excise parameters in the PO, only tax is applicable. for this case we have not maintained vendor excise details in J1ID. but we have maintained material chapter id and CENVAT determination in J1ID. but as i mentioed earlier these PO's also with GR based IV check box enabled.
    If the PO is not excisable no Excise capturing and posting is required, for these types of PO's we are following the below steps
    1. Creation of PO with GR based IV check box enabled
    2. Goods Receipt without excise capturing
    3. Invoice verification - MIRO ( here system is not able to post the docuement because of GR based IV tick mark)
    i hope this will brief about my query.
    waiting for your response.

  • Check boxes to hide or display multiple subforms

    I have been using radio buttons to display subforms individually. Now I need to have multiple subforms displayed based on check boxes, but I have never done this before. Any help would be greatly appreciated. Just FYI, I used the following for the radio buttons:
    if(this.rawValue==1)
    WaterSysImpSF.presence="visible";
    else
    WaterSysImpSF.presence="hidden";
    etc...
    Thanks.

    Hi Pradeep,
    1. Create a Pushbutton or set a PF status.
    2. u can create input fields without a subscreen.
    3. u can code to hide the input fields by using
         LOOP at Screen.
            case screen-fieldname.
               when <fieldname1> or <fieldname2>..
                  Screen-Invisible = 1.
                  Screen-active = 0.
             endcase.
         ENDLOOP.
    4. when u press the button.
    i. Catch the Ok code
    ii. Unhide the input fields.
         LOOP at Screen.
            case screen-fieldname.
               when <fieldname1> or <fieldname2>..
                  Screen-Invisible = 0.
                  Screen-active = 1.
             endcase.
         ENDLOOP.
    Regards,
    Raj.

  • How do  we check the check box items based on the databse fields.

    Hi All,
    I have a requirement like as mentioned below#
    1. I have a combox box whcih i will be populated from database.
    2. I have created two check box as "Stategric " and "Non Stategric".
    3. Now when i select the combox box condition i need to select the check box items.
    4. But the problem is i wil be knowing weather it is a stategric or Non stategirc based on the database column.
    5. How do i need to map the database point of view and correlacte with javascript pont of view.
    6. Do we need to write any Application process to achieve this task and who we can do that.
    Thanks,
    Anoo..

    Hi VC,
    As per my understanding the code should be placed between --.
    Based on this i have placed the code
    function setCheckbox(pThis, pItem){
    alert('inside');
        var l_code = '';
        // Get checkbox name
        rName = document.getElementsById('P1_ENG_BAU').firstChild.name;
    alert("The value is"+rName);
        // Fire AJAX
        var get = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=CHECKBOX_LIST',0);
        get.add('F120_COMPANY',pThis.value);
        gReturn = get.get('XML');
        if (gReturn) {
          var values = gReturn.getElementsByTagName('value');
          var messages = gReturn.getElementsByTagName('message');
          // Build the checkbox
          for (i=0; i<values.length; i++) {
            var rValue = values.firstChild.nodeValue;
    var rMessage = messages[i].firstChild.nodeValue;
    l_code+='<input id='+P1_ENG_BAU+'_'+i+' type=checkbox value='+rValue+' name='+rName+'>';
    l_code+='<label for='+P1_ENG_BAU+'_'+i+'>'+rMessage+'</label>
    document.getElementsById('P1_ENG_BAU').innerHTML = l_code;
    Correct me if iam understanding is wrong.
    Thanks,
    Anoo..
    Edited by: Anoo on May 31, 2012 11:04 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to implement Check box in the Rtf based on the value from XML datafield

    Hello All ,
    It would be great if any one can help me in implementing check box in the rtf based on the data filed value from the XML data.
    I need to get in the out put checked boxes like what we say Radio button Yes or No ( If Yes it should be marked ).
    If any one worked on this please help us...
    Thanks in Advance...

    Did you check the user guide,
    we have a section over there :)
    http://blogs.oracle.com/xmlpublisher/2007/05/22

  • How do you send an email to a specific person based on if a particular check box is checked?

    How do you send an email to a specific person based on if a particular check box is checked?

    Try the LiveCycle Designer forum.

  • Check box selection based on name inside a field

    I have a fillable PDF form
    the form has 2 check box selections.  M  or F   (male or female)
    i can get a field to populate with M or F or Male or Female but how can I get a check box to select M or F based on
    what comes into a field ?

    You can use the text-field's custom validation script to edit the check-box, for example:
    if (event.value=="Male") this.getField("CheckBoxMale").checkThisBox(0, true);
    else if (event.value=="Female") this.getField("CheckBoxFemale").checkThisBox(0, true);

Maybe you are looking for

  • IPhone 4S, AirPlay, and Apple TV conundrum

    So, the 4S records 1080p HD video, and you can stream these over AirPlay to your HD TV via Apple TV - but Apple TV only does 720p. Am I missing something here or does this mean that ATV will down-scale your 1080p videos to 720p (and then display them

  • Question re: Sprint card to connect to internet

    My father lives out in the boonies where he cannot get high-speed internet. one of his neighbors told him that he uses a Sprint card and it works fine in his PC laptop. Dad has a iBook and from what i understand, there's no slot for the Sprint card.

  • How to Trigger CAF web services from java Job schedulers?

    Hi Experts, I am in need of calling CAF based web services from custom Job scheduler. Could you please provide your idea and input if anyway we can call such web service by java api in custom jobs development? Thing is that we have CAF BO which hold

  • Installing 10g R2 on WinXP SP2 NL gives ORA-19870, ORA-19612, ORA-06512...

    I'm trying to install version 10g R2 on the following configuration: ASUS K8V SE board + AMD 64 Athlon + 512Mb Ram + 160GB SATA HD + 18GB IDE HD Windows XP SP2 NL When I install 10g without creating the db then it installs without problem. If I try t

  • Packaging the CS5 plug-in using Extension Manager.

    I am trying to package up the *.pln file and the resource files into a single *.zxp file that we can give to customers.  I have been successful in this.  However, when Extension Manager installs the plug-in, it displays a warning that our extension i