Is it possible to let KDM launch the sessions with dbus?

well, like the subject line asks: is it possible to let KDM do something like "dbus-launch startkde" or "dbus-launch gnome-session"?
And if yes, how? Also, shouldn't it do that by default?

However thanks a lot for help g
Found the answer myself: Simply sign the applet with an self-made certificate, the next time the browser is restartet there will be a promt for acceptimg the certificate.
Cool!

Similar Messages

  • Is it possible to set up a jam session with a friend over the internet in Garageband on iPad?

    Is it possible to set up a jam session with a friend over the internet in Garageband on iPad?
    Or is there any other way to set up a communication session where we can do a musical jam session via the internet?

    Garageband has no network collaboration functions that I know of. Whether there's some other software that will do that I don't know; perhaps someone else here will have a suggestion.
    Regards.

  • I have bought game FF ATB in app store but when I buy the in-app purchase it error and I cannot buy again it's show"please launch the game with a secure connection to resume."

    How to fixed the "please launch the game with a secure connection to resume."

    without them wanting me to pay for support that I wouldn't need if it wasn't because of them screwing up
    Apple has nothing to do with this. The "blame" lies 100% in your lap.
    A stranger's Apple ID appears on your Mac in conjunction with an update notice -
    https://discussions.apple.com/docs/DOC-5261

  • I have an ipod touch 4 gen.Is it possible for me to use the internet with bluetooth?

    I have an apple ipod 4 gen.Is it possible for me to use the internet using bluetooth?helpp!!!

    Yes but only to tether to an iPhone.  The iPhone must have the optional tethering data plan.

  • Possible to place subtitles beneath the image with 16:9?

    Hi everybody,
    I couldn't find away to put subtitles beneath the image with 16:9 like it would be possible with such a video in FCP: having the 16:9 video in a 4:3 image, placing the subtitle in the black under the image - the issue with FCP is that later the text becomes blurry ...
    Any ideas..? best, s

    If you're looking to adjust the positioning of subtitle text based on the playback system's aspect-ratio, no, DVDSP is not able to do this. This is made even more frustrating by the fact that this was possible in the Spruce product that DVDSP is based on and because many clients demand what you're asking for (subtitles always appear under letterboxed video on 4:3 monitors).
    The only viable 'alternative' that I've found is to adjust the Y offset of the subtitle stream so that the bottom line (or only line) is in the letterbox area. The downside to that is, on 16:9 displays, the subtitles appear very low (though I've never encountered a setup where they are ever cut off.
    If some sample code helps, this is what I use:
    // Begin Font & Formatting Data
    $FontName = Arial
    $Bold = True
    $FontSize = 28
    $ColorIndex1 = 7
    $ColorIndex2 = 1
    $ColorIndex3 = 1
    $ColorIndex4 = 3
    $TextContrast = 14
    $Outline1Contrast = 15
    $Outline2Contrast = 15
    $BackgroundContrast = 0
    $HorzAlign = center
    $VertAlign = bottom
    $XOffset = 0
    $YOffset = 20
    $TapeOffset = True
    // End Font & Formatting Data

  • How to launch the dialog with a wizard having train component

    Hi
    I have a page with a button and onclicking the button i need to show a dialog wizard( a wizard with 3 pages with the train component to move back and forth)
    I have created a taskflow as a train with 3 pages, but onclicking the button i am not able to launch the dialog as a taskflow.
    Any documentatino on how to achieve the same or some sample application reference is highly appreciated
    Bittu Bansal

    On clicking the button i want to show a popup and that popup drives me through the wizard.
    However i am able to achive the same right now.
    I am calling a popup using showPopupBehaviour and that popup i have created the region where i have embedded the task flow for a train wizard.
    Thanks
    Bittu Bansal

  • Is it possible to trade up to the ipad2 with my iPad?

    I bought my iPad in December of last year, and then iPad 2 came out.  Is it possible to trade up to the ipad2 ?  Would I want to?

    There are some very nice features in iPad2, but whether they'd mean much to you is up to you.  You could get a best buy voucher if you wanted to trade your iPad in there, but it would be very small in comparison to just selling your iPad yourself.  Apple won't trade you up.  They're not in the trade-in business.  But, if I were you, I'd wait a few more months.  If history repeats itself, the next generation iPad will likely be announced in the March time frame (again, if history repeats).  If you get iPad 2 now and in 4 months a newer version is announced, you might feel it would have been worth waiting.

  • How to find the job which created the session with errors ?

    Hi,
    I am going to transaction SM35 to see the sessions which has errors. Now if I want to see, what Job was responsible to create that session, how can I see that ?
    Regards,
    Rajesh.

    hi Rajesh,
    Refer to this code to create a session for the erroreneous records
    REPORT  ztest_report
    NO STANDARD PAGE HEADING
                            LINE-SIZE 255
                            MESSAGE-ID ZRASH.
    *                 Internal Table Declarations                          *
    *--Internal Table for Data Uploading.
    DATA : BEGIN OF IT_FFCUST OCCURS 0,
             KUNNR(10),
             BUKRS(4),
             KTOKD(4),
             ANRED(15),
             NAME1(35),
             SORTL(10),
             STRAS(35),
             ORT01(35),
             PSTLZ(10),
             LAND1(3),
             SPRAS(2),
             AKONT(10),
           END OF IT_FFCUST.
    *--Internal Table to Store Error Records.
    DATA : BEGIN OF IT_ERRCUST OCCURS 0,
             KUNNR(10),
             EMSG(255),
           END OF IT_ERRCUST.
    *--Internal Table to Store Successful Records.
    DATA : BEGIN OF IT_SUCCUST OCCURS 0,
             KUNNR(10),
             SMSG(255),
           END OF IT_SUCCUST.
    *--Internal Table for Storing the BDC data.
    DATA : IT_CUSTBDC LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    *--Internal Table for storing the messages.
    DATA : IT_CUSTMSG LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : V_FLAG1(1) VALUE ' ',
    "Flag used for opening session.
           V_TLINES LIKE SY-TABIX,
           "For storing total records processed.
           V_ELINES LIKE SY-TABIX,
           "For storing the no of error records.
           V_SLINES LIKE SY-TABIX.
           "For storing the no of success records.
    *          Selection screen                                            *
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS : V_FNAME LIKE RLGRAP-FILENAME,
                 V_SESNAM  LIKE RLGRAP-FILENAME.
    SELECTION-SCREEN END OF BLOCK B1.
    *          Start-of-selection                                          *
    START-OF-SELECTION.
    *-- Form to upload flatfile data into the internal table.
      PERFORM FORM_UPLOADFF.
    *        TOP-OF-PAGE                                                   *
    TOP-OF-PAGE.
      WRITE:/ 'Details of the error and success records for the transaction'
      ULINE.
      SKIP.
    *          End of Selection                                            *
    END-OF-SELECTION.
    *-- Form to Generate a BDC from the Uploaded Internal table
      PERFORM FORM_BDCGENERATE.
    *--To write the totals and the session name.
      PERFORM FORM_WRITEOP.
    *&      Form  form_uploadff
    *     Form to upload flatfile data into the internal table.
    FORM FORM_UPLOADFF .
    *--Variable to change the type of the parameter file name.
      DATA : LV_FILE TYPE STRING.
      LV_FILE = V_FNAME.
    *--Function to upload the flat file to the internal table.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      =  LV_FILE
    *     FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR           = 'X'
    *     HEADER_LENGTH                 = 0
    *     READ_BY_LINE                  = 'X'
    *     DAT_MODE                      = ' '
    *   IMPORTING
    *     FILELENGTH                    =
    *     HEADER                        =
        TABLES
          DATA_TAB                      = IT_FFCUST
        EXCEPTIONS
          FILE_OPEN_ERROR               = 1
          FILE_READ_ERROR               = 2
          NO_BATCH                      = 3
          GUI_REFUSE_FILETRANSFER       = 4
          INVALID_TYPE                  = 5
          NO_AUTHORITY                  = 6
          UNKNOWN_ERROR                 = 7
          BAD_DATA_FORMAT               = 8
          HEADER_NOT_ALLOWED            = 9
          SEPARATOR_NOT_ALLOWED         = 10
          HEADER_TOO_LONG               = 11
          UNKNOWN_DP_ERROR              = 12
          ACCESS_DENIED                 = 13
          DP_OUT_OF_MEMORY              = 14
          DISK_FULL                     = 15
          DP_TIMEOUT                    = 16
          OTHERS                        = 17
      IF SY-SUBRC = 0.
    *--Deleting the headings from the internal table.
        DELETE IT_FFCUST INDEX 1.
    *--Getting the total number of records uploaded.
        DESCRIBE TABLE IT_FFCUST LINES V_TLINES.
      ENDIF.
    ENDFORM.                    " form_uploadff
    *&      Form  Form_bdcgenerate
    *     Form to Generate a BDC from the Uploaded Internal table
    FORM FORM_BDCGENERATE .
    *--Generating the BDC table for the fields of the internal table.
      LOOP AT IT_FFCUST.
        PERFORM POPULATEBDC USING :
                                    'X' 'SAPMF02D' '0105',
                                    ' ' 'BDC_OKCODE'  '/00' ,
                                    ' ' 'RF02D-KUNNR' IT_FFCUST-KUNNR,
                                    ' ' 'RF02D-BUKRS' IT_FFCUST-BUKRS,
                                    ' ' 'RF02D-KTOKD' IT_FFCUST-KTOKD,
                                    'X' 'SAPMF02D' '0110' ,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    ' ' 'KNA1-ANRED'  IT_FFCUST-ANRED,
                                    ' ' 'KNA1-NAME1' IT_FFCUST-NAME1,
                                    ' ' 'KNA1-SORTL'  IT_FFCUST-SORTL,
                                    ' ' 'KNA1-STRAS' IT_FFCUST-STRAS,
                                    ' ' 'KNA1-ORT01' IT_FFCUST-ORT01,
                                    ' ' 'KNA1-PSTLZ' IT_FFCUST-PSTLZ,
                                    ' ' 'KNA1-LAND1' IT_FFCUST-LAND1,
                                    ' ' 'KNA1-SPRAS' IT_FFCUST-SPRAS,
                                    'X' 'SAPMFO2D' '0120',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0125',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0130',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0340',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0360',
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0210',     
                                    ' ' 'KNB1-AKONT'  IT_FFCUST-AKONT,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0215',
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0220',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0230',     
                                    ' ' 'BDC_OKCODE'  '=UPDA'.
    *--Calling the transaction 'fd01'.
        CALL TRANSACTION 'FD01' USING IT_CUSTBDC MODE 'N' UPDATE 'S'
        MESSAGES INTO IT_CUSTMSG.
        IF SY-SUBRC <> 0.
    *--Populating the error records internal table.
          IT_ERRCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_ERRCUST.
          CLEAR IT_ERRCUST.
    *--Opening a session if there is an error record.
          IF V_FLAG1 = ' '.
            PERFORM FORM_OPENSESSION.
            V_FLAG1 = 'X'.
          ENDIF.
    *--Inserting the error records into already open session.
          IF V_FLAG1 = 'X'.
            PERFORM FORM_INSERT.
          ENDIF.
    *--Populating the Success records internal table.
        ELSE.
          IT_SUCCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_SUCCUST.
          CLEAR IT_SUCCUST.
        ENDIF.
    *--Displaying the messages.
        IF NOT IT_CUSTMSG[] IS INITIAL.
          PERFORM FORM_FORMATMSG.
        ENDIF.
    *--Clearing the message and bdc tables.
        CLEAR : IT_CUSTBDC[],IT_CUSTMSG[].
      ENDLOOP.
    *--Getting the total no of error records.
      DESCRIBE TABLE IT_ERRCUST LINES V_ELINES.
    *--Getting the total no of successful records.
      DESCRIBE TABLE IT_SUCCUST LINES V_SLINES.
    *--Closing the session only if it is open.
      IF V_FLAG1 = 'X'.
        PERFORM FORM_CLOSESESS.
      ENDIF.
    ENDFORM.                    " Form_bdcgenerate
    *&      Form  populatebdc
    *       FOrm to Populate the BDC table.
    FORM POPULATEBDC  USING    VALUE(P_0178)
                               VALUE(P_0179)
                               VALUE(P_0180).
      IF P_0178 = 'X'.
        IT_CUSTBDC-PROGRAM = P_0179.
        IT_CUSTBDC-DYNPRO = P_0180.
        IT_CUSTBDC-DYNBEGIN = 'X'.
      ELSE.
        IT_CUSTBDC-FNAM = P_0179.
        IT_CUSTBDC-FVAL = P_0180.
      ENDIF.
      APPEND IT_CUSTBDC.
      CLEAR IT_CUSTBDC.
    ENDFORM.                    " populatebdc
    *&      Form  FORM_OPENSESSION
    *       Form to Open a session.
    FORM FORM_OPENSESSION .
    *--Variable to convert the given session name into reqd type.
      DATA : LV_SESNAM(12).
      LV_SESNAM = V_SESNAM.
    *--Opening a session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
       EXPORTING
         CLIENT                    = SY-MANDT
         GROUP                     = LV_SESNAM
         HOLDDATE                  = '20040805'
         KEEP                      = 'X'
         USER                      = SY-UNAME
         PROG                      = SY-CPROG
    *  IMPORTING
    *    QID                       =
       EXCEPTIONS
         CLIENT_INVALID            = 1
         DESTINATION_INVALID       = 2
         GROUP_INVALID             = 3
         GROUP_IS_LOCKED           = 4
         HOLDDATE_INVALID          = 5
         INTERNAL_ERROR            = 6
         QUEUE_ERROR               = 7
         RUNNING                   = 8
         SYSTEM_LOCK_ERROR         = 9
         USER_INVALID              = 10
         OTHERS                    = 11
      IF SY-SUBRC <> 0.
        WRITE :/ 'Session not open'.
      ENDIF.
    ENDFORM.                    " FORM_OPENSESSION
    *&      Form  FORM_INSERT
    *       fORM TO INSERT ERROR RECOED INTO A SESSION.
    FORM FORM_INSERT .
    *--Inserting the record into session.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          TCODE                  = 'FD01'
    *     POST_LOCAL             = NOVBLOCAL
    *     PRINTING               = NOPRINT
    *     SIMUBATCH              = ' '
    *     CTUPARAMS              = ' '
        TABLES
          DYNPROTAB              = IT_CUSTBDC
        EXCEPTIONS
          INTERNAL_ERROR         = 1
          NOT_OPEN               = 2
          QUEUE_ERROR            = 3
          TCODE_INVALID          = 4
          PRINTING_INVALID       = 5
          POSTING_INVALID        = 6
          OTHERS                 = 7
      IF SY-SUBRC <> 0.
        WRITE :/ 'Unable to insert the record'.
      ENDIF.
    ENDFORM.                    " FORM_INSERT
    *&      Form  FORM_CLOSESESS
    *       Form to Close the Open Session.
    FORM FORM_CLOSESESS .
      CALL FUNCTION 'BDC_CLOSE_GROUP'
        EXCEPTIONS
          NOT_OPEN    = 1
          QUEUE_ERROR = 2
          OTHERS      = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " FORM_CLOSESESS
    *&      Form  FORM_FORMATMSG
    *       Form to format messages.
    FORM FORM_FORMATMSG .
    *--Var to store the formatted msg.
      DATA : LV_MSG(255).
      CALL FUNCTION 'FORMAT_MESSAGE'
        EXPORTING
          ID        = SY-MSGID
          LANG      = SY-LANGU
          NO        = SY-MSGNO
          V1        = SY-MSGV1
          V2        = SY-MSGV2
          V3        = SY-MSGV3
          V4        = SY-MSGV4
        IMPORTING
          MSG       = LV_MSG
        EXCEPTIONS
          NOT_FOUND = 1
          OTHERS    = 2.
      IF SY-SUBRC = 0.
        WRITE :/ LV_MSG.
      ENDIF.
      ULINE.
    ENDFORM.                    " FORM_FORMATMSG
    *&      Form  form_writeop
    *       To write the totals and the session name.
    FORM FORM_WRITEOP .
      WRITE :/ 'Total Records Uploaded :',V_TLINES,
               / 'No of Error Records :',V_ELINES,
               / 'No of Success Records :',V_SLINES,
               / 'Name of the Session :',V_SESNAM.
      ULINE.
    ENDFORM.                    " form_writeop

  • Is it possible to let iCal change the color or other appearance of an event when switching 'show as' from "busy" to free""?

    As the header states, I am looking for a way to incorporate both "busy" and "free" events in 1 calendar. But I would like to be able to see the difference between events without having to maintain another "pencil" calendar.
    Would be great to have them be greyed out or get another color.

    Thanks, tst.  I wasn't holding my breath on this one.
    Hmm...  I hadn't thought of XControls!  I'd rather not go that route, though, in the interest of keeping the error handler code as light as possible.  (In the daemon itself I don't mind more complexity)  If I did that, the cure might be more expensive than the problem it solves.
    tst wrote:
    Load and unload it explicitly at the start and end of the app. Great if you have a structured app, but not so much if you want something more free form.
    Unload it as soon as it's done doing its work (or after a timeout from the last action it took).
    Sadly, this app is rather "free form".  It has a lot of multi-threaded, asynchronous operations since I'm performing parallel TCP communication to several hosts. Each dynamically called VI calls the error handler.
    Option 2 might be a decent idea, though.  If I went with that, I'd just have to tweak the architecture accordingly.  It may well be the most feasible solution.
    Thanks for the quick reply!

  • Is it possible to let user restrict the number of the records in OVS?

    is it pissible ?
    For example a user can input 500 record .....
    Then when we search and we can get the value set by the user '500' so we can restrict our record in our application.
    Best regards,
    Anders

    Dear Anders,
    u can have an i/p field (say var) for the user where he can specify the no. of records and u can use the following logic.
    TYPES: BEGIN OF ST_BOQ,
              ITEMNO       TYPE ZITEMNO,
              MATNR        TYPE MATNR,
              MAKTX_P      TYPE ZPOTEXT,
               SRNO         TYPE ZSERIALNO,
           END OF ST_BOQ.
    DATA: IT_BOQ TYPE TABLE OF ST_BOQ,
          WA_BOQ LIKE LINE  OF IT_BOQ.
    data: var1 type i.
    var1 = 10.
            SELECT * FROM ZBOQ_ITEM UP TO var1 rows INTO CORRESPONDING FIELDS OF TABLE IT_BOQ .
    Regards
    Sajid

  • I had to restore my iphone 4 and now it wont let me activate the iphone with my apple id

    I had to restore my iphone 4 via itunes and now it wont let me activate it with my own apple id and password. I have even tried changing the password. I know the phone is not stolen as i bought it new from an authorised dealer here in australia. It keeps telling me its linked to my icloud but wont let me do anything

    um help? anyone before i decide to use this as a flying iphone out my window

  • Is it possible to restore files from the backup with the .dba extension

    I found a file that looks like it is a backup of my date book data and has a .dba extension. Is it possible to restore my data from there? if so, how?
    Post relates to: Palm m500

    Did you have Notes turned on in iCloud on your previous device? When you go to iCloud.com on an computer, are your Notes there? If so, then you should be able to sign the new device onto the same iCloud account, turn on Notes, and they should sync OTA.
    Cheers,
    GB

  • HT5622 i resently bought a ipad mini and its not letting me finish the setup with my apple id do i have to create a second id?

    someone help!!!

    I urge extreme caution about creating a second Apple ID.  The reason is that your first Apple ID will "own" all the apps, music, movies, etc. that it purchased in the iTunes Store.  The second Apple ID will not own this material, and in general cannot access it.
    Resolve your first Apple ID's issues, and then proceed.

  • Shell script to launch terminal session with environment sourced

    Hi all
    I've installed 12.1.1 on OEL 5.
    As i've installed with a single user, I will need to switch between the app and db tier.
    I'd like to create two scripts, one that opens a terminal session and sources the app env file, and another one that opens the terminal session and sources the db env file.
    Anyone done anything like this before?
    Thanks

    Hi,
    As i've installed with a single user, I will need to switch between the app and db tier.
    I'd like to create two scripts, one that opens a terminal session and sources the app env file, and another one that opens the terminal session and sources the db env file.
    Anyone done anything like this before?Yes -- Source the application/database env file in the OS user's profile (.bash_profile or .profile), and all the environment variables should be set when you login as applmgr/oracle user.
    Thanks,
    Hussein

  • My ipod cant launch the klondike game

    my ipod will not let me launch the klondike game can you help

    Try a hard reset of your iPod to see if that helps.  To do this, press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    Otherwise, try removing the game from your iPod and resyncing it back to it from iTunes.
    B-rock

Maybe you are looking for