Item level changes not being updated.

Hi,
I am implementing BADI BBP_DOC_CHANGE_BADI, method BBP_PO_CHANGE.
The problem that I am facing is that whenever, I change anything at the Item level, after the PO has been created, (say for eg item quantity), it is not being updated to the database. I also noticed one thing. When I click on the order button (after changing the item quantity) the import parameter of the BADI it_item of the is empty. Also I am checking in transaction BBP_PD, whether the update has happened.
Thanks in advance
Pete

Hi Yann,
Below is the code in the BADI BBP_DOC_CHANGE_BADI.
method IF_EX_BBP_DOC_CHANGE_BADI~BBP_PO_CHANGE.
CLASS cl_exithandler DEFINITION LOAD.
DATA: LV_CUF_BADI TYPE REF TO IF_EX_BBP_CUF_BADI, "ZCL_IM_SRM_TANDC_BADI, ",
  LV_CUF_BADI_ACTIVE.
DATA: IV_MODE   TYPE xfeld,
        IS_CUF_HEADER  TYPE BBP_PDS_HEADER,
        IS_GETDET_HEADER TYPE BBP_PDS_PO_HEADER_D,
        ES_UPD_HEADER TYPE BBP_PDS_PO_HEADER_D,
        IS_UPD_HEADER TYPE BBP_PDS_PO_HEADER_U,
        LV_CHANGE TYPE C,
        IS_ITEM TYPE BBP_PDS_ITEM ,
        IS_ACC TYPE BBP_PDS_ACC,
        IV_DOC_TYPE TYPE CRMD_ORDERADM_H-OBJECT_TYPE VALUE 'BUS2201',
        LV_INCLUDE_NAME TYPE DD03P-TABNAME VALUE 'INCL_EEW_PD_HEADER_SSF_PO',
        LT_DDIC TYPE DD03TTYP,
        LV_REPID TYPE SY-REPID,
        LV_DYNNR TYPE SY-DYNNR,
        I_HEADER LIKE IS_CUF_HEADER,
        GV_CLAUSE_ID(256) TYPE C,
        LV_FLAG(1),
        LV_IMP(1),
        LS_COUNTER(1),
        LS_COUNT(1),
        LS_NUMB(1),
        LS_GUID(32),
        LS_GUID_INIT(32),
        LS_GUID_BLANK(32) TYPE C VALUE SPACE,
        LS_NUMB_BLANK(1) TYPE C VALUE SPACE,
        LS_CNT(1),
        LV_UCOMM(4),
        EV_OKCODE TYPE SY-UCOMM.
DATA: WA_PDHSC TYPE BBP_PDHSC,
WA_PDHSC_SEL TYPE BBP_PDHSC,
*wa_it_item type BBPT_PD_PO_ITEM_ICU,
WA_IT_ITEM TYPE BBP_PDS_PO_ITEM_ICU,
wa_et_item TYPE BBP_PO_ITEM_BADI,
WA_HCF TYPE BBP_PDS_HCF_PO.
LS_COUNTER = LS_COUNTER + 1.
IF SY-UCOMM = 'SAVE'.
IMPORT LV_TEXT TO LV_IMP FROM MEMORY ID 'TEXT'.
LV_IMP = LV_IMP + 1.
EXPORT LV_TEXT FROM LV_IMP TO MEMORY ID 'TEXT'.
ENDIF.
IF SY-UCOMM = 'CHEC' OR SY-UCOMM = 'ENT1' OR SY-UCOMM = 'SAVE' OR SY-UCOMM = 'LIST'.
  GET PARAMETER ID 'NUMB' FIELD LS_NUMB.
  IF LS_NUMB IS INITIAL.
    MOVE IS_HEADER-GUID TO LS_GUID_INIT.
    MOVE LS_COUNTER TO LS_COUNT.
    SET PARAMETER ID 'GUID' FIELD LS_GUID_INIT.
    SET PARAMETER ID 'NUMB' FIELD LS_COUNT.
  ENDIF.
ENDIF.
MOVE-CORRESPONDING IS_HEADER TO I_HEADER.
IMPORT LV_TEXT TO LV_IMP FROM MEMORY ID 'TEXT'.
IF SY-UCOMM = 'SAVE' AND LV_IMP = 2.
CALL METHOD cl_exithandler=>get_instance
EXPORTING
exit_name = 'BBP_CUF_BADI'
IMPORTING
act_imp_existing = LV_CUF_BADI_ACTIVE
CHANGING
instance = LV_CUF_BADI.
MOVE SY-UCOMM TO LV_UCOMM.
LV_REPID = 'SAPLZSRM_CUST_SCREEN'.
LV_DYNNR = '1001'.
GET PARAMETER ID 'GUID' FIELD LS_GUID.
IF LS_GUID NE IS_HEADER-GUID.
  I_HEADER-GUID = LS_GUID.
ENDIF.
CALL METHOD LV_CUF_BADI->PUT_DATA
EXPORTING
          is_header             = I_HEADER
          is_item               = IS_ITEM
          is_acc                = IS_ACC
          iv_doc_type           = 'BUS2201'
          iv_include_name       = lv_include_name
          iv_mode               = IV_MODE
          it_dd03p              = lt_ddic
          iv_caller_dynnr       = '1000'
          iv_caller_repid       = SY-REPID
        IMPORTING
          ev_repid              = LV_REPID
          ev_dynnr              = LV_DYNNR.
CALL METHOD LV_CUF_BADI->GET_DATA
    IMPORTING
      ev_okcode = EV_OKCODE
    CHANGING
      es_header = I_HEADER
      es_item   = IS_ITEM
      es_acc    = IS_ACC.
ENDIF.
WA_PDHSC-GUID = IS_HEADER-GUID.
WA_PDHSC-ZZ_OPT_TERM_COND = I_HEADER-ZZ_OPT_TERM_COND.
MOVE-CORRESPONDING IS_HEADER to ES_HEADER.
MOVE IT_PARTNER TO ET_PARTNER.
loop at it_item into wa_it_item.
MOVE-CORRESPONDING wa_it_item to wa_et_item.
append wa_et_item to et_item.
endloop.
MOVE IT_ACC TO ET_ACC.
MOVE IT_HCF TO ET_HCF.
MOVE IT_ICF TO ET_ICF.
MOVE-CORRESPONDING WA_PDHSC TO WA_HCF.
APPEND WA_HCF TO ET_HCF.
IF LV_UCOMM = 'SAVE' AND LV_IMP = 2.
  SELECT * INTO WA_PDHSC_SEL FROM BBP_PDHSC WHERE GUID = IS_HEADER-GUID.
  ENDSELECT.
  IF SY-SUBRC = 0.
    UPDATE BBP_PDHSC SET ZZ_OPT_TERM_COND = WA_PDHSC-ZZ_OPT_TERM_COND WHERE GUID = IS_HEADER-GUID.
    SET PARAMETER ID 'GUID' FIELD SPACE.
    SET PARAMETER ID 'NUMB' FIELD SPACE.
    CLEAR LV_IMP.
    EXPORT LV_TEXT FROM LV_IMP TO MEMORY ID 'TEXT'.
  ELSE.
    INSERT INTO BBP_PDHSC VALUES WA_PDHSC.
    SET PARAMETER ID 'GUID' FIELD SPACE.
    SET PARAMETER ID 'NUMB' FIELD SPACE.
    CLEAR LV_IMP.
    EXPORT LV_TEXT FROM LV_IMP TO MEMORY ID 'TEXT'.
  ENDIF.
  COMMIT WORK.
ENDIF.
endmethod.
Let me know if you need any clarifications.
Thanks,
Pete

Similar Messages

  • Incoterms on Item level is not updated on STO.

    Issue: they have created a STO with wrog incoterm, now the issue is that the Incoterms on PO--> Item level is not updated if Incoterms on Header level is changed. I suggested them to change incoterm on item level manually, but user is saying the problem is that SAP doesn't change automatically Incoterms on item level if Incoterms on Header level are changed??
    What user is saying..Is this correct? or any thoughts/solution to fix this issue?
    Can anyone suggest me on this?
    Thanks & Regards
    Suresh Babu

    HI,
    Try this link
    How Incoterms gets defaulted for STO
    Regards
    KK

  • Changes to Planned Order in R/3 not being updated in APO

    HEllo -
    I am creating SNP planned orders EE in APO and sending them through CIF to R/3.
    When I make changes( Qty change) to the planned order in R/3, those changes are not being updated in APO. When I run CCR, I get the error 159 - Differences in content.
    When I create a planned order in R/3, that order does not flow into APO, running CCR gives the error 151 - Missing in APO.
    Ofcourse, I can trigger the reconcialition job and make then go through but I have not been able to find the root cause. Can someone help me with this?
    Appreciate your help
    Varun

    Hi Varun.
    In the R3 system have you activated the BTE's?
    SPRO
    Integration with other SAP components->APO->Basic Settings for Data Transfer->Change Transfer->Change Transfer for Transaction Data->Activate Online Transfer Using BTE
    Applications: ND-APO and NDI need to be activated.
    Hope this helps.
    M

  • Delivery address at Item Level and not at the Header Level

    Hello Experts,
    We are facing an issue as described below:-
    We are in SRM 7.0 using classic scenario.
    After approval of multi line Shopping Cart in SRM ,PR's are getting
    automatically created in backend R/3 system.After converting PR's into
    POs in backend R/3,we are observing that the delivery address for these
    PO'are getting printed at Item level and not at the Header Level
    inspite of the delivery address being same for all the Item level.
    As desired,the delivery address in the PO's should have the delivery
    address at the header level if the the delivery address is identical
    for all the Item Levels.
    However,if we create a PR directly in R/3 system and then convert these
    PR's into PO's in the backend R/3 system,we find that the deliver
    address are getting printed at the Header Level if the delivery address
    is same for all the item level(which is as desired)
    Any pointers will be highly appreciated.
    Thanks & Regards,
    RKS

    It is standard process only.
    In Po delivery address is maintained at item level because to which address perticular material to be delivered,
    this may change from material to material or may not change

  • Can't Delete Private Cloud - tbl_WLC_PhysicalObject not being updated

    I am having issues with our SCVMM instance where I can't delete Private Clouds...even if there empty. 
    When I right click the Private Cloud and click Delete, the "Jobs" panel says it finished successfully, however, the Private Cloud is not deleted. 
    After doing some researching, I believe its because entries in the tbl_WLC_PhysicalObject database table are not being updated correctly, when a VM is moved from one Private Cloud to another. After determining the "CloudID" of the Private
    Cloud I am trying to delete, I still see resources assigned to this Private Cloud in the tbl_WLC_PhysicalObject table, even though from VMM Console, the Private Cloud shows up empty. 
    For some testing purposes, I assigned a VM back to the Private Cloud I am trying to delete, only to move it out again and gather some tracing/logging. When I moved the VM back out of the Private Cloud, I had a SQL Profiler running in the background, capturing
    the SQL statements on the DB server. Looking at the "exec dbo.prc_WLC_UpdatePhysicalOBject" statement, I see the @CloudID variable is assigned the "CloudID" of the Private Cloud the VM is currently assigned to/the Private Cloud I am trying
    to delete and is NOT the CloudID of the Private Cloud the VM is being moved to/assigned to. 
    Instead of having the VMM Console GUI do the Private Cloud assignment/change...I copied the PowerShell commands out...so I can run them manually. Looks like the script gets 4 variables ($VM, $OperatingSystem, $CPUType, and $Cloud), and then runs the "Set-SCVirtualMachine"
    CMDLET. For the $Cloud variable, it does return the proper "CloudID" of the Private Cloud I am trying to move the VM too (I ran it separately and then ran an ECHO $Cloud to look at its value). When I run the "Set-SCVirtualMachine" CMDLET,
    the output has values for "CloudID" and "Cloud" and these are still the values of the source Private Cloud/Private Cloud I am moving the VM out of and ultimately want to delete. 
    Has anyone ran into this? Is something not processing right in the "Set-SCVirtualMachine" CMDLET?

    I been slowing looking into this and this is where I am at:
    I built a development SCVMM 2012 R2  instance that mocks our production environment (minus all the VM's...just the networking configuration and all the private clouds have been mocked). From there, I started at SCVMM 2012 R2 GA and one by one installed
    the 4 rollup patches in ordered and at each new patch level,  I monitored the queries coming in through SQL Profiler, as I moved a VM between private clouds and created new VM's within clouds. As I created new VM's and moved the VM's between clouds. the
    stored procedure "prc_WLC_UpdatePhysicalOBject" all have a value of NULL for the CloudID column....so a CloudID isnt even associated to the physical objects (basically the VHDX files and any mounted ISO's I have on the VM's). 
    I did find out this SCVMM instance was upgraded from SCVMM 2008 (I took over after the 2012 R2 upgrade was completed). 
    I am thinking at this point...nothing is wrong with SCVMM 2012 R2 if you build and recreate it from scratch and a new DB. I am thinking this might be a depreciated field from SCVMM 2008. The only other thing we did, was put in a SAN and moved VM's from stand-alone
    hosts to the new CSV's (A mixture of 2008 R2 and 2012 NON R2 hosts). 
    At this point...since we dont have Self-Service enabled yet....it will be a days work to rebuild a new instance of SCVMM 2012 R2 and migrate the hosts/VM's to it and start from a clean slate. 
    I know the DB structure isnt really published...but does anybody have any other insights into this? 

  • Parent members not being updated when running AGG

    I have a scenario where eventhough the bottom level members change the parent members are not being updated when we run an agg
    For example if the bottom level member was 150 and we run the aggregate the numbers are fine. If the bottom level member was changed to #Missing then the parent members are not updated when we run the agg
    IN the script below we use CALC DIM(COstCenters,SpaceTYpe)
    My concern is the setting SET FRMLBOTTOMUP ON i use, because it looks like it's skipping that block. HOw can work around this issue without affecting the performance too much. For example using SET CREATEONMISSINGBLK ON might help, but will have a performance impact
    Here are the details of the script
    SET MSG SUMMARY;
    SET FRMLBOTTOMUP ON;
    SET CALCPARALLEL 4;
    FIX("Budget","Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",@IDESCENDANTS("$1"),@LEVMBRS
    (SpaceType,0),@LEVMBRS(CostCenters,0))
    CALC DIM (ManagedBU,AllocatedBU);
    ENDFIX
    FIX("Budget", "Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",AllocatedBU,ManagedBU,
    @LEVMBRS(SpaceType,0),@LEVMBRS(CostCenters,0))
    "$1";
    ENDFIX
    /* Aggregating numbers for the report so it could be viewed n a top cost center level */
    FIX("Budget", "Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",@IDESCENDANTS(AllocatedBU),@iDESCENDANTS(ManagedBU),@IDESCENDANTS("$1")
    CALC DIM(COstCenters,SpaceTYpe);
    ENDFIX
    /* Aggregating numbers for the report so it could be viewed in a top regional level*/
    FIX("Budget", "Version1", "FY2011", "RSF","No_Period","M3","M6","M9","M12",@IDESCENDANTS(ManagedBU),@IDESCENDANTS(AllocatedBU),@IDESCENDANTS(SpaceType),CostCenters)
    @IANCESTORS("$1");
    ENDFIX

    yes Aggmissg will work with from bottom up. As for performance, believe it or not, having Aggmssg on is quicker that off. That is because when off, it has to look at the children blocks to determine if there are data values present that need to overwrite the parent value where hen it is on, it does not look it just does it.

  • Table: PO item level changes

    Hi,
    We have version management active for PO.
    In which table the PO item level changes are updated?
    Regards,

    Hello Nick,
    Thanks a lot for your reply.
    But the Tables CDHDR / CDPOS do not provide the sufficient information regarding item level changes.
    Regards,
    Nitin

  • Net value not being updated from Pricing Element/Pricing condition

    Hi All,
    User confirm activity of 40 hours in CJ20n of Project System. When we are creating RRB(Resource Related Billing) request for billing of 40 hours using DP91, Net Value is coming Zero where as pricing condition for the item is upodating Basic Price from quantity of 40 hours.
    Please adise, why Net Value field is not being updating.
    Regards
    Rajesh

    hi monty,
    first of all please check the validity and other criteria by which sytem populates the pricing records in to the sales order.
    this can be easily done by refering to past "pricing" posts.
    also
    kindly check on the reference status whether this order is getting referenced and pricing values from a preceeding document like  sales quotation,because if the conditions mentioned by you are not in the preceeding saes document then it will not get populated ,hence you have to update pricing by going on to the conditions tab,
    update me so that other solutions can put to you
    regards
    Mohit Singh

  • Business Role changes not being provisioned

    Guys (and girls),
    We're having the issue that whenever we change something to a business role in IdM 7.1 SP5, like adding or removing a technical role (SAP role) the change isn't provisioned to the system authomatically resulting in users not being updated.
    The workarround now is to change a business role and then remove it from a user and add it to that user again. Works ok when you're dealing with only a few users but I'm not looking forward to the day our basic role needs updating.
    Same thing goes for changing users telephone number or SNC name or the likes.
    I'm not sure if the two issues are related but am I missing an assignment of a task somewhere?
    Cheers,
    Jonathan

    Jonathan,
    I think so, but a pretty simple one to fix.
    I would do one of two things:
    1. Put a MODIFY task on MXREF_MX_ROLE or whatever attribute you're holding roles in.  Have this task do a role reconcilation.
    2. As a part of the workflow, have a role reconciliation execute.
    On the whole, I prefer the second option.  Don't like adding baggage onto the MXREF attributes.  Just keeps things running more efficiently.
    By role reconciliation, I mean executing the functions/tasks needed to reassert the roles on the user.  I think there's a built in scripting function to do this or you can automate the add/remove functionality you described in your message, holding the role MSKEYs in a temporary attribute.
    Matt

  • Delivery address appearing at Item level and not at Header level in PO

    Hello Experts,
    We are facing an issue as described below:-
    We are in SRM 7.0 using classic scenario.
    After approval of multi line Shopping Cart in SRM ,PR's are getting
    automatically created in backend R/3 system.After converting PR's into
    POs in backend R/3,we are observing that the delivery address for these
    PO'are getting printed at Item level and not at the Header Level
    inspite of the delivery address being same for all the Item level.
    As desired,the delivery address in the PO's should have the delivery
    address at the header level if the the delivery address is identical
    for all the Item Levels.
    However,if we create a PR directly in R/3 system and then convert these
    PR's into PO's in the backend R/3 system,we find that the deliver
    address are getting printed at the Header Level if the delivery address
    is same for all the item level(which is as desired)
    Any pointers will be highly appreciated.
    Thanks & Regards,
    RKS

    HI Paul,
    Thank you for your response.In our case even if all the Line/items level have same Plant and storage location still the delivery address is getting printed at Item level and not at Header Level and this is happening only for PO's created from PR's orginating from SRM7.0.
    However if we create PR's directly in R/3 and then convert them into PO's,the delivery address is getting printed at the Header level if the delivery address is same for all the Item level.
    Can you plz some insite into this?
    Your help will be highly appreciated.
    Regards,
    RKS

  • Delivery address at Item level and not at Header level in PO

    Hello Experts,
    We are facing an issue as described below:-
    We are in SRM 7.0 using classic scenario.
    After approval of multi line Shopping Cart in SRM ,PR's are getting
    automatically created in backend R/3 system.After converting PR's into
    POs in backend R/3,we are observing that the delivery address for these
    PO'are getting printed at Item level and not at the Header Level
    inspite of the delivery address being same for all the Item level.
    As desired,the delivery address in the PO's should have the delivery
    address at the header level if the the delivery address is identical
    for all the Item Levels.
    However,if we create a PR directly in R/3 system and then convert these
    PR's into PO's in the backend R/3 system,we find that the deliver
    address are getting printed at the Header Level if the delivery address
    is same for all the item level(which is as desired)
    Any pointers will be highly appreciated,
    Regards,
    RKS

    This may be an old note, but it may point you in the right direction: Note 450425 - Delivery Address creates individual R/3 address number.
    If you debug the function module in SRM that creates the PO in ECC, you can check if this is the case.
    Regards,
    Robin

  • Orchestration Dependeny Queue not being updated

    Hello,
    We want to increase the consumer count for the orchestration dependency queue from 16 to 30. We have made the changes to the weblogic-ejb-jar.xml updated the oms.ear. But unfortunately, the consumer count is not being updated. Can someone please help me urgently !!!!!!!!!!!!!!
    Regards,
    RavRao

    Hi,
    Did you check in KE24 and R/3 data is there or no?
    Next you can check your Delta Settings.
    Fyi... there is no Delta Queue in Copa.
    Follow this issue:
    copa delta problem
    Let us know, if it works.
    ~AK

  • Changes not being published

    I'm having trouble with my changes not being saved/published.
    I can choose to edit a page, click publish... it then shows the
    page (in contribute) with my changes. But, when I go to the actual
    website, the changes are not there... and when I go back to
    contribute and move around in contribute's view of my website and
    go back again to the page I was working on.. the changes are no
    longer there.
    thoughts? Should I uninstall and re-install
    contribute?

    No, don't uninstall...
    First, emty the cache of you Internet Explorer and see if you
    can see the changes then.
    1. Main menu in IE, go to Extra>(internet)Options
    2. go to Browsing History
    3. click Remove... (delete/empty, I don't know the text of
    the btn in english version) and emty your cache.
    Second, change the settings of IE.
    1. Main menu in IE, go to Extra>(internet)Options
    2. go to Browsing History
    3. click Preferences (next to Remove.. btn mentioned above)
    4. change the setting for Temporary Internet files so that
    the pages refresh everytime you visit the pages.

  • Item Texts Is Not Being Created in BAPI_BILLINGDOC_CREATEMULTIPLE

    Hi.
    I am Using Bapi TO Create Invoice, Every thing is created successfully , but item text is not being created. Code is as below.
    DATA: s_vbap TYPE vbap,
                t_billing TYPE STANDARD TABLE OF bapivbrk WITH HEADER LINE,
                t_datain TYPE STANDARD TABLE OF bapikomfktx WITH HEADER LINE,
                t_return TYPE STANDARD TABLE OF bapireturn1 WITH HEADER LINE,
                t_success TYPE STANDARD TABLE OF bapivbrksuccess WITH HEADER LINE.
          SELECT SINGLE * FROM likp
          WHERE vbeln = v_del_doc_no.
          SELECT SINGLE * FROM lips WHERE
          vbeln = v_del_doc_no.
          t_billing-salesorg = likp-vkorg.
          t_billing-ref_doc = likp-vbeln.
          t_billing-ref_item = lips-posnr.
          t_billing-doc_number = v_del_doc_no.
          t_billing-itm_number = lips-posnr.
    *      SELECT SINGLE fkarv FROM tvak
    *            INTO  t_billing-ordbilltyp
    *            WHERE auart EQ zsoa_so_header-auart.
          SELECT SINGLE auart FROM vbak
                      INTO  t_billing-ordbilltyp
                      WHERE vbeln EQ order_num.
          t_billing-price_date = sy-datum.
          t_billing-ref_doc_ca = likp-vbtyp.
          t_billing-material = lips-matnr.
          t_billing-plant = lips-werks.
          APPEND t_billing.
          BREAK-POINT.
          CLEAR: t_datain.
         t_datain-ref_doc = v_del_doc_no.
          t_datain-ref_item = '000010'.
          t_datain-applobject = 'VBBP'.
          t_datain-text_id    = '0001'.
          t_datain-langu      = sy-langu.
          t_datain-format_col = '*'.
          t_datain-text_line  = 'FSG 2829'.
          APPEND t_datain.
          CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
            TABLES
              billingdatain = t_billing
              textdatain    = t_datain
              return        = t_return
              success       = t_success.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          LOOP AT t_return.
            itab_msg-type = t_return-type.
            itab_msg-msg =  t_return-message.
            APPEND itab_msg.
            CLEAR  itab_msg.
          ENDLOOP.
          READ TABLE t_success INDEX 1.
          p_i_bill_doc = t_success-bill_doc.
        ENDIF.
      ENDIF.
      CLEAR: itab_so_items, itab_so_items[] , delivery_no , itab_return[].
    So Text FSG 2829 is not being created in Item Text.....

    Hi Tahir,
    You can check with the below thread
    A question of BAPI_BILLINGDOC_CREATEMULTIPLE
    Regards,
    Pawan

  • Item level security not working when placed in a portlet page

    I have three page links linking to separate pages and have two of them with item level security turned on for specific groups with view privilges. I have the access for those groups with view privilges in the page level as well. I have published that as portlet and placed the portlet in another page which has view priviliges for the groups specified in item level as well.
    But I notice that when i place the portlet in a page, the item level security is not working.
    Item Level Security Not Working for Items Placed on a page and published as portlet and placed in another page. Is there some work around for this.
    Thanks
    Valli

    Would you please clarify for me? Is the problem that unauthorized people can see the portlet, or that unauthorized people can see the links?

Maybe you are looking for

  • How do i make a ringtone in garageband?

    trying to make a ringtone for my iphone using a track out of itunes. finding instructions extremely confusing. can anyone help? thanks.

  • Lost all my contacts!  Can anyone help me get them back.

    I recently bought my first iphone 4s.  I just tried to sync it with my itunes and also set up icloud (really don't know what it is) and suddendly my contacts are gone.  Please help!!!!

  • Remittence fror TDS (OT) type

    Dear All, Thanks to all of you for the support. I have made an Invoice wherein I have deducted TDS from the vendor as per the norm. The TDS has got successfully got deducted and the TDS ledger has got updated. ITS fine. Now the problem is that for th

  • [FLASH8]C�mo abrir un .zip

    Hola, Utilizo la sentencia getURL(" http://www.midominio.com/archivo.zip","_blank") para descargar archivo.zip Me abre una ventana nueva con mensaje "No se encontr� ninguna p�gina" y sin darme la opci�n de abrir o guardar el archivo (estoy en explore

  • JTextField & ToolTipText

    Hello, I need some help. I create a JTextField where the content of the text pane have to respect a model. The model is selected by a JComboBox. I want that the ToolTipText shows the skeleton of the selected model. Every time I change the selection,