How Can I do to add new dateu00B4s field in VBEP table ?

How can I do to show these fields on the screen of the schedule lines ?
What exactly do I need to do ?

Hi,
you can add a field in a table through Append Structure,that it shoud not populated in screen Find Any user exit is avilable
Regards,
Phani

Similar Messages

  • How can i change or add new default optiom in su01 tab

    Dear Experts ,
    here oe End user Required some Requirments in SU01 -> Default tab
    su01 --> Default tab -->Decimal Notation having different styles (1,234,567,89)
    but my END user wants like 12,34,56,789 this format
    how can we get this type ...is it possible to change decimal notation format
    Regards

    Hi,
    Check below thread which is related to your problem:
    How to convert decimal notation to comma notation
    Thanks
    Sunny

  • How can you update or add new templates?

    Hello I was wondering if there is a way to add new or update the templates that comes with Pages

    Looney,
    Apple doesn't offer updates for the templates, but they're available elsewhere. Try iWorkCommunity and Mactopia.
    -Dennis

  • How can i assign value to the certain field in dynmic table ?

    i have created a dynmic table .now i want to assign value to the certain field,how can i do that?
    for eg,
    <dyn_table> contains fields of  name age ,now i want assign 'jack' to this internal talbe's field name ,

    Hi,
    try this:
    FIELD-SYMBOLS: <GT_ITAB>      TYPE TABLE,
                   <GS_ITAB>,
                   <FS>, <FS1>.
    DATA: GT_DATA   TYPE REF TO DATA.
    DATA: GS_DATA   TYPE REF TO DATA.
    START-OF-SELECTION.
      CREATE DATA GT_DATA TYPE TABLE OF PA0002.
      ASSIGN GT_DATA->*   TO <GT_ITAB>.
      CREATE DATA GS_DATA    LIKE LINE OF <GT_ITAB>.
      ASSIGN GS_DATA->*      TO <GS_ITAB>.
      ASSIGN COMPONENT 'NACHN' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Smith'.
      ASSIGN COMPONENT 'VORNA' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Paul'.
      APPEND <GS_ITAB> TO <GT_ITAB>.
      ASSIGN COMPONENT 'NACHN' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Jones'.
      ASSIGN COMPONENT 'VORNA' OF STRUCTURE <GS_ITAB> TO <FS>.
      <FS> = 'Martin'.
      APPEND <GS_ITAB> TO <GT_ITAB>.
      LOOP AT <GT_ITAB> INTO <GS_ITAB>.
        ASSIGN COMPONENT 'NACHN' OF STRUCTURE <GS_ITAB> TO <FS>.
        ASSIGN COMPONENT 'VORNA' OF STRUCTURE <GS_ITAB> TO <FS1>.
        WRITE: / <FS>, <FS1>.
      ENDLOOP.
    Regards, Dieter

  • QUESTION: How can I locate all instances of a field in mult tables

    Hi all.
    So im just learning Oracle and I have an interesting question.
    I just learned how you can query things from multiple tables by using the tablename.fieldname in the select.
    My question is this. Lets say you have, oh, 100 tables and you have referenced a field like IDNUMBER in ten of the tables.
    Now I want to write a query to pull the ID number from those tables but I dont remember every table I used it in.
    How can you easilly find all instances of where a field is used in multiple tables? Im hoping I explained this right.

    791443 wrote:
    AWESOME!! THANKS!!You should be aware that this solution only works to the degree that columns are consistently named.
    Consider
    CREATE TABLE supplier
    (supplier_id      number       not null,
      supplier_name varchar2(50) not null,
      contact_name      varchar2(50),      
      CONSTRAINT supplier_pk PRIMARY KEY (supplier_id)
    CREATE TABLE purchase_order_hdr
      (purchase_order_id      number not null,
       supplier_number      number not null
       CONSTRAINT fk_supplier
       FOREIGN KEY (supplier_number)
       REFERENCES supplier(supplier_id)
    CREATE TABLE purchase_order_line
      (po_number             number not null,
       po_line_item        number not null,
       vendor_product_code number not null,
       CONSTRAINT fk_supplier
       FOREIGN KEY (supplier_number)
       REFERENCES supplier(supplier_id)
        );So, how do you catch that supplier.supplier_id is the same as purchase_order_hdr.supplier_number or purchase_order_line.po_number is the same as purchase_order_hdr.purchase_order_id?
    No, I don't have a solution, just pointing out that you may not be able to depend on a fully automated solution either. It depend on how rigorous your organization is about enforcing naming standards.

  • Error When trying to add new user field to OCHH table

    Hi
    can you please check the following code ? I am geting an error "Ref count for this object is higher than 0"
    Dim RetVal, ErrCode As Integer
            Dim ErrMsg As String
            Dim oUserFieldsMD As SAPbobsCOM.UserFieldsMD
            oUserFieldsMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
            ' Adding "BPCode" field
            '// Setting the Field's properties
            oUserFieldsMD.TableName = "OCHH"
            oUserFieldsMD.Name = "OBJ"
            oUserFieldsMD.Description = "OB Code"
            oUserFieldsMD.Type = SAPbobsCOM.BoFieldTypes.db_Alpha
            oUserFieldsMD.EditSize = 2
            '// Adding the Field to the Table
            RetVal = oUserFieldsMD.Add
            '// Check for errors
            If RetVal <> 0 Then
                oCompany.GetLastError(RetVal, ErrMsg)
                MsgBox(ErrMsg)
            Else
                'chkUDOAfter.SetItemChecked(1, True)
                MsgBox("Field: '" & oUserFieldsMD.Name & "' was added successfuly to " & oUserFieldsMD.TableName & " Table")
            End If
    Thanks
    George

    Hi Denilo
    Your suggestion did not solve the problem . I want to add that the code works fine with user-tables but not when I try with OCHH
    Thanks
    George
    After alot of search
    GC.select
    Did the job
    Thanks again
    Regards
    George
    Edited by: George Pachakis on Sep 7, 2009 6:51 PM
    Edited by: George Pachakis on Sep 7, 2009 6:54 PM

  • How can i find duplicate rows in a field of a table

    hi all,
    how can i able to find duplicate values in a field of a table????
    Regards

    test@ORA92>
    test@ORA92> with x as (
      2    select 1 as p, 'a' as q from dual union all
      3    select 1 as p, 'b' as q from dual union all
      4    select 2 as p, 'c' as q from dual union all
      5    select 3 as p, 'd' as q from dual union all
      6    select 3 as p, 'e' as q from dual union all
      7    select 3 as p, 'd' as q from dual
      8  )
      9  select p, q,
    10  case row_number() over (partition by p order by q)
    11    when 1 then null
    12    else 'Duplicate value: '||p||' of column p'
    13  end as msg
    14  from x;
             P Q MSG
             1 a
             1 b Duplicate value: 1 of column p
             2 c
             3 d
             3 d Duplicate value: 3 of column p
             3 e Duplicate value: 3 of column p
    6 rows selected.
    test@ORA92>
    test@ORA92>
    test@ORA92>cheers,
    pratz

  • How can i change the color of a field in a table depence of a value

    Hi forum
          Is this possible to change the color of a row in a specific field of a table depends of the value of this field,,, for example if the value is equal or greather than 1.
    Thnks
    Josué Cruz

    Josue,
    Yes this is possible if you use the fillColor method. It requires R,G,B value of color.
    //Sample code which highlights cell2 in my table which has two rows.
    frm1.Table1.Row2.Cell2.fillColor = "120,120,120";
    // If you want highlight complete row.
    frm1.Table1.Row2.fillColor = "120,120,120";
    So now just apply an if loop which reads the input value as greater than 1 and use the code shown above.
    Chintan

  • How to add new text field in standard report

    how to add new text field in standard report?

    Hi,
    I presume you are talking about a report display in ALV and u wish to add a column to it .
    If it is a global requirement ,as in table being used there in ALV can be modified, then you can append the table and the system should pick up the same automatically from there.
    Otherwise , you can make a Z program . Modify the catalog being used in ALV.
    Regards,
    Shweta

  • How to add new customise field in standard SAP ME28 Report?

    Hi Anybody,
             How to add new customise field inside Standard SAP Screen report ME28?.
    Anybody, Please tell me how to do?.
    Thanks,
    Regards,
    S.Muthu.

    Hi Subramaniyam,
    You can find enhancement in me28 by following steps and then apply your logic in include of this enhancement.
    cmod>Give a project name>in enhancement column give the package name ME >f4>in package write ME-->ENTER>It will show you all enhancements available in me28> find which ever suits your requirement>save > click on components> from there you can make changes in include program.to add that particular field.

  • How can I automatically have a new tab always be a copy of the current active tab?

    The add-on extension "NewTabURL" (by "sogame") provided the option I want and used for a number of years. But it stopped working when Firefox was updated to version 16.0. When I click for a new tab, all I get is a completely blank tab. How can I automatically have the new tab always be a copy of the current active tab?
    Can the extension "NewTabURL" be revised to work in version 16 and/or version 17? If not, how else can I get the new tab functionality that I desire? I can't seem to find any other extension that provides that functionality.
    Milt Beychok

    My trackball has 4 buttons and a scroll wheel. Each of the 4 buttons is programmable. The 4 buttons are normally pre-programmed for single-click, double-click, drag and right-click by simply pressing on them
    Each of the 4 buttons may be programmed to also have other functions. For example, I programmed "control/single-click" to produce a middle click. I could also have used "shift/single-click" or "alt/single-click" to produce the middle-click. Or I could have similarly programmed double-click or drag or right-click. The Kensington Expert Mouse is quite versatile ... once you get the hang of programming it.
    I have had it for about 4 years and I had never had the need to program one of them until you told me about using a middle-click.
    Milt Beychok

  • HT4859 My iCloud does not allow me to change my user email account. How can I change to a new email account and restore my iCloud?

    I was recently hacked so I had to change to another email account and now iCloud won't let me back up because it is still only allowing the old email acct to be the main one. How can I switch to a new email account for my iCloud?

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    Providing you are simply updating your existing details and not changing to another account, when you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.
    In order to change your Apple ID or password for your iCloud account on your computer, you need to sign out of the account from your computer first, then sign back in using your updated details. (System Preferences > iCloud, click the sign out button)

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • On my mac when i click on pages, a new document doesn't open instantly  but a window with my files open and then  have to click on the left bottom new document in order to open one. How can i have directly a new document when i click on pages icon

    On my mac when i click on pages, a new document doesn't open instantly  but a window with my files open and then  have to click on the left bottom < new document> in order to open one. How can i have directly a new document when i click on pages icon

    How to open an existing Pages document?
    Click Pages icon in the Dock to launch Pages.
    When Pages is open, click File menu in the  Pages menu bar.
    Select “Open”.
    When the select document  dialog box opens up, highlight/select the document and click “Open”
    at the bottom right corner of the dialog box.
    s
    https://support.apple.com/kb/PH15304?locale=en_US

  • I Don't have access to the previous computer on which i installed the photoshop, the m bord is broken and i have a new computer, how can i reinstall on my new comp' with my serial number?

    I Don't have access to the previous computer on which i installed the photoshop, the m bord is broken and i have a new computer, how can i reinstall on my new comp' with my serial number?

    You are allowed to have two machines with activated installations, so if you only had one installation, you still have the option to install on a second without doing anything further than that.  If you originally downloaded the purchase thru Adobe then you might find a download link available in your Adobe account online.  You can also download thru the following page if you can find your version:
    Download and Installation Help -
    https://helpx.adobe.com/download-install.html
    You can have the first installation deactivated to free up the activation and have it available for another machine again as well.  YOu need to contact Adobe Support thru chat for that.  For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

Maybe you are looking for

  • White screen  buzzing noise and no question mark folder just white screen

    So i noticed my macbook pro was slowing down and a ran disk warrior and disk utilities - repaired permissions , repaired drive then i noticed it was freezing up after 5 minutes of running. so i removed all files i wanted to keep to an external drive

  • Personal file sharing Crahing

    I am using 3 G5 1.8GHz having 10.4.6. I observed that personal file sharing service is crashing again and again on all the 3 mahines. If i start the service manually it runs for a moment and then automatically stopped again. any ideas why this is hap

  • Airport express cannot be found in Airport Utility

    I went and changed my network on my Mac.I thought I was just changing the name but realized I created a whole new network.   Now my airport express (which is used to stream all of my music from a receiver to my speakers in each room) is not recognize

  • Deleting the C:\System Recovery Files folder

    In 2012 someone already posted this and I have the same problem.  Can't anyone solve this?  How about someone from HP or Microsoft.   Problem deleting the C:\System Recovery Files folder ‎01-08-2012 10:37 AM My computer, a HP-Pavillion desktop, model

  • Fireworks Effect in Flash

    Hi all, I've been searching for a cool fireworks effect, and finally found this one: http://www.wipeout44.com/tutorials/flash_fireworks.asp I'm doing everything as explained, but cant get it to work. If anyone could give me an idea how to create an e