Info Rec - EINE - Valid To Field

Hello,
I need to make changes to many Info Recs.  I find that this is possible when the Valid To field in the EINE table is populated with a date other than 00/00/0000, for example 12/31/9999.  My question is, can someone tell me anything more about the Valid To filed in this table.  From where is it in SAP?  Where can it be changed? Etc.
Thank you in advance,
Judi

To change the Info record valid to date you have to use follosing table and write the cusotm program ro to that.
Use table below. The reason is the valid to is stored in the structure so you have to write the program to rean all the validity period defined for info and serch for the last record and change based on your input file.
a017, konp, eina, eine, t683s, a018,

Similar Messages

  • Validity period field in Info record

    Hi all,
        I encounter the following problem while creating an info record. The validity field was mandatory, but the field was grey and evantually i couldn't enter anything... Can anyone clarify my doubt???
    Message was edited by:
            Antony anburaj

    Hi
    In ME11,While creating Info Record, In Pur.Org.Data1 Screen, you will find that the Valid to Field in Grey....If you want to give give valid to Date, then In the same screen, Go to Conditions, and there you can give Valid from and Valid to Details and all...
    Reward if useful
    Regards
    S.Baskaran

  • Mass updating Purchasing Info Records, EINA-IDNLF

    I need to update the manufacturer's part number on the purchasing info recs for a couple hundred thousand materials, EINA-IDNLF.  What would be the best way to do this?  IDOC INFREC01 perhaps?
    Thanks for any help!!
    Regards,
    Deb

    Hi Debra,
    To accomplish mass maintainence of Info Records in TCode MEMASSIN. <b>** Please proceed with caution as you're about to change a considerable number of database records at once.
    </b>
    Select your particular field and in the next screen, do a multiple selection (button with a yellow arrow) and carefully select the vendor materials you want to do the mass maintainence for the appropriate info records.
    Let me know if this helpled

  • Prob in info rec creation

    Hi,
    In 4.6 version, I just created one Info Record(ME11) where in screen 102(purchase organization 1) I entered net price and next have VALID TO field. This field displaying in disable mode with mandatory, So i couldn't select the valid to date .
    This is the reason i couldn't create a Info record.Before that I changed some configuration in MM, May be that ll affect here?
    Please Guide Me
    Thanks & Regards,
      Dhanush.S.T

    go to
    Materials Management --> Purchasing Info record --> Define Document types.
    here for the transaction, double click on it
    go to conditions, and make the net price as optional.....
    and create info record again...

  • How to know corresponding info object for R/3 field and viceversa

    Hi....
    How to know corresponding object for a filed in r/3 data source and viceversa..While defining transformations.
    We can't do mapping of all objects to fields with the definition......!!!
    In 'rsosfieldmap'' what information we should give to know the proper tranformation...?
    thank u.....

    Hi,
    There are two ways to know the corresponding info objects in R/3 fields:
    1)  goto se11 t-code, enter RSOSFIELDMAP and enter display button. in the next screen click contents and give the field name or info object name as per your requirement, and excute.
    2)  first go through the field description in r/3 and identify the similar description in BI. For your easy understanding use excel sheet , in that you can copy the data source fields and target info objects ( master data or transaction data ). then it will be easy to identify the similar description.
    Thank you.

  • Vendor Info Rec data not displaying on ME57 list

    I need help in getting the Vendor Info Record information to display when in ME57 (Assign and Process Purchase Requisitions). In the past, the Info Rec data has shown up on the list for materials that weu2019ve ordered before, but now they are not.
    I have searched both here and out on the internet and have not found anything.
    What would cause the information to stop appearing on the list? Is there a configuration setting that may have changed?
    We are on ECC 6.0, we are using scope of list A, and we are not using the ALV.
    Thank you very much.

    Thank you for your reply, Bharat. Much appreciated.
    When I'm referring to displaying the info record data, it is in regards to displaying it in the list itself - there are 4 lines of data that can be displayed for each material. On the fourth line is where data from the info rec displays. This is the information that is now missing from the list.
    Hope this clarifies.

  • Spry validation text field across two columns in a table?

    I have a table with two columns.  I can easily insert a spry validated text field into the left cell but when I drag the box over so that box is in the right column and the label is still in the left column then that breaks the widget.
    Is this even possible for me to do or do I have to put the widget in just one column?

    Think I figured it out.
    http://www.adobe.com/devnet/dreamweaver/articles/spry_form_validations.html

  • Is it possible to create a editable pdf with validation(required field) using Adobe Acrobat pro version?

    Hi,
    the subject says it all. I have downloaded the trail version to see if its possible to create a editable pdf with validation(required field) using Adobe Acrobat pro version?
    Basically, I will have to create a pdf form where users fill it and send it back to me. there will be required fields (the textbox and check box) that user need to fill before saving the editable pdf?
    Is it possible. if so, can someone kind enough to point to me right directions?
    Thanks in advance.

    Thanks for reply. What I am trying to achieve is to give an option for the user to download the pdf form and once the user tries to save the pdf, it validates with the required field. I managed to create the editable pdf with required fields option. I just need that validation to be done when user click on save file. How can I achieve this? thanks so much for your help.

  • Using JavaScript to set value of Spry validated text field

    Why can't the value of a text field be set using JavaScript
    when it's validated using the Spry validation widget.
    Example (this works):
    <select name="birthdate_month" id="birthdate_month"
    onChange="document.getElementById('birthdate').value = 'test';">
    <option>1</option>
    <option>2</option>
    </select>
    <input type="text" name="birthdate" id="birthdate"
    value="">
    Example (this doesnt work):
    <select name="birthdate_month" id="birthdate_month"
    onChange="document.getElementById('birthdate').value = 'test';">
    <option>1</option>
    <option>2</option>
    </select>
    <span id="birthdate">
    <input type="text" name="birthdate" id="birthdate"
    value="">
    <span class="textfieldRequiredMsg">please enter your
    birthday</span>
    </span>
    <script type="text/javascript">
    <!--
    var birthdate = new
    Spry.Widget.ValidationTextField("birthdate", "none");
    //-->
    </script>
    Is there a way to change the value of a Spry validated text
    field using JavaScript?
    Thanks.

    Why can't the value of a text field be set using JavaScript
    when it's validated using the Spry validation widget.
    Example (this works):
    <select name="birthdate_month" id="birthdate_month"
    onChange="document.getElementById('birthdate').value = 'test';">
    <option>1</option>
    <option>2</option>
    </select>
    <input type="text" name="birthdate" id="birthdate"
    value="">
    Example (this doesnt work):
    <select name="birthdate_month" id="birthdate_month"
    onChange="document.getElementById('birthdate').value = 'test';">
    <option>1</option>
    <option>2</option>
    </select>
    <span id="birthdate">
    <input type="text" name="birthdate" id="birthdate"
    value="">
    <span class="textfieldRequiredMsg">please enter your
    birthday</span>
    </span>
    <script type="text/javascript">
    <!--
    var birthdate = new
    Spry.Widget.ValidationTextField("birthdate", "none");
    //-->
    </script>
    Is there a way to change the value of a Spry validated text
    field using JavaScript?
    Thanks.

  • Linking mat doc info rec to PR, ensuring same material docs only

    Hi
    I have created a doc info record with object link to material master. Then I created a PR with the same material as in doc info object link.
    1) First of all is there any way to automatically link the material level doc info rec to PR.
    If not how to ensure that while adding object link to PR system allows attachment of only the DMS docs pertaining to same material as in PR item .
    I know in DMS there is a facility of additional object but my requirement is different.
    2) Similarly is there any way PO can be linked to a vendor level docinfo rec at header level.
    3) I have created a PO from PR. A DMS document was attached to the PR but the same thing is not reflected in PO. I am afraid document link from PO is not activated in my system (we are on 46C). But the relevant notes seem to be already in place for the screens for me21n.
    Regards
    jajabor

    Hello Md,
    You have to play with the structure control_parameters, to indicate to SAP to not ask for print/print preview
    -> option no_display
    You could set in this structure all the print parameters ...
    And if you want to ask the print parameters to the user, you could use the function module  GET_PRINT_PARAMETERS
    Regards
    Frédéric

  • Spry validation text field issue

    I've put several spry validation text fields on my site and
    you can still click through to the next page without having to
    enter any information. What am I missing?

    Think I figured it out.
    http://www.adobe.com/devnet/dreamweaver/articles/spry_form_validations.html

  • Adf validation date field timestamp

    while doing some validation of comparing date fields with timestamp fields i am finding inconsistent behavior in jdev 11 1 1 5. is this known issue. what is best way to do EO level declarative Compare Greater Than / Less Than validations on fields which are of type date and timestamp ?

    First of all, "ADF" on the view side (which is where UIX is) has undergone some dramatic changes.
    10.1.2 and before: you had UIX
    10.1.3.x: ADF Faces 10g
    11.x: ADF Faces 11g (which, although is JSF like ADF Faces 10g, the component set is so different as to be almost a "new thing")
    So, when you're asking about the view technologies, 10.1.2, 10.1.3, and 11.x are dramatically different. ADF Business Components, even though they have gone through changes, are "the same enough" across the versions as to be understandably similar, but not the view technologies.
    John

  • Unique problem with validation/ making field required

    I have searched the forums trying to find a way to make a field required based on the users selection of a check box, or something else. So far, everything says use nullTest = "error".
    I have tried to do this and get the following results: The red highlighting, which shows up around my other required fields, will not show up unless you click in the text box and then out of it. Weird! Then, when pressing the submit button, it will not actually give you an error message if there is nothing in that text box, as it will if there is nothing in the fields that I originally make required.
    Any thoughts, or fixes would be greatly appreciated.
    Thanks in advance for any help.

    We do the same thing here. We haven't had any issues with the submit not validating the field correctly though. Our only issue was the red highlighting. To get around this, we would call resetdata on the field. resetData clears out the value of the field so you need to store it off and then reset it.
    if (form1.BP1.ChangeActivities.Pos1.Department==1) then $.validate.nullTest = "error" else $.validate.nullTest = "disabled"
    endif
    $=$
    var x = $
    xfa.host.resetData("form1.BP1.ChangeParticulars.Pos1To.DeptNo")
    $ = x

  • Info Recs and Source List

    Hi Experts
    I want to be able create a Source List for a small number of non valuated Material Masters which will be available when creating a P Req.  The P Req will be priced by the creator and the P Req prices should flow through to the P Ord when adopted without being overwritten by an info rec price or previous P Ord price.  Do you have any thoughts on this ?
    Thanks in anticipation
    Digidick

    I doubt if standard SAP supports your required process, because SAP always give a first preference to Price Conditions from Info Record to fetch into PO..
    If the Info record is available, SAP will not fetch the price from PR into PO.
    However, you can look for any BAPI or OSS note

  • Supplementary conditions in info.rec.

    Hi Experts,
    I want to use supplementrary conditions with the scales defined in info rec.but have a hard time to figure it out how,
    scenario could be
    if qty=100 then discount is 5%
    if qty=200 then discoun is 7%
    if i use supplement conditions those apply to all quantities.
    Thanks.

    hi,
    For this you have to maintain the info record in me11 for you material and vendor .In that info record for your discount condition you have to maintain scales in condition tab (in tool bar scales is 4th option) .
    in this you have to maintain as per your qty and discount percentage  you have maintain scales.
    note :- for your discount condition you have to maintain the accesses sequence in m/06 then only that condition is displayed in inforecord in conditions tab.
    Thanking you

Maybe you are looking for