Inforecord and tick on the field InfoUpdate.

Hi,
clicking F1 on the field InfoUpdate shows:   "If no info record exists and "plant condition requirement" was
specified in Customizing, an info record with plant is created. Otherwise, an info record without plant is created."
Where could I set in customizing what the help says ? ("plant condition requirement")
Best regards

Hi,
You can maintain documentation directly form the help window (that appears when you click F1). There's an 'Edit documentation' button.
Please check:
http://help.sap.com/saphelp_46c/helpdata/en/a4/d47e5949e111d189730000e8322d00/frameset.htm
BR
Csaba

Similar Messages

  • For abap-hr i need datatype and length for the fields which i selected

    hi seniors,
          I got one task for which i have to get the data type and length for the fields of a table in abap-hr. I am using dd03l table, but my team leader told me to not to use this. So, please anybody can help, i will be thankfull.
          I have to select PA30 fields in which pernr and choic, subty and whatever i have selected the infotypes fields. If there is any function module to find data type and length or else any other table.
    thanks,
    sekhar.

    Hi,
    Try using the Function Module "DDIF_FIELDINFO_GET". You can use this for fetching the complete details of a structure or, a specific field.
    Input:->
    TABNAME        PA0001
    FIELDNAME     PERNR
    Output:->
    Check the DFIES_TAB  it will contain all the details you need for the specific field.
    Sample--->
    CALL FUNCTION 'DDIF_FIELDINFO_GET'
      EXPORTING
        TABNAME              = 'PA0001'
    *   FIELDNAME            = ' '
    *   LANGU                = SY-LANGU
    *   LFIELDNAME           = ' '
    *   ALL_TYPES            = ' '
    *   GROUP_NAMES          = ' '
    *   UCLEN                =
    *   DO_NOT_WRITE         = ' '
    * IMPORTING
    *   X030L_WA             =
    *   DDOBJTYPE            =
    *   DFIES_WA             =
    *   LINES_DESCR          =
    TABLES
       DFIES_TAB            = MY_DFIES_TAB
    *   FIXED_VALUES         =
    * EXCEPTIONS
    *   NOT_FOUND            = 1
    *   INTERNAL_ERROR       = 2
    *   OTHERS               = 3.
    Hope this was of some help.
    Best regards,
    Sagar.

  • In the Dreamweaver brim Bindings, the recordset and all of the fields of the table are not EXHIBITED

    In the Dreamweaver brim Bindings, the recordset and all of the fields of the table are not EXHIBITED. I don't know if an option of configuration adjustment exists in Dreamweaver that corrects the problem. It is Dreamweaver CS4 - Version 10.0 build 4117.

    I have traced the problem to a corrupted profile.  When I captured the images in question, I also used Color Cherckr to create a profile for processing.  When I apply that profile to the adjustments I make, I can no longer "Edit In".  If I use another profile, even one that I created using Color Checkr at a different point in time, I don't have the issue.  Something seems to have corrupted the new profile.  I will re-create the profile and see if the issue is resolved.

  • Client would like the monetary fields to reflect . and not , in the fields.

    Client would like the monetary fields to reflect . and not , in the fields. There are commas and he wants decimals.
    can any one help me out, this is a tkt  can any one suggest me how do we take it further.

    Hi Jai Ram,
    Ask the user to go to SU3 tcode. Then go to defaults tab. There is a field called Decimal Notation. There are three formats as below
    1.234.456,789
    1,234,456.789
    1 234 456,789
    Select accordingly. Then quit SAP and relogin. The changes will be applied.
    Kind Regards
    sandeep

  • HT204053 I am unable to sync all contacts on my iMac (which includes outlook for Mac contacts) with my iPad mini, how do I do this, I have enabled icloud on both devices and ticked all the boxes.

    I am unable to sync all contact in my address book on my imac with my ipad mini, it looks like only icloud & yahoo contact sync leaving out the ones in outlook for mac.  I have enabled icloud on both devices and ticked all the boxes.

    Clive Owen wrote:
    Thanks for that, but my Outlook contacts are synced to and all in my mac contacts book, does this not meen they would go to icloud,
    No, they are in the On My Mac account in the Mac Contacts app, not iCloud.
    or are they in a different format despite being in mac contacts?  If so can the outlook contacts be exported in some other way to icloud?
    Outlook is not compatible with iCloud, check Microsofts site if you need more verification.
    If you want them in iCloud use Mac Contacts and move them from On My Mac to iCloud. This will remove them from Outlook.

  • Clear the field INFOUPDATE and UNLIMITED in Purchasing Order

    Hi experts,
    I have a request to clear the 2 fields Infoupdate and Unlimited in the Purchasing Order.
    I understand that this can be done in the customizing. However I need to have some condition which the customizing cannot be fulfiled.
    For example, the request only require to clear the 2 fields, when creating new item and for a particular plant only.
    Is there a customer exit, bapi, etc that can someone think of?
    Thanks in advance.

    Hi,
    Could you please go through the below link and check the same.
    Adding Reusable Fields - Application Enhancement Tool - SAP Library
    It may help you.
    Regards,

  • Available Stock status (MM) - which table should I take and what are the fields ??

    Kindly Suggest Me !!!
    Report that outputs stock, grouped by Material type and Plant. The output shows Material no, Storage location, unit of measure and description in addition to group table using ALV.
    Thanks in adv.
    Bunty ( New to SAP )

    Hello Bunty
    When you run the report put in current month in date fields, then when you are in the report you can add the different fields you need.
    At the top there is a button called 'Switch Drilldown', this enables you to view by Material Type etc. Fourth from the right is another button that looks like the standard variant button, here you can add or remove different figures for valuing the stock.
    Don't forget that this report views periods so you can use average stock etc by changing the month.  Also make sure that any stock reports you are using reconcile with each other.
    Michael

  • How can I search the attribute including type and length of the field in the SD table or form such as sales executive table through debug?

    Some users show that  the sales docment external name is not printed completely in the form of delivery form printing, so I want to find how much length of the field is there through debugging. I am very expected to gain some suggestion from you.

    for exploding the bom if you know header material use
      CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
        EXPORTING
          CAPID                 = 'PP01'
          DATUV                 = SY-DATUM
          MEHRS                 = 'X'
          MTNRV                 = P_MATNR
          WERKS                 = P_WERKS
        TABLES
          STB                   = I_BOM
        EXCEPTIONS
          ALT_NOT_FOUND         = 1
          CALL_INVALID          = 2
          MATERIAL_NOT_FOUND    = 3
          MISSING_AUTHORIZATION = 4
          NO_BOM_FOUND          = 5
          NO_PLANT_DATA         = 6
          NO_SUITABLE_BOM_FOUND = 7
          CONVERSION_ERROR      = 8
          OTHERS                = 9.
    now check PLPO & PLKO table for routing or AFVC and AFVV for routing.
    if production order created you have to check in afvc and afvv else check in plpo and plko.
    for checking with plpo and plko you have to check MAPL table.
    for bom and material link
    MAST,STPO,STKO.
    stlnr is the common field
    regards
    shiba dutta

  • Header Information Including a Max(FieldN) and then Pulling the field(Date) When Max Occurred

    Post Author: Skyeyes
    CA Forum: General
    Can anyone assist us as we have several columns we are displaying. One column called FieldN we gather the MAX from the column and want to place the Max(FieldN) in the header--this works.  Also next to FieldN where it is MAX we want to pull the field(Date) that MAX happened.  When we do the formula, it pulls the first date in the list, not of the MAX.
    MAX(FieldN)  & (Date)
    Any ideas would be helpful.  Thanks.

    Post Author: yangster
    CA Forum: General
    Give this a trystringvar fieldNDate := totext(FieldN)&totext(DATE);stringvar maxDate := nthlargest(1, fieldNDate);stringvar Datedisplay := right(maxDate, 6);so essentially you are trying to find the max date associated with the max fieldNthe nthlargest will find you the largest fieldN and its associated date since there could be multiple dates associated with the max fieldN fieldthe last string is just to strip the field and display only the datethis should work out you might have to tinker with the right to get your formatting.

  • I can not copy and paste in the field of a email, but it will paste in the subj line

    I right click to copy & paste and try to put it into the field of the email, and there is no option for paste in the options box. but I can paste it in the subject line of the email. Everything works fine in Explorer.....

    Creating a new user account is not necessary linked to the physical existence of an other user. It's helpful when we want to work different ways. It's also useful to help to solve problems like yours.
    If an app behave wrongly in account A and behave flawlessly in account B, we know that we may limit the range of files in which something is wrong to the account ones.
    As you can't give us the info, we must guess.
    So guessing that the problem is in your account, I will say :
    Quit/Close Pages
    move Pages preferences file to the Desktop
    The file's path is :
    <startupVolume>:Users:<yourAccount>:Library:Preferences:com.apple.iWork.Pages.pl ist
    CAUTION: to reach it under Lion, you must press the option key while triggering the Finder's menu [ Go ] to get the menu item "Library.
    Restart Pages
    If it behave well, the 'old' prefs file was corrupted.
    The odd behavior may be linked to a problem with fonts.
    Run : FontBook to scan your fonts to get rid of corrupted or conflicting fonts.
    Get the free maintenance tool MAINTENANCE from :
    http://www.titanium.free.fr/download.php
    CAUTION : take care to download the version dedicated to your system.
    Run it with the settings displayed below:
    Yvan KOENIG (VALLAURIS, France) vendredi 6 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2

  • Populating more than one table and more than one field

    I need some suggestions and this forum has always been a great source of good advice.
    I have a web form at the following location: http://www.webdevpractice.com/genoptix/CE/register.php
    Here's what the web form needs to do:
    Send a confirmation email listing seminars the visitor checked on the form.
    Create a similar message on a confirmation page.
    Populate 2 two tables.
    Items 1 and 2 are working fine.
    The advice I need is on how to populate two tables in the database.
    There are three tables:
    ACCOUNTS
    account_id
    first_name
    last_name
    medtech_id
    job_title
    npi
    company
    city
    state
    email
    phone
    contact
    ATTENDANCE
    attendance_id
    account_id
    seminar_id
    SEMINARS
    seminar_id
    seminar
    speaker_first_name
    speaker_last_name
    date
    The web form contains data that need to go into the ACCOUNTS table and the ATTENDANCE table. The challenge is getting the account_id and seminar_id into the ATTENDANCE table. If all the information was inserted properly, I could write a query that revealed who was taking what seminar.
    Inserting data into the ACCOUNTS table is not a problem. I will create another form to insert information into the SEMINARS so that should not be a problem. But inserting the account_id and the seminar_id is what I am wondering about. Also, can more than one record be inserted in a table? If an user checks more that one seminar, each seminar (seminar_id) would need to be inserted in the ATTENDANCE table as separate records along with the account_id. I'm thinking I may have to do this manually. Also, the values for each seminar are their dates and titles. I used these as values to send the confirmations.
    I'm just looking for advice at this point. Is this doable?

    Bregent,
    The table I am wondering about is the ATTENDANCE table. There are two fields in addition to the primary key: account_id and seminar_id. The field I am concern with is the seminar_id which comes from a group of checkboxs on the form. So, one form could create several records. For example, presently there are three seminars that are offered. If the visitor selects all three seminars, that would create three records in the SEMINARS table. So, it might look like this:
    attendance_id     account_id     seminar_id
         1                    1                    1
         2                    1                    2
         3                    1                    3
    My PHP skills are basic. I've done other forms and use PHP in other ways. But I have never had to populate several rows in one table with an array of checkboxes nor have I be able to find an example of this.
    So the advice I am seeking (and perhaps this is premature) is this:
    Can one field from a table populate more than one record?
    Should I set up checkboxs as a group or individually with a different name?
    I am also considering setting up my tables differently so there is a table from each seminar--that may solve my problem.

  • Item category and Account assignment category field grayed out in PR/PO

    Hello all,
    While making a PR/PO we use both the item category and account assignment category. However, after saving the PR/PO, when i try to change the fields through ME22N/ME52N, the fields are greyed out. I dont think this can be controlled through the layout screen.
    Is there anyway the fields can be made modifiable in ME22N/ME52N ?
    Please help!
    regards,
    Soumyadeep.

    Hi,
    Well, actually you can control the Field settings in customization of Document Type. Check the following :
    Go to SPRO>MM>Purchasing>Purchase Order>Define screen layout at document level
    Click on the desired Document Type and see if the Field selection for Item Cat and Acct Assignment is checked for Display for that Document Type. If it is then change it to Optional.
    Now, Go to SPRO>MM>Purchasing>Purchase Order>Define Document Type and see if the Field Selection Key is assigned to the (Updated just now) document Screen layout.
    Hope this helps,
    Best regards
    Amit Bakshi

  • How to determine the field size

    I am going to make a multiplatform application that hopefully
    will run on linux and windows 2000.If the os is 2000, then I will use
    vb.net/aspx else I'll use java servlets. I make the connection
    to the web server ( through HTTP) not directly to database server.
    So, the resultset will be stored in the String object. The columns
    will be separated by delimeter. Our problem is how to determine
    the size and type of the fields of mssql,oracle and postgres database
    so that we can include it in the String object.
    Ex.
    String sResultSet=new String();
    ResultSet rs=statement.executeQuery(sSQL);
    while(rs.next()){
    sResultset=sResultSet + rs.getString(field1) + "||" + rs.getString(field2) + "||";
    vertical bars acts as delimeter
    supposedly this is the code:
    sResultset=sResultSet + rs.getString(field1) +"_" + rs.getFieldType() + "_"+
    rs.getFieldSize() + "||" + rs.getString(field2) +"_" + rs.getFieldType() + "_"+
    rs.getFieldSize() + "||";
    supposedly this is the code if rs.getFieldType() and rs.getFieldSize() methods are existing
    Anyone can give me an idea how to get the field type and field size of the database?
    thanks in advance

    Yes, but I dont know how to do it.
    Can you give me an example of using it.
    Thanks in advance

  • Can video cards for the new Mac Pro be installed in the field?

    Current Configuration of the new Mac Pro is as follows:
          ACES MacPro Workstation Seat
    Processor
    6-Core/3.5GHz/Xeon E5
    Memory
    32 GB
    Graphics
    2X AMD FirePro D500
    Hard Disk
    1 TB
    Display
    24" LED / HP
    Media Player
    2GB FIPS USB Drive
    Mouse
    Apple Magic Mouse
    Keyboard
    USB
    Ports
    4-USB 3.0;
    6-Thunderbolt
    1- HDMI
    Netwk Interface
    Ethernet/802.11n
    Card Reader
    NIST SP 800 Compliant
    My question is can the Graphic Display cards be removed and replaced in the field by an experience Mac Technician?
    Any special tools required?

    Now here is the back, showing the heatsink paste still in place, and the thermal pads used to cool the RAM chips to the central cooler:
    note that the two cards are not interchangeable -- they have their power lugs on opposite sides. One card has chips to support actual display output to the thunderbolt Busses, the other card has none, but has the custom micro-PCIE slot for the PCIe SSD "stick".
    One reason for this design is that to make a leap forward, you would have to water-cool the slots for a traditional form-factor PCIe slot Mac pro. Then do it again to include a second GPU. In my opinion, this model Mac Pro is about conquering the cooling problem of this much CPU and GPU compute-power in one box.
    NVIDIA graphics card replacements? maybe eventually, but not at this writing.

  • How to change the property of the fields on screen while using BDC

    Hello,
    I am working on a program where I am using BDC call transaction method to update vendor master data using Fk02. I need to call the transaction in mode 'E'. As per the requirement I don't want user to see all the fields available on that screen. For example on Payment transactions screen I only want user to see fields like Bank key, bank number in the editable mode and rest all the fields on the screen should be greyed out.
    Can you please help with how can i do this.

    Hi,
    I think you can achieve this using transaction variant. Create a transaction variant using SHD0 and grey out the fields which you want. After that in BDC, instead of calling FK02, call the transaction variant you created. you may have to change the BDC recording a bit, but i think you can give it a try?
    Do let me know if it helps you.
    Regards,
    Raghav.

Maybe you are looking for

  • Itouch not responding in computer

    Hi, My Itouch does not show up in itunes in any computer(I've tried three different ones), and will not show a charge icon when just being charged in the wall (but somehow charges).  The last time it showed in the computer I think I pulled it out of

  • How to set a password to prevent iBooks purchases ?

    Hello! I would like iBooks to ask me for a password before I purchase a book (just like Apps Store does before I buy an app, or like iTunes does before I buy a song). Can anyone tell me how to set it up? Thanks for your help

  • Problem refreshing the Tree Component icons

    Hello, I'm using the Tree, adding the nodes dinamically, following the example: http://www.netbeans.org/kb/55/vwp-databasetree.html This Tree shows the access permissions from the users, and show a red icon on the itens without permissions and a gree

  • Accounting document generated at a time of delivery.

    Hi,   Expert,   Can anybody tell me, what configuration require for create automatic accounting document at a time of PGI create. In some cases accounting document not generate at a time of PGI ., It's depend on movement type or other configuration r

  • My iPod = within an inch of it's life can anyone help??

    Ok, I have had my iPod Classic for 3 years now and have had no problems within those 3 years however my Classic has started to play up! The problem is that it doesn't turn on and when i charge it it turns on and plays 3 songs and the most then freeze