Selection enabling of fields

Hi,
My understanding is I need to do selection of my required fields in RSA6 in R/3 system(DEV). Then I need to save in a transport request. Then the datasource will be changed/modified in R/3 system(DEV).
Then I need to replicate the same datasource in BI system(DEV). If my required field comes in the data selection tab, then I have to transport to the Quality and then into Production system.
My doubt here is will the BI system also asks me to create a transport request to be transported to Production(BW) system?
Thanks,
Suman

Hi Suman,
If u have change access in Quality & production then it is not necessary to transport datasource from BW side, you just need to replicate datasource in respective landscapes.
but before that u have to transport those datasources from R/3 side.
replicating datasources at BW side will create copies of those datasources but u need to activate them & hence u need authorization to change them.
in case where access is not allowed u must need to transport those active datasources from BW dev to Q & P sysems.
Regards,
Sandeep Palekar.

Similar Messages

  • Making Selection Enabled for fields

    Hi,
    I have a infopackage which contains some fields in the data selection tab. My question is: How to make any other field to make Selection Enabled in Infopackage?
    What are the steps need s to be carried out in R/3 and in BI system?
    Thanks In Advance,
    Suman Chakravarthy

    Hi,
    You need to transport the Datasource from R/3 dev-Qat-prd only.
    In BI you can just replicate the datasource and the changes will be reflected.
    If any obkects become inactive in BI sysytem because of  Datasource replication then you need to collect the BI objects also.
    PLease give a try in Dev and QAt system first and then see how it works.
    Just select the fileds in Rsa6 which you need to enable in Infopackage selection screen and then replicate the same datasource in BI ,After that those fields will be available in Infopacakge selection screen.
    Once done with that then transport the datasource from R/3 dev to qat and replicate the same in BI qat and follow the same steps for PRD also.
    Hope it gives you clear idea.
    Regards,
    AL

  • Regarding At Selection-Screen On field

    Hi..
    When we wil use At Selection-Screen On <Field>
    and  At Selection-Screen On Radiobutton.
    What is the purpose of these events.
    I need samplecode for these events.
    Regards
    Sandeep.

    Hi Sandeep
    hope this will help you.
    REPORT zextest595 .
    *--- Radiobuttons
    PARAMETERS: p_up RADIOBUTTON GROUP a DEFAULT 'X' USER-COMMAND rb,
    p_list RADIOBUTTON GROUP a.
    PARAMETERS: p_pcfile LIKE rlgrap-filename OBLIGATORY DEFAULT 'C:\'
    MODIF ID ccc,
    p_pctype LIKE rlgrap-filetype OBLIGATORY DEFAULT 'ASC'
    MODIF ID ccc,
    p_unix LIKE rlgrap-filename OBLIGATORY DEFAULT '.\'
    MODIF ID ccc.
    PARAMETERS: p_dir LIKE rlgrap-filename OBLIGATORY DEFAULT '.'
    MODIF ID ddd,
    p_fp LIKE rlgrap-filename
    MODIF ID ddd.
    AT SELECTION-SCREEN
    AT SELECTION-SCREEN OUTPUT.
    IF p_up = 'X' .
    LOOP AT SCREEN.
    CASE screen-group1.
    WHEN 'CCC'.
    screen-input = 1. "Enable
    screen-invisible = 0. "Disable
    MODIFY SCREEN.
    WHEN 'DDD'.
    screen-input = 0.
    screen-invisible = 1.
    MODIFY SCREEN.
    ENDCASE.
    ENDLOOP.
    ENDIF.
    IF p_list = 'X'.
    LOOP AT SCREEN.
    CASE screen-group1.
    WHEN 'CCC'.
    screen-input = 0.
    screen-invisible = 1.
    MODIFY SCREEN.
    WHEN 'DDD'.
    screen-input = 1.
    screen-invisible = 0.
    MODIFY SCREEN.
    ENDCASE.
    ENDLOOP.
    ENDIF.

  • Select Options for Field

    Hi all,
    I have a requirement to make a select options low field disable and high field editable.
    Can anyone guide me on this.......!!!
    Awiting u r reply.
    Regards,
    Rashmi

    you write the code under "at-selection-screen output" event.....make one loop on screen....and make the screen enable & disable as you wish..
    ELECTION-SCREEN BEGIN OF BLOCK b1 .
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN COMMENT 40(25) text-010  .
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(15) text-002 FOR FIELD pernr.
    PARAMETERS pernr TYPE pa0001-pernr.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(15) text-008 FOR FIELD ename.
    PARAMETERS ename TYPE pa0001-ename.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(15) text-003 FOR FIELD persg.
    PARAMETERS persg TYPE pa0001-persg.
    SELECTION-SCREEN COMMENT 45(15) text-009 FOR FIELD werks.
    PARAMETERS werks TYPE pa0001-werks.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(15) text-004 FOR FIELD persk.
    PARAMETERS persk TYPE pa0001-persk.
    SELECTION-SCREEN COMMENT 45(15) text-005 FOR FIELD kostl.
    PARAMETERS kostl TYPE pa0001-kostl.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(15) text-006 FOR FIELD orgeh.
    PARAMETERS orgeh TYPE pa0001-orgeh.
    PARAMETERS orgehtxt TYPE person-orgeh_txt .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(15) text-007 FOR FIELD plans.
    PARAMETERS plans TYPE pa0001-plans.
    PARAMETERS planstxt TYPE person-plans_txt .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b1.
    *AT SELECTION-SCREEN OUTPUT.
    AT SELECTION-SCREEN OUTPUT .
      LOOP AT SCREEN.
        IF screen-name = 'ENAME'
        OR screen-name = 'PERSG'
        OR screen-name = 'PERSK'
        OR screen-name = 'KOSTL'
        OR screen-name = 'WERKS'
        OR screen-name = 'ORGEH'
        OR screen-name = 'PLANS'
        OR screen-name = 'ORGEHTXT'
        OR screen-name = 'PLANSTXT'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
      LOOP AT SCREEN.
        IF screen-name = 'ORGEHTXT'
        OR screen-name = 'PLANSTXT'.
          screen-output = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Edited by: Arunima Rudra on Jan 8, 2009 5:39 PM

  • Enabling a field in a Datasource

    Hi,
    I need to enable GUID_PLAN in datasource 0AUD_AUDIT.
    When I try to enable the selection option in datasource edit mode using RSA6, I dont see the field GUID_PLAN.
    But, when I goto the datasource using RSA2, I can see the field GUID_PLAN in grey.
    Can anyone tell me how can I enable this field?
    regards,
    ZEESR

    My problem is solved with the help of following link,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c008cd97-ef00-2d10-d1ad-867b9c3f063c?quicklink=index&overridelayout=true
    I want to understand if there are any issues does anyone foresee with this setting. I hope there are no issues.
    regards,
    ZEE SR.

  • Enable a field in VF01 transaction

    Hi All,
    I need to enable a field 'Exchange rate-accntg'VBRK-KURRF'  of the transaction VF01,
    Please guide me how to do this using SHD0 transaction or if any other way is possible.
    Regards,
    Sowjanya

    In SHD0  Enter the Transaction code & Enter the variant for particular transaction & click on change with processing Here you can select the field what ever you want to display ..
    Other way---->
    Go to SPRO --> Find for Exchange rate in accounting area --> here go for general settings & double click on the screen fields --> click on radio button what ever the field you want to see (VBRK-KURRF)
    in transaction VF0

  • Enable a field created by EEWB

    Hi Experts,
    Can you please help me on how to enable/disable a field created by EEWB transaction. We have done an enhancement to the BP master date through EEWB, and we need enable some of these fields. Kindly help on this.
    Regards,
    Basheer

    Hi,
    My understanding is, you have created a field by EEWB and trying to enable that field in UI.  If I am not wrong, you can add the created field from available fields to displayed fields with the help of the Tcode: BSP_WD_CMPWB.
    Steps to be followed:
    1.  Tcode: BSP_WD_CMPWB
    2.  Enter the Component ID
    3.  Go to Views and select the relevant view in which you have created the field by EEWB
    4.  Click on Configuration tab
    4.  Click on Copy the configuration ( do not make any changes in standard one)
    5.  Click on Edit
    6.  Click on show available fields
    7.  Move the created field from Available fields to Displayed fields and Save.
    Hope it helps you.
    Regards,
    Maddy

  • AF:QUERY : JBO-25058 when we add duplicate instance of multi select enabled and search

    Hi Getting JBO-25058 error when we add duplicate instance of multi select enabled attribute from Add Fields and click on search Our requirement is to add validation if search panel has duplicate instance of multi select enabled attribute but this error comes before control goes to Managed bean. Kinldy help. Typical message: JBO-25058: Definition _sel__vci_lov_LOV_ForecastType_ActiveRevnForecastVC_vcrow2097_ForecastType_vcrow2097_ForecastType_itemHolder_vcrow1_ForecastType of type Attribute is not found in __LOCAL_VIEW_USAGE_sessiondef_ForecastAM_oracle_apps_sales_salesForecasting_forecasts_forecastService_applicationModule_ForecastAM_ForecastOverviewPageVO_vcrow2097_ForecastType_itemHolder_ForecastTypeLookupPVO_findByVC_8fc_LOV_ForecastType__lov__filterlist__vcr___.
    Regards
    Rajesha

    Sarah,
    I could reproduce the error.
    However, I created a drag-and-drop page fragment with quick search and table, and modified the adfc-config-EmpVw task flow to reference the drag and drop page:
    <view id="EmpVwTable">
    <page id="__120">/EmpvwDD.jsff</page>
    </view>
    And then I still get the same error, so this looks like an ADF bug to me.
    I also created a stand-alone jspx page using drag and drop, same error as well. I suggest you make a testcase without JHeadstart and contact Oracle Support.
    Steven Davelaar,
    JHeadstart Team.

  • How i can show the selection screen input field in the top of page in alv

    hi ,
              how i can show the selection screen input field in the top of page in alv  grid output.
    tell me the process

    Hi,
    excample from my program:
    FORM topof_page.
      DATA: l_it_header   TYPE TABLE OF slis_listheader WITH HEADER LINE,
            l_info        LIKE l_it_header-info.
      DATA: l_it_textpool TYPE TABLE OF textpool WITH HEADER LINE.
      DATA: l_key LIKE l_it_textpool-key.
      READ TEXTPOOL c_repid INTO l_it_textpool LANGUAGE sy-langu.
      DEFINE m_selinfo.
        if not &1 is initial.
          clear l_it_header.
          l_it_header-typ   = 'S'.
          l_key = '&1'.
          translate l_key to upper case.
          read table l_it_textpool with key key = l_key.
          if sy-subrc = 0.
            shift l_it_textpool-entry left deleting leading space.
            l_it_header-key = l_it_textpool-entry  .
          endif.
          loop at &1.
            case &1-option.
              when 'EQ'
                or 'BT'
                or 'CP'.
                write &1-low to l_it_header-info.
              when others.
                write &1-low to l_it_header-info.
                concatenate &1-option
                            l_it_header-info
                       into l_it_header-info
                       separated by space.
            endcase.
            if not &1-high is initial.
              write &1-high to l_info left-justified.
              concatenate l_it_header-info
                          l_info
                     into l_it_header-info
                     separated by space.
            endif.
            if &1-sign = 'E'.
              concatenate ']'
                          l_it_header-info
                     into l_it_header-info.
            endif.
            append l_it_header.
            clear: l_it_header-key,
                   l_it_header-info.
          endloop.
        endif.
      END-OF-DEFINITION.
      m_selinfo: s_trmdat,
                 s_trmext,
                 s_trmint,
                 s_fkdat,
                 s_delno,
                 s_vbeln,
                 s_deact,
                 s_kdmat.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = l_it_header[].
    ENDFORM.
    I hope, this will help you.
    Regards
    Nicole

  • Display value in custom field selection of standard field

    Hi,
    I want to display the country value based on the Account selection, that is the country associated with the selected Account.
    I created Contact extension BO and added country field with data type CountryCode. Account is a standard field.
    I am able to fetch country value but assigning the value to Country field can be done in only BeforeSave.absl
    I have also provided validation for this country field.
    Issue here is:
    First Validation-OnSave.absl gets called and then BeforeSave.absl.
    I want the country value to be displayed once the user selects Account.
    Regards,
    Vijaya Chavan

    Hi Vinod,
    I got the issue.
    AfterModify.absl gets called when the Contact Quick Create screen gets loaded and not after selecting the Account field value.
    So I tried geting the value directly from the following path without firing a query in BeforeSave.absl.
    this.CurrentDefaultIsContactPersonFor.BusinessPartnerRelationship.FirstBusinessPartner.AddressInformation.GetFirst().AddressSnapshot.PostalAddress.GetFirst().CountryCode;
    But BeforeSave.absl gets called when I click on "Save". I wanted the value to be displayed soon after the Account Value is selected.
    Regards,
    Vijaya Chavan

  • Where is the Applescript to Select Enabled or Disabled Tracks?

    Hi. I've been trying to locate this Applescript. It gets mentioned in the Read Me for one of the Applescripts from Doug's iTunes Applescripts called: "Move En|Disabled" which by the way is not working because it is not unzipping correctly. I want to be able to look at playlists that are chosen for the iPod, and easily remove all the disabled tracks in them which are taking up precious room in the iPod. I can't locate the Applescript that gets mentioned in that Read Me, but it sounds like it would do the job since it's called "Select En|Disable". This is what it says:
    "The core of this script was shamelessly ripped off from Apple's "Select En|Dis-Abled" script. (Does Apple credit us for the scripts it rips off from us? I think not. "
    Thanks for any help! And if anyone has a working version of that Applescript from Doug's site, which again, is called "Move En|Disabled" and/or Apple's "Select En|Disabled", please either email them to me or point me in the right direction. Thanks!

    Gary, thanks for your help. I do have those scripts, but they don't include the one I'm looking for, which I guess doesn't exist. The one I'm looking for, would be called "Select Enabled/Disabled Tracks", whereas this one is called Disable/Enabled Selected Tracks, which does something entirely different. Ideally after you choose the Applescript that I'm talking about, you would be given a choice: "Select Enabled or Disabled?" Or I suppose, it could be done in two separate scripts, one for selecting enabled tracks, and one for selecting disabled tracks.
    Good idea on emailing the man himself, Doug. It's hard to believe that with all the scripts out there, this one doesn't exist. Maybe the author of that "read me" mistakenly named the Appplescript from Apple that I thought existed.

  • How to enable certain fields in billing document?

    Hi gurus!
    I need your help with this, we recently upgraded our system from version 4.6C to ERP 2005. We have some users in Sales who are in charge of the billing process, in version 4.6C they were able to change some fields of the billing header such as:
    - Currency
    - Payment terms
    - Incoterms
    In the new version these fields appear as "disabled" (users cannot change anymore what was copied from the Clients Master Data).
    I know there's some configuration in which info is copied from the sales order to the billing document (Copy Control). I already checked that and I'm not able to find where I can change something to "enable" these fields so users can define whatever they need.
    I also tried to see in SE80 if the fields that are part of that Dynpro have some other properties to enable them but was unable to change something.
    I also checked transactions OVA2 and VUA2 but didn't find somenthing that could help me out with this. Finally I checked different user exits in the previous version but it seems that when this was originally configured that was not the solution.
    There's also something else going on with the header because in the previous version users had the chance to type different texts in the Text Header tab but now everything is "disabled".
    Is there a transaction or something that you know so I can enable those fields?
    Thanks in advance.

    Not sure what the requirement is as ideally, you are not suppose to change the partner function manually during shipment.  However, go to VOPA,  place your mouse on Transport and click on Partner Procedures.  Double click on Procedure and see whether Forwarding Agent  is set to Not changeable .  If so, untick that and save.  Now retry the process.
    thanks
    G. Lakshmipathi

  • Create a filtered list based on the selection in another field? URGENT HELP NEEDED

    Hi,
    Hoping someone can help me with something I am working on. i am fairly new to creating forms in acrobat (know how to us the full range of very basic features) but I have now found myself needing some help.
    i am producing an order form, and I need to create a filtered dropdown list based on the value selected in another field.
    basically, when a user select the company chooses their Business Name from a dropdown list, I would like their deliver address to self populate. In some cases there may be a few options for the company delivery address so in these cases the second option would be a dropdown list of the options available for that company.
    i have attached a screenshot, it is the Fields "Business Name" and "delivery Address/Delivery Postcode" that i would like to be linked so that the option in Business Name filtered the options in delivery Address
    Hope someone out there has the time to help me with this, i am using Acrobat Pro DC
    many Thanks
    Lee

    This will require a complex, custom-made script. The basic functionality of populating another field based on a selection in a drop-down is not that complicated, but if you want it to also populate other drop-downs (and then presumably use them to populate other fields), it will require a more complex solutions.
    This tutorial is relevant for your question: https://acrobatusers.com/tutorials/change_another_field

  • Can we selectively flatten form fields in a PDF file?

    I have a PDF with some form fields in it. I want to selectively flatten a few form fields in the PDF using a java API. I have checked the documentation and found a method transformPDF in the OutputServiceService. But this method flattens all the form fields in the PDF document.
    Can we selectively flatten form fields in a PDF file? If yes how?
    This was possible in Adobe Document Server V6.
    Regards,
    Ragha

    You will need an event in the form that will indicate that you want the flattening done. Once you determine what that is it is simply a single statement for each field:
    fieldname.access = "readOnly";
    Now when the form is rendered, the user will not be able to get access to these fields.

  • Field Populates based on Selection in Another Field

    Hi everyone,
    I have created a new position description template using a pdf form. In this form I have various fields. I would like to populate one field based on what I have selected in another field. For example, I have a field called competency. In this field I can select and choose a competency. If I select "Accountability" I would like the description field to say " Accepts personal responsibility for the quality and timeliness of work. Can be relied upon to achieve results with little need for supervision. " alternatively if I select "Compliance" I would like the description field to say "Complies with policies, procedures, workflows and instructions." Can anyone assist me with script or is there another way of making this happen.
    Thanks in advance

    I think this is what you are looking for:
    Make sure that you select "Commit selected value immediately" in the options tab of the drop down menu.
    //Place this script in the custom validation script of the drop down menu
    //Create a text field caleld Text2
    var MySelection = event.value;
    switch (MySelection) {
    case "Accountability":
        this.getField("Text2").value = "Accepts personal responsibility for the quality and timeliness of work. Can be relied upon to achieve results with little need for supervision. ";   
    break;
      case "Compliance":
        this.getField("Text2").value = "Complies with policies, procedures, workflows and instructions.";
        break;
    I hope this helps.

Maybe you are looking for