Activate or deactivate a mask in a psd

hello! sorry for my english :S
indesign can enable or disable a layer mask from a psd? withoutcreating two similar layers, one with a mask and one without a mask, to show the masked area outside the image.
for example:
Final result: two overlapping images and one with the active layer mask
Option A: I could turn on or off the mask from Quark
Option B: is the only way I found to do it in Indesign. But it seems ridiculousthat Quark can be activated from the mask and not Indesign
If then I have to tweak the image in Photoshop I have to return toduplicate and apply the mask on the top layer.
Is there any way to expedite this in Indesign?
thank you very much!

thank you very much! creating the alpha channel works perfectly.
I was so in Quark 8 with layer masks because it does leave show or hide.
so to do the same in ID had to create two layers and one with the layer mask active as in the pictures above.Thanks to you I do it for alpha channel. I find it faster as Quark does, I'll have to get used to as does ID
Left an example of how quark does.

Similar Messages

  • How to activate and deactivate the text fields in subscreens

    Hi  All,
    I have one requirement to activate and deactivate the fields in Sub screen.
    The requirement is initially the all screen fields are output field with some value .Suppose user want to edit the value, they choose the check box then automatically the sub screen fields are changed to input modeu2026
    How to validate these settings in the sub screens..
    Thanks & Regards,
    Samantula

    Hi,
      if it is report then use the both at-selection screen.
    if it is in dialog program  AT SELECTION-SCREEN OUTPUT instead of PBO and AT SELECTION-SCREEN instead of PAI
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_chk <> 'X' AND screen-name = 'FLATFILE'.
          screen-required = 0.
          screen-input = 0.
           MODIFY SCREEN.
         ENDIF.
    AT SELECTION-SCREEN.
      LOOP AT SCREEN.
        IF p_chk <> 'X' AND screen-name = 'FLATFILE'.
          screen-required = 0.
          screen-input = 0.
           MODIFY SCREEN.
        ELSEIF p_chk = 'X' AND screen-name = 'FLATFILE'.
           screen-input = 1.
           MODIFY SCREEN.
        ENDIF.
    Thanks & Regards,
    Vallamuthu.M

  • How to activate or deactivate a user-exit based a specific condition

    hi all,
    i want to activate or deactivate(make it trigger) a particular user-exit based in a condition.
    can i do that. if yes please tell me how.
    can we use COMMIT in user-exits or BADI's.
    Thanks & Regards,
    Saroja.

    Hello Saroja
    The solution provided by Rich should be used for testing purposes only in the the reverted sense:
    IF ( syst-uname ne '<specific user>' ).
      RETURN.
    ENDIF.
    " Execute user-exit for specific user
    However, for serious programming you should use a a better strategy. In principle, user-exits are either ON or OFF and, if they are ON, they are ON for <b>all </b>user which is usually not intended.
    The following example shows a (possible) strategy how to execute user-exits based on specific conditions.
    The SAP extension CATS0001 contains the component EXIT_SAPLCATS_001 with the following interface:
    FUNCTION EXIT_SAPLCATS_001.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(SAP_TCATS) LIKE  TCATS STRUCTURE  TCATS
    *"     VALUE(SAP_PERNR) LIKE  CATSFIELDS-PERNR
    *"     VALUE(SAP_DATELEFT) LIKE  CATSFIELDS-DATELEFT
    *"     VALUE(SAP_DATERIGHT) LIKE  CATSFIELDS-DATERIGHT
    *"     VALUE(SAP_DATEFROM) LIKE  CATSFIELDS-DATEFROM OPTIONAL
    *"     VALUE(SAP_DATETO) LIKE  CATSFIELDS-DATETO OPTIONAL
    *"  TABLES
    *"      SAP_ICATSW STRUCTURE  CATSW
    *"      SAP_ICATSW_FIX STRUCTURE  CATSW OPTIONAL
      INCLUDE ZXCATU01.
    ENDFUNCTION.
    The include ZXCATU01 contains only the following coding:
      CALL FUNCTION 'Z_EXIT_SAPLCATS_001'
        EXPORTING
          sap_tcats            = sap_tcats
          sap_pernr            = sap_pernr
          sap_dateleft         = sap_dateleft
          sap_dateright        = sap_dateright
          SAP_DATEFROM         = SAP_DATEFROM
          SAP_DATETO           = SAP_DATETO
        tables
          sap_icatsw           = sap_icatsw
          SAP_ICATSW_FIX       = SAP_ICATSW_FIX.
    This function module is just a copy of the exit function module in the customer namespace.
    Let us assume that your condition at which the user-exit should be executed is that the employee (SAP_PERNR) belongs to a specific controlling area. Thus, we make another copy of the original exit function module and call this fm within the "general" customer-specific exit function module:
    FUNCTION z_exit_saplcats_001.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(SAP_TCATS) LIKE  TCATS STRUCTURE  TCATS
    *"     VALUE(SAP_PERNR) LIKE  CATSFIELDS-PERNR
    *"     VALUE(SAP_DATELEFT) LIKE  CATSFIELDS-DATELEFT
    *"     VALUE(SAP_DATERIGHT) LIKE  CATSFIELDS-DATERIGHT
    *"     VALUE(SAP_DATEFROM) LIKE  CATSFIELDS-DATEFROM OPTIONAL
    *"     VALUE(SAP_DATETO) LIKE  CATSFIELDS-DATETO OPTIONAL
    *"  TABLES
    *"      SAP_ICATSW STRUCTURE  CATSW
    *"      SAP_ICATSW_FIX STRUCTURE  CATSW OPTIONAL
    " User-Exit specific for employees (SAP_PERNR)
    " belonging to controlling area 1000
      CALL FUNCTION 'Z_EXIT_SAPLCATS_001_1000'
        EXPORTING
          sap_tcats      = sap_tcats
          sap_pernr      = sap_pernr
          sap_dateleft   = sap_dateleft
          sap_dateright  = sap_dateright
          sap_datefrom   = sap_datefrom
          sap_dateto     = sap_dateto
        TABLES
          sap_icatsw     = sap_icatsw
          sap_icatsw_fix = sap_icatsw_fix.
    " User-Exit specific for employees (SAP_PERNR)
    " belonging to controlling area 2000
      CALL FUNCTION 'Z_EXIT_SAPLCATS_001_2000'
        EXPORTING
          sap_tcats      = sap_tcats
          sap_pernr      = sap_pernr
          sap_dateleft   = sap_dateleft
          sap_dateright  = sap_dateright
          sap_datefrom   = sap_datefrom
          sap_dateto     = sap_dateto
        TABLES
          sap_icatsw     = sap_icatsw
          sap_icatsw_fix = sap_icatsw_fix.
    ENDFUNCTION.
    Finally, within the specific exit function module we define the condition when the exit should be executed:
    FUNCTION z_exit_saplcats_001_1000.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(SAP_TCATS) LIKE  TCATS STRUCTURE  TCATS
    *"     VALUE(SAP_PERNR) LIKE  CATSFIELDS-PERNR
    *"     VALUE(SAP_DATELEFT) LIKE  CATSFIELDS-DATELEFT
    *"     VALUE(SAP_DATERIGHT) LIKE  CATSFIELDS-DATERIGHT
    *"     VALUE(SAP_DATEFROM) LIKE  CATSFIELDS-DATEFROM OPTIONAL
    *"     VALUE(SAP_DATETO) LIKE  CATSFIELDS-DATETO OPTIONAL
    *"  TABLES
    *"      SAP_ICATSW STRUCTURE  CATSW
    *"      SAP_ICATSW_FIX STRUCTURE  CATSW OPTIONAL
      IF ( <user BELONGS to CONTROLLING area 1000> ).
        "   execute user-exit
      ELSE.
        RETURN.
      ENDIF.
    ENDFUNCTION.
    The alternative would be to place the entire coding including the conditions in the include ZXCATU01. However, in this case you can test the user exit <b>only in the context of the transaction</b> in which the user-exit is passed.
    Using the strategy I have devised you are able to test the user-exit in general and the specific user-exits <b>independent </b>of the transaction. For example, if you are already working on 6.40 or higher then you could use ABAP Unit Testing for this purpose.
    The same logic can be applied for BAdI where we can have only a single active implementation.
    Finally, I hope to convince that it makes sense to spend some time into a reasonable strategy for implementing user-exits.
    Regards
      Uwe

  • Unable to activate or deactivate the Correlation policy

    After creating a correlation policy with complex conditions, I am unable to activate or deactivate the policy.

    Reason
    This issue occurs when a complex condition is created, and one of the sub conditions is deleted. In the case below, the correlation rule is missing a sub condition that would have been used together with the Rule Message condition, but it has been deleted. The following screenshot shows a similar situation.
    Workaround
    The workaround of this issue is to delete the "indented" broken complex condition, and adding it back to the rule as a regular condition.

  • How to activate or deactivate screen painters element through program?

    i am using module pool programming ,
    i want to activate or deactivate the screen painters elements  through programming how i can do it?

    Hi,
    You can perform active and deactive the fileds in the selection screen using AT SELECTION-SCREEN OUTPUT event. Loop the screen table and modify the content of a screen field inside the loop based on requirements.
    Check this code.
    selection-screen begin of block b1 with frame.
    parameters: p_g1 radiobutton group gp1 default 'X' user-command chk,
    p_g2 radiobutton group gp1.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame.
    parameters: p_gltrp type afko-gltrp modif id g1.
    parameters: p_werks type aufk-werks modif id g1.
    parameters: p_datum type afko-gltrp modif id g2.
    parameters: p_uzeit type aufk-werks modif id g2.
    selection-screen end of block b2.
    at selection-screen output.
    loop at screen.
    if p_g1 = 'X' and screen-group1 = 'G2'.
    screen-active = 0.
    modify screen.
    endif.
    if p_g2 = 'X' and screen-group1 = 'G1'.
    screen-active = 0.
    modify screen.
    endif.
    endloop.
    Also try the below code to get some idea
    report zsample.
    TABLES:lfm1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_lifnr FOR lfm1-lifnr .
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:
    r_asn RADIOBUTTON GROUP rad1 USER-COMMAND uc1 DEFAULT 'X',
    r_ers RADIOBUTTON GROUP rad1 ,
    r_830 RADIOBUTTON GROUP rad1,
    r_850 RADIOBUTTON GROUP rad1,
    r_862 RADIOBUTTON GROUP rad1,
    r_810 RADIOBUTTON GROUP rad1,
    r_820 RADIOBUTTON GROUP rad1,
    r_824 RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECT-OPTIONS: s_bstae FOR lfm1-bstae MODIF ID sd1.
    PARAMETERS:
    p_ekorg TYPE lfm1-ekorg MODIF ID md1,
    p_evcode TYPE edp21-evcode MODIF ID md2,
    p_kappl TYPE nach-kappl MODIF ID md3,
    p_parvw TYPE nach-parvw MODIF ID md4,
    p_kschl TYPE nach-kschl MODIF ID md5,
    p_vakey TYPE nach-vakey MODIF ID md6,
    p_werks TYPE werks_d MODIF ID md7,
    p_bukrs TYPE lfb1-bukrs MODIF ID md8.
    SELECTION-SCREEN END OF BLOCK b3.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF r_asn EQ 'X'
    AND ( screen-group1 = 'MD3' OR screen-group1 = 'MD4'
    OR screen-group1 = 'MD5' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_ers EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD3'
    OR screen-group1 = 'MD4' OR screen-group1 = 'MD5'
    OR screen-group1 = 'MD6' OR screen-group1 = 'MD7'
    OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_830 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_850 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_862 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_810 EQ 'X'
    AND ( screen-group1 = 'MD3' OR screen-group1 = 'MD4'
    OR screen-group1 = 'MD5' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_820 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD3'
    OR screen-group1 = 'MD4' OR screen-group1 = 'MD5'
    OR screen-group1 = 'MD6' OR screen-group1 = 'MD7' ).
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_824 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD3'
    OR screen-group1 = 'MD4' OR screen-group1 = 'MD5'
    OR screen-group1 = 'MD6' OR screen-group1 = 'MD7'
    OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    Regards,
    Chandru

  • IOS Home Button and Event.ACTIVATE/Event.DEACTIVATE

    Hi all,
    I read tons of questions re iOS Home Button and Event.ACTIVATE/Event.DEACTIVATE. Everything should work well if you set the proper listeners and save/restore your app state upon receiveing these events.
    My question is: Is there a way to tell difference between a Home Button press and an iOS notification alert or incomming call? In both cases, AIR will dispatch Event.DEACTIVATE, however I want to know if the user pressed the Home Button or if he just received an SMS/Calendar alert, and adapt my app state accordingly - i.e. if it's a Home Button press, change my app state to "Main Menu", otherwise (SMS/Calendar/alert) I will pause execution.
    NOTE: I don't want to override the Home Button behaviour, just want to tell if it's a Home Button press or SMS/Calendar/alert, and react accordingly. The iOS documentation states that in case of SMS/Calendar/alerts, (void)applicationWillResignActive:(UIApplication *)application is dispatched, and in case of actually going to background state (i.e. Home Button pressed) (void)applicationDidEnterBackground:(UIApplication *)application is dispatched.
    Thanks

    Any luck with this yet? I'm having the exact same issues but on a different device, the Kindle Fire.
    I need to determine whether a user hit the Home button, or hit the Quick Settings button (that accesses controls like volume). Air treats both events equally by broadcasting Event.DEACTIVATE. Unfortunately, the Amazon Appstore approval team thinks otherwise...
    It seems like there should be a simple, no-brainer way to track these events, but I'm beginning to suspect Air just is not capable. In that case, if you're developing for Kindle Fire, you may want to avoid going with Adobe.

  • Activate or deactivate a condition based on Input Variable - Bex

    Hi,
    Is it possible to Activate/De activate a conditiion based on an Input Variable in Bex Analyzer? If yes, can some one let me know how this could be done

    Hi... Is there any other round about way other than using a User exit????
    Basically this is what I am looking for
    Quest to User: Y/N
    if "Y" then Activate the condition and suppress the records based on the condition
    If "N" then do not activate the condition and publish all the records...
    Any thoughts....

  • Activate or deactivate a condition based on Input Variable

    Hi,
    Is it possible to Activate/De activate a condition based on Input variable, if yes can any one tell me how this could be done...

    Hi... Is there any other round about way other than using a User exit????
    Basically this is what I am looking for
    Quest to User: Y/N
    if "Y" then Activate the condition and suppress the records based on the condition
    If "N" then do not activate the condition and publish all the records...
    Any thoughts....

  • Caller Id not working nothing showing in my settings under phone to activate or deactivate

    HOw do I turn on caller I'd if I do not have option in phone settings used to have it not sure what happened

    I believe the way Caller ID works on the iPhone is that it will check your contacts for the number calling and then display their contact details. Therefore, you need to make sure you have accurate details for everyone that may call you. If the caller does not want their Caller ID shown, your iPhone will show number as Blocked.
    If it's your Caller ID you want to hide or show, to to Settings > Phone > Show My Caller ID > Slide to On

  • Headset randomly won't activate or deactivate​. Can change manually only with media player or during call.

    Device info
    Your carrier: AT&T
    Model info and OS version: 8520 v5.0.0.1067 Bundle 1728 Platform 5.2.0.96
    Apps and free space
    App Memory Free Space: 96.7 MB   |   Memory Card: 7.3 Total, 1.4 Free
    Did a battery pull fix your issue? No.
    Did an update to latest OS fix your issue? Not sure.
    Apps installed and their version if possible:
    Audible 1.5.3
    Autolock 0.5
    AutoWifi 0.6
    Crackberry Launcher 1.64
    Crunch SMS 2.16
    Daily Crossword 1.2.4.3
    Dictionary.com 1.3
    Earth 2.0 theme 1.0
    4square 1.9.77
    Google:
       Maps 4.5.3
       Mobile App 3.8.22
       Sync 0.7.3
    Mobiola XPlayer Lite 1.9.1
    Movies 1.1.9
    Opera Mini 6.1
    Pandora 1.1.10
    Paypal 1.1.1.306
    Player for YouTube 1.2.89
    Poynt 1.7.1.49
    Quickpull Pro 4.0.3
    Screen Charger Photo Free 1.0.2
    Slacker 3.1.142
    Sudoku 1.0.10
    Weather Channel 2.0.5
    Ubuntu Theme 5.0
    VLC 1.0.0.1
    Voice Reply 1.2
    Wheres My Phone 3.5.2
    Quickpull Lib 3.6.3
    BT device model/version (you will have to look at the BT device): Not used
    Using supplied blackberry earbuds w/ mic
    Recently I have had issues where my 8520 thinks my headphones are plugged in when they are not. I can, of course, manually change this but that only works when I'm making a call or using the stock media player. This method does not help with Mobiola which I use to listen to audio books until blackberry createsa bookmark function in their media player (and a way to sort the audiobook files from the music without having to make the folder hidden).
    It was only assuming the headphones were plugged in but in the last 2 days it has started ignoring them entirely. I have done multiple resets and used a light to check if there was anything in the jack. My only solution to get Mobiola to output correctly is to change the output in the media player, but once the media player is paused Mobiola goes back to whatever it seems to think is right. I noticed this after I had done the most recent update as of about a week ago, that isn't to say that it wasn't doing it before, but I didn't notice it before.

    Device info
    Your carrier: AT&T
    Model info and OS version: 8520 v5.0.0.1067 Bundle 1728 Platform 5.2.0.96
    Apps and free space
    App Memory Free Space: 96.7 MB   |   Memory Card: 7.3 Total, 1.4 Free
    Did a battery pull fix your issue? No.
    Did an update to latest OS fix your issue? Not sure.
    Apps installed and their version if possible:
    Audible 1.5.3
    Autolock 0.5
    AutoWifi 0.6
    Crackberry Launcher 1.64
    Crunch SMS 2.16
    Daily Crossword 1.2.4.3
    Dictionary.com 1.3
    Earth 2.0 theme 1.0
    4square 1.9.77
    Google:
       Maps 4.5.3
       Mobile App 3.8.22
       Sync 0.7.3
    Mobiola XPlayer Lite 1.9.1
    Movies 1.1.9
    Opera Mini 6.1
    Pandora 1.1.10
    Paypal 1.1.1.306
    Player for YouTube 1.2.89
    Poynt 1.7.1.49
    Quickpull Pro 4.0.3
    Screen Charger Photo Free 1.0.2
    Slacker 3.1.142
    Sudoku 1.0.10
    Weather Channel 2.0.5
    Ubuntu Theme 5.0
    VLC 1.0.0.1
    Voice Reply 1.2
    Wheres My Phone 3.5.2
    Quickpull Lib 3.6.3
    BT device model/version (you will have to look at the BT device): Not used
    Using supplied blackberry earbuds w/ mic
    Recently I have had issues where my 8520 thinks my headphones are plugged in when they are not. I can, of course, manually change this but that only works when I'm making a call or using the stock media player. This method does not help with Mobiola which I use to listen to audio books until blackberry createsa bookmark function in their media player (and a way to sort the audiobook files from the music without having to make the folder hidden).
    It was only assuming the headphones were plugged in but in the last 2 days it has started ignoring them entirely. I have done multiple resets and used a light to check if there was anything in the jack. My only solution to get Mobiola to output correctly is to change the output in the media player, but once the media player is paused Mobiola goes back to whatever it seems to think is right. I noticed this after I had done the most recent update as of about a week ago, that isn't to say that it wasn't doing it before, but I didn't notice it before.

  • Printer power saving features activates and deactivates at random

    I have a C8022A all in one 8500 printer which has a built in Power saving feature that is supposed to put the print6er in sleep mode after sevaral minutes of non use and turn on printer when a new print job is sent to it.Duringg the first 4-5 months of use it did that - now it seems sometime to go into sleep mode 4 hours after it stopped being used and coming on at random 2-4 hours later for no apparent reason - talked to 2 techs in India with HP chat support but it was useless, and could not get through to live 800 support - tried 5-6 times.!

    Richard,
    Open Energy Saver preferences. While there, unplug the power connector from the MBP? Does the display dim a little bit? If not, toggle the Optimization to one of the other settings then back to Normal like you want. Did the display dim? Now plug the power back in. Did it work as expected?
    As for the keyboard, if you want it to remain off in low light conditions, uncheck the Illuminuate keyboard in low light conditions option. You could look at the keyboard brightness keys as setting a max brightness. The keyboard brightness will still fluctuate based on the light level in the room but will only get as bright as the setting you put in.
    Did I make that clear as mud?

  • Activate and Deactivate an Oracle Portal user Fails

    I can execute the procedure as the user PORTAL. In my case I have a situation where I have a schema and I granted EXECUTE to the user on wwsec_api pacjkage and I get the following error:
    DECLARE
    BEGIN
    portal.wwsec_api.deactivate_portal_user(p_user_name => 'testuser');
    END;
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL.WWCTX_SSO", line 1342
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL.WWCTX_SSO", line 1151
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "PORTAL.WWCTX_SSO", line 1448
    ORA-06512: at "PORTAL.WWCTX_API", line 245
    ORA-06512: at "PORTAL.WWERR_API_ERROR", line 99
    ORA-06512: at "PORTAL.WWERR_API_ERROR", line 222
    ORA-06512: at "PORTAL.WWSEC_API", line 310
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL.WWCTX_SSO", line 1342
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL.WWCTX_SSO", line 1151
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 3
    Any help would be appreciated.
    Thanks,
    --velu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Ton
    I am not a portal person. I tried what you said, but now I get the following.
    DECLARE
    BEGIN
    portal.wwctx_api.set_context(
    p_user_name => 'testuser'
    ,p_password => '1234'
    ,p_company => 'mycompany'
    portal.wwsec_api.deactivate_portal_user(p_user_name => 'testuser');
    END;
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL.WWSEC_API", line 304
    ORA-06512: at line 9
    All and any ideas would be appreciated.
    --Velu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Add Tracking Mask to PSD or .PNG Layer in AE CC

    Guys, I'm pulling my hair out. Anyway you could give me a quick tip on how to apply a tracking mask to a PSD or .PNG layered on top of a movie file in AE CC? Man i'm going crazy trying to figure this out. Thank you very much in advance.
    I see here: http://tv.adobe.com/watch/learn-after-effects-cc/rigid-mask-tracker-in-afte... how to apply tracking mask to an adjustment layer, but the .PSD layer or .PNG layer mask doesn't offer the "right click > tracking mask" option.
    Please, what am I over looking? I have an AE comp with a PSD file or PNG file which has some bricks for a building, and I need the mask to track as the movie ever so slightly moves.
    Please help me. Thank you.

    Nope, that's not how it's done.  It's a little more compolicated than that:
    Duplicate the car layer.  Put it above the bricks.
    Make a mask around the  car.  Do it just before the car gets in front of the bricks.  Be very careful when masking.  Click the stopwach icon on the mask path property.
    Go forward in time until the car is just past the bricks.  Double click on the mask path you made earlier: a box forms around it.  Drag it back over the car and tweak mask vertices as necessary.
    RAM Preview and adjust the mask path as necessary.
    There you go.

  • How To Line Items - activate/deactivate functionality

    In the How To paper on "Line Items in BPS", fields such as user & date can be stamped on each delta record.  This is done through the characteristic relationships exit function. 
    To limit which types of activities are tracked at this level, the paper makes reference to the ability to "program a mechanism to activate and deactivate the functionality" in order to only stamp the date (for example) on manual changes, and not on automatic functions or batch activities. 
    Does anyone have an example of how they've done this?  I could code the FM to only execute if the user id is not one of our batch ids, but that wouldn't take care of automatically executing functions that are attached to a layout. 
    Thanks.

    Hello Astine,
    quite often you want to track changes for specific data for example accounts only. To accomplish this you can use account as a source field for the derivation and then check the account number in the "line item" exit.
    If you want to track only manual changes and not batch processing, then a simple if sy-batch = 'X' will do the trick in your exit.
    Regards,
    Marc
    SAP NetWeaver RIG

  • To activate/deactivate checkbox in ALV grid report

    Hi All,
    I am trying to create an ALV Grid that contains check-box as column fields. I am able to either activate or deactivate all the check-boxes in the entire column. But, I need to keep only certain check-boxes for editing based on certain conditions. The other check-boxes in the column should be deactivated for editing by the user. Any help is appreciated.
    -Dinesh

    Hi dinesh babu ,
    In this example, i use 'REUSE_ALV_GRID_DISPLAY_LVC'
    FORM display_alv .
    DATA: ls_event_exit TYPE slis_event_exit,
          lt_event_exit TYPE slis_event_exit OCCURS 1.
    DESCRIBE TABLE itab_data LINES lv_cont.
    PERFORM layout_build   USING gs_layout.
    PERFORM eventtab_build USING gt_events[].
    PERFORM comment_build  USING gt_lheader[].
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    i_structure_name            = 'ZHRESS_FORMACION_ALV'
    i_client_never_display   = 'X'
    i_bypassing_buffer         = 'X'
    CHANGING
    ct_fieldcat                      = gt_fieldcat[]
    EXCEPTIONS
    inconsistent_interface   = 1
    program_error               = 2
    OTHERS                         = 3.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT gt_fieldcat INTO ls_fcat.
    Active check field
      IF ls_fcat-fieldname EQ 'CHECK'.
         ls_fcat-checkbox     = 'X'.
         ls_fcat-edit             = 'X'.
         ls_fcat-fix_column  = 'X'.
         ls_fcat-reptext        = 'Check'.
      ENDIF.
      PERFORM field_attributes.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
    EXPORTING
         i_background_id                   = 'ALV_BACKGROUND'
    i_callback_program             = g_repid
    i_callback_pf_status_set      = 'PF_STATUS'
    i_callback_user_command  = 'USER_COMMAND'
    is_layout_lvc                       = gs_layout
    it_fieldcat_lvc                     = gt_fieldcat[]
    i_save                                 = g_save
    is_variant                            = g_variant
    it_events                             = gt_events[]
    it_event_exit                       = lt_event_exit
    i_default                             = 'X'
    TABLES
    t_outtab                              = itab_data.
    ENDFORM.                    " DISPLAY_ALV
    FORM field_attributes .
      DATA ls_stylerow TYPE lvc_s_styl .
      DATA lt_styletab TYPE lvc_t_styl .
      LOOP AT itab_data INTO wa_data.
        IF wa_data-status NE c_status_p.         " Condition for enable / disable check
          ls_stylerow-fieldname = 'CHECK' .
          ls_stylerow-style = cl_gui_alv_grid=>mc_style_disabled.  "set field to disabled
          APPEND ls_stylerow TO wa_data-field_style.
          MODIFY itab_data FROM wa_data.
        ENDIF.
      ENDLOOP.
    ENDFORM.   
    Regards,
    José
    Edited by: Jose Luzardo on Oct 6, 2009 3:37 PM

Maybe you are looking for

  • Why is my iMac so dodgy?

    My imac has got slower and slower over the last year.  Today it refused to start up so I kept forcing it to turn off and re-starting until it eventually started.  Another problem is that since installing Mavericks, the only way I can use Safari is to

  • Match Regular Expression not returning submatches.

    I am having an issue with Match Regular Expression not returning the appropriate number of submatches.  My string is as follows: DATAM    995000    1.75    0.007    -67.47    24.493    99.072 The spaces are tabs and the length is not fixed so simple

  • When will face time be release over 3g?

    When will face time be realsed for use over 3G as this would be really useful. Having only recently been given the new ipad 3 for my birthday, I wanted to use the face time facility when I visited a relative in hospital becuase my husband could not a

  • How to add the JMS adapter property in BPEL1.1 version

    Hi, I am working on the Jms adapter by using BPEL version1.1 and i am want to add some Jms property to send with Jms message.We have option to add the Jms property in BPEL2.0 version. But i am not able to add Jms property in BPEL version1.1. Please h

  • Mail application is missing

    Double clicking Mail icon in dock results in a ?mark appearing and the application does not open. When I search applications there is no folder for Mail. My previously received email seems to be filed in my library, but I can not open these without t