Call a smartform in the SAP R/3 from portal

Hi Friends
My requirement is to call a smartform in SAP R/3 from a portal application. Please guide on how to connect to SAP R/3 and print the smartform from portal.
Regards,
Saran

Hi,
You can create a SAP-Tocde iview in portal for the T-Code SAMARTFORMS....
Read this blog on how to Connect to R3 thru Portal...
Configuring EP for connecting to SAP R/3
Regards,
Srinivas

Similar Messages

  • Call a smartform in the SAP system from portal

    Hi Friends
    My requirement is to trigger a smartform in SAP, from portal. Please guide me on how to achieve this.
    Thanks
    Saran

    Hi,
    I have an idea but dont know how far its possible for you.
    You can call smartforms function module from portal and then convert that to pdf file which can be displayed in a pdf control on the portal.
    Check whether this approach is possible.
    Regards
    Karthik D

  • Call Smartform in backend (ECC 5.0) from portal (EP 6.0)

    Hello out there,
    we are using an solution with interactive forms (PCR) where users can run hiring processes in the portal.
    When ending an hiring form we would like to show a temporary version of the data provided during the hiring (with interactive forms). This temporary version shall be a simple Smartform, showing the hiring data.
    This smartform shall be opened in a new browser window and be viewed as a PDF.
    From the portal we trigger (with a link) a remote-enabled FM in the backend (ERP) which calls the smartfrorm.
    Problem here is:   The smartfrorm is triggered in the backend, but from the portal
                               no popup is shown.
    Can anyone give us a hint here ?
    Thank you for any help !
    Best regards,
    Robin

    Dear Jaffer,
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, QM.....
    Click on Search
    Then it displays the Release Version and the Delta Functionality. which can be downloaded to a word document if required.
    and also check the release notes of ECC 6.0 in service.sap.com.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • How to create the integration with webmethods from portals

    Hi Experts,
    I got a requirement to integrate the webmethods system from my portal server.....
    If anybody have documents kindly circulate the same to [email protected]
    Higher points will be rewarded for the each useful inputs....
    Thanks In Advance,
    Jasmine

    HI jasmine,
    For integrating webmethods you can use application integrator iViews.
    For Step-By-Step Guide to implement Application Integrator
    refre this weblog.
    Re: Integration with Java applications
    And for Integrating your Web Front-ends into the SAP Enterprise Portal using the Application Integrator
    refre this weblog
    Integrating your Web Front-ends into the SAP Enterprise Portal using the Application Integrator
    And for refrence use this link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/70/5a3842134bad04e10000000a1550b0/frameset.htm
    PS: If helpful award points
    --Deepak.

  • Workbook doesn't fit the window when launched from Portal

    Hello SCNer's,
    When a workbook is launched from Portal it opens to the right side of the window and is minimized.
    It fits the window once maximized, are there any settings available which can defaultly set the workbook to fit the window.
    Thanks SCNer's.

    Hi,
    Do you mean by executing the Query in portal or executing the Workbook.
    Protal setting for the number of columns/rows are decided by 0ANALZER_PATTERN web template. Which is the default web template.
    Check the settings in the Default Web Template used.
    Thanks & Regards,
    Namrata

  • Debugging the webdynpro abap application from portal.

    I  developed a  WebDynpro  application and integrated in portal. I have to catch some portal events.For that i have written some code in my application. I tried to debug the application from portal  by using all the available break-point types.but we could not .
    Anybody have an idea how to debug a WebDynpro  application from portal.
    Thanks,
    Kumar.

    Hi
    Few links to check:
    External debugging is not working
    Re: Debugging Abap webdynpro appln
    Re: Unable to Debug WD ABAP application
    Dedug is not working in Production Server.
    a) Check on number of R/3 sessions opened at a time.
    b) Check that user ID configured in portal using System Mapping Under 'Delegate User Administration' is the same user for which you are setting external breakpoint in backend system.

  • Calling a method in the Custom ADF component from JSF page

    HI.
    I have created some custom compoents by extending the core ADF Components. Like i have a ComboBoxDefault component with it's ComboBoxDefaultTag.java and Controls.tld file.
    Now my requirement is i want to bind my label to this component from the JSF page. like
    <fwcontrols:label binding="#{listComponents.comboBoxDefaultLabel}" id="label1"/>
    <fwcontrols:comboBoxDefault binding="#{listComponents.cmbLocales}"
    value="en_GB" id="comboBoxDefault" autoSubmit="true" label="label1">
    <f:selectItems value="#{listComponents.locales}"/>
    </fwcontrols:comboBoxDefault>
    In my JSF page the label will have an id, and that id will be specified in the label tag of the component.
    In Tag.java file i have overrided the setProperty(FacesBean facesBean). In this method i have bind all my properties. In core JSF the setProperty method is provided with the UIComponent parameter, so i can call my method in component also. Which is not in case of ADF Faces.
    My main point is how i can call my method setLabel() which is in ComboBoxDefault.java so that i can set the label.
    Thanks in Advance.

    Thanks for all your replies. I want this kind of a functionality because Im trying to invove a DC (Child DC) from a Parent DC such that the Child DC's view is displayed onto the view container of the Parent DC. I have embedded using 'interface view of a component instance' in the Parent Window and am able to create the component and set usage though the onPlugDefault of the Child View.
    But I observe that when i make a call from the parent, the flow is like this:
    1. The wdDoInit of the Child Component Controller gets triggered first.
    2. Then the wdDoInit of the Child's <b>VIEW</b> gets triggered
    3. and <b>THEN</b> the onPlugDefault of the Child Component Interface View
    What I had actually wanted was to Fire onPlugDefault where Im calling a method LoadData(), after which the Child DC's view must be triggered so it can display the fetched data.
    What is actually happening is the view gets displayed, but no data is displayed in the view.
    Right now I have just given a work around where Im triggering <b>LoadData()</b> of the <b>COmponent COntroller</b> from the <b>wdDoInit</b> of the <b>VIEW</b>.
    Is there a better way to do this? I find it strange that I have to load the Data from the view.
    Thanks
    Jack

  • How can get the SAP MDM downloaded from  SAP Marketplace?

    Hi Experts,
    I have tried to download the MDM from the below link -
    http://service.sap.com/swdc
    > SAP Software Distribution Center
    > Download
    > Installations and Upgrades
    > Entry by Application Group
    > SAP NetWeaver > SAP MDM > SAP NetWeaver MDM 7.1
    But it is not showing there, can anyone please help me to find out so that I can start working on it.
    another thing , I am basically  from SAP PI technology, if you can tell me if it is possible for me to work with MDM and also please provide me some basic starter documents.
    Thanks to all of you
    Sugata Bagchi

    Hi Sugata,
    Please find the below links for your informationa and downloading of SAP-MDM 7.1
    https://websmp109.sap-ag.de/~sapidb/011000358700001827872008E
    Then if you want to know about the MDM7.1,find below link for quick review on MDM
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/index.htm
    Hope it is useful!
    Thanks
    Yugandhar

  • Repricing the SAP contract generated from follow up doc in copy control

    Hi,
    I am facing issue with the conditions copy at item categories level at the time of follow up document in copy control.
    The challenge is like this:
    There is an option for the conditions copy for line item level upon which the corresponding pricing is generated.
    D -- Copy all Conditions
    C -- Copy manual conditions
    The issue here is at config level they will maintain only Copy manual conditions depending upon whether it is a follow-up / Copy it should change the behavior as Copy all Conditions.
    I tried to do this with crmv_event(After with reference::50) though but the problem is its triggering after the pricing got generated.
    Welcome you ideas to resolve the issue.
    Thanks & Regards,
    Madhu J

    Hello Ravikanth
    With status management it's not possible to prevent the creation of follow-up documents in CRM.
    You have to use the badi CRM_COPY_BADI. Here the exception DO_NOT_COPY must be raised. But it's not possible to gray out the path of the follow-up transactions e.g. for 'varian quote'.
    I hope this could be helpful.
    Best regards,
    Maggie

  • Help, connecting to remote SAP R/3  from Portal 6.0

    -Portal 6.0 (my_host)
      http://my_host:50000/irj/portal
      J2EE Engine 6.40 PatchLevel 87289.311
      Portal 6.0.9.0.0
      KnowledgeManagementCollaboration 6.0.9.0.0 (NW04 SPS09)}
    -Remote Back-End system R3 4.7
      saprouter:        ip_router
      application Host: ip_application
    My steps:
    1) Create SAP R/3 Dedicated System
    Connector
    Application Host  /H/ip_router/S/3299/H/ip_application
    Logical System Name: D11
    Remote Host Type: 3
    SAP Client: 900
    SAP System ID (SID): D11
    SAP System Number: 00
    Server Port: 3200
    System Type: SAP_R3
    Server Port: 3200
    User Mangment
    Logon Method:      UDPW
    User Mapping Type: admin, user
    2) Add system alias : syst1
    3) User Mapping:      syst1
    4) Create SAP Transaction iView
       SAP GUI Type: SAP GUI for Windows
       System:       syst1
    <b>Run Error
    "Partner not reached (host XXX.XX.XX.XXX, service 3299)
    WSAECONNREFUSED: Connection refused "</b>
    XXX.XX.XX.XXX  it's ip for my_host

    Hi Arun
         Can pls check any error in the entries
    System Object
    RC folder4 – new – system - SAP R/3 dedicated – next – System Name(system1) – next – finish – open for editing
    Property category – Connector –
    App Host : asapd011.erp.kodak.com
    SAP System name : global
    Remote host type : 3 
    SAP Client : 033
    SAP System ID: D11
    SAP  Number : 48
    SAP Server Port : 3200
    System Type : SAP_R3
    SAVE
    System Alias
    In the Display select – System Aliases -  Alias name ( sysalas) – add – select - save
    In the Display select – Object
    Logon
    Property Category – User management -  logon Method -  UIDPW  - User Mapping Type – admin, user – SAVE.
    User mapping
    User administration – User Mapping – search  admin in users – start – System – select  (alias) – sysalas  - user ( admin ) – password ( admin)  - SAVE
    Iview Creation
    Content Administration – Portal Content – folder4 – RC – New – iview – SAP Transaction iview – next – iview (iview1) – next – sap gui for windows – next - System (sysalas)  - Transactin Code (se31) – next – open for editing - - finish – save.
    Error:
           partner not reached to server port 3200
    regards
    Sanjay

  • FIMMA - sync engine - not reading the new custom resource from portal

    I added a new custom resource in FIM portal. I added 5 attributes to it. FIMMA refresh schema is not reading the new schema. It says schema is uptodate. I tried IIS reset and even all server restarts. What am I mising?

    Did you add the resource to the synchronization filter? I believe it's administration->all resources->synchronization filter. Then do the IIS reset and sync engine schema update. Only resources in that filter can be seen by the sync engine.
    Mark
    Mark Creekmore - BlueVault Software http://www.bluevaultsoftware.com

  • Calling SAP GUI Client from a Java Webdynpro app.

    Hello experts,
    We would like to call the SAP GUI client from a java WebDynpro application running without portal or ITS. Can it be done by having a web link, with mime registration in internet explorer to kick off the SAP GUI ? (similar behavior with a SAP favorite link saved on the desktop).
    many Thanks.

    Hi,
    Webdynpro possibilities:
    1. You can try to use LinkToUrl.
    with reference to file://<exefile> or your weblink with the mime type (possibly some java coding can be required; I can try to help).
    2. other option is to use IFrame and you can use either href to your exe or weblink
    Web Explorers:
    1. IE: It should work. if you point to exe file popup window will be displayed asking for action (run, save, cance).
    2. Firefox: the only way I know to make it work is to modify nsHelperAppDlg.js file (if you need Firefox I can tell you how to modify the file).
    Kind Regards, Jack

  • Why doesn't the iPhone 5 have the call bar feature like the 4S does?

    Why doesn't the iPhone 5 have the call bar feature like the 4S does?

    From the Swype website:
    Why isn’t Swype available for iPhone/iPad/BlackBerry/Windows Phone?
    Due to the technical design of some operating systems, it is not possible for third party keyboards (such as Swype) to be offered at this point in time. Please communicate to your device/OS manufacturer that you’d like to see Swype available as a keyboard option!
    Here is the link:
    http://www.swype.com/about/swype-faq-3/
    Cheers,
    GB

  • Assign/Map X509 certificate to the SAP User

    Hello Everybody,
    I am accessing SAP R/3 Function module from the outside(JAVA Application) using JCO connections.
    I got sucess doing this using Basic authentication.
    I have passed fix username and password to connect to the SAP R/3 from my JAVA program.
    But, now i want to pass X509 certificate from my Java application to SAP R/3 for authentication. I have completed my work from JAVA side. But at SAP R/3 side i don't know where to add this X509 certificate and how to map this certificate to perticular user in SAP R/3.
    If anyone knows then please help.
    Thanks in advance,
    Bhavik

    Hi Sanjeev,
    Thanks for your reply.
    I will do that. and let you know shortly.
    Regards,
    Bhavik

  • Exchange the SAP logo image in masthead with some othe image.

    Hi Experts,
    Actually i need to change the image of SAP logo in the masthead of the portal and i have gone through many forums ,blogs but didnt get the exact way of exchanging the logo with my  company logo can any one help me please.
    Thanks& Regards
    Pooja Gehani

    Hi Pooja,
    If you unable to change branding image thro Themes then try in this way..
    steps for importing the existing masthead:
    1. Administration -> Support -> Support Desk -> Portal Runtime -> Browse deployment
    2. navigate to ROOT/WEB-INF/deployment/temp
    3. download com.sap.portal.navigation.masthead.par.bak
    4. import to developer studio (File -> import -> par)
    5. Open the HeaderiView.jsp file from PORTAL-INFjsp there you can find the code, here give the image name what you want to place
    <TD nowrap><img src="<%= componentRequest.getWebResourcePath() +"/images/image.gif" %>" border="0"></td>
    6. Finally repack as Par and deploy in portal
    Please check the following blogs for more info
    Portal Branding - Go beyond portal themes
    Re: Pictures in Masthead
    plz reward points if helps
    cheers
    dev

Maybe you are looking for

  • How to send an e-mail to sold to party on creating a sales order?

    Hi Please tell me the procedure of configuration so that an email will be sent out to the sold-to party on creating the sales order. I've created the action profile by using order_messages. Also the transaction type: ISBB have been used. Still the ma

  • Duplicate Entries when generating Essbase Log Analyzer Chart

    Hi, In EAS Console when i right click -->Sample application -->Generate Log Chart and then go View Log Charts i can see duplicate entries below the chart area, when i click refresh. Has anyone come across this issue before? Essbase Version 9.3.1 OS S

  • Importing website from mobileme

    Hi I have recently reformatted my hard drive, and have have lost my site file in iweb. my page is still up on mobile me, is there a way to import my site so that i don't have to recreate it?

  • WRT54GL admin help

    Hi guys, for some reason when i go to my routers admin page it comes up all messed up like missing text and no images. theres no links on the page or anything, i have reset my router and have cleared all internet history cookies etc. can you please h

  • Using AirTunes with other applications

    What I want to do is to stream the audio output from the 2 laptops in my house (MacBooks with Leopard) wirelessly to a hi-fi. I know an AirPort Express will do this with iTunes, but I don't think it will work with other applications, which is what I