Displaying Multiple subscreen for MIGO

Hi,
Please help me for my doubts
1. In the MIGO - I have implemented the MB_MIGO_Badi and thr' the implementation of this Badi, I am creating one subscreen for Item level Details,
Now my requirement is for One Item there is multiple packing slip reference, , for that purpose, I need to create one more subscreen so enable user to Input the multiple line item for single Item in MIGO transaction,
Can you plese help me, how i should do this
Your valuable support will be highly appriciated
Thanks
Rani.

Hello Rani
Have you succeed to have more than one additional tab at the item level?
I have to do the same kind of action.
I need to have 2 tabs.
1. Dedicated to Serial numbers
2. Dedicated to Confirmation dates and quantities.
Both tabs will be ALV format informations.
The first time has been done and it is working.
I am now trying to create a new implementation for the MB_MIGO_BADI to have the second customed tab. For now without success.
The second tab is not showing up.
So my question is: Have you succeed to have more than one tab?
If so, what should I look at to activate the second tab?
Regards
dstj

Similar Messages

  • Display multiple values for a characteristic for Equipment.

    Hi is there any way to display multiple values for characteristics of an equipment. Ex. An equipment (Presss) produces multiple ROH Parts. The class VN_TOOl with charactersistic "Part Produced" . When I run IH08 and execute the query, >Show , hide classification I can only get just one part instead of multiple parts. How do I get multiple values for the characteristic

    Yes Chandra,
    You are not getting it in IH08, but you are getting it in IE07. See this.
    IH08
    IE07
    If you want the report in the ALV layout, then you need to go for a development using FMs in Classification areas such as:
    'BAPI_OBJCL_GETCLASSES'     'ALM_ME_CLASS_CHAR_GETDETAIL'
    Jogeswara Rao K

  • Select-Options in Tabstrip and Subscreen for MIGO

    Hi,
    I have to enhance MIGO tansaction using screen exit.
    I have to create a tab called Serial Number Ranges and inside the tab create a sub screen.
    Inside the subscreen i have to create a range (select option for Serial Number.)
    I have create a module pool program and created one screen with the tab and subscreen.
    In the main program i have create a selection screen as subscreen and declared select options.
    then i have called the screen in PBO and PAI..
    it doesnt seem to work...
    can u suggest a solution different from this?

    Hi,
    Check out these links:
    [http://sample-code-abap.blogspot.com/2008/06/select-option-in-module-pool-screen.html]
    [http://abap-explorer.blogspot.com/2008/08/create-select-options-in-module-pool.html]

  • New WM Subscreen for MIGO

    Has anyone used MB_MIGO_BADI to process warehouse management data from MIGO directly?
    I am interested in creating and confirming a transfer order in WM with a BAPI using bin and storage unit data keyed in this MIGO subscreen.

    Hello Rani
    Have you succeed to have more than one additional tab at the item level?
    I have to do the same kind of action.
    I need to have 2 tabs.
    1. Dedicated to Serial numbers
    2. Dedicated to Confirmation dates and quantities.
    Both tabs will be ALV format informations.
    The first time has been done and it is working.
    I am now trying to create a new implementation for the MB_MIGO_BADI to have the second customed tab. For now without success.
    The second tab is not showing up.
    So my question is: Have you succeed to have more than one tab?
    If so, what should I look at to activate the second tab?
    Regards
    dstj

  • How to display multiple lines for texarea

    I have a textarea where user can type in several lines of code. I am storing it in varchar2(2000).
    When I display that textarea, it gets displayed in 1 single line that drags all the way to the right. I want it to display the text in multiple lines where each line containing no more than lets say 7 or 8 words.
    How can I do that.
    Thanks for your help

    First, expecting an answer here in just a couple hours is optimistic to say the least (and possibly pushy at most).
    To your question: You don't say which browser you're using, which could be an issue.
    Since you said the user is entering lines of code, I'll assume there are spaces between the values? If not, for example, they're entering a URL, it won't wrap the line.
    But I just edited a sample editable tabular form of mine and set the Element Width = 60 and Element Height = 10 and it worked as expected. My point being, you might want to try setting the Width, not just the height.
    Hope this helps,
    Stew
    My Oracle Community blog:
    http://www.oraclecommunity.net/profiles/blog/list?user=stewstryker

  • Displaying multiple values

    Hello,
    I have a form with 3 tab pages, in which I am able to display multiple values from the table, but I need to display multiple values for a particular employee. I tried using a loop but it didn't work, and without a loop it only shows one record for an employee.
    Thanks,
    Nikita

    Hello,
    I want to make an LOV for a tab page. The LOV will find an employee and display all the skills for that employee in a scroll bar . However my LOV displays only one skill for the employee eventhough the employee has three skills in the database. Is there any way to display all three skills?
    Hopefully this makes it more clear.
    Nitika

  • Query to display multiple counts in the result

    Hi,
    I need to be able to display multiple counts for different items in the single result set:
    Here is the simplified schema:
    I have 2 tables:
    STATEMENT table:
    ===============
    statement_pk number,
    department varchar2(20)
    STATEMENT_INFO table:
    ===================
    statement_info_pk number,
    statement_fk number
    is_statement_done varchar2(1)
    is_statement_locked varchar2(1)
    I need to display counts of how many records where done and how records where locked in the
    single output:
    Statement_PK Department NumberOfStatementsDone# NumberofStatementsLocked#
    1          ABC_dept          3                    5
    2          DEF_dept          4                    8
    3          XYZ_dept          7                    2
    The following does not work:
    SELECT
    s.statement_pk,
    s.department,
    COUNT(r.statement_info_pk ) NumberOfStatementsDone# ,
    COUNT(rr.statement_info_pk ) NumberOfStatementsLocked#
    FROM STATEMENT s ,
    STATEMENT_INFO r,
    STATEMENT_INFO rr
    WHERE
         s.statement_pk = r.statement_fk
         AND     s.statement_pk = rr.statement_fk
         AND      is_statement_done = 'Y'      AND rr.is_statement_locked = 'Y'
    GROUP BY statement_pk, s.department
    I was trying to work with analytic function but could not figured it out either.
    Please help
    Thanks,
    Ia.

    this would be something like:
    SQL> r
      1  select statement_pk,
      2         department,
      3         sum(decode(is_statement_done, 'Y', 1, 0)) statement_done,
      4         sum(decode(is_statement_locked, 'Y', 1, 0)) statement_locked
      5  from   statement_info,
      6         statement
      7  where  statement_fk = statement_pk
      8* group by statement_pk, department
    STATEMENT_PK DEPARTMENT           STATEMENT_DONE STATEMENT_LOCKED
               1 ABC_dept                          4                1
               2 DEF_dept                          6                2
               3 XYZ_dept                          1                2
    SQL> Message was edited by:
    Leo Mannhart
    Craig you were faster

  • How to integrate bing map for including or displaying multiple locations at the same time

    how to integrate bing map for including or displaying multiple locations at the same time

    Have you aware of the geolocation field that's been introduced with SharePoint 2013?  You can store location data within a list and then integrate this within Bing.  The second tutorial on this Bing team blog will show it well.
    https://www.bing.com/blogs/site_blogs/b/maps/archive/2013/03/26/connecting-a-sharepoint-list-to-bing-maps.aspx
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • MIGO not displaying GOITEM-SGTXT for new posting

    Hi All,
    MIGO not displaying GOITEM-SGTXT for new posting
    last year postings SGTXT  is visible,
    while checking in customer exits there is no no code.
    I want to make it visible GOITEM-SGTXT.
    Plz help.
    Thanks
    Saket

    Hi guru's,
    I have similar issue with MIGO Material Doc display,
    The screen field GOITEM-SGTXT on the 'Where' tab is not displaying for current year ,
    Previous years the Text field is displaying with the data.
    GOITEM-SGTXT is getting the data from ML18N ,  ESSR-TXZ01 as the text is not entering through MIGO.
    I checked the customer exit and the BADI's for the MIGO , but not activated for manipulating the
    GOITEM-SGTXT.
    Please give me an idea what makes this issue.
    System Details:
    ECC 5.0
    SAP_APPL - 5.0     Logistics.
    SAP_ABA -  6.40   Cross-Application Component
    Thank you

  • Displaying Multiple Row Header for Matrix...

    Hi
           Can you please tell me, whether we can display Multiple row headers for the Matrix object same as that in the Posting Period SAP Form...
    Please check the Link: http://img198.imageshack.us/img198/3491/postingperiodform.jpg..
    Thanking you in advance...
    Thanks
    Hari

    I am extremly sorry...Please check the following link...
    Link Address : http://www.freeimagehosting.net/image.php?d499726589.jpg
    Edited by: hari angamaly on Jun 17, 2009 1:20 PM
    Edited by: hari angamaly on Jun 17, 2009 1:21 PM

  • MIGO Field display to ready for Input

    Hi,
    Field EBELN purchase order is made mandatory for movement type 541
    When i am doing MB1B its ready for input
    But when i am trying to post 541 using MIGO the field is display only
    I tried Enjoy settings for MIGO but the field is not available in modifiable or influencing node
    Is there any way i can add the field or other workaround solution?
    Thanks
    Diwakar

    Hi Jurgan,
    Thanks for your reply ,
    The requirement here is to track the link between 541 and 542 ,
    The processor PO is updated by user in PO field and also added the vendor field (custom) which is again updated by user
    while doing 541 on saving exit finds out the latest PO number for combination of Vendor and material and updates it in one field
    Hence 541 document always contain the processor PO ,and vendor PO
    Normally client use MB1B for this but , if required MIGO can not be used because of this PO field constrain
    Hope its clear
    Thanks
    Diwakar

  • I am having a difficult time getting the duration of multiple selected clips. The duration display only will display the time for one clip.  Yes, I know I can add them up myself, but why?  :-)

    I am having a difficult time getting the duration of multiple selected clips. The duration display will only display the time for one clip not multiple clips.  Yes, I know I can add them up myself, but why?  :-)
    I am using imovie 10.0.6

    For reasons that you would have to ask Apple for they decided not to allow the precise position of the playhead to be shown in iMovie 10 (unlike in FCP 10.1.x).
    Geoff

  • Field Exit For Migo Badi

    Hi to all experts,
    I need to assign F4 help to a headertext field for MIGO tcode . I have searched all the exits but couldnt find field exit for it. What are the different options fulfilling this requirement.Please help me out

    Hi,
        The following are the enhancement/Business Add ins,  Please use the appropriate exit for your requirement
      Enhancement/ Business Add-in            Description
    Enhancement
    MB_CF001                                Customer Function Exit in the Case of Updating a Mat. Doc.
    MBCF0011                                Read from RESB and RKPF for print list in  MB26
    MBCF0010                                Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    MBCF0009                                Filling the storage location field
    MBCF0007                                Customer function exit: Updating a reservation
    MBCF0006                                Customer function for WBS element
    MBCF0005                                Material document item for goods receipt/issue slip
    MBCF0002                                Customer function exit: Segment text in material doc. item
    Business Add-in
    MB_DOCUMENT_UPDATE                      BADI when updating material document: MSEG and MKPF
    MB_DOC_BADI_INTERNAL                    BAdIs During Creation of a Material Document (SAP Internal)
    MB_ME_CSGMT_BADI_SAP                    BAdI: Consignment Processing - Stock Transfer
    MB_MIGO_BADI                            BAdI in MIGO for External Detail Subscreens
    MB_MIGO_ITEM_BADI                       BAdI in MIGO for Changing Item Data
    MB_PHYSINV_INTERNAL                     Connection: Core Inventory and Retail AddOn
    MB_QUAN_CHECK_BADI                      BAdI: Item Data at Time of Quantity Check
    MB_RESERVATION_BADI                     MB21/MB22: Check and Complete Dialog Data
    MB_RESERVATION_SCR                      Screen BAdI for Retrofit DFPS
    MB_RESERVATION_UPCHD                    BAdI for Creation and Changing of Manual Reservations
    MB_RES_BAPI_CHANGE                      BAdI: Execution of Changes to Reservation Fields
    MB_RES_BAPI_CREATE1                     BAdI: Adoption of Customer's Own Fields as Reserv. Fields
    MB_RES_BAPI_DETAIL1                     BAdI: Display of Customer's Own Fields in Reservations
    MB_STOR_LOC_BADI_GTS                    BADI to Check and Change Storage Location (GTS Fct. Only)
    MB_DOCUMENT_BADI_SAP                    BADI for Creation and Changing of a Material Document
    ARC_MM_EBAN_CHECK                       BAdI: Enhancement of Archivability Check (MM_EBAN)
    ARC_MM_EBAN_PRECHECK                    BAdI: Enhancement of Archivability Check (MM_EBAN)
    ARC_MM_EBAN_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EBAN)
    ARC_MM_EINA_CHECK                       BAdI: Enhancement of Archivability Check (MM_EINA)
    ARC_MM_EINA_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EINA)
    ARC_MM_INVBEL_CHECK                     BAdI: Enhancement of Archivability Check (MM_INVBEL)
    ARC_MM_INVBEL_WRITE                     BAdI: Enhancement of Scope of Archiving (MM_INVBEL)
    ARC_MM_MATBEL_CHECK                     Prüfung ADD-ON-spezifischer Kriterien für MM_MATBEL
    ARC_MM_MATBEL_WRITE                     Check Add-On-Specific Data for MM_MATBEL
    MB_CHECK_LINE_BADI                      BAdI: Check Line Before Copying to the Blocking Tables
    MB_CIN_LMBMBU04                         posting of gr
    MB_CIN_MM07MFB7                         BAdI for India Version exit in include MM07MFB7
    MB_CIN_MM07MFB7_QTY                     Proposal of quantity from Excise invoice in GR
    MB_DOCUMENT_BADI                        BAdIs During Creation of a Material Document

  • How to get one value from multiple duplication for a key figure field

    Hi expert,
          I have a infoprovider, with following format:
            employee     hourly_rate   action_type  count of action
         there are multiple rows for each employee, I want to create query as follows:
            employee     hourly_rate   action_type  count of action
         in which hourly_rate is constant , only retriving one value from multiple rows for one employee, count of action should be summarized. 
    how to get this hourly_rate.
    Many Thanks,

    Hi,
    put the employee in rows panel -> reaming object put it in free char panel.
    suppress the all result rows for the all object except employee .
    select the object -> go to query properties -> select display tab -> select result rows -> select suppress.
    select the employee -> go to query properties -> select display tab -> select result rows -> select always display. - now it will give employee wise hourly rate summarize data.
    Thanks,
    Phani.

  • Crystal report -How to display multiple lines in line chart?

    Hi,
    M struggling to display multiple lines in line chart. All the values m fetching it from database into data table in below format & data type
    Category(String).....year(Int).....graph_values(Int).....table_value(String)
    Test.........................2006.......... -100............................(100)
    Avg..........................2006..........20................................20
    Median......................2006...........5................................5
    Test..........................2007...........500.............................500
    Avg...........................2007............90..............................90
    Median.......................2007............45..............................45
    M using cross tab to display data and chart to plot line. Following fields I used in Cross tab Expert & Chart expert
    Cross tab expert-
    Rows u2013 category
    Columns u2013 year
    Summarized fields u2013 Min of table_value
    In Chart Expert u2013
    On Change of - Year
    Show values - graph values
    In cross tab m able to see the data properly but not in graph.I have three categories. Hence it should plot three lines in line chart but m able to see only one line for test category.
    FYI u2013 using VS 2008 and crystal report assembly version 10.5
    Urgent. Please reply soon.
    Thanks
    ThakurS

    I got the solution.
    In Chart Expert - I should use
    On Change of -- Year, Category
    Show values -- graph values
    Thanks,
    ThakurS

Maybe you are looking for

  • Loading additional swf in .AS file

    i want to load another movie onto my flash stage through an .as file but I'm not sure on how to do that. right now I have one movie loaded on to the stage in a movieClip called container. I would like to load a second swf on to another movieClip call

  • IPhone 4S movies won´t play in iphoto

    Here is the problem: I record a movie with my iphone 4S. No problems there, I can watch them on the phone. I tranfer them to iphoto 11 (v9.2.2) and they wont play. I hear the audio but I see a frozen screen. Now I drag the movies to my desktop and th

  • Forgot username and password

    how do i recover the username and password to my wireless controller? it is a cisco 4404 any help would be greatly appreciated!

  • How do I get Organizer to open on Photoshop Elements 12 loaded on a mac?

    How do you get Organizer to open - Photoshop 12 on a mac

  • Applet without browser

    Hi How do i execute applets without using a browser or the appletviewer . Basically i want to develop an application using applets only . The application will not have any browsers. Is this possible . If yes how ?. Regards Ajoy