GOS Button in FB02 - GOS De-activated?

Hi Experts...
Houston i´m having a problem. We need to show the GOS button or at least navigate by menu in order to access to the "workflow history" of the financial document. I think that GOS services has been deactivated for some objects in this system for performance and space issues, pls, do you know where this activation can be done?.
Thanks in advance,
Regards,
Maquiavelito.

Hi
Another reason why the GOS is missing in FB02 could be that your user is defined as a User Type "Service User" in SU01 under the "Logon Data" tab. 
If that's the case then try to change the user type to "Dialog User" (and from a security point of view  -  always use the type Dialog User for your Dialog users ).
For some reason GOS is never available for service users.
Regards
Morten Nielsen

Similar Messages

  • The submit button in compressor wont become active , even after I assign...

    The submit button in compressor wont become active , even after I assign presets and destinations to source files. Ive read compressor help and I cant find anything that relates to this problem. Could anyone please help me out, id really appreciate it.
    permahex
    IBG4 - MBP   Mac OS X (10.4.6)  

    Please list what exactly you're doing and what versions of the relevant software you're using. All those details do matter.

  • Trying to print a book with Aperture 2.1.4, everything went well until the final step "uploading files to server" -- it's been spinning for an hour, "status" still reads 0%, "pause task" and "cancel task" buttons are grayed out in Activity window.

    everything went well until the final step "uploading files to server" -- it's been spinning for an hour, "status" still reads 0%, "pause task" and "cancel task" buttons are grayed out in Activity window. Any ideas?

    everything went well until the final step "uploading files to server" -- it's been spinning for an hour, "status" still reads 0%, "pause task" and "cancel task" buttons are grayed out in Activity window. Any ideas?

  • GOS - Class ACTIVITY

    Hi,
    Where is used the generic object service with class ACTIVITY?
    I though it was on transaction PB60 but I'm seeing  that in PB60 it's using the class APPLICANT as in PB30.
    Thanks for your help,
    mforman

    cl_fitv_gos might have nice functionality but since it is part of a specific application and not the AS layer, it can't be supported for general usage. Likely this class is a wrapper or helper for the resuable classes CL_GOS* - http://help.sap.com/saphelp_nw70ehp1/helpdata/en/be/3fe63659241157e10000009b38f889/frameset.htm

  • How do I create an "Add Row" button (add instance with click activity)

    I've been looking through a couple of examples, but the xml is lost on me. I need to learn how to do this for myself because it'd help me out on so many forms. There're forms I just simply cannot do without this function.
    Where I get lost is the javascript linking the button to the specific table. I've been trying to use this I found in an example:
    <event activity="click"><
    script contentType="application/x-javascript">SAPS350a.Page1.TableData1.Table1.Row2.instanceManager.addInstance(1);</script></
    event>
    Now, I'm a complete newbie, so I'm sure someone can point out to me exactly what's wrong, but I dont know what "SAPS350a" means nor can I figure out where the label "TableData1" connects to.
    If anyone can explain this in a "add rows for dummies" fashion, I'd be greatly appreciative.
    See attached an example of one of the fields I need to repeat.

    Hi Liz. You shouldn't really be playing in the xml. Especially if you are a newbie . You could corrupt the whole form if you do something wrong and you probably wont be able to rectify it. Scripts must be added in the script window. In your post, the 'SAPS350a.Page1...' is the path to the row of the particular form that you copied that code from. I have added a button to your form. have a look at the script to see what i have done.

  • Search Button in IH01/IH03 Not active

    Hi Experts,
    In E.C.C 6.0 version i find that the search button in IH01/IH03 -Structure display appears as Grayed and is inactive.
    I think my changing the parameter PM_TREE_INACTIVE  = X in Parameter settings for a user, it  can be made active.But my question is  how to get the same active for all the users as a default or is it possible to make this setting globally applicable instead of user specific.
    Fast  response will be appreciated.
    Thanks
    Manish

    Hi,
    You can use the parameter mentioned per user but there is no global setting. Some information in note [642753|https://service.sap.com/sap/support/notes/642753].
    Parameter could be set in SU01 for each user and into you reference user so automatically set when new users created. Maybe there is a Basis function to mass update user parameters but I don't know.
    -Paul

  • Download button in ovistore is not active (grey)

    When I go in ovi store app via my C6-00 and want to download something I can't download it beacause the download button is not active. I tried to preinstall the ovistore app, but in the middle of installation process I got a message that installation is imposible

    You can try these steps: 
    To uninstall: 
    Menu> Settings> Application manager> Installed apps> uninstall Nokia Store Client, Nokia Store, and Nokia Store Launcher.
    To install the latest version of Nokia Store, just open Nokia Store from the menu list and choose update. Install the application when prompted. The latest version should be 1.30.(8).
    Check also with Nokia Suite if you are using the latest software on your phone.
    If you think this post is helpful, please click the white star below.

  • Disabling radio button and only keep one active out of all...

    Hello Gurus,
    I have 4 radio button names as RD1. RD2, RD3 and in the last RD4.
    Now when user excutes the transaction, I want only RD3 to be selected and RD1, RD2 and RD4 to be inactive (greyed out). I tried couple of ways but its not happening.
    Please help.
    AT SELECTION-SCREEN OUTPUT.
      if sy-tcode = 'ZCUST'.
        loop at screen.
         if screen-name = 'RD1'. 
            screen-active = 0.
            MODIFY SCREEN.
          endif.
          if screen-name = 'RD2'. 
            screen-active = 0.
            MODIFY SCREEN.
          endif.
          if screen-name = 'RD4'.  
            screen-active = 0.
            MODIFY SCREEN.
          endif.
        endloop.
      endif.
    Regards,
    TGSHAH.

    Please use the below code. This works fine .. i have tested it ...
    thx
    PARAMETERS: p_unix1  TYPE  c RADIOBUTTON GROUP ft1 USER-COMMAND usr1 DEFAULT 'X',
                p_netw1  TYPE  c RADIOBUTTON GROUP ft1,
                p_netw2  TYPE  c RADIOBUTTON GROUP ft1,
                p_netw3  TYPE  c RADIOBUTTON GROUP ft1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
          IF screen-name = 'P_UNIX1'.
            screen-input = '1'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          IF screen-name = 'P_NETW1'.
            screen-input = '0'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          IF screen-name = 'P_NETW2'.
            screen-input = '0'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          IF screen-name = 'P_NETW3'.
            screen-input = '0'.
           screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
          endloop.

  • Flip Card Animation is not working properly when Button's PointOver State remain Activated.

     I am facing problems with flip car animation which is not working properly when its mouse point over state remains activated but it works perfect when its tapped two times and instantly change pointer position. Kindly Help me out as soon as possible.
    Code is here:
    Xaml:
    <Image Name="imgCapital" RenderTransformOrigin=".5,.5" Tag="1" Tapped="imgCapital_Tapped">
    <Image.Projection>
    <PlaneProjection RotationY="0"/>
    </Image.Projection>
    </Image>
    <Image Name="imgSmall" RenderTransformOrigin=".5,.5" Tag="2" Opacity="1" Tapped="imgSmall_Tapped">
    <Image.Projection>
    <PlaneProjection RotationY="-90"/>
    </Image.Projection>
    </Image>
    Storyboard:
    <Storyboard x:Name="FlipOpen">
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgCapital">
    <EasingDoubleKeyFrame KeyTime="0:0:0" Value="0"/>
    <EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="90"/>
    </DoubleAnimationUsingKeyFrames>
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgSmall">
    <EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="-90"/>
    <EasingDoubleKeyFrame KeyTime="0:0:0.8" Value="0"/>
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    <Storyboard x:Name="FlipClose">
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgCapital">
    <SplineDoubleKeyFrame KeyTime="0:0:0.4" Value="90"/>
    <SplineDoubleKeyFrame KeyTime="0:0:0.8" Value="0"/>
    </DoubleAnimationUsingKeyFrames>
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgSmall">
    <SplineDoubleKeyFrame KeyTime="0:0:0" Value="0"/>
    <SplineDoubleKeyFrame KeyTime="0:0:0.4" Value="-90"/>
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>

    Actually i simply want flip card animation which is not working here in my code. When i tapped button to invoke animation its behavior not exactly flipping.  Its one side work properly but other collapsed suddenly not rotate if i keep mouse right at
    the button, but if i change mouse pointer at that very time after tapping it works properly. Mouse Pointer Over mean screen points where i tapped.
    Triggered Function is here:
      private void btnChangCase_Tapped(object sender, TappedRoutedEventArgs e)
                if(isCaseChanged==false)
                    isCaseChanged = true;
                    FlipOpen.Begin();
                else if(isCaseChanged==true)
                    isCaseChanged = false;
                    FlipClose.Begin();

  • Hide post button in MIR4 from the active toolbar

    When we enter an invoice number in MIR4 the post button appears. Is there a way to hide this from the active toolbar? Config?
    Edited by: Eric Stelter on Dec 18, 2007 6:57 PM
    Edited by: Eric Stelter on Dec 18, 2007 6:58 PM

    I'm not talking about saving here. We use MIR7 to park our invoices using the save as complete button and then MIRO to post. The problem is once an invoice is adopted into MIR7 a post button appears and employees then can park and post from this transaction. We don't want this to happen. That's why we would like to hide the post button if possible.

  • Side manu buttons don't work in active site as it is designed.

    I had this issue before.
    My created buttons with different states do not work as i made them.
    On this page: http://www.armeny.com/jewelry.html ,text  color in side menu buttons changes from state to state, but button color stays same on rollover and active states.
    How can i prevent my work from this problem in the future?
    What can cause this issue in Muse?
    Thanks,
    Armen.

    Parikshit,
    These buttons have 3 states. Normal, rollover and active. This slideshow set on Autoplay and when you mousover any button main image jumps to that one .
    On mousover(rollover) my text color should remain the same dark blue and background color change to white-blue gradient( one you see now on active state). Then in Active stayt buttonn spose to have dark-purple backgroun color and text to be a turquoise color (one you see now on rollover state).
    I dont know why this problem rises again and again?
    This is frastrating.
    Thanks,
    Armen

  • I am trying to delet duplicate songs in itunes but the delete button in "Edit" cannot be activated. Any advice please?

    I am trying to delete duplicate songs in itunes but the delete button cannot be activated.Any advice please?

    It is possible that the files are read only or you do not have permission to delete for the music folder in Windows.
    If you go into Get Info for a track, will it let you edit? If not it is probably one of the above.

  • Is there any way to disable the firefox search option when you long press the home button on Samsung Galaxy S5 Active?

    I have an S5 Active and sometimes the home button sticks and registers as a long press which brings up Firefox search instead of going to the home screen. Is there any way to disable Firefox Search so that this doesn't happen. I Love the Firefox browser but if this keeps happening I will have to uninstall it.

    hello djpianalto, you could clear the default settings for firefox on android within the system settings (like described in this [http://www.howtogeek.com/195885/how-to-set-and-clear-a-default-app-on-an-android-device/ external article]).
    or try an app like https://play.google.com/store/apps/details?id=hk.sld.SwipeLaunchDisabler

  • If button press, open mail with active project-file as attach?

    Greetings community,
    I have followed question.
    I have a MS-Project Add-In and I have a mask in it. (VB.net - Visual Studio 2012)
    I want to create a button in this mask. If the user click to the button, an e-mail should create (with the local installed mail application), I fill the mail addresse (TO), Subject, message body and the active project file as attachment.
    The user can manuel send this mail.
    Is this possible?
    Regards
      Michael

    Hi,
    AFAIK this will work using the Mailsend method. Below is the help:
    Application.MailSend Method (Project)
    Sends a mail message.
    Syntax
    expression.MailSend(To, Cc, Subject, Body, Enclosures, IncludeDocument, ReturnReceipt, Bcc, Urgent, SaveCopy, AddRecipient)
    expression A variable that represents an Application object.
    Parameters
    Name
     Required/Optional
     Data Type
     Description
    To
     Optional
     String
     The user names of the primary recipients of the message, separated by commas.
    Cc
     Optional
     String
     The user names of the secondary recipients of the message, separated by commas.
    Subject
     Optional
     String
     The subject of the message.
    Body
     Optional
     String
     The main text of the message.
    Enclosures
     Optional
     String
     The file names of one or more files to include with the message. Use the list separator character to separate multiple file names. Do not add space between the list separator and the file name.
    IncludeDocument
     Optional
     Boolean
     True if the active project is included in the message. The default value is True.
    ReturnReceipt
     Optional
     Boolean
     True if a message is sent to the sender when the recipient opens the message. The default value is False.
    Bcc
     Optional
     String
     The user names of the message recipients which are not displayed, separated by semicolons. This argument is only supported in Microsoft Project for the Macintosh version 4.0
    Urgent
     Optional
     Boolean
     True if the message is given a high priority. This argument is only supported in Microsoft Project for the Macintosh version 4.0.
    SaveCopy
     Optional
     Boolean
     True if a copy of the message is saved in the SentItems folder. This argument is only supported in Microsoft Project for the Macintosh version 4.0.
    AddRecipient
     Optional
     Boolean
     True if recipients of the message are added to a personal address book. This argument is only supported in Microsoft Project for the Macintosh version 4.0.
    Greetings,

  • How can i disable a link/button after clicked while content active

    hello all
    i am building a website all on one page and am using the
    spry framework so that it displays when clicked fades in
    the issue is i dont want the link to work again after its been
    clicked ie when the link is active then
    when another link is clicked it is re activated and
    can be used again!?
    i am using the behaviours panel in dreamweaver?
    cant seem to find an option to
    toggle this function
    i am not great at js or html
    but any help would be appreciated!
    many thanks
    ]p

    Because we are not privy to your code I shall answer this in general.
    You can use the Spry Element Selector to target your link and to disable that link. When clicking another link you could cycle through your links and enable them before disabling the newly clicked link.
    More info on the Spry Element Selector can be found here http://labs.adobe.com/technologies/spry/articles/element_selector/index.html and here http://labs.adobe.com/technologies/spry/articles/element_selector/selector_examples.html

Maybe you are looking for

  • PI 7.11 - Where can I get the NEW java API's

    Hi, We use PI 7.0 in productive environment, but we plan a release update to PI 7.11. We have several Java Mappings for PI 7.0 with Java 1.4. So we have to upgrade this also to Java 1.5. We are using following SAP Java libs: - aii_map_api.jar - aii_m

  • Step-by-step Java card

    Does anyone can tell me how to program Javacard Step-by-step....and what tools we can use to program it. thanks...

  • Should trashed com.apple.appleworks.plist file be recreated?

    Hello, I just had a problem with AppleWorks crashing on start up and I fixed it by trashing the preference files below: Home > Library > Preferences > com.apple.appleworks.plist Home > Library > Preferences > AppleWorks > AppleWorks 6 Assistants Cach

  • Different production good receipt interim storage type by workcenter

    Hello, When a semifinished material is produced and 101 movement is performed, material is located at interim storage type 901. As each workcenter is responsible of staging material produced on his area, in order to have an accurate control of the ma

  • ALTER SYSTEM SET SGA_TARGET = 0 scope=spfile; not working

    SQL> ALTER SYSTEM SET SGA_TARGET = 0 scope=spfile; System altered. SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> startup; ORACLE instance started. Total System Global Area 2121256960 bytes Fixed Size 2