HR IT45 adding a pushbutton problem!

I have just tried to add a pushbutton (fcode PRIM) to IT45 Toolbar. I activated the button and everything works.
But... when I look on Quality system (after transport, of course) the button is disabled.
I tried several times to activate, include in tranposrt... but result is the same....
Do you have idea what can be a problem?

Hi,
Do the version comparision betwen quality and develpment and then if there is a difference found, you can track whether the request from devleopment is transported or not.

Similar Messages

  • Recently Added Playlist having problems?

    Couple of weeks ago my music in the 'Recently Added' playlist listed each track in the order they were added to the library. Now all the tracks in the playlist are all over the place, despite the fact that it is a smart playlist. How can i solve this problem? Is there an alternative method instead of adding the date added column in the playlist? I would appreciate it if anyone could help me.
    Thanks in advance.

    Click at the top of the Date Added column, and the list will sort by Date Added.
    The column where you see a triangle is the one it is currently sorted by.

  • I fixed my recently added playlist syncing problem

    Ever since the iOS 7 upgrade on my iPhone 5, my recently added playlist would not sync properly.  It would be accurate in iTunes (latest version) but not on my iPhone.  After trying some of the suggestions I found on this forum without luck, I started messing around with it myself.  The way I got it to work was to first power down everything.  After a reboot, I launched the music app on my phone.  I selected the artist catagory and played a song completely until the album was completed (you could fast forward the song till the end).  I left the app on the artist page and closed it in the background (double tap home button, swiped app).  I then launched iTunes and connected the phone with a USB cable.  After syncing, I went into my recently added playlist on the phone and it was up to date!
    It seems that in my case if I left the app in the playlists screen, it wouldn't sync.  The app remembers the last screen you had open since the last close, so it automatically reopens in that screen.  I hope this helps anyone having the same problem.  Good luck!

    Hi,
    It's just a Smart Playlist, so make a new Smart Playlist called "Recently Added". Set the rule to "Date Added is in the last two weeks" and make sure both "Match the following rule" and "Live updating" are checked. That's the same as the default "Recently Added" playlist...
    charlie

  • Pushbutton Problem in web dynpro

    hi there,
    i have a sap standard web dynpro. in the portal i have the UI elements tree to personalize the dynpro.
    there is a part where i have 2 push-buttons:
    Pushbutton 1
    Pushbotton 2
    by default Pushbutton 1 is activated. Now i want to hide Pushbutton 1 for the user. So far so good, i can do it in the UI elements tree and change it.
    The Pushbutton 1 now is hidden. BUT: i want to have Pushbutton 2 activated automaticly. Now the pusbutton is not 'ON'.
    how can i achive this with the UI elements tree control in Portal. I am NOT a JAVA-developer, i have no idea about web dynpro, i am coming from abap side. so i DON'T want to modify the web dynpro.....i need a way to do it with the personalization function in portal.
    reg, Martin

    Hi,
    I assume that your requirement is to show one button at a time button1 or button2.
    create 2 context attribute of type Visibility under uielementdefinition.
    bind one of the context to button1's visibility property and the other to the button2's visibility property.
    Now, in your code as per your condition, you can set the visibility as
    wdContext.currentContextElement().set<visible1>(WDVisibility.VISIBLE);//To Show
    wdContext.currentContextElement().set<visible1>(WDVisibility.NONE);//To Hide
    Regards,
    Murtuza

  • "Date Added" sort order problem when importing folders

    I sort by "Date Added" to view my iTunes library, and use the middle "view" button to view tracks grouped as albums with artwork. This works mighty well except when I'm importing folders containing the files in an album, such as those I get from eMusic--the tracks are displayed out of order when I do this. The only solution I've found so far is to import one track at a time. Any ideas how I can get those tracks in there in the right order when importing a folder? Any scripts hanging around that will do it right? Thanks to all....

    What sort order do you have selecting in the sort drop-down?  There is no "correct" sort order.  You can sort on any metadata you can show in the Browser.  The sort drop-down is located in the top border of the Browser, near the left corner.  Every container in Aperture retains the sort order it last had.  When you manually move an Image in the Browser, the sort order is changed to "Manual".

  • Adding A Pushbutton To GUI Status of Standard Program

    Hi,
    I need to add a pushbutton to the GUI status of one of the SAP standard programs, the system being <b>ECC 6.0</b>. One method which I tried was by copying the standard program as a Z program and then modifying the GUI status per my requirement. Although this works, one drawback in doing it this way was with the introduction of the new Enhancement Framework in ECC 6.0, the defined enhancements from the standard program were not copied to the Z program.
    I am looking for suggestions on how to add a pushbutton in the GUI status of the standard program using the enhancement concept. Please let me know the implications if any, while carrying out this change.
    Regards,
    Ravi Krishna

    GOTO Se41 Transaction ..
    one example :
    Standard Program : SAPLSLVC_FULLSCREEN
    Status : STANDARD_FULLSCREEN
    use ur program first and status and now click on copy status ...
    copy from standard to custom..

  • Adding a Pushbutton on ALV toolbar

    Hi ,
    I wanna add a pushbutton to my ALV report toolbar, I have tried by screen painter(se51) but its not working. That is when you open the screen painter its showing the  push button, but when you run the screen as transaction its not showing that button. 
    Any help is greatly appreciated.
    Regards
    Moderator Message: Please search before posting your question. Thread locked.
    Edited by: Suhas Saha on Oct 18, 2011 3:40 PM

    Hi Harsh,
    To add button in the ALV toolbar, follow the below steps :
    1. Open Functional group SALV in se80 and copy the GUI status 'STANDARD' in customer namespace ( for e.g. ZSTANDARD'  to your ALV report program.
    2. Once you copy the GUI status, open your ALV report program in se80 and modify it's GUI status 'ZSTANDARD' according to your requirement.
    3. Code accordingly in your ALV report program.
    Here is the below code for your reference.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = g_repid
          i_callback_pf_status_set = alv_status_set
          i_callback_user_command  = *alv_user_comm*
          i_grid_title             = grid_title
          i_save                   = g_save
          is_variant               = gs_variant
          is_layout                = alv_layout
          it_fieldcat              = alv_fieldcat[]
          it_events                = gt_events[]
          it_sort                  = alv_sort[]
        IMPORTING
          e_exit_caused_by_caller  = g_exit_caused_by_caller
          es_exit_caused_by_user   = gs_exit_caused_by_user
        TABLES
          t_outtab                 = it_final[].
      PERFORM *alv_user_comm* USING r_ucomm
                                  rs_selfield.
    FORM *alv_user_comm*  USING    r_ucomm     LIKE sy-ucomm
                                 rs_selfield TYPE slis_selfield.
    r_ucomm = sy-ucomm.
      CASE r_ucomm.
      ENDCASE.
    ENDFORM.
    Let us know if you still having some issues.
    Cheers
    VJ

  • Adding of values problem in the report

    Hi All,
    I have a reporting requirement like below.
    Object 1                Object 2                 Ob1 + Ob2
    $ 1,534,080                $ 294,697                $ 294,698,302
    $ 2,750,761                $ 0                       $ 2,751
    $ 715,028                $ 38,611                $ 38,612,200
    $ 95,337                $ 0                       $ 95
    $ 107,712                $ 0                       $ 108
    $ 5,202,918                $ 333,308                $ 333,313,456          Totals
    But the total of the totals should be  * 5,536,204 * but instead of this I have $ 333,313,456
    I tried for the option before aggregation in the calculated Key figure.
    How can I solve this problem?

    Hello
    Actually if you will see the total of OBJ1 and OBJ2 row wise, that is also wrong. So first check out the formula you have written to calculate the addition of obj1 and obj2. When it will be correct, result row will definitely show correct value.
    $ 1,534,080           +     $ 294,697  = $ 294,698,302 (is wrong).
    Here, I think you are dividing Obj1 values by 1000. If you will see this row
    $ 95,337           +     $ 0              =                      $ 95
    Here obj1 is value is divided by 1000 then only result is coming as $95.
    So check out the calculation.

  • Adding new apps problem?

    I have a first generation iPad using the iOS 5 operating system. I  am having a problem inserting certain apps because it calls for the iOS 6 system. Is there any way to update the iPad to insert an iOS 6 system. Please help.

    the maximum update you can go for the ipad 1 is iOS 5.1.1

  • Added Memory, now, problems.

    I traded up from 2 GBS ibn my 20" late 07 SS Intel iMac. One chip was DOA. Crucial sent me a new one. Now it's still dead, doesn't matter what slot, but, the fans are Racing. Also in iStat Pro, it shows nothing for temps exp HD bay?
    Wonder if there's anything I should look for, and wonder how much this might cost.
    The fans on full, are really quite loud!
    Running 10.6.7
    Thanks for reading!
    Pete

    I would put the original RAM chips back into the system to make sure the new RAM chips are not the problem.  When you put the new chips into the system and turned on the Mac did you hear that chime?  I would also run Apple Hardware Test on your system. 

  • Adding extra pushbutton on IL02 transaction

    I need to add an extra pushbutton on the IL02 transaction.PLease help me in details.If someone has did that, please give me the complete details of exits/BADIs alongwith code.

    Transaction Code - IL02                     Change Functional Location
    Exit Name           Description
    ILOM0001            Additional checks before saving a functional location
    ILOM0002            User exit when checking structure of location numbers
    No of Exits:          2
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    BAPI-step by step procedure
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all BAPI's
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    Rewards if useful.........
    Minal

  • L35 Adding more memory problems

    I can not get the second gig of memory to work on my L35 S2366  -  any thoughts

    Satellite L35-S2366 
    Toshibas are finicky about memory. Very likely the memory you've added is incompatible. Unless you want to cut and try, use the better memories produced by Kingston. They are recommended and supported by Toshiba for add-on.
    For the details, see Kingston's Memory Configuration for Toshiba Satellite L35-S2366
    Installation instructions begin on p. 52 of the Satellite L30/L35 Series User's Guide.
    -Jerry

  • Adding iframe tag problems

    In my application I urgently need to add iframe and display it correctly. I have tried this in two ways: 1. tomahawk:htmlTag and 2. http://jsftutorials.net/htmLib:iframe. Using first option I can not set frameborder properly. The second one does not rednder end tag </iframe> so the page becomes corrupted. Using f:verbatim is not an option. Is there any other tag library which allows using <iframe> tag in jsf framework. Any other ideas? Please help.
    Thanks and regards, Simy

    Try Jenia - http://www.jenia.org
    They have a popup iframes - http://www.jenia.org/TestPopup/

  • Adding Time Formula Problem

    Hi,
    I am making a sheet for hours worked. In column B I have my start time, in date and time format, showing only hh:mm ie 09:00, column C is my lunch break in duration format showing only minutes (short lunch breaks) and column D is my end time, same format as column C.
    So, I have created a formula to calculate hours worked each day in column E, also in Duration format displayed thus 07:30 (hours worked remember) , but I need to make a formula for hours worked in the month. The formula does not work when no values are entered into B, C and D, as column E displays 0.
    I know there are some other threads that cover time and date formulas but I really don't want to take an exam to accomplish this.
    There must be someone who already has this formula?
    Many thanks
    Lee

    Fine, I've done it.
    I've read lots of your stuff, but in my situation it is too time consuming for what is, a fairly basic end result, and I decided it wasn't important enough for me to waste hours on it, so I asked for help in the hope that some kind fellow could impart the information required my way.
    I realise and appreciate that you have put a lot of time in yourself to understand formulas and such.
    If you have a formula that could've helped me that would involve no extra work other than copy and pasting it here, then I do not see why would you not do so?
    I have helped others with itunes issues that I have spent heaps of time on myself.
    Thanks anyway.
    Lee

  • Adding a pushbutton within a BADI

    Hi,
    In the previous releases, I was able to create a special BAdI with a function code attach to this BAdI.
    In the PFSTATUS of my screen I was using the same function code (starting with with "+").
    The button was only displayed in the toolbar when the BAdI was implemented.
    Now with the new version, I create the enhancement spot and the BadI but I cannot find the tab "FCODE" anymore... is there a new way to perform such thing ?
    Thanks !
    Message was edited by:
            Dany Charbonneau

    the strange thing is that in the documentation, it is stated that this feature is still available and is now called "Function code Enhancement"
    Function Code and Screen Enhancements
    Use
    The main use of BAdIs is to enhance ABAP programs using object plug-ins. For reasons of compatibility, and to be able to use the classic means for designing a user interface for an ABAP-based SAP system (GUI status and screens,) menu enhancements and screen enhancements were adopted almost unchanged from the classic BAdIs into the BAdIs of the new enhancement concept. These enhancements represent a concept that is independent of enhancements through object plug-ins and they are not supported using special ABAP statements.
    Features
    Function Code Enhancements
    Menu enhancements have been adopted under the new name “Function Code Enhancements“, whereby the classic concept has been kept in its entirety. The use of the ABAP statements GET BADI und CALL BADI is not necessary. The runtime environment inserts the implementation of a function code enhancement automatically during program regeneration.
    Screen Enhancements
    In the case of screen enhancements, the class concept has been adopted – with the following exceptions:
    ·        The previous call to the method CL_EXITHANDLER=>GET_PROG_AND_DYNP_FOR_SUBSCR, has been replaced by the call CL_ENH_BADI_RUNTIME_FUNCTIONS=>GET_PROG_AND_DYNP_FOR_SUBSCR with the same interface.
    ·        The methods PUT_DATA_TO_SCREEN and GET_DATA_FROM_SCREEN will no longer be generated. You can create your own BAdI methods for data transport and call them using CALL BADI.
    ·        You no longer need to call the CL_EXITHANDLER=>SET_INSTANCE_FOR_SUBSCREENS and CL_EXITHANDLER=>GET_INSTANCE_FOR_SUBSCREENS methods. These methods are now unnecessary as they only place the BAdI reference in a temporary storage.
    SET_INSTANCE_FOR_SUBSCREENS is no longer necessary.
    GET_INSTANCE_FOR_SUBSCREENS can, if necessary, be replaced by GET BADI.

Maybe you are looking for

  • Running Analysis in GRC AC 5.3  - RAR

    Hi, Can anyone let me know how to resolve the issue. When i run the Risk Analysis in GRC AC 5.3 - RAR Informer>Risk Analysis> Role Analysis--> Execute This is the error message it gives:- *VIRSAHR_01: Cannot execute BAPI RoleList: Error connecting us

  • Inserting new line in IVWID

    Dear All,        Can any one help me in adding new line in Edit Fearture IVWID : Decision Tree (Service Specific Settings). Regards, Anil.

  • "add_months" and "interval"

    please tell me what is the difference between the below query.i need to take the last month date using the current date.Which query will be the correct one and whats the difference. select trunc(sysdate)+ interval '1' month from dual; select trunc(ad

  • Why can't I open apps?

    When I download apps from the internet (e.g. BetterTouchTool) that aren't packaged in a .dmg file (i.e. they are in an archive of some sort) I can't open them. Initially when I open them, it says 'Are you sure you want to open this application. It wa

  • GRAC10.0 FF Log Review Workflow

    Hello Experts, we configurated the Firefighter Log review workflow in GRC10.0. The firefighter controller can review and submit the FF Log Workflow item in the Work Inbox. There is aber a question, is it possible to let the FF controller review the s