Link should open a SAP R/3 screen

Hi,
Requesting for some valuable inputs.
We have a par iview for position overview in MSS.This par iview will fetch data and place it in a table using the nav type and view id properties(there is no code in the par file that is fetching data into the table).
Now, one of the columns in this table will have links and upon clicking the link, an R/3  transaction should get executed and display a report in a new page.
How can this be achieved?
Thanks,
Maneesha

Hi,
No problem. Modify the par file and add a new column. This column will contain Hyperlink texts. The following steps tell you how to create this hyperlink dynamically for each row
Portal config
1. Create a SAP transaction iView for your transaction
http://help.sap.com/saphelp_nw04/helpdata/en/88/266a3e54a2e946e10000000a114084/frameset.htm
2. Get the URL of this transaction iView.
You can preview the iView and use the URL in the browser or use the short URL
http://help.sap.com/saphelp_nw70/helpdata/en/b3/7b8163404448e7aad7899c0b30313e/frameset.htm
3. Find the parameter names to be passed dynamically with the URL
Application Parameter in Transaction Iview
Par file code change
4. Generate the URL you got in step 2 along with the parameters you got in step3 and and assign values to the param in your par code. Assign this dynamically generated URL to the hyper link text in the new column.
5.Thats it.
Regards
Srini

Similar Messages

  • Insert a link on xml report. The link should open up a document(PDFS).

    Is it possible to insert a link in the report? The value would come from a sql query. The link when clicked on would open up the pdf or doc.
    Is this done thru a href or by inserting a dynamic hyper link.
    The release Release 5.6.2 documentation references how to insert a hyperlink. NOt sure if this will work for me.
    I tried it but in the documentation it states:
    >
    If your input XML data includes an element that contains a hyperlink or part of
    one, you can create dynamic hyperlinks at runtime. In the Type the file or Web page
    name field of the Insert Hyperlink dialog box, enter the following syntax:
    {URL_LINK}
    where URL_LINK is the incoming data element name.
    >
    However the dialog box I am getting when I insert the hyperlink does not have a place to enter the element name. That is, there is no 'TYPE the file or Web page' area that I can see.

    hi ashalon,
    I did it this way in MS Word.
    1. create placeholder for value
    2. highlight it and make it a hyperlink
    3. enter the url into the address line
    So If you have a complete hyperlink in xml element URL_LINK you just have to enter {URL_LINK} into the address line. If you have only a part of the link, i.e only a product name, you can enter "http://www.oracle.com?product={PRODUCT_NAME}".
    Hope this helps.
    Regards
    chrissy

  • How to open a SAP Transactiion Screen from a link in Email

    Hi Experts,
    Requirement: Lets say upon creation of sales order 6000001 in VA01, an email is triggered to a person. In the email there should be a hyperlink which should open the order 6000001 (VA02 screen) without asking for any authentication.
    How to achieve this SAP - Email integration. Do we have to use some groupware connector to achieve this integration? (CRM has got a connector I guess!!).
    Any suggestion is appreciated.
    Thanks & Regards,
    Shobhit

    Hi Swarup,
                     You know to tell which mail format are you using, whether is Outlook or Lotus. SAP Connectors need to be installed for the same depending upon the mail type.
    Regards,
    Abhishek Raj.

  • Why does clicking on a link not open in a new tab although i have selected this feature under options

    I have selected that links should open in new tabs, but they keep opening in my current tab.

    That feature isn't for '''''all''''' links, only for those links that would open in a new window; no affect on links that are programmed to open in the same window. That preference diverts a new window to a new tab. If you want all links to open in a new tab, middle-click or {Ctrl + Click} links.

  • Link to URL should call a SAP transaction through URL with params

    Hi All,
    I have a requirement where I need to open a SAP Transaction MM03 on click of a link in a webdynpro application.
    I feel that I can call it using a URL but not sure of how the URL should look like.
    If I can pass the Params with the OKCodes etc this should work.
    Could you please let me know how to do that.
    Just to be clear the transaction should open as a new window and its not in portal So i cant use Portal Navigation(relative or absolute).
    Please do suggest me how to do this.
    Thanks & Regards,
    Sirisha.RS

    Hi Srisha,
    What i can suggest  you is to create a SAP Transaction iView and attach it to role where user can access and make the iview  invisible in navigation. In Webdynpro code  access the transaction by following way :
    WDPortalNavigation.navigateAbsolute("ROLES://portal_content/......<SAP Tran iView Path>",WDPortalNavigationMode.SHOW_EXTERNAL,
                   (String) null,
                   (String) null,
         WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
                   (String) null,
                   (String) null,
                   <parameters to be passed to transaction> ); 
    Hope it helps !!!
    Good Luck,
    Vasu

  • After log into SAP Portal, Terms&Conditions Window should open

    Hi Team,
    As per one of the requirement in my project, i have to develop below applicaiton.
    Requirement: Once user logged into portal & trying to access his role first time in a year, Terms & condtions window should open, once user accepted the terms& condtions,  user can access his role. if user entered into portal second time in a year, direclty can access his roles.
    For this: i have created webdynpro-java application with empty view & portal abstract portal component with terms & conditions text, then i have created  portal Iviews for both webdynpro-java application and abstract portal comonent, then i am calling abstract portal component Iview into webdynpro-java component controller wdDoinit() method via  WDPortalNavigation.navigateAbsolute() method. 
    Finally, i have assingned webdypro-java ivew to Test Role: once click on role it is calling Terms&Conditions pop window.
    Questions: 
    1. how can i use same Iview in user actual role, i mean, once user click on his role first time terms & codition window should open? after accepting terms & condtions only his role can access...
    2. how can i navigate from terms & condtions to his role?
    3. if user didn't accept terms&conditions, he can't access his roles, how can i handle this?
    4. how can i check, if it is user first login into portal or not in a year ? where i have to store this user data? what are the parameters i have to use?
    can you please help me on this?
    Thanks
    Sandeep.

    sandeep kumar wrote:
    > 1. how can i use same Iview in user actual role, i mean, once user click on his role first time terms & codition window should open? after accepting terms & condtions only his role can access...
    > 2. how can i navigate from terms & condtions to his role?
    > 3. if user didn't accept terms&conditions, he can't access his roles, how can i handle this?
    > 4. how can i check, if it is user first login into portal or not in a year ? where i have to store this user data? what are the parameters i have to use?
    I would redefine com.sap.portal.navigation.portallauncher.default component for your purpose
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/44/42c08f81ce2152e10000000a114a6b/content.htm
    so WDJ is not really an option here.
    To store whether display T&C screen you can use custom attribute on user profile 
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/44/0316d50bbe025ce10000000a1553f7/content.htm
    public class MyPortalLauncher extends PortalLauncher
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
              INodeList nodeList = request.getNode().getChildNodes();
              if(nodeList != null && nodeList.item(0) != null)
    //Check value in user profile whether he accepted T&C this year
    //if no - navigate to T&C page
                   IResource jspResource = request.getResource("jsp", "jsp/termsAndConditions.jsp");
                   response.include(request, jspResource);
    //else - process as usuall
                   response.include(request, nodeList.item(0));
              else
                   IResource jspResource = request.getResource("jsp", "jsp/noRoles.jsp");
                   response.include(request, jspResource);
    //implement
    public void onAcceptClick() throws PageException
    //set user attribute value if accepted, logoff is rejected

  • Clicking on a link in Mac Mail Firefox does not open in front of Mail--it used too. The link does open but I have to click on the Firefox icon in the Tray to bring it to full screen. Can you please help

    clicking on a link in Mac Mail Firefox does not open in front of Mail--it used too. The link does open but I have toclick on the Firefox icon in the Tray to bring it to full screen. Can you please help.

    Thanks Jason, I had the same problem and did exactly the steps above. Problem solved! You rock! :)

  • In Twitter & tweet contains TMI-when I click on link to open it I get an empty TMI.me screen. Started a few days ago. Tried Explorer & it works so it is definitely a Firefox problem. Can anyone tell me how to resolve it?

    When in Twitter & someone tweets using TMI - when I click on the link to open it I get an empty TMI.me screen. This is a new problem - started a few days ago. In frustration I tried Explorer today to see if I have the same problem there & I don't so it is definitely a Firefox problem. Can anyone tell me how to resolve it? Wld hate to have to use Explorer!

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My iPhone camera will not open up. When I press on the icon it open and closes quickly. When I open it from my home screen it reboots my phone. What should I do?

    My iPhone camera will not open up. When I press on the icon it open and closes quickly. When I open it from my home screen it reboots my phone. What should I do?

    Tried that and it still isn't working. Not sure if it's software thing but I just noticed when I swipe up my control center the flashlight option is not available as well. I'm not sure why this is. I have a 5s with the newest software. That's for the suggestion

  • Branching to DMS doc from SAP object trans screen(newly createdobject link)

    Hi
    I have created a new document type and been able to attach a new sap object to that DMS document and view it in the object link of that document in CV02n, Cv03N. My problem is how to display the document from sap object screen (vice versa is always possible)
    For standard object already available such linking is provided by SAP
    (like in mm03->Extras->Document data) but I have added a new SAP object say OIGV. How to browse to ducument data from o4v2, o4v3 transaction. Is there any generic strategy for enhancing each and every SAP object transaction screen to branch to its linked DMS document
    With best of regards
    Saurav Choudhury

    Hi Sai,
    regarding your description I would kindly ask you to go to transaction DC10 and mark a document type where the necessary object is linked under 'Define object links'. Choose the right object and display its details by double-click. Then you will see the field 'Create document' where you have to enter a value '1' (using transaction) or '2' (simple creation). Please enter a value and flag the 'Additional function' checkbox too.
    Based on your description I'm sure that you are using the 'simple creation' mode for this kind of object type in the DMS customizing. Please note that for the simple creation of documents mandatory fields (if set in customizing) cannot be filled and this will lead to error messages.
    Please note that the value "1" for the creation of documents is used to enable a user to simple attache a word file on object side without going to the transaction CV01n. Therefore the system behaviour is different then creating a document by CV01n and attaching a word file to it.
    However, you can change the behaviour how the document is created from equipment master transaction if you change the customizing in transaction DC10 like this:
    If you maintain the value "2" for creation of documents, the user is put to transaction CV01n for the creation of document info records. So maybe this would solve the issue.
    Best regards,
    Christoph

  • Mail   I inherited an iMac, OS X 20.6.8. The Mail system is corrupted.  I cannot close mail formats that opened to be written and sent.  I just get an unpleasant noise when I try to close these.  Also, I don't know what the outgoing mail link should be.

    RE: Mail  
    I inherited an iMac, OS X 10.6.8. The Mail system is corrupted.  I cannot close blank mail formats that opened to be written and sent.  I just get an unpleasant noise when I try to close these.  Also, I don't know what the outgoing mail link should be.
    Please help!
    M. Levine

    Quit Mail, Trash this file...
    Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions, test if things work OK in Safe Mode.
    Then move these files to the Desktop for now...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    /Users/YourUserName/Library/Preferences/com.apple.mail.plist
    Reboot & test.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

  • All of a sudded, my firefox browser isnt allowing my to click links and open pages, or open anything on the top area of the screen.

    All of a sudded, my firefox browser isnt allowing my to click links and open pages, or open anything on the top area of the screen. For example i go to my email and i cant click on inbox, send, create, folders, mark as unread. It is like this on every website?? Its really annoying i cant do anything becasue most sites have login at the top of the screen and i cant login to anything.

    That problem can be caused by the Yahoo! Toolbar that extents too much downwards and covers the top part of the browser window and thus makes links in that part of the screen not clickable.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    You can keep an eye on this thread:
    *[[/forums/contributors/707748]]

  • Link which should open up on a new browser

    Hi,
    I need to create a link on a self service page through OA frame work. My requirement is that when the user clicks on the link the new page should open up into a new browser. The link is embedded in a tip on the message. The tip is actually a AOL message.
    It should look like this...
    Tip: ----------------------------------------------------------------------------------------------------------.Click HERE to view.
    HERE should be the link to the new page.
    When I try to incorporate the blank or new tags in the html tags in the messgae itself and call it in JDEV...in the TIP...new page opens up in the same window.
    Have tried creating a LINK ITEM. But Placing the link ITEM on the page seems difficult. Are their attributes which control the placing, Fond, color of such LINK ITEMS?

    Welcome to the forums !
    Pl post your OS and EBS versions. Pl see if MOS Doc 416705.1 (How to Create Link With Customized CSS Style to Open a New Window?) can help
    HTH
    Srini

  • Providing link in alv report and on clicking it, a file should open

    Hi friends,
                     I have a requirement where in i have to create alv grid report, in which 1 of the column should
    display a link to a text file, which is on server.
    On clicking that link, relevent text file should open. So that user can see the data in file there only.
    I am trying to do this but not getting it.
    Kindly help.
    Edited by: kiran chorge on Apr 17, 2010 12:21 PM

    Hi PG,
    If I understood you have to handle some different links.
    Well,
    you can try to do this:
    1- when you fill the fieldcat structure you have to add --> fieldcat-hotspot = 'X', for each column you want to handle like hotspot.
    2- manage the method hotspot_click of class cl_event_receiver where you can handle your different excel files.
    Let me know,
    bye
    Alessandro

  • Drill on Staked Column chart should open another Stacked column in a new dashboard (Link) Falsh Variable helps?Any examples please?

    Hi,
         I have a stacked column chart which shows demand(past 12 months) and forcast (future 12 months) of various 10 different regions.X axis shows time period and on Y axis shows demand.
         When ever user clicks on a particular region, it should open another dashboard that shows demand drilled down to product level for same time period as above. It also should be another Stacked Column chart having time period on X axis and demand on Y axis but only for a selected region.
         Does Flashvariable passes data to the second chart?
         Please help.
    Regards,
    Nanda Kishore.

    Else, I want to have one more different approach.
    Region level demand Stack Chart occupies entire space of dashboard. When user selects a region in Stacked column chart, region chart is hidden and product level chart gets visible and there should be a close button the chart with the help of which user comes back to region chart and again drill down to view another drill down chart for product level demand for the other selected region.
    Please help.
    Regards,
    Nanda Kishore

Maybe you are looking for

  • PowerMac G3 no chime, no startup

    okay I press the power button, no chime yet I hear and see all the drives power up. I have replaced the battery recently and the machine actually booted up about a week ago. I tried replacing my video card with another one that I have in another mach

  • Cloning DB on a different server from RMAN Tape backup

    RDBMS version           : 11.2.0.2 on Solaris 10 Media Management Layer : Netbackup v7 I have done only backups to Tape. I have never done restore,recovery from Tape. We have a production DB named NEHPROD running on server qualmh214. Every Monday mor

  • Seemingly Redundant File in PSE11 Documents

    I notice a file called Adobe Photoshop Elements 11 which, when opened, reveals 2 folders: one named PSE11 which, upon opening, reveals a string of files called Setup1, Setup2, Data2, Data1, PSE11 Installer Package, Elements Installer and Elements Org

  • Photoshop Element 10  Resizing image

    I've tried to resize images after reloading my photoshop but, whatever I do and whatever size I do, the orginal remains the same. Any ideas ?

  • JMenu and doClick

    Hi; I have a class named as IntelliMenu which extends JMenu. I added speech recognition ability to the JMenu. However when the user says the action command of the menu ( for example "File") I can not make the menu items of this menu visible. Below is