Changing a standard structure erec_s_api_p5126.

Is it ok to change a standard structure erec_s_api_p5126 . If not, can anybody tell how to create a new structure based on   erec_s_api_p5126. Or if I can, how can I change it.
Thanks and Regards.
Srinivas

Hi,
You can use append structure to add new fields (SE11) as per your requirement while you still can use standard structure EREC_S_API_P5126.
If not, you can also copy the above structure via SE11 to ZEREC_S_API_P5126.
Path: SE11 -> Select Database -> Enter EREC_S_API_P5126 -> Click on copy button (CTRL+F5) -> Give new structure name -> Click on continue -> ...
Regards,
Ferry Lianto

Similar Messages

  • Change of standard Structure KOMG Error

    Dear All
    I have tried to add one extra field like MVGR1 (Material Group 1) in the KOMG structure. But it is showing an error as follows :
    Foreign key KOMG-RKE_WWADV (RKE_WWADV and WWMDI point to different domains)
    You assigned two fields from the dependent table and the check table to each other but they have different domains. A foreign key field, however, must have the same domain as the primary key field of the check table.
    Change the domain of the field in the dependent table to the domain of the corresponding field in the check table.
    Please help me.
    Regards
    Animesh

    Hi,
    The domain of MVGR1 and WWADV must be the same. Otherwise, a Foreign key relationship problem like the above exists.
    For foreign key table and check table, the domain of the field which you refer must be the same in both the table.
    Please, revert back for further clarification.
    Best Regards,
    Suresh

  • Change the extractor structure in standard extractors?

    Hi, is it possible (and wise) to change the standard extraction structure on the standard extractors?

    Hi  Rune,
                    Yes you can change the standard extract structure for the standard datasources.You can write a code for enhancing extract structure in CMOD and you can add fields to the standard extract structure.For LO datasources you can customize the extract structure as well.You can do it in Extractor  maintainance and add fields from pool to extract structure.
    Hope this clears
    Regards
    Karthik

  • Error when activate standard structure

    Hi guru,
    i've a serious problem about the activation of a standard structure,the check (for error) pass without problem, but when I want to activate it there is this exception :
    CALL SCREEN (not modal) in modal dialog box not allowed
    Anybody can help me ?
    Thanks.
    Angelo.
    Edited by: Angelo Abbasci on Jan 13, 2009 2:52 PM

    HI,
    I try but cant do much as it is a standard structure..
    You could try to change the structure save it. The n execute the transaction again and try to activate..
    You added the field with Access Key or through Append structure..?
    If you get the error again then try and copy paste the error  report important parts..

  • Change of Source Structure for Partial Settled WBS elements - CJ02

    Hi
    As per standard SAP, the change of source structure under settlement perameters of WBS element is not supported when the settlement of WBS element is done either partial / full.
    However, the client needs this change by doing any Z-Development as one time activity (since the source structure was changed for certain WBS elements as per change in business process).
    Can i Know procedure to do the Z development to modify the source structure for partial settled WBS elements and also let me know the any side effects in this regard.
    Regards
    Anil

    Hi Anil,
    I agree with Ajay. You can try to change it in Debugging mode.
    The values are handed over from include LCJWBF5Q (form project_settle_single using)      
    Some customer have also made a modification as a permanent solution.    
    Unfortunately in the standard it is not possible.
    regards Bernhard

  • How to Change S012  Table Structure ..?

    Hi MM Experts,
    How to copy and how to create new structure  and new caracterstics and MAterial type from  table S012 .
    T-code for execute MCE1 .
    How to Change S012  Table Structure ..?
    Regards,
    Anthyodaya.
    Edited by: anthyodaya Reddy Nagaram on Jul 7, 2010 12:44 PM

    Anthyodaya,
    Values?  Your newly created infostructure will have no data until you define how to update the underlying tables, and then execute the update.
    You need to be a bit more specific.  Are you saying that you attempted a 1-to-1 copy of S012 into a new structure, and you got a failure?  What failure?  What error message?  If you have saved your new infostructure, you can run the consistency utility to see what if anything is missing/misconfigured  MCSCHECK.
    If you have no experience with infostructures, I suggest you enlist the services of an experienced person to assist you.  Especially if you intend to implement non-standard characteristics and values, this can be a complex task.
    SAP help in this area
    Creating new IS
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/c1/3754f7449a11d188fe0000e8322f96/frameset.htm
    Purchasing Info system
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/c1/375504449a11d188fe0000e8322f96/frameset.htm
    Rgds,
    DB49

  • Change the Standard ALV Export button text

    Hi Expert,
    I want to change the standard button ( Export Button ) text in ALV table. I had gone through some threads already but still i am not getting a clear idea on this. Could you please any one give me a clear structure on this.
    Regards,
    Sarathy.

    Here is the new solution with out creating ZCLASS.
    DATA: lo_function_dpwty       TYPE REF TO cl_prs_std_alv_funct,
            lr_functions            TYPE REF TO if_salv_wd_function_settings,
            lr_function_std         TYPE REF TO cl_salv_wd_a_function_std.
      CREATE OBJECT lo_function_dpwty
        EXPORTING
          id = 'X'.
      lr_functions = l_ref_interfacecontroller->get_model( ).
      " append row rename
      lr_function_std = lr_functions->get_function_std( if_salv_wd_c_std_functions=>edit_append_row ).
      lv_button_text = 'Add Item'.
      lo_function_dpwty->change_text( EXPORTING text        = lv_button_text
                                                           CHANGING  std_function  = lr_function_std ).
      "Delete row item rename
      lr_function_std = lr_functions->get_function_std( if_salv_wd_c_std_functions=>edit_delete_row ).
      lv_button_text = 'Delete Item'.
      lo_function_dpwty->change_text( EXPORTING text        = lv_button_text
                                                           CHANGING  std_function  = lr_function_std ).

  • Updating values in standard Structure

    Hi Everyone...
    How can i edit the values in a standard structure ....
    i have edited the value in standard table ANEP ( field nafab) ...
    but i want to change the values in structure FIAA_AW01_TRANS ...
    hw can i do that?
    Regards,
    Phani

    Hi Phani,
    Try the following sample code.
    loop at FIAA_AW01_TRANS.
      FIAA_AW01_TRANS-fieldX = 'SAMPLE'.
      modify FIAA_AW01_TRANS.
    endloop.
    lets assume that theres a field fieldX in the structure FIAA_AW01_TRANS.
    The value SAMPLE will be transferred to the structure at runtime.

  • Copying standard structure

    Hi experts,
    when i tried to copy standard structure. Not all the fields are copying. The structure im trying to copy is VBKPF_ALV. In this first 3 fields are getting copied. when i tried to convert that in to change mode only first 3 fields are getting displayed. But when i see in display mode all fields are visible.
    thank you
    regards
    vijay.

    thank you Jose
    but my problem is i want to add two more fields for this custom structure but it is asking for reference table and refrence field.  The field i added is wrbtr. when i entered ref. table as bseg and ref. field as wrbtr it is not accepting this combination.
    please help me in this.
    thank you
    vijay

  • Change internal table structure dynamically

    Dear Experts , I have a requirement to add an attribute to already declared internal table which is declared in standard SAP code, is it possible to change internal table structure dynamically.
    my internal table is of type merel_t_grid2 which is standard table type in SAP , now I want to add an attribute of type  LVC_T_STYL in my internal table so that I can modify the cell property of ALV grid.
    I cant append LVC_T_STYL in standard structure because enhancement category of merel_t_grid2 is of type char and not deep
    my internal table contains data to be displayed in ALV.
    please help

    Dear Experts , I have a requirement to add an attribute to already declared internal table which is declared in standard SAP code, is it possible to change internal table structure dynamically.
    my internal table is of type merel_t_grid2 which is standard table type in SAP , now I want to add an attribute of type  LVC_T_STYL in my internal table so that I can modify the cell property of ALV grid.
    I cant append LVC_T_STYL in standard structure because enhancement category of merel_t_grid2 is of type char and not deep
    my internal table contains data to be displayed in ALV.
    please help

  • Unable to change ADF standard text for af_table ("Fetching data...")

    I wish to change the standard "Fetching data..." text displayed by ADF when scrolling through a table.
    Looking at the description in http://jdevadf.oracle.com/adf-richclient-demo/docs/skin-selectors.html, I expect to achieve this by overriding "af_table.LABEL_FETCHING" in my skinning resource bundle.
    I am able to override two af_column messages, but my af_table override does NOT work.
    My bundle looks like this;
    package com.vesterli.demo.skinning;
    import java.util.ListResourceBundle;
    public class MySkinBundle extends ListResourceBundle {
    @Override
    public Object[][] getContents() {
    return _CONTENTS;
    private static final Object[][] _CONTENTS =
    { { "af_table.LABEL_FETCHING", "Hang loose, dude" },
    { "af_column.TIP_SORT_ASCENDING", "First things first" },
    { "af_column.TIP_SORT_DESCENDING", "The last shall be the first" } };
    My trinidad-skins.xml looks like this:
    <?xml version="1.0" encoding="windows-1252" ?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <skin>
    <id>vesterli.desktop</id>
    <family>vesterli</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <extends>fusion.desktop</extends>
    <style-sheet-name>css/MySkin.css</style-sheet-name>
    <bundle-name>com.vesterli.demo.skinning.MySkinBundle</bundle-name>
    </skin>
    </skins>
    Since I am seeing my customized column tip texts correctly, the reference from trinidad-config.xml to my skin should be OK (I am also seeing my visual skinning correctly). Since I am seeing some of my texts, my resource bundle must be valid, too. I am using JDev 11.1.1.3.
    So why doesn't the af_table skinning work?
    Any pointers appreciated.
    Best regards
    Sten Vesterli

    I was having this problem too, found this thread and did cleanup here and there, redo etc. But ended up with no luck to fix it.
    Just now discovered the issue is reproducible on the official demo site: table Skinning Key Demo
    1. check the column sorting labels, prefixed with "Demo: "
    2. change any selector setting to trigger a table refresh, it's always displayed as "Fetching Data...", without prefix.(as highlighted in the "Resource styles" on the same page, there should be prefix too).

  • How to change the default structure when exporting data in CSV format?

    Hello,
    can some one tell us how to change the default structure in CRM when exporting lists in CSV format (with Option "Always use unformatted list format (CSV) for download" ? Because we want to add a new structure for our own -is it possible ?
    If it is possible where can we find these structure ? In the blueprint customizing ?
    Thank you very much,
    Christian

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • How to restrict the user to change the project structure but not the documents?

    Hi,
    I have created one project assigning different users in Solution manger. I want to risitrict some of the users to change the project structure but simultaneously allwoing the project documents to be created, edited or deleted using solar01 under Project documentation tab. For that I have followed the steps provided in the follwoing link.
    http://wiki.scn.sap.com/wiki/display/SM/Howto+Restrict+Changes+to+Project+Nodes+to+Assigned+Team+Members
    I am able to restrict the users to change the project structure, but I am not able to allow access to the project documents. It gives me the message "You are not authorised to change the project". This fulfills my one of the requirements. But, Is there any way  to restrict the user to change the project structure but not the documents?. Any help will be apperitiated.
    Thanks,
    Rutvik Uapdhyay. 

    Hi Rutvik,
    Basically there are 2 different authorization role ...you should look for and customize as per requirement in Z* namespace.
    role  - SAP_SOLAR01_ALL
    this take care of objects in Solar01 like tab access etc
    role -SAP_SOL_KW_ALL
    this takes care of entire documentation within solman
    hope this helps
    Regards
    Prakhar

  • Need to Change the Standard.joboptions on Acrobat 8.0

    We are a Citrix/Terminal Server shop and have clients using Acrobat 8.0 on the server under their citrix session and they need to have the default resolution of the created PDF to change for everyone on the server from 600 dpi to 300 dpi.
    When I try to do this in the printer setup for Acrobat it tells me that I can't edit the Standard.joboptions file and save it over itself. I then tried to manually edit the file with Notepad and it is still showing 600 dpi when I look at the Standard settings.
    I also changed the Standard and set it as 300 dpi and saved it as a different name in the "Settings" folder and when I try to choose it in the drop down list of settings files I don't see that one.
    Am I missing something? How can I set the default resolution to 300?
    Thanks,
    Jason

    I don't see how to do that. Is there a document or online resource to help with that?
    Like I said, I saved the changes to another file but then do not see a way to specify that new file as the 'default'.
    Thanks,
    Jason

  • Changes in standard form

    Hello,
    I have a standard transaction MI21 for physical inventory.
    I need to change the standard form and attached back to this transaction.My first query is how to find the form name in standard program? program name is RM07IDRU.
    Can i copy the original form in zform and make a changes and attach it back to standard program.
    How to do this?
    Please let me know as its an urgent.
    Waiting for positive reply.
    Thanks
    Suchita

    Forms are  INVENT  and INVENT_VKBW you can use either of these accrding to your requirement.
    But if you copy it to Z form then you will be needed to copy the program and then change form names in OPEN_FORM.
    Reward points if useful.
    Regards,
    Nageswar

Maybe you are looking for

  • Using PowerShell to Copy the content of a Word Document and Paste that content into a New Message in Outlook

    So, I'm a little new to PowerShell and I came across a PowerShell which allow me to copy the content od a spreadsheet, into the new message in Outlook 2007.  I have search and search on a way to do the same with a Word Document.  I would like to crea

  • How to add a button to play 1 minute audio?

    I would like to add a button to a web page. Clicking the button would play about one minute of audio. I will appreciate very much if someone could help me accomplish this. Thanks greatly in advance. Tom

  • Why can't I log into my flickr acct?

    I've gone through this problem with tmobile tech support and they weren't able to help. I've posted on flickr and haven't gotten a solution either. my problem is for some reason yahoo is not recognizing my password . I put it in and get the msg "data

  • HR ABAP - Using of function module HR_READ_INFOTYPE

    Hi, I want to replace the below SELECT statement with the function module by HR_READ_INFOTYPE. IF l_begda LE '20100331'.           l_assgnda = '20100401'.         ELSE.           l_assgnda = l_begda.         ENDIF. SELECT SINGLE werks         FROM pa

  • Conditional Display Of Headings on Grouped Report

    I have a grouped report in 2 seperate tables. I want to print the values of 'H1' and 'H2' (which are my headings for 'Group:' and 'Name:') only 1 time per page. The grouped data needs to print on every occurance. How do I do that? Group: 1 Name: Bob