Reg: View changes not getting reflected

Hello All,
I made some view changes like field mapping for the Family Dependents view.
I Created the Activity and deployed using NWDI but the changes are not getting reflected.
Please assist me in resolving the issue.
What might have gone wrong? and how to solve the problem.
Thanks in advance for the time.
Regards,
Pramod

The issue is with the activities queued up in TCS Deployer.
Rerun the TCS deployer and the issue is solved.
Thanks,
Pramod

Similar Messages

  • New changes are not getting reflected in the bam reports.

    Hi
    I have created a BPEL process and it polls the data from a table and populate an object created in Bam.I have accomplished the above task by createing two database adaptors.One is on 10g database and another one is on Bam database.I have created a view based on the bamobject and used a database adaptor to populate the data. BPEL process is populating the data properly to that bamobject but those changes are not reflecting to bam reports automaticaly. We need to refresh the report or reprompt the report to see the changes.Could some help me to reslove this issue.
    Thanks in advance
    Laj Abraham

    Hi charles
    I have tried that option too.But that is also not working. BPEL Procees is able to populate the BAM object with the help of the sensor.But those changes are not getting reflected in BAM Reports.But if i create or update an existing record in BAM object through BAM Architect, those changes are getting reflected in BAM Reports(No manual intervention is required).
    Your help in this regard is highly appreciated.
    Thanks
    Laj Abraham

  • Termstore changes are not getting reflected in the list items in SharePoint 2010 farm environment

    Hi,
    I had created managed metadata with termstores from central admin. Then I had created one list in which added a column of type managed metadata using the managed metadata which I had created. And also added few list items to this list.
    The problem is that after updating a termstore the changes are not reflecting in the list items which were added before the update.
    I have referred the following links:
    http://www.paulgrimley.com/2011/02/managed-metadata-changes-not-applied-to.html
    http://davidfrette.wordpress.com/2010/05/26/taxonomy-update-scheduler%C2%A0timer%C2%A0job/
    According to the links we need to run Taxonomy Update Scheduler on the server for updated termstore to get reflected. After running
    this scheduler on development environment changes are getting reflected but not working on the production environment.
    Kindly help!
    Regards, Shruti

    You should check the obvious.  You made the change in dev, but did you make the change in production too?  And, is the term you updated, actually the one that you are looking at in the list item?
    There is not much, if anything, that can go wrong with that timer job. so I'd guess that the term you are looking at is not the one you think you are updating.
    If you have double checked everything (the term is is in fact the same term id), then you may have something erroring in the update process.  In this case, you should check the ULS logs for any errors.
    Chris
    Chris Givens CEO, Architecting Connected Systems
    Blog Twitter

  • Changes are not getting reflected in Process Chain after changes.

    Hello,
    I have modified a Process Chain in Development environment. I have created one new infopackage and included it in the process chain. I have also added two new change run variants in the process chain. I have collected the process chain and infopackage in a transport request and transported it to integration environment.
    Transport request has reached successfully in integration but the changes in process chain are not getting reflected. The infopackage has reached to integration after transport.
    I need some suggestion on this.
    Regards,
    Sanjay

    Hi Sanjay.......
    R u in Display mode..........click on Change mode...........
    If you can see the chain in Change mode............then ur process chain is imported in in-active version..........
    U can try activating it manually or re-transport the active version..........
    Regards,
    Debjani......

  • Enhancement not getting reflected in Info Cube

    Hello Friends,
    I have made enhancement for getting additional data in the InfoCube 0SD_C03 fro data source 2LIS_13_VDITM .I have made changes in Communication Structure and transfer structure as well . But i am getting the required data in the psa and addition fields are not getting reflected in the infocube . Please suggest me a solution .
    Regards
    Nilesh Vakil

    Hi,
    You have to map the Rules in two Transformations. One for DataSourec to InfoSource and InfoSource to Cube.
    Confirm that you entered all the infoobjects and those compound objects too into the cube, Don't forget to map compound objects in transformation rules. Activate every single object individually.
    Did you create DTP for cube? In BI 7.0 for InfoPackage by default "psa only".
    Aparna.

  • Chnages in the Graph properties are not getting reflected in the Browser.

    Hi,
    I have made some changes in the Graph properties in web template,
    Eg. : 1. change in color of a series for a columnar type graph
             2.change in the Text properties of Graph Series..
    When I save the template and try to run in the Browser, these changes are not getting reflected.
    Can anybody help me in this aspect ?
    Thanks.
    Regards.
    Amol Bade

    Same here :´(
    Thanks In Advance
    Juan

  • Values in parallel flow are not getting reflected

    Hi ,
    I have split in one of my auto activity.In this split one of flow I am changing instance variable (boolean) value.But this value is not getting reflected in second flow.Is there any way to set this value.
    Please help me
    Thanks
    Sailendra

    Yes - you can use your Split / Join design pattern for what you're trying to do. You just need to add one more thing.
    This is going to take a knowledge of:
    <li> Correlation - initiate and terminate methods
    <li> Notification using logic from a screenflow and
    <li> Message Wait activity with an Interrupt property
    It might seem like a lot, but if all you have is JMS then it's what I'd suggest.
    1. Create a correlation just after the Split and before your Automatic activity. The purpose of this correlation is to be the receptor of a notification when you want to eliminate the time loop. The logic for this looks like this:
    args[] = clientCaseId
    args[] = productId
    Correlation.initiate(name : "documentRetrieval", values : args)2. Add a Message Wait activity in your process. If you call it "WaitForEarlyReleaseCompletion" you might find that the logic in the step 4 is helpful. Have its property set to "Allows interruptions" and "External". Add this activity outside of the process's flow. Right mouse click the Messsage Wait activity -> click "Argument Mapping" -> click on the arguments icon in this dialog and add the (two in the example) argument variables you want to use to notify the correlation (clientCaseId and productId in this example). Click the "Correlations" icon in this dialog (two to the right of the arguments icon). In the left panel add a new correlation (name it case sensitive "documentRetrieval" for this example). Right click this new correlation and give it properties (the variables you want to use for the correlation - in this example "clientCaseId", "productId". Select the correlation and click the right arrow to move the correlation to the upper right portion of the dialog. Leave "Initiate" set to "No". In the lower right portion of the dialog, map the correlation's properties (again clientCaseId and productId in this example) to the incoming argument variables you just created (also called clientCaseId and productId in this example). Click OK
    3. This standalone activity needs to flow to an Automatic activity outside of the process. The logic in this Automatic activity needs two lines:
    // this assumes your time interval in your due transition is called "myTimer" and you just
    //   want to stop it
    myTimer = null
    action = BACK4. Inside your screenflow, in an Automatic Task send a notification to the Message Wait activity using the same correlation values (e.g. "clientCaseId" and "productId") you used earlier in the correlation intiate method.
    args as Any[Any]
    args["clientCaseId"] = clientCase.clientCaseId
    args["productId"] = clientCase.products.first.product.productId
    send(Notification, processId : "/DepartmentApprovals",
                                            activityName : "WaitForEarlyReleaseCompletion",
                                            arguments : args,
                                            argumentSetName : "WaitForEarlyReleaseCompletionIn")Dan

  • Bank master data changes not getting tranported to another client

    Hi all
    While i am making changes to the bank master data, they are not reflected in the transport to another client.
    Please let me know how to do this.
    Thanks
    ES

    Hi
    While creating the house bank , i created the bank master using the create button.
    This was saved in the transport request and moved correctly through the transport.
    Now i find that the description etc. to be changed in FI02. I have done the changes.
    These changes when transported do not get reflected in the new environment.
    Please let me know the reason.
    Thanks & Regards
    ES

  • Workflow changes not getting transported to test environment.

    Hi All,
    I want to send the WorkFlow error mail to a set of people.
    For that i have changed the "receipt type" and the corresponding "Email Address" container for the error mail. A tranport request is getting generated for the changes, and when i transport the request to test environment, it is successfully getting transported but the changes are not getting reflected.
    Is there a different procedure to transport these kind of changes?
    or
    Am i doing some mistakes while doing the changes?
    Thanks

    Hi,
    Once the changes are moved to test system, some times because of the buffer not cleared, you may not see the changes.
    May be try clearing the buffer using SWU_OBUF.
    Regards,
    Nangunoori.

  • PHOTO IS NOT GETTING REFLECTED IN ADOBE FORM

    Hi experts
    We have tried the below code to dispaly photo in webdynpro integrated with adobe forms
    CALL FUNCTION 'HR_IMAGE_EXISTS'
        EXPORTING
          p_pernr                     = v_obj_id
    *     P_TCLAS                     = 'A'
    *     P_BEGDA                     = '18000101'
    *     P_ENDDA                     = '99991231'
        IMPORTING
    *     P_EXISTS                    =
          p_connect_info              = l_connect_info
        EXCEPTIONS
          error_connectiontable       = 1
          OTHERS                      = 2.
      CHECK sy-subrc = 0.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
    *     MANDT                       = SY-MANDT
          stor_cat                    = space
          crep_id                     = l_connect_info-archiv_id
          doc_id                      = l_connect_info-arc_doc_id
    *     PHIO_ID                     =
    *     SIGNATURE                   = 'X'
    *     SECURITY                    = ' '
    *     NO_CACHE                    = ' '
    *     RAW_MODE                    = ' '
    *   IMPORTING
    *     FROM_CACHE                  =
    *     CREA_TIME                   =
    *     CREA_DATE                   =
    *     CHNG_TIME                   =
    *     CHNG_DATE                   =
    *     STATUS                      =
    *     DOC_PROT                    =
        TABLES
          access_info                 = lt_infos
    *     CONTENT_TXT                 =
          content_bin                 = lt_image_bin
        EXCEPTIONS
          bad_storage_type            = 1
          bad_request                 = 2
          unauthorized                = 3
          comp_not_found              = 4
          not_found                   = 5
          forbidden                   = 6
          conflict                    = 7
          internal_server_error       = 8
          error_http                  = 9
          error_signature             = 10
          error_config                = 11
          error_format                = 12
          error_parameter             = 13
          error                       = 14
          OTHERS                      = 15.
      CHECK sy-subrc = 0.
      READ TABLE lt_infos INDEX 1 ASSIGNING <fs_info>.
      CHECK sy-subrc = 0.
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = <fs_info>-comp_size
          first_line   = <fs_info>-first_line
          last_line    = <fs_info>-last_line
        IMPORTING
          buffer       = l_employee_photo_content
        TABLES
          binary_tab   = lt_image_bin
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
    but the photo is not getting reflected in the adobe forms .
    and also i have tried the url method but it doesnt work .
    please help me out .

    First, have you set a breakpoint in this code and made sure that you are getting data into lt_image_bin?  That would seem to be the first place to start.
    Then the question is how are you trying to pass the image into the Adobe Form?  Are you passing an XSTRING context attribute into the form interface?  Have you marked that part of the interface as an image?  Are you setting the MIME Type parameter of the form interface as well.  You really haven't posted any details about what you are doing on the Adobe Form side.

  • TDS line items are not getting reflected in J1INCHLN

    Hi Experts,
    While generating TDS challan we are not getting advance line items in J1INCHLN screen
    We made one advance payment which included 2 payment line items and two different tax codes, while generating TDS challan its is showing only one TDS line item that is Rs.1000/-, another TDS line item of Rs.966/- is not showing.
    Below is the example
    XYZ                                                                         43,000.00
    XYZ                                                                         46,000.00
    Bank                                                                        96,329.00-
    S/Tax Interim-In Cr                                                    5,160.00
    S/Tax Interim-In Cr                                                   3,864.00
    ST Interim E.C-In Cr                                                 103.00
    ST Interim E.C-In Cr                                                 77.00
    ST Inter H E.C-In Cr                                                 52.00
    ST Inter H E.C-In Cr                                                 39.00
    TDS Pble Contractors                                              966.00-
    TDS Pble Contractors                                              1,000.00-
    I checked the below possibilities for reason why its not getting reflected
    Vendor master having recipient type
    WITH_ITEM table updated with recipient type
    In the line item also having Business Place and section code
    Please suggest me is there any way to resolve the issue.
    Thanks & Regards,
    AIM

    Hi,
    Check whether the recipient type CO or OT is updated in With_item table for the line items that are missing in J1INCHLN.
    If Recipient type is not maintained in vendor master, at the time of posting the entry, then it does not get picked up in J1INCHLN. Even if you maintain in Vendor master later on, the With_item table does not get updated. This is one of the reasons why the line items does not get picked up in J1INCHLN. Check this, as you are confirming that Business Place, Section code etc.. are all present in line items and also that it is appearing correctly in With_item table.
    Regards
    Divya S

  • Methodology/Processes Not getting reflected while creating a role via BRM in GRC

    Hello All,
    The methodology I have created is not getting reflected while creating a new Single role.
    I have maintained the condition groups properly in decision table, and assigned the same to the methodology as well.
    Please suggest.
    Thanks
    Regards,
    Shruti

    Methodology is updated when you press save after completing the first step.
    can you please share screen shots of configuration and issue you are getting

  • Support message not getting reflected in Solution manager system

    Hi,
    In satellite system support message is getting created, message number"...." successfully created in service desk.
    When i check in solution manager system in  crm_dno_monitor the message that i created in satellite system is not getting reflected in solution manager. I removed the varients and then executed . The result is still the same.
    Service desk was configured from our Development system (Client 320) to solution manager. I wanted the support desk to work from my another cleint in same system to Solution manager.
    What can be the possible problem.
    Thanks & Regards,
    Balaji.S

    Hi Gurus,
    Issue got resolved, the problem was with the variant which was assigned as default for the tcode.
    Thanks & Regards,
    Balaji.S

  • New Value addition in Restricted List under Rules not getting reflected

    Hi,
    I have created a custom rule for a custom profile. In the rule i have configured a metadata named as Reviewer. Under restricted values of reviewer i have put in 2 values.
    It is getting reflected properly in the profile check in form.
    But now when i add a new value, it is not getting reflected. Is restart required to get that field populated with new value ?. I have already published the schema base and static files.
    Please suggest.
    Regards,
    Boopathy P

    In your metadata field definition, your field is defined as having an option list. Does the value you just added to the restricted list also exist in the overall list of values for the field?
    For example, your list has values "a", "b", and "c". In your profile restricted list, you have "a" and "b". Now have you added "d" to the restricted list, which does not appear in the defined list for the metadata field?

  • Changes  not getting captured in MM06E005 of ME22N

    Hi,
    My requirement is to add an additional tab at Item Level  and a field in that tab. I used the MM06E005 and implemented it. I can see the tab and the field in it at Item level.But when iam making changes in ME22N,the change is not getting Saved.
    i created a field   ZZVEND type char in CI_EKPODB .
    Created the check box with same field name in Screen Exit  0111  of  MM06E005.
    Then i kept the coding in following exits
    EXIT_SAPMM06E_016
    break-point.
    EXIT_SAPMM06E_017
    break-point.
    EXIT_SAPMM06E_018
    break-point.
    IF I_UCOMM = 'MESAVE' .
    E_CI_UPDATE  = 'X'.
    E_CI_EKPO-ZZVEND = EKPO_CI-ZZVEND.
    ENDIF.
    While running ME22N,its first going into EXIT_SAPMM06E_016 and after checking the ZZVEND i in ME22N ts going to EXIT_SAPMM06E_017.
    But i dont see
    I_EKPO-ZZVEND  = 'X'  in Importing Parameters or TEKPO-ZZVEND  = 'X' in Tables  of EXIT_SAPMM06E_017.
    After this its entering into
    EXIT_SAPMM06E_018.
    Finally the data is not getting Saved but the message is showing 'Purchase Order changed'.
    Please suggest where I am going wrong.
    Regards
    K Srinivas

    Thankyou for the replies. I kept the following coding in the Exits. The problem is that i kept the break-point in the three exits and after running ME22N,its entering first into Exit 16 and after checking the field(Check Box) in Customer Data Tab ,its entering  into Exit 17. But the zfield in I_EKPO is empty,the value 'X' is not reflecting here. Please suggest where i am doing wrong. I went through many SDN threads and i am unable to solve the issue.
    INCLUDE ZXM06TOP.
    data: gl_aktyp type c,
          gl_no_screen type c,
          gl_ekpo_ci like ekpo_ci,
          gl_ekpo like ekpo,
          gl_ucomm like sy-ucomm.
    data:  gt_ref_ekpo_tab type table of ekpo_tab.
    EXIT_SAPMM06E_016
    gl_aktyp = i_aktyp.
    gl_no_screen = i_no_screen.
    ekpo_ci  = i_ci_ekpo.
    gl_ekpo = i_ekpo.
    EXIT_SAPMM06E_017
    move-corresponding i_ekpo to gl_ekpo_ci.
    gl_ekpo = i_ekpo.
    EXIT_SAPMM06E_018
    e_ci_ekpo        = gl_ekpo_ci.
    if gl_ekpo_ci-zz_vend ne ekpo_ci-zz_vend.
      e_ci_ekpo-zz_vend = ekpo_ci-zz_vend.
      if gl_aktyp ne 'A'.
        e_ci_update = 'X'.
      endif.
    endif.
    Regards
    K Srinivas

Maybe you are looking for

  • Creative Cloud for Teams

    Hi, I have creative cloud for teams. I would like to easily be able to share folders with my team members. I am not sure how to do that. I can see that one can share individual files with a link. But It would be so much better if I can see the shared

  • How to include suppliers quality claim form for tracking of claim.

    Dear all My customer has come out with the following scenario: To include suppliers quality claim form for tracking of claim. Items received under Quality Inspection and after inspection will be transferred to Unrestricted used stock or blocked items

  • Run forms in Forms 9i

    I have one form made with the Forms 6i. I compile it in the Forms 9i without problems. When I go to execute, I get the Frm-92030 error. Somebody can help me? I have 9iAS 1.0.2.1, 9iDS Release 2 and DB 8.1.7 in Win2000.

  • Replacing a laptop with Mac mini

    I am looking into replacing an aging TOSHIBA Windows PC, and I need to get out of Windows World.  I have been considering switching to the Mac mini.  I was wondering if anyone had any insight into how good of an idea this is, given my situation. The

  • How to get the salary total.

    Hi Sirs, i am new to oaf. in my project i have one number column. how to displays total of that column plz help me Thanks latha.