Adding 2  Tabs through EEWB

Hello All,
          I have an issue. Can you please tell me how to add 2 new tabs through the EEWB. I have already added 1 tab through EEWB. Now when I am trying to add 2 tab, the news fields get added in the 1 tab.
Please provide me some solution for that.
Regards
Aashish Garg

Hi,
1. Create an entry for any standard tab in the screen flow in SPRO.
There you have to assign a custom dev programm which calls the new dynpro
2. Create the dynpro.
In case of a dynpro with new tabel, just assign a single container on it.
3. Create function modules for the dynpro.
Assuming you have a ALV container on the new dynpro, create function modules which
a) creates the ALV grid
b) refreshes the ALV grid
4. Create a custom dev Z Tables with required fields
5. Assign Z Table field catalog to the ALV grid
6. Handle data changes within the ALV
7. Use
a) CRM_INTLAY_GET_HEADER_GUID to receive the order information
b) CRM_EVENT_PUBLISH_OW to raise a save event for CRMD_ORder
c) CRM_ORDER_MAINTAIN to add something to the order (input fields are enough)
d) CRM_1O_INSTANCE_GET_UI to set action flag
--> all this will give CRMD_ORDER the information that data was changed (your new data)
9. Create function modules which will give you your data from the ALV grid
10. Use a BADI ORDER_SAVE to store your data on the database
I know it is quite short, but it should give you a hint.
Please give me reward points if you find it helpful.
Thx
Frank

Similar Messages

  • Tabbing through a form with multiple pages!!!!! FIX!!

    Hi everyone, I have a fix for this tricky issue of tabbing through a form that has multiple pages.
    1. You'll need to go to the "master page" and add as many pages as you have "body pages".
    2. Click the Object Veiw Tab and set the Occurence of the page to Max 1 and click the box with the instruction Include In Page Numbering.
    3. Do this for each page of the form that you have.
    4. The tabbing now should move from the 1st to 2nd to however many pages you have Master and Body Pages for.
    Glad I could figure this out! Goodluck!

    Thanks for the reply. Since my post to this topic I discovered some things about tabbing. With out adding another master page but just keeping the one and making sure that it's occurance is set to a minimum of one and including master page in the numbering it will work as long as the order of fields in the hierarchy tab matches the order in the position of the fields.
    I have a subForm that has a row of fields starting with a button then several text fields. I couldn't tab to the next page because the button was at the bottom of the hierarchy and it wasn't until I moved it to the top that I could finally tab to the next field on the next page. I also discovered that with a one page dynamic interactive form that has some expand able text fields in it and when the field expands so that any fields are pushed to a new second page tabbing seems to not work. In other words when I tab out of that field that is suppose to expand and a new page is added to the form the tabbing quits and in order for it to resume I have to click in a field and from then on it work even if it gets to where a third page and so forth is added. It is just when a one page (in my case) form turns into multiple pages for the first time.
    Hope that makes sense.

  • Article master (mm41) through eewb

    Hai all,
            Is it possible to add fields to MM41 transaction through eewb transaction??if yes please tell me the steps else please tell me a way to add fields i had checked for screen exits and badi's .
    Thanks in advance

    Hi,
    Business Requirement:
    As per the client Business critical requirements, additional fields are
    required in the Article Master. This is because the existing fields in
    the Article master are not adequate to capture the data.
    We have referred the SAP Note 925424 (Table MAW1) and 44410 (MARA) for
    this.
    Based on the above note 44410, we have added fields in MARA table,
    since Manufacturing
    activities are envisaged in future instead of proceeding with 925424.
    Whether, MAW1 (925424) also to be considered?  
    Since this is very critical requirement from client, we cannot avoid
    and do not have any
    alternate solution.
    These fields will be used in reports and pricing in sales &
    distribution.
    Apart from this, are there any other SAP notes to be referred?
    Is there any restrictions there in length for fields to be used in MARA table .
    By referring note 44410 , i added 20 fields in MARA table, in which some 4 fields are more than 40 characters .
    All custom fields are updated in MM41 and MM42 .
    Shall i proceed by this approach .Kindly guide me on this .
    Thanks and Regards,
    S.Sivakumar

  • In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    You're in luck. Create the first field and then right-click it (in Form Edit mode) and select Create Multiple Copies. You'll be able to specify how many copies of the fields to generate, and at what intervals. The nice thing is that although the properties of the new fields will be identical to the source one, they'll each have a unique name, so you'll get an instant "table" of fields.

  • Adding custom fields  through SE51

    Hi All!
    This is with regards to adding custom fields through Se51 to standard screens.I had added custom field KNVV-ZZKVGR6 to the screen.
    After drawing the text and I/O buttons.When I activate I am getting an syntax error saying Field KNVV-ZZKVGR6 is defined differently in screen (ABAP/4 field,Dictionary field).
    What does this mean.
    Also if i activate with a SAP standard field instead of the custom it is getting activated.
    But for both the ways I could not able to see the output on the actual transaction.Also the new drawings which i am drawing are in brown color(different form the existing one)
    Please advise.
    regards
    Praneeth

    hi Praneeth,
    what is the program name,screen number you are trying to modify..,and after appending the field <b>ZZKVGR6 to KNVV</b> , now go to table and choose menu <b>Utilities->Data base Utility-></b> now click on  <b>Activate and Adjust the Data base</b>, then try to add the field.
    and are you adding the field from Dictionary (i.e you have option Get From Dictionary in that give KNVV table name it will list the fields, choose zzkvgr6 from it, and place it in your screen.)
    the exit which you are adding should be appropriate one
    or else you won't get the desired results. what is the exit..
    Regards
    vijay

  • Date field automatcailly changing when tabbing through other scripted fields

    I have a form with a datetime field. The object is readonly. I format the field with javascript as yyyymmddhhmmss as a tracking number for the form. When tabbing through other fields with javascript the value changes to the current date time, like the code is being executed each time a scripted field is entered.
    Any ideas how to prevent that? I just want the code to execute when the form is opened.
    ----- form1.sbfDirect_Pay.dteCurrentDate::ready:layout - (JavaScript, client) ----------------------
    // Current Date in short-style date format.
    // $.rawValue = num2date(date(), DateFmt(1, "))
    var varCurrentTime = new Date();
    var varYear = varCurrentTime.getFullYear();
    var varMonth = varCurrentTime.getMonth() + 1;
    var varDay = varCurrentTime.getDate();
    var varHour = varCurrentTime.getHours();
    var varMin = varCurrentTime.getMinutes();
    var varSec = varCurrentTime.getSeconds();
    if(varMonth<10) varMonth = "0" + varMonth;
    if(varDay<10) varDay = "0" + varDay;
    if(varHour<10) varHour = "0" + varHour;
    if(varMin<10) varMin = "0" + varMin;
    if(varSec<10) varSec = "0" + varSec;
    // $.rawValue = year + "" + month + "" + day + "" + hour + "" + min + "" + sec;
    dteCurrentDate.rawValue = varYear + "" + varMonth + "" + varDay + "" + varHour + "" + varMin + "" + varSec;

    I think I just answered my own question. The code was in the layout:ready event. This area is executed each time the layout is modified. I moved the code to form:ready event.

  • Adding a Tab in a PM notification

    Experts,
    How do I go about adding a tab in a PM notification? I have a requirement of adding a 'causes' tab for capturing of the object part, damage etc. and also for entering user defined codes for capturing an RCA in SAP. see screen below

    Hi Mutale,
    I see some confusion in concept about Catalog Code Tabs.
    What you referred in the initial post are the Sub-Tabs inside a Catalogs & codes Main tab of a Notification.
    What you have referred to in the later post are the Main Tabs of Catalogs. like this
    The Difference
    The Sub-Tabs of Catalogs will display information corresponding to the line item of the first tab (Object part & Damage Tab). Here you are not free to enter a Cause, Task or Activity without filling an Item line (Object part or Damage)
    The Main Tabs are independent Catalog Tabs. You can maintain the line items here independently  without any conditions as above.
    Lastly:
    I hope your initial query has been cleared by looking into the picture, that you can have a separate Causes Tab.
    In configuration, you need to have tab 10/Tab16 for this.
    Best of Luck
    Jogeswara Rao K

  • Tab through cells in a table created in Pages

    In 5.0 when I create a table I cannot tab through the cells. Is there a setting I'm missing here? Why must I use the arrow keys?
    Thanks.

    Thanks. I hadn't considered that and yes it works but not the same way it did before. Prior to the change if you made a change in the cell you could double tab to move onto the next one. Now you must use option + tab after making the change to go onto the next cell.

  • Issue tabbing through form fields on Adobe Reader 9.2

    Hello everyone.  I am having an issue that I am hoping someone can assist me with.  We are currently using IE6 and Reader 5.5 in our production environment and we are currently testing IE8 and Adobe Reader 9.2 for deployment.  Our company uses a web portal where we have many pdf forms that open within a web browser. The problem we are experiencing is that when tabbing through fields on the pdf, the cursor will eventually cycle down to the end of the form and then start cycling through to the top of the browser (toolbars, address bar, search bar,etc) before finally returning to the pdf document's fields.  Is there either a setting in the reader or maybe even IE which controls this functionality and will limit the tabbing to only the pdf form?  Or does anyone know of a method of limiting the tabbing functionality to only work within the pdf document itself when opened within a browser?
    Any help on this is greatly appreciated.  I have looked through all the reader preferences and do not see anything directly related to this.  Thank you very much in advance.

    I guess by QTP you mean HP Functional Testing 11. This is really something to take up with HP, it's the job of monitor software not to crash.

  • Tabbing through form fields in app doesn't work in Firefox.

    Is there a setting in Firefox that permits tabbing through form fields so that one doesn't have to use the mouse? This works fine in IE. for the same app without any configuration, but not in Firefox.

    Are you really still running Firefox 3.6? Since it hasn't received any security updates for nine months, you may be putting yourself at risk.
    In my experience, tabbing through forms works just fine. Have you tested in Firefox's Safe Mode to see whether the problem is caused by a custom setting or add-on.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.org/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in [http://support.mozilla.org/kb/Safe+Mode Safe Mode] by holding the Shift key when you double-click the program icon.
    In the Safe Mode dialog, do not check any boxes, just click "Continue in Safe Mode."
    If tabbing works correctly, this points to an add-on or custom setting as the most likely cause of the problem.

  • Tabbing through PDF Forms on iPad

    I have a stupid question.
    I've built a bunch of forms in Acrobat Pro XI, and the company I work for provides everyone with iPads for ease of use.  heh.
    Our people are using external keyboards for the iPad to fill out these forms and I've been told that the Tab Key on the keyboard does NOT tab through the field.  Instead they have to use the Next button on the on-screen keyboard.
    Is there a way to get around this?  They are using Adobe Reader on their iPads.
    I do have an iPad, however, I don't have an external keyboard for it - so I can't troubleshoot this. 
    Thanks for any help.  Oh how I loathe this stupid trend.

    ZAGG make a Great KeyBoad Case combination for your iPad. Its slightly miniturized Full sized keyboad it’s a Bluethooh keyboard.  And it actually has the same feel as a Standard Laptop keyboard. It doesn't feel like a Chicklet keyboard. I have one for my iPad. The case is made out of Kevlar.  The key board uses any unversal Power brick that uses a standard USB connector at the brick ined and the micro USB in key board end. I bought the case for mine along with iPad just after the iPad3 came out I have yet to recharge the keyboard.

  • Tab through the Close File dialogue window buttons?

    In the past when closing a document or file (any app) I could Tab through the different 'Don't Save', 'Cancel' & 'Save' buttons on the close file dialogue window. And also hit the spacebar to select the highlighted button.
    But not any more. It could have stopped working when I deleted items (cleaned up?) from my home Library folder, or maybe it happened after the 10.4.10 update?
    Does anyone else have the same problem? (Can you Tab through them & hit the spacebar to select the highlighted button?) Does anyone know how to fix it?

    Select "All controls" at the bottom of the "Keyboard Shortcuts" pane of "Keyboard & Mouse" System Preference. Control-F7 will also turn it on or off.

  • Will Apple be adding 3D tabs in Safari on the ipad 3? I am not crazy about how it's set up to use right now and would think if they put it on the iPhone they would on the ipad also.

    Has anyone heard if Apple will be adding 3D Tabs in Safari on the iPad 3? I am not crazy about the way it is set up right now.

    No.

  • Is tabbing through all the active cells of a table possible?

    hi...
    i need to tab through the active cells which are already not seen on the table. i mean i can only tab through the cells which i see, i need to use the horizontal scrollbar to move to the cells which are not already seen.
    can i programmatically change this behaviour?
    i used the example program below to disable a part of the table.
    http://zone.ni.com/devzone/cda/epd/p/id/2163
    then i noticed this behaviour. hope its the same with arrays also.
    please reply with your valuable suggestions
    thanks in advance
    Renn 
    Kudos always welcome for helpful posts

    Please hav a look at the VI
    Kudos always welcome for helpful posts
    Attachments:
    disabletablecells_test.vi ‏74 KB

  • "Text Boxes" (comments) in my form are included in "tabbing" through fields while filling in a form

    I have included several text boxes (not text fields) in my form. They are adjacent to the fields that are being filled in and serve various comment functions that I do not want in the printed form at the end.
    If the user "tabs" through the fields to enter data in the next field the 'text boxes' (comments) are included in the tab stops... I can not see where to turn that off. I want the tab order key to ignore the comment fields - the text boxes. They are not even listed in the tab order menu.
    Also - is there a way a field that shows up multiple times in a form (duplicate field) can be skipped by the tabbing through IF it aleady has data in it?

    I'm not aware of any app that will translate the form fields from Word to the iPad. My guess is that you're going to have to recreate the forms on the iPad.  The best app that I've found for doing this is FormConnect http://http://itunes.apple.com/us/app/formconnect/id432653695?mt=8&ls=1. It's a very simple app for creating check boxes and text fields.

Maybe you are looking for

  • IPOD TOUCH NOT WORKING WITH ITUNES

    I am using: iPod Touch 16GB 1.1.4 (With $25 Software Upgrade) Windows Vista Premium Edition iTunes 7.6.2 Whenever I connect my iPod, the device connect sound is made and it shows up in the my computer window, but it will not show up or sync with iTun

  • Setting attributes question

    Hi, I am trying to set attributes of a object in a for loop so that it sets the attribute as many time as there are elements in the for loop and then add the object to an array list and then after exiting the array list set the same attribute to some

  • Master Data load from Info Object

    Hello, Iam tryting to load masterdata from info object using the standard package in 7.5 NW. My requirement is similar to the scenario 3b in the How to load masterdata doc(to prefix and strip the Compounding obj). This is the ssue i am currently faci

  • Explain plan in procedure or function

    Hi I want to know how can i do explain plan in procedure or function. Any ideas or solution how can i do that? ;/

  • OAS 4081: Admin and WWW Listeners won't start

    Running OAS 4.0.8.1 on RH Linux 6.1. I get the following error messages when I start either the Admin or WWW listeners. Error: Empty or partial expression. See [SecureInfo] GroupID. Error: The server could not initialize Information: The server is ex