Application help not connecting to SAP

Hi all,
When i click on the help->Application help link, i am not able to see the help documentation. That is, my sap system is not getting connected to application help.
Please help me...
Thanks...

Hello Madhukar,
well - did you configure the help?
Have a look at transaction sr13, there you can see whether anything was done.
You can find a description what to do at http://help.sap.com.
kind regards,
Carl

Similar Messages

  • Error " Could not connect to SAP R/3 system"

    HI:
    We have been having some problems with our portal lately and most recently the error that we get is "Could not Connect to SAP R/3 "
    The system landscape settings have not been changed.
    Thanks for your responses.
    Rachel

    When I log into the portal and launch the MSS iviews I get the error ( Could not Connect to SAP R/3).
    Similarly when I launch ESS I get the following error:
    I see that it is lost connection with our SAP R/3 HR system.  And system parameters that are available now
    are just SAP BW, SEM and CRM..
    So looks like we need to re-establish the connection..(?)
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    System 'pcd:portal_content/wwy.KeyStone/com.nrx.pct.vip.systems.sapr3' alias 'SAP_R3_HumanResources' not found. Please check the system object and the alias..
    See the details for the exception ID in the log file
    com.sap.portal.appintegrator.sap.IAC::IAC/SSOLayer
    Parameter Dump
    ApplicationParameter  
    ClassName  com.sapportals.portal.appintegrator.layer.SingleSignOnLayer
    CodeLink  com.sap.portal.appintegrator.sap.bwc.IAC
    DebugMode  false
    DebugMode.default  false
    DebugMode.type  select[false,true]
    ExportParameters  Authentication, LogonUser, RequestMethod
    ForcedRequestLanguage  
    IAC  PP_MY_Profilematchup
    MandatoryParameters  System, IAC
    NavPathUpdate  false
    NextLayer  IAC/ConnectionLayer
    OptionalParameters  ApplicationParameter, DebugMode
    SSO2Template  
    System  SAP_R3_HumanResources
    System.type  lookup:com.sapportals.portal.appintegrator.lookup.SystemLookup
    TopLayer  IAC/SSOLayer
    UserMappingTemplate  login=<MappedUser>&password=<MappedPassword>&~mysapcomusesso2cookie=0
    Wizard.MandatoryParameters  System, IAC
    Wizard.OptionalParameters  ApplicationParameter
    X509Template  
    buildTree  false
    com.sap.portal.reserved.iview.IsolationMode  URL
    com.sap.portal.reserved.iview.WizardURL  pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.sap.portal.defaultIViewWizard
    com.sap.portal.appintegrator.sap.IAC::IAC/SSOLayer
    MandatoryParameters
    System   SAP_BW SAP_BW_Q22 SAP_BW_SAND SAP_CRM SAP_CRM_SAND SAP_SEM 
    Internet Application Component (IAC)   
    OptionalParameters
    Application Parameters  
    DebugMode  No Yes

  • Error :Could not connect to SAP systemSAP_R3_PLM

    Hi,
    I have uploaded the Business Package for projects into portal and assigned the iviews to a user(test_abc)...when iam trying to view the iviews by logging in to "test_abc" iam getting the following error:
    <b>Could not connect to SAP systemSAP_R3_PLM</b>
    Our Portal is only connected to SAP BW system...Not R/3..
    Could any one please tell me whether we need to coonect to R/3 system to use this business packages?
    also there are some iviews like "BW reports","Select a BW report" etc....
    to use the above iviews do we require an R/3 system or Bw system....what is the data source for this iviews.?..iam confused ....Could some one help me on this issue?
    Regards,
    P.Navakanth

    The primary backend system for this package is indeed an 'R/3' system.  Other systems it used  (depending on which iViews you wish to use) are BW and CRM.  For exact versions of these systems which are supported please follow the link below:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/40171ac2-a86d-2910-8692-ece21472e097
    Please reward points if this helped  Thanks

  • My application can not connect to FMS2

    My application can not connect to FMS2
    hi,all, Some things block me. Who can you help me? I
    appreciate your support.
    Server: FMS 2.0
    Client : Flash 8 ,Flex 2.0.1
    I find Flash 8 code is fine. It can connect to FMS2 with on
    error. I can find connect show in FMS console.
    But I find AS3 codes can not connect to FMS2. Why? I am very
    puzzle...:-(
    Error messages is nse.info.code:NetConnection.Connect.Failed
    nse.info.level:error...help me please..Thank you very much.
    My codes below.
    ==========Flash 8 code =========
    stop();
    // Open connection to FlashCom
    client_nc = new NetConnection();
    // Handle status message
    client_nc.onStatus = function(info) {
    trace("Level: " + info.level + newline + "Code: " +
    info.code);
    client_nc.connect("rtmp://127.0.0.1/tutorial_text");
    // Initialize the typing stage
    TypingStage.text = "";
    // Create a remote shared object. client_nc.uri is the URI of
    the
    // NetConnection the shared object will use to connect to the
    // server. I.e., the one just created.
    text_so = SharedObject.getRemote("sharedtext", client_nc.uri,
    false);
    // The following is very important, nothing happens otherwise
    text_so.connect(client_nc);
    // Each time something changes in the shared object, the
    server
    // sends out a synchronization message. This onSync handler
    // updates the movie based on the information.
    text_so.onSync = function(list) {
    // Update the textArea in the typing stage with the latest
    // text from the shared object. The 'for' loop condition
    searches
    // through the list of changes, and the 'if' condition
    ensures
    // that we apply the relevant change only if someone other
    than
    // this client has changed the value.
    for ( var i = 0; i < list.length; i++ )
    if ( list.name == "textValue" && list.code !=
    "success")
    TypingStage.text = text_so.data.textValue;
    break;
    // Update the shared object every time the user types in new
    text
    TypingStage.onChanged = function()
    text_so.data.textValue = TypingStage.text;
    ===============Flex2
    代码如下====================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creati>
    <mx:Script>
    <![CDATA[
    import flash.net.*;
    import mx.controls.Alert;
    import flash.events.SyncEvent;
    private var client_nc:NetConnection;
    private var text_so:SharedObject;
    public function init():void
    flash.system.Security.allowDomain("
    http://127.0.0.1");
    rte.text = "";
    public function ioEvent(ioe:IOErrorEvent):void
    rte.text = rte.text+"/n"+" io:"+ioe.text;
    public function connectStatus(nse:NetStatusEvent):void
    //trace("Level: " + nse.info);
    rte.text = rte.text+"/n"+" nse.info.code:"+nse.info.code+"
    nse.info.level:"+nse.info.level;
    public function click():void
    client_nc = new NetConnection();
    client_nc.addEventListener(NetStatusEvent.NET_STATUS
    ,connectStatus);
    client_nc.addEventListener(IOErrorEvent.IO_ERROR,ioEvent);
    rte.text = "connect rtmp://127.0.0.1/tutorial_text ";
    client_nc.connect("rtmp://127.0.0.1/tutorial_text");
    ///tutorial_text
    text_so = SharedObject.getRemote("sharedtext",
    client_nc.uri, false);
    text_so.addEventListener(SyncEvent.SYNC,syncShareObject);
    text_so.connect(client_nc);
    public function syncShareObject(se:SyncEvent ):void
    var list:Array = se.changeList;
    var i:int;
    for (i = 0; i < list.length; i++ ){
    if ( list.name == "textValue" && list.code !=
    "success"){
    rte.text = text_so.data.textValue;
    break;
    public function changeRTE():void
    text_so.data.textValue = rte.text;
    public function disconnect():void{
    if (client_nc.connected){
    client_nc.close();
    ]]>
    </mx:Script>
    <mx:RichTextEditor id="rte" x="23" y="19" width="626"
    height="337" cornerRadius="20" change="changeRTE()">
    </mx:RichTextEditor>
    <mx:Button x="105" y="381" label="Start Connection"
    width="204" click="click()"/>
    <mx:Button x="317" y="381" label="Disconnect" width="209"
    click="disconnect()"/>
    </mx:Application>

    Action Script uses AMF3 format to communicate. However, Flash
    Media Server 2 only understands the AMF0 format.....
    Do the following:
    var client_nc:NetConnection = new NetConnection();
    client_nc.objectEncoding = flash.net.ObjectEncoding.AMF0;
    client_nc.connect("rtmp:/FLEX");
    This should connect .... however, you might run into other
    issues like me... I am having issues with NetStream after that ...
    however, let me know if this works ...

  • "The PowerPivot service application could not connect to the Analysis Services instance"

    Hi
    I am baffled by this one.  I have a PowerShell script I have built up to install PowerPivot, which I have put together by reading various blogs and by picking apart the scripts that come with the PowerPivot installer.
    However, once I have built the service app and installed/activated the solutions and features, I get the error "The PowerPivot service application could not connect to the Analysis Services instance" when trying to use it.  I can't find any
    more detailed messages, even with verbose logging turned on.  SSAS\PowerPivot is of course installed and connected to Excel as it should be.
    I have tried running the PowerPivot for SharePoint validation tool and it doesn't find anything.
    If I install PowerPivot using the PowerPivot for SharePoint installer, then delete the service app and rerun my scripts, everything then works fine.
    So there is something the installer is doing that I am not, but I cannot for the life of me figure out what it is.  I though it might be permission related, but the official installer installs the service under the farm account, not my BI service account. 
    Ahaa, I thought, but when I then reinstall the service myself with my scripts, using my BI service account, the service app then works, so I don't think it can be permission related.
    Doing a Google search on that message pulls up only one old post (repeated a few times), which talks about using a domain account for the SSAS instance instead of a Local System account - I am using the same domain service account for SSAS, Excel and
    PowerPivot already, so that doesn't help me much.
    Does anyone have any ideas for me or suggestions on how I might proceed?
    Andrew vR

    Did you run the "Run PowerPivot for SharePoint Configuration Tool" after installing PowerPivot and did that work okay?
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • TS1717 Hi, my iTunes application is not connecting to the iTunes store. It is coming up with the following error message "we could not complete your itune store request. An unknown error occured (11222)" Can you please assist?

    Hi, my iTunes application is not connecting to the iTunes store. It is coming up with the following error message "we could not complete your itune store request. An unknown error occured (11222)" Can you please assist?

    Hi Laura-Wedders,
    Thanks for visiting Apple Support Communities.
    On August 7th, some users may have been unable to make purchases from the App Store, iTunes Store, Mac App Store, or iBookstore. Apple worked quickly to resolve these issues, however you may have experienced them.
    To check the current status of these systems please see:
    Apple - Support - System Status
    http://www.apple.com/support/systemstatus/
    If you are still experiencing issues, you may want to troubleshoot with the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    All the best,
    Jeremy

  • Iwc application does not connect to IM server[JCS6 vmware image]

    iwc application does not connect to IM server[JCS6 vmware image].
    In the iwc application there is in right side menu the buddy list; this always displayed the message: "Connecting..." and in the log there is this message:
    [12 Jan 2009 09:35:02,317] ERROR httpbind [Thread-23] Error opening stream to server: chimaera.varrius.org : 5222
    [12 Jan 2009 09:35:02,317] INFO httpbind [Thread-23] Component specified is not known : chimaera.httpbind.varrius.org
    org.jabberstudio.jso.StreamException: Component specified is not known : chimaera.httpbind.varrius.org
         at net.outer_planes.jso.AbstractStream.firePacketTransferredEvent(AbstractStream.java:697)
         at net.outer_planes.jso.AbstractStream$Input$1.addExtendedData(AbstractStream.java:116)
         at net.outer_planes.jso.AbstractStream$Input.process(AbstractStream.java:204)
         at net.outer_planes.jso.AbstractStream.process(AbstractStream.java:1176)
         at net.outer_planes.jso.AbstractStream.openInbound(AbstractStream.java:950)
         at net.outer_planes.jso.AbstractStream.open(AbstractStream.java:890)
         at com.sun.im.gateway.http.ComponentSession.createStream(ComponentSession.java:558)
         at com.sun.im.gateway.http.ComponentSession.connectAndAuthenticate(ComponentSession.java:307)
         at com.sun.im.gateway.http.ComponentSession$ConnectRunnable.run(ComponentSession.java:714)
         at java.lang.Thread.run(Thread.java:595)
    How can I resolve the problem?
    Thanks in advance.

    Hi,
    Have you configured the IM server for convergence to talk.Refer the following doc for the same - http://wikis.sun.com/display/CommSuite6/Convergence+1.0+Initial+Configuration#Convergence1.0InitialConfiguration-ConfigureIMComponentstoEnableCommunicationwiththeInstantMessagingServer
    HTH,
    Swetha

  • Warning: MDB application is NOT connected to messaging system on console

    An application works on weblogic 8.4 recently upgraded to weblogic 10.3 with Foriegn JMS server configuration.
    <foreign-server name="Fax JMSServer">
    <notes>The Foreign JMS Server Confirm uses to talk to Fax</notes>
    <default-targeting-enabled>false</default-targeting-enabled>
    <foreign-destination name="FaxReplyQueue">
    <local-jndi-name>com.foo.jms.FaxReplyQueue</local-jndi-name>
    <remote-jndi-name>com.foo.mq.FaxReplyQueue</remote-jndi-name>
    </foreign-destination>
    <foreign-destination name="FaxRequestQueue">
    <local-jndi-name>com.foo.jms.FaxRequestQueue</local-jndi-name>
    <remote-jndi-name>com.foo.mq.FaxRequestQueue</remote-jndi-name>
    </foreign-destination>
    <foreign-connection-factory name="mq-jms-ConnectionFactory">
    <local-jndi-name>com.foo.jms.FaxConnectionFactory</local-jndi-name>
    <remote-jndi-name>com.foo.mq.FaxConnectionFactory</remote-jndi-name>
    </foreign-connection-factory>
    <initial-context-factory>com.sun.jndi.fscontext.RefFSContextFactory</initial-context-factory>
    <connection-url>file:/C:/bea/mqJNDI</connection-url>
    </foreign-server>
    Upon deployment, an warning message "MDB application is NOT connected to messaging system" occurs on the weblogic 10 console for one of the MDBs. In log file you can find the following message:
    <Oct 27, 2009 4:35:15 PM EDT> <Warning> <EJB> <BEA-010061> <The Message-Driven EJB: FaxNotificationBean is unable to connect to the JMS destination: com.foo.jms.FaxReplyQueue. The Error was:
    Can not get distribute destination information. The destination JNDI name is com.foo.jms.FaxReplyQueue, the provider URL is null>
    The following is the annotations of the MDB in workshop.
    @ForeignJmsProvider(connectionFactoryJndiName = "com.foo.jms.FaxConnectionFactory")
    @JndiName(remote = "com.foo.faxmgr.ejb.FaxNotificationBean")
    @MessageDriven(defaultTransaction = MessageDriven.DefaultTransaction.NOT_SUPPORTED,
         destinationJndiName = "com.foo.jms.FaxReplyQueue",
    ejbName = "FaxNotificationBean",
    durable = Constants.Bool.FALSE,
    transTimeoutSeconds = "0",
         destinationType = "javax.jms.Queue",
         initialBeansInFreePool = "1",
         maxBeansInFreePool = "10"
    I googled and found the same questions asked before but no working answers. Does anybody know what's wrong with my MDB? BTW, it works the same way in weblogic 8.4 platform.
    I even tried to add resource refs as below but the same warning message is still there. TIA.
    @ResourceRefs(
         {@ResourceRef(name="com.foo.jms.FaxConnectionFactory",
         jndiName="com.foo.jms.FaxConnectionFactory", type="javax.jms.QueueConnectionFactory",
         auth=ResourceRef.Auth.CONTAINER, sharingScope=ResourceRef.SharingScope.UNSHAREABLE),
         @ResourceRef(name="com.foo.jms.FaxConnectionFactory",
              jndiName="com.foo.jms.FaxConnectionFactory", type="javax.jms.QueueConnectionFactory",
              auth=ResourceRef.Auth.CONTAINER, sharingScope=ResourceRef.SharingScope.UNSHAREABLE)}
    )

    Hi,
    We have had this same issue and the problem was diagnosed as a Oracle listener.ora issue with the OIM database connection not beining configured to use it's 1522 connection but using the default 1521 so it was just sat there not knowing that it's port should be 1522.
    Regards,
    Simon

  • Camera not working in Photobooth-in use by other application or not connect

    Upon entering photobooth, the internal camera is reported to be either in use by another application or not connected. It doesn't appear to be working in other applications either. Any suggestions?

    Does the camera have a setting for plain old DV output. (and 4.3 three if you don't want it Letter-boxed)
    iChat tends not to see anything else from Firewire cameras.
    Have you tried Shutting down the Computer and restarting ?
    Do a full shut down and use the power Button to Restart (not the Restart Option)
    If that does not work, then try the second part of this FAQ by Gulliver
    http://discussions.apple.com/thread.jspa?messageID=607640&#607640
    It suggest running the CRon Scripts with OnyX or Cocktail (MacJanitor unfortunately does not work in Leopard) The others come as Trials and do other things.
    9:01 PM Monday; June 16, 2008

  • My Ibooks application will not connect to the iBooks store

    my iBooks application will not connect to the iBooks store

    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    In the upper left corner of the window, you should see a list headed Keychains. If not, click the button in the lower left corner that looks like a triangle inside a square.
    In the Keychains list, there should be items named System and System Roots. If not, select
              File ▹ Add Keychain
    from the menu bar and add the following items:
    /Library/Keychains/System.keychain /System/Library/Keychains/SystemRootCertificates.keychain
    Open the View menu in the menu bar. If one of the items in the menu is
              Show Expired Certificates
    select it. Otherwise it will show
              Hide Expired Certificates
    which is what you want.
    From the Category list in the lower left corner of the window, select Certificates. Look carefully at the list of certificates in the right side of the window. If any of them has a a blue-and-white plus sign or a red "X" in the icon, double-click it. An inspection window will open. Click the disclosure triangle labeled Trust to disclose the trust settings for the certificate. From the menu labeled
              Secure Sockets Layer (SSL)
    select
              no value specified
    Close the inspection window. You'll be prompted for your administrator password to update the settings.
    Now open the same inspection window again, and select
              When using this certificate: Use System Defaults
    Save the change in the same way as before.
    Revert all the certificates with non-default trust settings. Never again change any of those settings.

  • Solution required for application help link connection problem in help menu

    Hi All,
    I have problem in application help link of help menu in menu bar in sap system.It is not opening for sm36 and sm 37 T-code.
    Kindly provide your valuable suggections.
    Regards,
    Pankaj

    Hi Pankaj,
    You have posted on a wrong forum.  Here is SAP Business One System Administration forum that dedicated to SAP Business One - an appilication for SME.
    You may check this thread and post it there if it is related:
    Get Tcode Menu Area
    Thanks,
    Gordon

  • Bsp applications are not connecting to WEB

    HI GURUS,
      I  am trying to execute bsp application. but i not connecting to the web.
    can any one tell me how to configure .
    thanks

    Their could be any reason for that. Please tell us which message you are getting.
    But still you can try some of these things.
    1. Check the server IP configs in your Host File in your system windows files.
    2. Check in transaction SICF  weather your application is activated or not.
    3. Check other required services in SICF , those should be activated.
        Follow the path tocheck..  SAp->BC->BSP->SAP-> 
    Ask your Admin person regarding this issue.

  • FTP server not connected from SAP

    Hi Expert,
    I want to access FTP server thru SAP.But when I try to check RFC Destination SAPFTP connection test. It's gives error 'Error Details     timeout during allocate / CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456 Timeout dur'
    What will be the reason.what setting I have missed to set.
    Can anybody give me some tips of setting for connection of SAP to FTP server.
    To complete these requirement what will be the prerequisite and what will be the steps to complete these task.
    Answer should be rewarded.
    Thanks in advance.

    Hi,
    SAPFTP runs on the client (local PC), and SAPFTPA runs on the application server.
    If you are connecting from your SAP application server to another remote host, then you use SAPFTPA.
    If you are connecting from your PC to the remote host, use SAPFTP.
    Please confirm about it.
    These are standared FTP programs which allows you to FTP from within SAP.
    The SAPFTP.EXE should be pre-installed in the users local harddisk before you can used this functions.
    Do a check first by executing program RSFTP005. It will tell you whether it can detect the SAPFTP.EXE program.
    RSFTP001 - SAPFTP version
    RSFTP002 - Execute FTP Command
    RSFTP003 - Test
    RSFTP004 - FTP copy
    RSFTP005 - SAPFTP check
    RSFTP006 - FTP command list
    RSFTP007 - Test FB:FTP_SERVER_TO_R3 / FTP_R3_TO_SERVER
    RSFTP008 - Test FB:FTP_CLIENT_TO_R3 / FTP_R3_TO_CLIENT
    Thanks
    Swarup

  • Creating an Application module not connected to any database

    Hi,
    In my application, we have only a custom VO, created as per http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b25947/bcadvvo008.htm. In this VO, we are reading a CSV file.
    My question is, as my application does not require any database as its source, I dont want to have any database associated with my ADF application. However, when I create the AM, it doesnt let me go ahead till I give it a database connection. Is there a way to circumvent this, or remove the database connection related code after creating the AM in this way.
    Thanks,
    Amit

    Wow, beautiful...just what the doctor ordered !
    Thanks John !
    One note, for people who try this - in the link, Lucas is using http://127.0.0.1:8988 etc to specify the url to the csv...but i guess for that to work, you need to have some kind of web server running.. But if you just have a local file and right now, no web server to use 127.0.0.1, you can use file:///c:/test.csv, where the csv is sitting in c drive.
    I got this idea from http://www.oracle.com/technology/products/jdev/howtos/urldatacontrol/urldatacontrol.html...this one is cool too, here they have used this url data control to read rss !

  • PUZZLING, help, not connecting.

    my ipod classic, 5th generation is not connecting to my pc (windows 7, laptop)
    it connects to my moms windows xp laptop just fine.
    it shows up on deivce manger, though not in my computer, nor in itunes.
    i disconnected it, rebooted it, restarted my pc a countless number of times. nothing. force booted into hard disk mode...
    ive gone through the whole troubleshooting section on the site, including a countless number of threads, i've reinstalled itunes from scratch, stopping/starting apple mobile device services, ive honestly tried just about everything... please help.
    thank you.

    the ipod, i see, is listed as a usb mass storage device, though not showing up in "my computer".
    I've just formated the thing using windows xp on an old laptop, still doesnt show up on this pc; on top of reinstalling itunes, pretty much eliminates the option of something being wrong with the itunes client.
    i see the ipod is connected is connected in diskmanager, though when i attempt to mount the disk using the GUI i receive an error along the lines of "Disk Management console view is not up-to-date".... the command line interface brings me no further results, as i cannot mount a disk, rather it must be a volume, though it does not show up as a volume.
    i have work now, hopefully ill figure out when i get back. Thank you everyone! 

Maybe you are looking for

  • What's the best way to pack a small website for the iPad?

    I have my little personal archive in HTML and images and a few audio & video clips. Let's say it is 10GB. I want to pack it into an App for offline viewing. Any suggestions? I'm will to do a lot of glue translation hacking to make something good. Or

  • New Bank A/C Creation Error

    Hi everyone, While creating a new bank Account i am getting following error.... "Unable to verify the value entered into the OrgName field. Please select the List of Values icon for this field to select a valid value." this error actually arrises whe

  • Incorrect TimeStamp in Generic Delta (UTC Issue)

    Hi, I have a problem regarding a generic delta extractor. The pointer stored in rsa7 (ROOSGENDLM table) is not UTC but system time. As standard tables store the timestamp using UTC format the delta extractor is not picking up the correct data. Do you

  • HT201209 i tunes card redemtion

    I have a credit on my itunes account, but was charged on my credit card instead of my itunes money?

  • How to Activate GOS button in HR transactions like po13,pp02,pp01 etc

    Hi guys, Can you please help, could you please give me so guyide lines on how to activate the GOS button in HR transactions like po13,pp01,pp02 etc. The GOS button is not visible at all in our system. I have rad various threads but they all assume th