Remove tax withholding options in PZ10

Hi,
We are using EP6 with Enterprise 4.7 Ext2.00 and ITS 6.20 to display tax withholding in our portal.
I have a client request to only show 2 options in the dropdown for the "Tax Exempt Indicator" in PZ10 (Tax Withholding Data"
I only want to have these options in the dropdown:
R     Exempt, reportable
     Not exempt
The dropdown is built from the Domain values from field P0210-EXIND, I do not wish to change this table.
Is there any one who has had this situation before?
Thanks and regards,
Ronald Meyer

Hi,
The withholding tax type that you assigned to that vendor is already assigned for the same vendor,
you cannot assign the same WHT type to same vendor more than once.
So please check that you already assigned that WHT type to that vendor and remove the duplicate entry..
Regards,
Satya

Similar Messages

  • Remove Tax from standard order.

    Hi all,
    I have a standard order, Invoice is already created. Customer comes up with Tax exampt certificate, now how to remove tax from the order.
    Pleeeseee Help.
    Thanks,
    Utpal

    One option as suggested is giving credit memo. But I understand that you are facing a limitation for the same.
    The alternative solution could be to pass an FI JV (This will be dobe by FI person).
    Normally such cases will be very few. In that case FI JV is the best solution. If this is repetitive at short intervals, then it is recommended that you configure a separate Credit Memo Type for the same & have a separate pricing procedure in which all condition are manual condition, so that the pricing procedure can be used flexibily. Ofcourse all related configuration for same will be required, which is assumed to be known.
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • What is the result of using the "post tax payable" option in the advance ta

    what is the result of using the "post tax payable" option in the advance tax report - program rfumsv00? I know it will then post the input and output tax to the tax payable GL account. But from point of view of reporting, when you run the advance tax report, will there be any change after doing this posting to tax payable account?

    Basic communication aside, J2EE is mostly a synchronous run-time environment. When asynchrony is introduced, a whole new set of infrastructure requirements is needed to support QoS and commercial-quality implementations. In other words, it's not just about API anymore, it's about reliable communication, exception handling, time outs, etc. You may want to look at this Q&A to see some of the benefits provided by J2EE as underlying run-time for orchestration:
    http://searchwebservices.techtarget.com/ateQuestionNResponse/0,289625,sid26_cid511195_tax292928,00.html
    Doron\
    Download Collaxa 2.0
    http://www.collaxa.com

  • How to remove save, cancel option when end user runs the workbook in Portal

    Hi,
    how to remove save, cancel option when end user runs the workbook and make some small changes like using page items or increasing rows and columns
    I already made 2 changes
    1) I removed the option in Oracle Enterprise Manager under discoverer viewer of saving
    2) I also removed the option of Allow saving changes made in Viewer when adding workbook to portal
    But still the end user gets options of saving when made small changes to workbook like increasing rows and columns
    Is their any place, I need to make changes?
    Thanks in Advance
    Rowdheer

    Don't use JSP to serve a binary file. It almost implies the use of awful scriptlets and the invocation of both the response writer and the response outputstream which would only lead to IllegalStateException headaches in the server logs.
    Use a Servlet instead. Specify the file name as request parameter and let the servlet read the file and write it to the outputstream of the response.

  • How to remove my payment option on iTunes App Store and iTunes on the iPhone?

    I've had this problem many times and eventually it would just work out after a week or so but I'm tired of that so here's what happens: I use prepaid credit cards for iTunes (I've also used a real credit card and had the same problem) and when they max out or run out of funds it will ask me to verify my payment information. So I sign in and it takes me to the page to update the info I update it to make sure there wasn't just an error and if it says something is wrong I know it's maxed/out of funds. And I'm not allowed to download any apps (including free ones and updates for apps I already own) while this happens. There is no option to remove my payment option, before after about a week of continuously returning to the payment page everytime I try to download/update an app a "none" option will appear below the VISA, MASTERCARD and AMEX credit card type however the option is never there for around the first week and is very frustrating. So how do I get the none option to appear ? Or remove a used/maxed credit/pre paid credit card ?

    iTunes Store: Accepted forms of payment - http://support.apple.com/kb/HT5552 - "The available payment methods vary by country, but typically you can use: Credit cards, iTunes Cards,  iTunes Store Gift Certificates, Content Codes, Store credit (including Allowance Account balances), ClickandBuy, PayPal" - No specific mention of debit cards though older documents no longer on Apple website showed they at least used to be accepted in some countries (not USA).
    For India - http://www.apple.com/legal/internet-services/itunes/in/terms.html#SALE  But it isn't very specific.
    Removing a credit card from an account - iTunes Store: Changing Account Information - http://support.apple.com/kb/HT1918 - More information at: https://discussions.apple.com/message/15891166

  • Remove ":" from select option label(description)

    Hello All
    I have a requirement to remove the select option description (which SAP displays by default from the field label maintained in the data element),
    I thought the best way to achieve that requirement is by passing "space" to the parameter  'I_DESCRIPTION' to the method IF_WD_SELECT_OPTIONS->ADD_SELECTION_FIELD, however, it turned out that SAP still displays the label from the data element inspite of passing space(blank) to the parameter 'I_DESCRIPTION', to overcome this limitation I have created a data element without maintaining any labels this approach worked expect that SAP still displays ":"(colon) as the label, is there any way to get rid of this ":" too?
    As shown above, ":" is still displayed as the label of the date select option. I'm also looking for a way to reduce the distance between the last radio button and the select option, any pointers would be appreciated.
    Thanks for looking into this.
    -Vikram.

    You could use the below methods to recursively scan all elements of the view and set the design of all labels to light.
    method adjust_view .
    * IO_VIEW Importing RefTo IF_WD_VIEW
      data lo_container type ref to cl_wd_uielement_container.
      check io_view is bound.
      lo_container ?= io_view->get_root_element( ).
      process_elements( io_container = lo_container ).
    endmethod.
    method PROCESS_ELEMENTS .
    * IO_CONTAINER Importing RefTo CL_WD_UIELEMENT_CONTAINER
      data lo_container type ref to cl_wd_uielement_container.
      data lt_elements  type        cl_wd_uielement=>tt_uielement.
      data ls_elements  type ref to cl_wd_uielement.
      data lo_lbl       type ref to cl_wd_label.
      lt_elements = io_container->get_children( ).
      loop at lt_elements into ls_elements.
        try.
            lo_container ?= ls_elements.
            process_elements( io_container = lo_container ).
          catch cx_sy_move_cast_error .
            if ls_elements->_definition_name eq 'LABEL'.
              lo_lbl ?= ls_elements.
              lo_lbl->set_design( value = '01' ).
            endif.
        endtry.
      endloop.
    endmethod.

  • Can't find remove memory card option on my e71

    pls guys help me rectify dis, i can no longer see remove memory card option on my fone whenever i press d power key or thru memory card option in tools,, when i bought my e71, it'll always appear but it suddenly won't be there.. Pls help me as i always do swap memory cards and wudn't lyk to be switchin my fone off anytime i want to do so.. THaNks

    It may..It may not.. but NO harm trying as you will just have to reset the personalisations.. Though taking a Data back-up before the Factory reset is always recommended..

  • ViewCriteriaItem - How to remove the All option in mutiselect

    I have a viewCriteriaItem bound to an LOV. This item is enabled for multiselection in search form (by checking the Support Multiple value selection in ViewCriteria UI hint).
    I want to remove the 'All' option from the mutiselect dropdown. Is there a way to remove this?

    Hi RM,
    Thanks of the information.
    I've did as per your reply, even though the column is showing hide the column when right click on the column.
    could you provide other alternative.
    Thanks,
    Ram

  • ESS iView Error(W-4 Tax withholding)

    Hi,
    We are getting following error when we try to run W-4 Tax withholding.. application.
    failed to create or init instance of model 'com.sap.xss.hr.per.us.w4.model.HRXSS_PER_P0210_US' in scope APPLICATION_SCOPE with instanceId 'null'  
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: failed to create or init instance of model 'com.sap.xss.hr.per.us.w4.model.HRXSS_PER_P0210_US' in scope APPLICATION_SCOPE with instanceId 'null'
         at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java(Compiled Code))
         at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java(Compiled Code))
         at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java(Compiled Code))
         at com.sap.xss.hr.per.us.w4.fc.FcPerW4.onInit(FcPerW4.java:337)
    Thanx for your help.

    Hi Sharadha,
    Thanks for your reply, thing i am not getting that exception every time i log into portal.
        It is kinda weird sometimes it is throwing that exception smtimes not.
    Thank you,

  • W-4 Tax Withholding / RFC_ERROR_SYSTEM_FAILURE

    Hi experts,
    hope someone can help me with this problem in a EP 7.0 Portal (SP 08):
    In ESS > Benefits & Payment> W-4 Tax Withholding when I click on the service, than I want to add "New california" --> I fill in all information, then I get the following message:
    An exception occurred that was not caught., error key: RFC_ERROR_SYSTEM_FAILURE:
    com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: An exception occurred that was not caught., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.hr.per.us.w4.fc.FcPerW4.modifyRecord(FcPerW4.java:231)
         at com.sap.xss.hr.per.us.w4.fc.wdp.InternalFcPerW4.modifyRecord(InternalFcPerW4.java:573)
         at com.sap.xss.hr.per.us.w4.fc.FcPerW4Interface.modifyRecord(FcPerW4Interface.java:116)
         at com.sap.xss.hr.per.us.w4.fc.wdp.InternalFcPerW4Interface.modifyRecord(InternalFcPerW4Interface.java:205)
         at com.sap.xss.hr.per.us.w4.fc.wdp.InternalFcPerW4Interface$External.modifyRecord(InternalFcPerW4Interface.java:281)
         at com.sap.xss.hr.per.us.w4.detail.VcPerW4Detail.onFlush(VcPerW4Detail.java:215)
         at com.sap.xss.hr.per.us.w4.detail.wdp.InternalVcPerW4Detail.onFlush(InternalVcPerW4Detail.java:235)
         at com.sap.xss.hr.per.us.w4.detail.VcPerW4DetailInterface.onFlush(VcPerW4DetailInterface.java:144)
         at com.sap.xss.hr.per.us.w4.detail.wdp.InternalVcPerW4DetailInterface.onFlush(InternalVcPerW4DetailInterface.java:136)
         at com.sap.xss.hr.per.us.w4.detail.wdp.InternalVcPerW4DetailInterface$External.onFlush(InternalVcPerW4DetailInterface.java:212)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:491)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:437)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$600(FPMComponent.java:78)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.raiseReviewAndSaveEvent(FPMComponent.java:946)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.raiseReviewAndSaveEvent(FPMComponent.java:1109)
         at com.sap.xss.per.vc.detailnavi.VcPersInfoDetailNavi.next(VcPersInfoDetailNavi.java:226)
         at com.sap.xss.per.vc.detailnavi.wdp.InternalVcPersInfoDetailNavi.next(InternalVcPersInfoDetailNavi.java:163)
         at com.sap.xss.per.vc.detailnavi.DetailNaviView.onActionNext(DetailNaviView.java:153)
         at com.sap.xss.per.vc.detailnavi.wdp.InternalDetailNaviView.wdInvokeEventHandler(InternalDetailNaviView.java:161)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:779)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:714)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:77)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1255)
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:325)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:826)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:759)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.aii.proxy.framework.core.BaseProxyException: An exception occurred that was not caught., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.sap.xss.hr.per.us.w4.model.HRXSS_PER_P0210_US.hrxss_Per_Modify_P0210_Us(HRXSS_PER_P0210_US.java:239)
         at com.sap.xss.hr.per.us.w4.model.Hrxss_Per_Modify_P0210_Us_Input.doExecute(Hrxss_Per_Modify_P0210_Us_Input.java:137)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
         ... 64 more
    I appreciate your help! Thanks and best regards,
    Jasmin

    Please check table V_T7XSSPERSUBTYP, where in the subtypes for specific countries / cities need to be maintained for different infotypes. In this case check for IT0210.
    If helps, pl do reward.

  • Remove tax code in billing document

    Hi
       In sales billing, accounting entries for  account key ERL is as below
    PK Account    Account short text   Tx
    01 10000001   Customer                  A0
    50 40001001   Gross Sales - Trade  A0
    The requirement is to remove tax code (A0) from posting in customer account (10000001 ) i.e. it should look like below
    PK Account    Account short text   Tx
    01 10000001   Customer                 
    50 40001001   Gross Sales - Trade  A0
    I could not find any standard solution to this. Can you please suggest what will be best way to achieve this without impacting other processes.
    Thanks in advance.

    Hi,
    1. Kindly make the tax code field 'Suppressed' at the customer's account group level to avoid having tax code getting filled in customer line items.
    2. Using &sap_edit at table level, kindly remove the value of tax code from the customer line item. This will not have any impact as the tax amount are relevant for GL line items and it is more important to populate this information for GL line items.
    3. You can also opt for a substitution rule based on the business requirement.
    BR, D'nesh

  • Remove Private Window Option in Safari MacBookPro

    Remove Private Window Option in Safari MacBookPro
    Hello there,
    I am trying to remove the Private Window Option in my Safari MBP Version: 10.10.3. I have found the following guide below, but I could not find the "MainMenu.nib" file. Is there a way to find this? Or is it possible to remove the Private Window option at all by not doing the below steps? Thank you! 
    Disabiling for Safari:
    The following steps will disable private browsing on all accounts.  Taken from: http://guides.macrumors.com/Safari#Disable_Private_Browsing (Note: you must have the Xcode tools installed - can get from App store):
    Control or right-click on the Safari icon in Finder and choose Show Package Contents.
    In the window that appears, navigate to Contents/Resources/English.lproj/ and double click on the MainMenu.nib file. (I cannot locate this file)
    In Interface Builder (From Xcode,) select the window showing the Safari menu bar.
    Select the Safari menu, then select the private browsing item and press delete.
    Type command-S to save the changes, then close Interface Builder and restart Safari.
    This removes the Private Browsing menu option, effectively disabling private browsing.

    There were some means of customizing Safari through OnyX, a utility interface tool that
    can be used to perform a variety of changes in OS X and a few of them could mess it up.
    You can modify hidden features in the OS X by use of OnyX, instead of attempting to
    perform some modification by command-line or Terminal; although the Man access
    also appears there, too.
    •Titanium Software - Home: (see OnyX)
    http://www.titanium.free.fr/
    A few command-line or terminal methods of changing how OS X works may be ill-advised
    to attempt without learning more about how all of that works and also how to understand
    the background system that changes when you mess with it. The GUI is the top layer.
    Did you look into the Developer settings for Safari to see if that will change your windowed
    options, without any external or deeper access to attempts to alter Private window view?
    For me, I've not used Safari all that much, and not as default main browser in any of my Macs.
    Good luck & happy computing!

  • Tax code optional in document type for one company code

    Hello experts,
    Is it possible to make tax code optional in a document type only for one company code.  If yes kindly explain me the process in detail. 
    Regards,
    P.Krishna Chaitanya.

    Hi
    If I understand your requirement correctly  that for a particular document type, the line item should not contain a tax code, while for other Document Types, it should have a tax code. Note, the logic for making tax code optional/mandatory is made through the field tax category in the GL Master and not through the field status. further Build in a validation rule, using a logic as follow:
    BKPF-BLART IN "SET NAME"
    Check BSEG-MSKWZ<> ' '
    Set an Error message
    You can also create a subsitituion rule for populating tax code with a blank value if a particular doc type is used.
    BKPF-BLART in 'SET NAME"
    Substitute BSEG-MSKWZ= ' '
    You may need to allow tax code as a field to be substituted in the maintainence view of table GB01 using T Code SM30 for boolean class 9
    Regards
    Sanil

  • Remove Application toolbar option in PDF

    Hi all,
    I'm displaying PO document like in ME29N print preview.In which i have used IFRAME UI Element to pass the PO data by converting the OTF File format to PDF using FM - 'CONVERT_OTF'. But it shows with Application Toolbar of PDF with PRINT and SAVE Option. I dont want to show that option in IFRAME. Is there any option of removing/hiding those option . Or is there anyway of showing the PO document without print and save option. Can anyone help me with this. below is my coding,
       CALL FUNCTION fname
        EXPORTING
          output_options       = outopt
          control_parameters = conpar
         user_settings        = ' '
          ls_ekko              = l_doc-xekko
          ls_nast              = l_nast
        IMPORTING
          document_output_info = docout
          job_output_info      = jobout
          job_output_options   = jobopt
        TABLES
          i_ekpo               = l_doc-xekpo
          t_eket               = l_doc-xeket
          t_ekkn               = l_doc-xekkn
          t_komv               = l_doc-xtkomv
        EXCEPTIONS
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          OTHERS               = 5.
          call function 'CONVERT_OTF'
          exporting
            format       = 'PDF'
           MAX_LINEWIDTH = '100'
           PDF_DELETE_OTFTAB = 'X'
          importing
            bin_filesize = l_pdf_len
            bin_file     = l_pdf_xstring
          tables
            otf          = jobout-otfdata
            lines        = lt_lines.
            create object cached_response
            type
              cl_http_response
            exporting
              add_c_msg        = 1.
          l_pdf_len = xstrlen( l_pdf_xstring ).
          cached_response->set_data( data   = l_pdf_xstring
                              length = l_pdf_len ).
          cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                             value = 'application/pdf' ).
          cached_response->set_status( code = 200 reason = 'OK' ).
          cached_response->server_cache_expire_rel( expires_rel = 180 ).
          call function 'GUID_CREATE'
            importing
              ev_guid_32 = guid.
    call method cl_wd_utilities=>construct_wd_url
    exporting
    application_name = 'APPLICATION_NAME'
    importing
      out_host = host
    out_port = port
    out_protocol = protocol
    out_local_url = local_url
    out_absolute_url = abs_url.
          concatenate abs_url '/' guid '.pdf' into display_url.
          cl_http_server=>server_cache_upload( url      = display_url
                                               response = cached_response ).
      DATA lo_nd_url TYPE REF TO if_wd_context_node.
      DATA lo_el_url TYPE REF TO if_wd_context_element.
      DATA ls_url TYPE wd_this->element_url.
      DATA lv_linkurl LIKE ls_url-linkurl.
    navigate from <CONTEXT> to <URL> via lead selection
      lo_nd_url = wd_context->get_child_node( name = wd_this->wdctx_url ).
    get element via lead selection
      lo_el_url = lo_nd_url->get_element(  ).
    get single attribute
      lo_el_url->set_attribute(
        EXPORTING
          name =  `LINKURL`
          value = display_url ).
    Regards,
    Ramesh

    Hi
    Please go to the view where you have the PDF object.
    Goto its WDDOMODIFYVIEW then type the code below.
      data:
        lr_method_handler type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL,
        lr_interactive_form type ref to cl_wd_interactive_form.
    do it only once
      If first_time = abap_true.
    get the method handler
        lr_interactive_form ?= view->get_element( 'FINAL_PDF' ).
        lr_method_handler ?= lr_interactive_form->_method_handler.
    hide the toolbars
        lr_method_handler->set_hide_toolbars( abap_true ).
      Endif.
    Please make sure you type the correct name of the 'Interactive Object'  in your layout. In my case,
    my interactive form object name in the layout is FINAL_PDF.
    Hope this help.
    Thanks
    SK

  • How to Deactivate or remove "Remove from Page"option for iview/page tray

    Hi,
    I would like to deactivate the "remove from page" option in the iview tray for ESS screens(WD iviews). I have made Show tray to NO and it hided the whole tray also tried Show remove to NO but no effect. But instead i would like this option (Remove from page) alone to be deactivated or removed.
    regards
    Bharat.

    Remove from page is the correct setting you need to change. If it doesn't seem to be working, this is normally because a content administrator has done something wrong with the delta links. For example, if an iView is included in a page as a copy (not as a delta link) changing the iView won't change the behaviour in the page. Instead you need to change the iView in the page. This is worst practice.
    You need to do some delta link tracing

Maybe you are looking for