Calling another transaction in a new NWBC tab and keeping OBN

Hiya,
I have two reports (web dynpro reports) that I've created.
Each report has buttons that are supoposed to open SAP transactions.
So I've added code to the buttons that make the OBN calls, the reports have been added to the PFCG, and then OBN details have been added to the report nodes within the PFCG to open the SAP transactions.
And this all works fine!
The problem is this - the business would like a button to open report 2, in a new NWBC tab, from report 1.
I can't seem to do this AND get the OBN buttons to work for report 2.
So Report 1 works perfectly, I'm using open 'external_window' from the web dynpro to open a URL that points to the web dynpro of report 2.
Report 2 appears fine but the buttons don't work and nothing happens when you click them.
Can anyone suggest how best to approach this problem i.e. open a new NWBC tab, for a report in your PFCG role.
Thanks in advance!

Hi H.M.
This code will launch the transaction QM01 in a new tab, i think you would be able to use this snippet to open a new report instead.
Do you need to pass parameters from Report 1 to report 2, otherwise you might be able to use a portal launchpad or create your own OBN?
       data: lo_lsapi TYPE REF TO IF_LSAPI.
data: lv_location type string.
lo_lsapi = cl_lsapi_manager=>get_instance( ).
lv_location = 'ls-tr://QM01?RIWO00-QMART=Q1'.
lo_lsapi->navigate(
location      = lv_location
mode          =  '1'
*                    history_mode  = iv_history_mode
title         = 'Create notification'

Similar Messages

  • Calling another transaction in Dialog Programming

    Hello ppl,
    How can I call another transaction(ZPROGRAM2) from my transaction(ZPROGRAM1) using the delivery and the check box options selected in Screen Programming. Should I use BDC.? Also in case of any errors in ZPROGRAM2, the control should return to ZPROGRAM1 with all the previous setting retained.
    Thanks a lot.
    Karthikeyan

    Hi ,
    You can try with BDC as you need to get the control back to the program1.
    If not you can try with the SUBMIT statement.
    ex:-
    SUBMIT zrslg0000  EXPORTING LIST TO MEMORY
                  AND RETURN.
    Regards,
    Satish

  • Can we call another transaction from the Userexit

    Hi all,
            Can we call another transaction from the Userexit?
    Thanks,
    Balaji

    Hi
    Because the statament CALL TRANSACTION triggers the end of the LUW so COMMIT WORK, so you should be sure not to insert that statament while some updating actions are been doing.
    So that exit shouldn't be triggered while updating
    Max

  • Calling a transaction code in between the program and use the output

    Hi frnds,
              i want to call a transaction code in between the program   and pass the input .After getting the output, use that output in the program

    Hi Navin,
                     Why don't you sit with ABAPer he can explain better.
    Regards,
    HAri.

  • I have just bought a new iphone 4 as an upgrade to my iphone 3GS.  How can I transfer all my apps and data to the new iphone 4 and keep facetime etc on the new iphone 4.  If I do a restore of the iphone 3GS I only get the 3GS apps (i.e. no facetime)

    I have just bought a new iphone 4 as an upgrade to my iphone 3GS.  How can I transfer all my apps including saved levels in games etc. and data and folders to the new iphone 4 and keep facetime etc on the new iphone 4. When I have done this for someone else they got all their data etc but lost the Face Time App and teh iphone 4 looked like the iphone 3 screen.

    There is no FaceTime app for the iphone, FaceTime is built into the iOS. Follow the directions here:
    http://support.apple.com/kb/HT2109

  • I need to move 1000 photos from one library to another. How do I do that and keep the ratings and dates they were created?

    I need to move 1000 photos from one library to another. How do I do that and keep the ratings and dates they were created? I tried exporting them, but it loses all info. Also, how do I move the quicktime movies from one iphoto library to another? They were exported as jpgs

    Add both libraries to iPhoto Library Manager.  Then select the events or albums that you want to copy from library A  and drag them to library B in iPLM.
    This video shows the process:
    OT

  • HT201269 I'm trying to restore my iCloud back up on my new iPhone 5s and keep getting "could not sign in your apple Id or password is incorrect. I noticed that the Id it's showing is not my complete email address. I've reset my password 5 times. It accept

    I'm trying to restore my iCloud back up on my new iPhone 5s and keep getting "could not sign in your apple Id or password is incorrect. I noticed that the Id it's showing is not my complete email address. I've reset my password 5 times. It accepts my password when I install as a new phone. How can I resolve this so I can restore my back up?

    Hello jwpg,
    Thank you for the details of the issue you are experiencing after restoring an iCloud backup.  I recommend the following articles for an issue like this:
    iCloud: "Incorrect Apple ID or Password" alert when setting up iCloud after upgrading to iOS 7
    http://support.apple.com/kb/TS5207
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/TS5223
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How do i delete a tab and can I delete a tab and keep it as an apptab?

    how do i delete a tab and can I delete a tab and keep it as an apptab

    What to do if you sell or give away iPad.
    http://support.apple.com/kb/HT5661

  • I installed indesign CS5 on new macbook pro and keeps freezing with spinning wheel once the app opens. Is there an issue with OS Mav or font issue or a plist I can pull. All other Adobe products work.

    I installed indesign CS5 on new macbook pro and keeps freezing with spinning wheel once the app opens. Is there an issue with OS Mav or font issue or a plist I can pull. All other Adobe products work.

    Migration should never be done with any Adobe program.
    If you have done Migration, you have to UNINSTALL first (if even possible) and then download Adobe Creative Cloud Cleaner Tool and run that also. When this is done, restart your computer and install the programs from an original Adobe Installer.
    Other question is, if your OS is supporting that version. You can try it, it is not officially supported, but it might work.
    But CC will work, upgrade to CC2014 (without additional cost), use that as it is better anyway.

  • How to call a transaction (in a new session) from a program

    Hi ,
    I need to call a transaction from my report on the click of a button in toolbar.
    But the transaction should open in a new session.
    This is the code that i have written, MM03 is getting opened in the same session.
    call transaction 'MM03' and skip first screen.
    Hope that my question is clear.
    Thanking you in advance..
    Shankar

    check this
    <b>CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
      DESTINATION 'NONE'
      EXPORTING
          TCODE = 'SM59'
      EXCEPTIONS
        COMMUNICATION_FAILURE = 1 MESSAGE MSG_TEXT
        SYSTEM_FAILURE        = 2 MESSAGE MSG_TEXT.
      IF SY-SUBRC NE 0.
        WRITE: MSG_TEXT.
      ELSE.
        WRITE: 'O.K.'.
      ENDIF.</b>
    <b>u can avoid such errors thru this FM
    check FI_DUPLICATE_INVOICE_SHOW program for sample code.</b>
    regards
    Prabhu
    Message was edited by: Prabhu Peram

  • I use google search.When I click on a suggestion in the search results tab, I want it to open in a new tab and keep the search results in the original tab.How?

    For example, when I enter the search term "armoires" and get a search results page/tab with suggestions such as Sears, JCPenney, or Amazon, I want to be able to click on Sears and have the Sears page open in a new page/tab. I want to be able to close the Sears tab and be able to use the search results tab again.

    In order to change your Firefox Configuration please do the following steps :
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''' to continue to the about:config page.
    # Look to '''browser.search.openintab''' change its value to '''true'''.
    With this configuration your search will be open in a new tab

  • How do I copy parts of layers from one AI doc into a new AI doc and keep/create same layer names?

    How do I copy PARTS of layers containing many objects from one CS5 AI (v.15.0.2) doc into a new CS5 AI doc and keep/create the same layer names?
    To start with, I have one fairly complex AI document with 100 layers,  with several hundred items in each layer. For example, one layer named "Stars" contains  400 separate stars (not grouped), another layer named "Crosses" contains 300 separate crosses, and a 3rd layer named "Text" contains 200 separate words (not outlined).
    If I select, by marqueeing a section of the image/artboard, some (but not all) of the individual items contained in the several layers, then  paste that selection into a new CS5 AI doc, I cannot get them to  create new layers of the same name. Instead they go into one general layer (e.g. "Layer 101") as a jumble of discrete, but unorganized objects (no layers or sublayers). In other words, I have lost the 3 main layers from which I selected a bunch of objects.
    Checking "Paste Remembers Layers" has no effect on this result. In fact "Paste Remembers Layers" does not remember layers at all. Only if I select ALL the items in the several layers will it paste those layers by those names into the new doc (or create new layers of the same names).
    Of course it is a COLOSSAL waste of time copying the ENTIRE document, then pasting the WHOLE thing into the new doc (with layers retained), then deleting the parts I DON'T need, so please don't suggest that as the solution.

    No Monica, nothing in Plug-ins other than the standard installed items (extensions, filters, formats, etc.). No 3rd-part clipboard extension on my computer that I'm aware of, either. All frustratingly basic. And my other CS5 Adobe programs appear to work well, at least to the extent that I am familiar with them.
    So, from what I can tell of the various comments (thanks to all of you), am I correct in thinking that it seems I can't, in fact, do what all of you can do (that is, copy some objects from some layers in one doc and paste into another doc preserving those same layers by name and organization, and each containing the correct objects from each original layer)?
    If so, that solves half my issue - "is it supposed to be possible to do it"; leaving just the other half - "why can't I do it too".
    I'll get those screenshots made and posted later just in case I haven't adequately described the issue, or y'all haven't understood it.

  • I want to register a new product with a new Apple id  and keep my other 2 products registered with my old Apple idggrr

    hi I'm hopping someone will be able to help.
    i Have 3 devices and the are all on the one Apple id.
    I Have my iPhone
    an iPad mini
    and an ipad 4th gen
    what I am wanting to do is have my iPhone and my iPad mini on my old Apple id
    and I have another email address and I need to make a new Apple id
    how do I do it I tried re programming my old iPad with my new email and tried to make a new I'd but it changed all my devices over to the new email.
    i Need to change my iPhone and iPad mini back to my other email address and old Apple id and re do my iPad 4th gens with my new email address and new apple I'd.
    can anyone help me?

    Manage your associated devices in iTunes - Apple Support < see removing associated device(s)
    It may be that you can look at the NEW AppleID/association as a "Gift" to your 'Other Self" > What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support
    ÇÇÇ

  • How do I block an ad that opens up a new Firefox window and keeps telling me my system performance is poor? I can't even capture the link.

    This particular ad, supposedly from a Windows Certified Partner, opens in a second Firefox window and keeps flashing the message that my System Performance is Poor, wanting me to click on their ad and let them do whatever nasty things they want to my system. I have not been able to capture the path but next time it comes up, I will write down all that I can see.
    If I have closed my main Firefox screen first, and then close out this ad, the next time I open Firefox, the ad opens and all my standard tabs are gone, requiring me to reopen each one seperately (Facebook, Google, etc).

    Just to address the last point: check your History menu to see whether you have the Restore Previous Session option and use that if you can. If that is grayed out or doesn't restore everything, check the Recently Closed Windows and Recently Closed Tabs lists for other pages.
    The unwanted window may be generated by an add-on. Try disabling ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any improvement?
    Here are some other things to check:
    (1) user.js file that changes Firefox startup behavior and overrides your preferences. This article describes how to track that down and delete it if you have one: [[How to fix preferences that won't save]].
    (2) Possible hijacked shortcut. Check the "target" of the desktop icon you use to start Firefox to see whether it lists the unwanted page. To do that:
    right-click the icon > Properties > Shortcut tab
    For 64-bit Windows 7, the Target should be no more and no less than this:
    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
    (3) Possible undisclosed bundle items. If you have installed any free software recently, check your Windows Control Panel, Uninstall a program for surprises. If you click the "Installed on" column head to group by date, it is easier to spot bundled junk. Remove everything suspicious or unrecognized.
    (4) Supplemental clean up scans. Our support article lists tools other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Hopefully that cures it.

  • Help - Please. Trying to migrate my photos/videos to my shiny new macbook air - and keep running into a brick wall.

    Help! I am super frustrated.
    I just bought a new Macbook Air running Mavericks. My old computer is a white macbook running 10.5.8. After much research I determined that in order to use migration assistant I needed to upgrade to Snow Leopard. I ordered the new disc from Apple, went out tonight and bought the SuperDrive in order to do the install (my disc drive no longer works on the old macbook) - and the SuperDrive is not compatible with the old macbook. ARGH! So for the moment migration assistant is out as I'd like to avoid going out and buying a second external disc drive.
    I believe the only things I really need from the old computer are itunes, documents and photos/videos. I was able to enable home sharing and transfer itunes last night. I saved all documents to an external drive and have copied them over. Now all that remains is iphoto. Last night I copied the iphoto folder to an external drive and imported it into the pictures folder on my new macbook air. When I opened attempted to open them in iphoto, nothing happened - there were no photos - it wouldn't recognize them I guess. So I dragged it all to the trash and I'm back to square one.
    Any ideas on how I can get my photos/videos onto this new computer?
    And - is there anything I'm overlooking in terms of things that should be migrated to this new computer?
    Please help. I don't really know what else to try. I just feel like there has to be a trick in the way that I export and then import iphoto that I'm overlooking. I've combed thru the support communities and just don't really know what else to try.

    Thanks for the advice on switching out the external drive. I ended up doing trying a wireless transfer last night while I was sleeping - and it seems to have worked.
    So - no I have documents, photos, itunes, and contacts migrated over.
    Is there anything that I'm not thinking of that I should try to get off of the old computer? I do have an old version of Adobe Photoshop Elements that would be nice to bring over - but I probably won't miss it if I can't. Is there a way to wirelessly move over an application? And - it looks like iMovie won't be able to transfer - I only have 3 movies on the old one - but I cannot highlight them when I tried to move them over. Should I consider those a loss?
    Again - thanks for any and all help. Looks like I'm doing this by bits and pieces instead of with Migration Assistant.

Maybe you are looking for