How to change Master Agreements search channel in Workbench

Hi All,
When we search in Master Agreements search channel in workbench then it displays a report just below that search, and when we click on that then it displays Master Agreement Search Agreement Detail.
In this details sub-agreement payment terms are not coming because Class id is different, but when I look into standard report  : Master Agreement Search Agreement Detail, there query is having class id 1003.
Is it possible to replace this standard query in report or if we can replace this report in Master Agreements search channel in workbench.
Please advise.
Regards,
Prabhat Pandey

I see. I think SAP does not allow the standard FCI queries to be linked to Custom ones from the Setup --> Reports section.
In this case, you will first need to create a CUSTOM version of FCI-ConSearchMore and then link the custom version of FCI-ConSearchAgrDetail to this via the Setup--> Report section.
Then in the Setup--> Desktop Channel, you would need to go into the Master Agreement Search link and update the Parameter Definitions section with the new custom queries. This will ensure that in the Workbench page of the user, the desired results will be displayed.
Hope this helps,
Thanks,
Vikram Shukla

Similar Messages

  • How to change the default search engine? I accidentaly change it from google to yahoo, and I can't get it back. I changed my homepage too, but it isn't solved. Thanks

    dear, there.
    how to change the default search engine? I accidentaly change it from google to yahoo, and I can't get it back. I changed my homepage to google too, but it isn't solved. Thanks

    Clarification:
    I believe now you potentially lose all extensions, plug-ins when you use the new reset function, but you will let me know.
    If that is the case, your find corrupt file method maybe better. However, I reviewed the two help articles and there appear to be more files than just the delete search.json file and a possible search.sqlite file in the Firefox Profile Folder. I am confused. Then I have to find the folders. I think help articles mentioned how to find the profile containing the files, but not sure.

  • How to implement Master-Detail Search in TopLink without using DataControl

    Hi,
    I am using TopLink and EJB in our requirement. But we are not creating any data controls. Without data controls how to implement master detail search using TopLink and EJB. I did search for a single table. It is working fine. The way i implented is as follows.
    1) Taking search parameter from UI and passing it to A delegator class's method.
    2) Delegator class's method calls the EJB's NamedQuery which i already created using expression builder.
    3) EJB executes the NamedQuery with the parameter we are passing. And it returns the results back to UI.
    But as i am new to TopLink, can anyone tell me the procedure to implement Master - Detail search. Here we need to search based on Master table's column.
    Waiting for the replies regarding this.
    Thanks & Regards,
    Suresh Kethireddy

    Hi,
    I did it successfully. Following is the code.
    Session session = getSessionFactory().acquireSession();
    UnitOfWork uow = session.acquireUnitOfWork();
    ReadAllQuery raq = new ReadAllQuery();
    Dept d = new Dept();
    d.setLoc(loc);
    raq.setExampleObject(d);
    List<Dept> res=(List<Dept>)uow.executeQuery(raq);
    for(int i=0; i<res.size();i++){
    System.out.println("Dept DeptNo ---"+res.get(i).getDeptno());
    System.out.println("Dept DeptName ---"+res.get(i).getDname());
    System.out.println("Dept Location ---"+res.get(i).getLoc());
    List<Emp> eRes=res.get(i).getEmpCollection();
    for(int j=0; j<eRes.size();j++){
    System.out.println(" Emp No ---"+eRes.get(j).getEmpno());
    System.out.println(" Emp Name ---"+eRes.get(j).getEname());
    System.out.println("Emp HireDate ---"+eRes.get(j).getHiredate());
    System.out.println(" Emp Job ---"+eRes.get(j).getJob());
    System.out.println(" Emp Mgr ---"+eRes.get(j).getMgr());
    System.out.println(" Emp Sal ---"+eRes.get(j).getSal());
    But now my question is, i want to search by providing Dept param as well Emp(Which is child table) param also. Is it possible?
    I tried in 2 ways like this.
    1) Emp emp = new Emp();
    emp.setEname(eName);
    dept.addEmp(emp);
    raq.setExampleObject(dept);
    2) Emp e = new Emp();
    e.setEname("ADAMS");
    List<Emp> list = new ArrayList();
    list.add(e);
    d.setEmpCollection(list);
    raq.setExampleObject(d);
    But in both cases i failed to search based on the values i am passing to Emp.
    Is there any other way to achieve my requirement?
    Any help on this is great.
    Thanks & Regards,
    Suresh K

  • How to change Bridge default search criteria

    I'd like to change the default search criteria to search only the selected folder, not sub-folders. Essentially, I want to use the default search as a way to filter the files in a folder. Is there any way to do this?
    Right now, I use the search box in the upper right-hand corner, enter my search word or phrase, hit enter, it searches this folder and all subfolders, I click the "New Search" button, uncheck the subfolders box, and do the search again. Way too many clicks.
    Thanks for the help.

    Hey Mate,
    This is not what i have asked for.
    Anyways thanks for your time.
    Cheers.

  • Script:How to access Master Agreement collaborators

    Hi
    I am trying to catch 1st collaborator name from "master agreement collaborator list" using Java Beanshell. I am using the below mentioned code:
    agreementBean = doc.getRootParentIBean();
    contractHome=IBeanHomeLocator.lookup(session,ContractIBeanHomeIfc.sHOME_NAME);  // get hold of current master agmt
    CollaboratorCollection = agreementBean.getCollaborators();          // to get all collaborators assigned to a master agreement
    collectionsize = CollaboratorCollection.size();
    if(collectionsize >0){
    Collectionbean= CollaboratorCollection.get(0)                        // Set pointer to 1st collaborator
    DisplayName= Collectionbean.getDisplayName();                 // Get name of 1st collaborator
    I am facing error with DisplayName. is "getDIsplayName" the correct method to fetch name of the first collaborator? Where can I get  list of methods for collaborator variable?
    Regards
    Mudit Saini

    Hi Devesh
    Thanks for your reply. You are right
    . contractHome=IBeanHomeLocator.lookup(session,ContractIBeanHomeIfc.sHOME_NAME) was not working properly so I removed it and instead I used  agreementBean = doc.getRootParentIBean() and the script is now working fine.
    Now I am able to get the name of the first collaborator from master agreement. Next step for me is to compare this name with user account name  and for the same I am using the below mentioned code:
    import com.frictionless.api.usermgmt.masterdata.UserAccountIBeanIfc;
    import com.frictionless.api.ibean.OrderedSubordinateCollectionIfc;
    import com.frictionless.api.contracts.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    import com.frictionless.api.contracts.ContractIBeanIfc;
    import com.frictionless.api.ibean.OrderedSubordinateCollectionIfc;
    agreementBean = doc.getRootParentIBean();
    CollaboratorCollection = agreementBean.getCollaborators();
    collectionsize = CollaboratorCollection.size();
    if(collectionsize >0)
    Collectionbean= CollaboratorCollection.get(0);
    CollectionName= Collectionbean.getDisplayName();
    UserHome=IBeanHomeLocator.lookup(session, com.frictionless.api.usermgmt.masterdata.UserAccountIBeanIfc.sHOME_NAME); // to get access to user account bean
    UserBean=UserHome.find(CollectionName); // to find collaborator name in user account
    UserName= UserBean.getDisplayName();
    Now the problem here is it seems IBeanHomeLocator.lookup(session, com.frictionless.api.usermgmt.masterdata.UserAccountIBeanIfc.sHOME_NAME)  doesn't work with user account bean.I am getting the following error:
    Sourced file: inline evaluation of: ``import com.frictionless.api.usermgmt.masterdata.UserAccountIBeanIfc; import com. . . . '' : No static field or inner class: sHOME_NAME of interface com.frictionless.api.usermgmt.masterdata.UserAccountIBeanIfc
    Is there any other method to get access to user account bean?
    Regards
    Mudit Saini
    Edited by: Mudit_UCB on May 13, 2011 8:15 AM
    Edited by: Mudit_UCB on May 13, 2011 8:16 AM
    Edited by: Mudit_UCB on May 13, 2011 8:21 AM

  • How to Change the default Search value for Field Role?

    HI,
    I went through numerous threads on how to default the search value , but does not help for my issue. Hence im posting this new thread. Please provide your suggestions on how to achieve this.
    For the Ship-to party field (in item detail )  on webui when i do a F4 help i get the pop up with various search criteria and  for the field Role the default value is "Ship-to party".  which is visible. we need to change this default value to Prospect which is available in drop down.
    The attribute is STRUCT.ROLE  and view BP_HEAD_SEARCH/SearchHelp . The method GET_DQUERY_VALUEHELPS  from the context node class is called to fill the value help for this attribute, but i dont understand how the ship-to party is filled as default. There is no code in this method to default the value.
    The generic GET_V_S_STRUCT method also does not default the Ship-to party on this field.
    I want to understand how this Ship-to party is filled by default and how can i change this to prospect..
    Many Thanks,
    Shaik

    We had a same requirement of defaulting Sales org and division in search criteria for a specific value.
    this can be doen by redefining "DO_PREPARE_OUTPUT" method in IMPL class for the respective view.
    See the code:
    METHOD do_prepare_output.
    *CALL METHOD SUPER->DO_PREPARE_OUTPUT
    **  EXPORTING
    **    iv_first_time = ABAP_FALSE
      DATA:
        lr_qs TYPE REF TO cl_crm_bol_dquery_service.
    * Get current query object
      lr_qs ?= me->typed_context->search->collection_wrapper->get_current( ).
      IF iv_first_time = abap_true.
        lr_qs->clear_selection_param_values( ).
        lr_qs->delete_empty_selection_params( ).
    *   if l_sales_orgs is initial.
        CALL METHOD lr_qs->insert_selection_param
          EXPORTING
            iv_index     = '1'
            iv_attr_name = 'SALES_ORG'
            iv_sign      = ' '
            iv_option    = 'EQ'
            iv_low       = 'O 50000514'.
    *   endif.
    *   if l_dist_chan is initial.
        CALL METHOD lr_qs->insert_selection_param
          EXPORTING
            iv_index     = '2'
            iv_attr_name = 'DISTR_CHAN'
            iv_sign      = ' '
            iv_option    = 'EQ'
            iv_low       = '01'.
    * endif.
    Hope this will help..
    THanks & Regards,
    Amit

  • How to change Image color like Channel mixer

    Hello everybody
    I have this problem can anyone help me:
    I want to change Channel mixer color,
    for example, change original Image color to B&W.
    My code:
    docRef.channels[0].color.rgb.red = 30;
    docRef.channels[0].color.rgb.green = 59;
    docRef.channels[0].color.rgb.blue = 11;
    docRef.channels[1].color.rgb.red = 30;
    docRef.channels[1].color.rgb.green = 59;
    docRef.channels[1].color.rgb.blue = 11;
    docRef.channels[2].color.rgb.red = 30;
    docRef.channels[2].color.rgb.green = 59;
    docRef.channels[2].color.rgb.blue = 11;
    But not working in scripting, seems a mistake.
    How should I correct this code? Thank you for your help.

    Hi Michael,
    I try changed 12 parameters in array of num in my js,
    doc.layers[0].mixChannels([[30,59,11,0],[30,59,11,0],[30,59,11,0]],false);
    doc.layers[0].mixChannels([[30,59,11,0]],true); ------  this way is better than ↑
    doc.layers[0].mixChannels([[60,30,10,0],[30,10,60,0],[10,60,30,0]],false);
    doc.layers[0].mixChannels([[39,77,19,0],[35,69,17,0],[27,53,13,0]],false);
    They would show new color as I wantted,
    I forgot ' When monochrome = true, the maximum number of channel value specifications is 1. '
    Thank you for your recommendation.

  • How to change the column header/channel name in an LVM file?

    Hi all,
    I made a VI (see attached JPG) that reads 2 voltages, but after calculations and other processes, ends up writing 6 columns of data to an LVM file (7 if you count the time).
    I have read in other posts that you can change the name of each signal so that the header of each column in the LVM files doesn't just say "untitled". However, as you see in my code, some signals are numeric (double) and one is a logic (1 or 0), so there is no way to edit the waveform properties of those signals (since they are not waveforms).
    Any ideas?
    Thanks!
    Attachments:
    untitled3.JPG ‏40 KB

    I would suggest looking at this existing post:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=175554
    I'll further mention that in the loop, for each channel you want to set the name of, the attribute name for the name of the channel is "NI_ChannelName".  The example in the thread above takes advantage of the fact that "NI_ChannelName" happens to be the first one defined.  I think it would be more robust to not bother reading the existing attributes, and instead just write the "NI_ChannelName" attribute with whatever new value you want.

  • How to Change Scheduling Agreement Schedule line data thru BAPI ??

    Hii
           I want to change the shedule line data for a scheduling agreement .
    I used BAPI_PO_CHANGE but as this BAPI is used for PO only this gives a
    Error Message for Scheduling agreement .
    Please suggest me BAPI or FM to update the Scheduling agreement Schedule line.
    Regards
    Ajitabh Pradhhan

    as BAPI_AGREEMENT_MAINTAIN is not available in 4.6c
    Please help me out on hwo to maintain Scheduling Agreements .
    Regards
    Gaurav

  • Master-detail: how to change master pk

    ADF Business Components 10.1.3.42.70
    JHeadstart 10.1.3.3.81
    all,
    i have a requirement to allow my users to change the primary key of a master record. the master record has multiple detail entities and about three levels deep. before i dive into it, i was wondering if there is any easy way to complete this using built-in adf capabilities?
    thanks,
    paul

    Paul,
    In a relational database like Oracle, primary keys are supposed to be immutable (unchangable). If you have a requirement to allow the user to change the primary key, then by definition, that "thing" is not the primary key.
    If I had this requirement, what I would do is to use an Oracle sequence to generate a surrogate primary key for my master and put a unique key + not null constraint on the "thing" which is currently being used as the primary key.
    Best,
    John

  • How to change 5.1 output channels?

    I have set the output channels of 5.1 surround in the AUDIO MIDI SETUP to physical outputs 5-10. Soundtrack PRO still uses its own selection/order of 5.1 outputs (ie 1-6). How can I use other outputs of my audio interface?
    Tnx,
    Kustav

    Change the outputs? ... you can't .... STP ignores the AudioMidi setup output allocations and has no internal system for assigning channel outputs to hardware outputs ... how could this be? ... how could Apple violate its own CoreAudio principles ...
    The only workaround I've found is to use Cycling74's Soundflower audio routing tool ... Google it ... it's still not Leopard native, tho I think some folk have had luck with it ...
    Maybe Apple will get around to adding what is essentially "basic" routing features to the next update ...

  • How to change search help for standard field in me51n.

    hi frnds,
              I want to change search help option for 'Advice code' field under Additional DFPS tab in me51n. But i dont know how to change or add search help for standard field. so plz help..
    best regards,
    sudip biswas

    Hi Abhi,
    Try using any one option:
    Create a Search Help in SE11.
    Now Goto SE11 -> Enter Ztable -> Select that field -> Click Search Help and try to assign the created Search help to that field in your Ztable explicitly
    OR
    Create a Zdata element in SE11.
    In Data Element, under Further Characteristics tab, enter Name  Parameters of Search Help.
    Assign this data element to that field in ur Ztable.
    OR
    Create a Zdomain and maintain a Value Table or Fixed Values for it.
    Assign this domain to that field in ur Ztable.

  • How do i change the default search engine in the search bar?

    Whenever i open firefox the default search engine in the little search bar is always Yahoo, and nothing i do changes it back to google permanently. Even when i type something in the address bar it uses yahoo. Ive tried everything including going in to about:config and changing a bunch of stuff like putting in the google string but nothing works...

    Find the link below with all this explained for firefox, chrome, explorer.
    Great tutorial with pictures
    [http://www.squidoo.com/how-to-change-address-bar-search-on-firefox-chrome-internet-explorer How to change address bar search]

  • How do you change the Spotlight Search from Google to Yahoo???

    Does anyone know how to change the Spotlight Search setting in Safari 4 (Non Beta) from Google to Yahoo? I assume there is a way to do this though Terminal but all I can find are commands for the the Beta and not he final version.

    I'll echo the other suggestion given already - Glims is the way to go.
    My Safari is now set to use (oh the irony!) Live Search!
    Now if they can JUST find a way to get the address bar to revert to pre-4.0 behavior I'll be happy!
    (I'm not talking about the reload button on the far end; I'm talking about listing URLs by page title, "Top Sites", and bookmarks in that dropdown)

  • How to change the standard query "Create a Master Agreement" by a custom one

    Hello Sourcing CLM experts,
    I would need to replace the standard query displayed when the user tries to create a Master Agreement by a custom query to filter the MA types according to some criteria:
    According to this post: Re: Create security profile for a document template in SAP Sourcing, I've tried to achieve it by doing the following steps:
    Create a new query as a copy of exsiting query FCI-ContractTypes
    Modify query group FCI-ContractTypesBP to include my custom query instead of the standard one to only list the MAType "Standard Master Agreement"
    Following you can see the change done into the query group FCI-ContractTypesBP:
    However, standard query has not been replaced and same set of MA Types are listed.
    Therefore, I would like to ask you:
    Is it possible to do this kind of modifications? If so, which query group need to be modified?
    If it is not possible, is there any other way to achieve that requirement?
    Thanks in advance for your time and support!
    Best regards,
    Isaac

    Hello again experts,
    If this query cannot be modified, is there any option to disable button below? Or at lease, to disable the query group to avoid the listing of MA Types when it is pressed?
    The reason is because we are going to set up the system in the way that only it will be possible to create Master Agreements from Template. However, if user keep on using that button he will be able to create MA from document types.
    Any ideas?
    Thanks again and best regards,
    Isaac

Maybe you are looking for