Multiple references in OSA

Hello,
Can anyone tell me how to use multiple references?
My problem is that: I have used Free enhancement BADI and references to a Criteria group (VB). I am expecting that when user adds a new element, the system add both Criteria group and also the linked criterias (VC). 
But actually the system is adding the VB and not the linked VCs.
1. Is there way to add more than one element (VB + all linked VCs) at a time using free enhancement BADI?
2. Can we add a VB within a VB using free enhancement? (I tried, but it is not accepting)
Thanks for your answer.
Raghu Kolukuluri

hi,
I guess you already activated the fix enhancement property multiple_references. in the enhance_document method you have to control how the elements are generated. for instance in one VB with one implementation you will generated some VC and in another VB with the same implementation you will generated some VB and VC.

Similar Messages

  • Mapping to the same table through multiple references

    Hello,
    I'm trying to map aggregate fields (from my target) to mutlitple tables (back on my source), but am hung up because I need multiple references to the same table (basically a lookup values table) in my target. I believe that the problem lies in not being able to reference (in the mapping workbench at least) the same table more than once (such as through an alias, or otherwise defining multiple references) in the multi-tables tab. Is there a way around this, or some other approach to mapping it that I can take?
    Thank you,
    John

    Not exactly sure what you are trying to do, perhaps listing the object model and data model would help.
    If you are having trouble mapping the aggregate in the Mapping Workbench you may be able to workaround the problem through using a descriptor or project amendment method and defining the mapping through the code API.

  • Basic Question: How does serialization handle multiple references?

    Hello, I am not entirely sure how serialiazation works.
    class Employee implements Serializable {
    // properties and stuff here
    class Company implements Serializable {
    public ArrayList allPeople = new ArrayList(); // this holds a bunch of Employee objects
    public ArrayList somePeople = new ArrayList(); // this holds a bunch of Employee objects
    Company company = new Company();
    Employee jsmith = new Employee();
    company.allPeople.add(jsmith);
    company.somePeople.add(jsmith);
    ok, so my question is... if we serialize the Company object and then deserialize it back to company2 (another Company object) . In company2 will allPeople.get(0) and somePeople.get(0) point to the same physical Employee object? Or to 2 identical ones?

    If you talk about serialization over one stream, then yes both references to the object will be the same. If you serialize data to serveral files and later read them in you will get multiple instances unless you implement a readResolve() to handle it.
    Its all in the serialization white paper. So go read the documentation.
    /robo

  • Multiple references

    This is probably a basic question, but how do I configure references to the same document in multiple folders automatically?
    For example, if I have a document called Proposal to XYZ Inc., how can I setup so that it is accessible from "Customer Proposals" and also from "XYZ Inc." folders?
    I'm currently using 1.1.9 on Windows2000.
    Thanks in advance,
    Andy

    You can use this method:
    addFolderRelationship(Folder fo, PublicObject po); to place the object inside a foder.
    You just need to call this method twice to place the same public object into two different folders.
    This method is in class oracle.ifs.adk.filesystem.IfsFileSystem
    null

  • Multiple references to web services in EJBs

    Hi
    Would like to know if its possible to reference EJB web services dynamically from fields in a database. Basically, I would have the EJB installed on multiple servers and need to be able to invoke it after looking up the address of the server in the database. Currently I'm using a NetBeans Web Service Reference in a JSP project to call the EJB.
    Regards
    Lionel

    Here [it is|http://blog.vinodsingh.com/2008/09/building-jax-ws-web-service.html] with source code.

  • Maintaining multiple references in Identification types

    How to maintain many references with one single reference for single BP
    I am very new to CRM.
    I need help in finding solution in CRM to map external reference which has many sub references.
    In our scenario, in legacy system we have on single reference which has many sub references and we have to map this to Business Partner ID in CRM system. Can you any one help me to find solution.
    In SAP CRM is this possible or not? if possible please help me
    Regards
    kumar

    Hi Kumar
    There is the possibility to maintain multiple identification numbers of any kind up to 50 char's long in the CRM system. It is possible to maintain multiple values for one kind of number as well as multiple numbers. These are stored in table BUUT0ID, and you can find the customizing for these in the SAP Business Partner Customizing under bp -> basic settings -> identification numbers.
    With this additional numbering you can map the external keys of your legacy system and do the mapping for incoming changes based on these numbers.
    Regards, Kai

  • Credit memo for returns with multiple reference deliveries

    Hi Experts,
    I have few credit memos for returns with multilple return orders and return deliveries in document flow.
    I want to find out where do we configure this setting in which there will be single credit memo for multiple deliveries.
    And how system decides the common factors in deliveries for this credit memo?
    Please guide.
    -Chetan Barokar.

    Hi,
    In copy control settings of delivery document to billing document you can maintained the requirement routine Data VBRK/VBRP as 03 - Single invoice for an item category, as theinvoice spliting will be control from copy control.
    with regards
    Vivek.

  • Stored procedure with multiple Reference Cursors

    In Sybase and SQLServer, result sets are returned to the application implicitly. Oracle emulates this by passing back weak reference cursors to the application through an IN OUT parameter.The number of reference cursors must match the number of results sets. For example, if 2 select statements are present in the stored procedure code, then 2 reference cursors are passed back.The Oracle Migration Workbench creates the correct number of reference cursors but assigns each select statement results to the first cursor created. Therefore only the last set of results are returned to the client.
    Before (SQLServer)
    CREATE PROCEDURE get_sch_associated_appointment_info (@piAcc_itn int) AS SELECT s.acc_itn, r.internal_key, r.mnemonic, r.descp, sh.start_dtime, sh.end_dtime FROM schdtl s, schdtlhdr sh, resource r WHERE s.acc_itn = @piAcc_itn and sh.acc_itn = @piAcc_itn and sh.resource_itn = r.internal_key SELECT sdcr.acc_itn, sdcr.rsch_dtime, sdcr.rsch_by_init, sdcr.rsch_code, sdcr.rsch_reason, sdcr.cncl_dtime, sdcr.cncl_by_init, sdcr.cncl_code, sdcr.cncl_reason, sdcr.prev_start_dtime, sdcr.prev_by_init FROM schdtl_canrsch sdcr WHERE sdcr.acc_itn = @piAcc_itn SELECT sdi.acc_itn, i.sched_notes, i.post_sched_notes, d.pre_sch_notes, d.post_sch_notes, i.detail_key, i.output_notes FROM schdtl_info sdi, extitem i, dept d WHERE sdi.acc_itn = @piAcc_itn and sdi.actual_dept = i.dept and sdi.actual_proc_no = i.proc_no and sdi.actual_dept = d.dept
    After (Migration Workbench) – Optional Section
    CREATE OR REPLACE PROCEDURE get_sch_associated_appointment_info (piAcc_itn int, RC1 IN OUT Omwb_emulation.globalPkg.RCT1) AS OPEN RC1 SELECT s.acc_itn, r.internal_key, r.mnemonic, r.descp, sh.start_dtime, sh.end_dtime FROM schdtl s, schdtlhdr sh, resource r WHERE s.acc_itn = piAcc_itn and sh.acc_itn = piAcc_itn and sh.resource_itn = r.internal_key; OPEN RC1 SELECT sdcr.acc_itn, sdcr.rsch_dtime, sdcr.rsch_by_init, sdcr.rsch_code, sdcr.rsch_reason, sdcr.cncl_dtime, sdcr.cncl_by_init, sdcr.cncl_code, sdcr.cncl_reason, sdcr.prev_start_dtime, sdcr.prev_by_init FROM schdtl_canrsch sdcr WHERE sdcr.acc_itn = piAcc_itn; OPEN RC1 SELECT sdi.acc_itn, i.sched_notes, i.post_sched_notes, d.pre_sch_notes, d.post_sch_notes, i.detail_key, i.output_notes FROM schdtl_info sdi, extitem i, dept d WHERE sdi.acc_itn = piAcc_itn and sdi.actual_dept = i.dept and sdi.actual_proc_no = i.proc_no and sdi.actual_dept = d.dept;
    After (Manual Change)
    CREATE OR REPLACE PROCEDURE get_sch_associated_appointment_info (piAcc_itn int, RC1 IN OUT Omwb_emulation.globalPkg.RCT1, RC2 IN OUT Omwb_emulation.globalPkg.RCT1, RC3 IN OUT Omwb_emulation.globalPkg.RCT1) AS OPEN RC1 SELECT s.acc_itn, r.internal_key, r.mnemonic, r.descp, sh.start_dtime, sh.end_dtime FROM schdtl s, schdtlhdr sh, resource r WHERE s.acc_itn = piAcc_itn and sh.acc_itn = piAcc_itn and sh.resource_itn = r.internal_key; OPEN RC2 SELECT sdcr.acc_itn, sdcr.rsch_dtime, sdcr.rsch_by_init, sdcr.rsch_code, sdcr.rsch_reason, sdcr.cncl_dtime, sdcr.cncl_by_init, sdcr.cncl_code, sdcr.cncl_reason, sdcr.prev_start_dtime, sdcr.prev_by_init FROM schdtl_canrsch sdcr WHERE sdcr.acc_itn = piAcc_itn; OPEN RC3 SELECT sdi.acc_itn, i.sched_notes, i.post_sched_notes, d.pre_sch_notes, d.post_sch_notes, i.detail_key, i.output_notes FROM schdtl_info sdi, extitem i, dept d WHERE sdi.acc_itn = piAcc_itn and sdi.actual_dept = i.dept and sdi.actual_proc_no = i.proc_no and sdi.actual_dept = d.dept;

    I believe you are using .NET(?). If that is the case, please post this query to the .NET Development - Crystal Reports  forum:
    SAP Crystal Reports, version for Visual Studio
    That forum is monitored by qualified technicians and you will get a faster response there.
    Thank you for your understanding,
    Ludek

  • Appraisals EHP4 - multiple reference objects not working in the same TAB

    Dear SAP Experts,
    I am working on MBO Performance Mgmt EHP4. I have created an appraisal template and testing this in MSS.
    Now the structure of the template has a VB object called u201CMy Developmentu201D.
    Within this VB Object I have created two other VB objects in the following order called
    u201CSuccess Profilesu201D and
    u201CAdditional Areas of Developmentu201D
    The business requirement is to
    a)     within success profiles have the requirements of the position of the appraisee to be defaulted
    b)     then have the ability for the Manager to select one of the requirements and select the ADD functionality to add another element which has 4 customs columns to then be completed by the Manager
    c)     Within u201CAdditional Areas of Development, the Manager needs to be able to have an ADD button to create the 5 custom columns to be completed by the Manager.
    The good newsu2026u2026..I have created the structure ok, with custom columns and have used fixed enhancement for defaulting the requirements of the appraiseeu2019s position and then having the reference object to each one of these requirements to then create 4 additional fields when the Manger selects the ADD button next to each requirement.
    I have also used a separate set of reference objects to have an ADD button against the VB object u201CAdditional Areas of Developmentu201D which is in the sequence after the VB object Success Profiles, then this will allow the creation of the 5 columns ok and works fine.
    I have also used the reference object for the Success Profiles which would expect to  show the ADD function to add the new element with 4 fields. Also the ADD function for the u201CAdditional Areas of Developmentu201D appears.
    I have created the config to display the My Development as a tab and have both the u201CSuccess Profilesu201D and the u201CAdditional Areas of Developmentu201D within this tab.
    The bad newsu2026.. When I select the ADD button against the VB object u201CSuccess Profilesu201D nothing happensu2026u2026u2026
    The defaulting of the requirements of the appraiseeu2019s position into the appraisal document under the Success profiles ONLY works if the VB object u201CAdditional Areas of Developmentu201D is DELETED from the appraisal document.
    However, when I delete the VB object u201CAdditional Areas of Developmentu201D the ADD of the VB object for Success Profile now works
    So it only seems to work if I delete the u201CAdditional Areas of Developmentu201D VB in the document which seems wrong to me.
    Please can someone advise
    Thanks
    Oliver

    Hi SAP experts,
    does anyone have an answer to my question above.
    Much appreciated it
    Not sure how to get screenshots stored in SDN f someone could explian.......
    Thanks
    Oliver

  • Create multiple references...in order

    Say  I have 10 terminals on the block diagram (bootean 1, boolean 2,...)  arranged all nice and prettty, vertically , and in order.  I select them all, right click,  and create references.  All of my references are in order, but reversed (boolean 10, boolean 9, ....).   I've tried selecting the terminals in different orders, etc. but nothing seems to affect the way the references are placed on the block diagram.
    'Tis but annoying, but surely someone has a better way?

    I believe they are placed based on the Z order of the controls.  So if you make button 1 and then copied it to make button 2, button 2 would have a higher Z order than button 1.  Therefore, it comes out backwards.  Play around with the Send To Back and Move Back commands.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • ITunes doesn't seem to know how to count,  multiple references for same mp3

    Have had several MP3 players, but just got my first ipod.
    I have 5899 mp3 files under the My Music directory stucture.
    The two other programs I use to manage my music (Rio Music Manager, and Media Monkey) both see 5899 songs and one copy of each file.
    Also a directory from the CMD prompt verifies 5899 mp3 files.. totalling about 24GB
    When iTunes scans the same directory it shows 10,352 songs or a total of 38.79GB.
    I should be able to put my entire collection on the 30GB video ipod, but because of what itunes is doing, they do not fit.
    I see most all songs with 2-3 references in the library. I have to uncheck 2 of the three to have iTunes only send one copy to the player..
    I have uninstalled iTunes twice and it does the same thing every time..
    Love the ipod, but iTunes needs help..
    Any ideas?
    TIA,
    Bryan
    IBM T43   Windows XP Pro  

    actually think I found my own answer. I have 5 M3U playlists under the directory structure. Synch lists and playlists for my other players..
    I moved them out, then cleared the itunes database, rescanned the directories and only 5899 songs came in..
    Any way to bring my m3u lists in without the dupication?
    Bryan

  • Multiple references to socket.getInputStream()

    I am writing a simple client server game and am trying to pass both input and Objects over the socket stream.
    Is it possible to have:
    BufferedReader ins = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    ObjectInputStream ois = new ObjectInputStream(socket.getInputStream());Or will this cause problems? I am positive of the order of input and objects, so there is no ambiguity on whether to read from ois or ins, but will there be some bad-mojo there anyway?

    Thanks. I've read alot of posts about this and this is the first time I've seen the deprecated readLine solution. Doesn't this seem to be a fairly significant problem? Is BufferedReader supposed to be accepting serialized objects anytime soon?
    I suppose that I could simply close the socket and reestablish a connection using an ObjectInputStream, but what do commercial developers do? Do they just rely on passing String objects or is BufferedReader preferred?

  • Is there a way to add multiple images at the same time to Keynote 6.0?

    I just brought keynote after searching online about adding multiple images to a presentation all in one go - I couldn't do this on the powerpoint version I was using but there were multiple references on google to being able to do this on keynote. I purchased it and now can't get it to work! Any ideas anyone? Thanks

    Do you mean like dragging in multiple images and having one image go on each slide? If so, you just drag the images into the Slide List on the left instead of onto the slide. From this prior post.
    https://discussions.apple.com/message/9068283#9068283

  • A single album cover is going on multiple albums at random.

    This problem has been going on for quite a while on and off, and ready to delete that album.  I downloaded Volbeat Beyond Heaven/Above **** and it keeps going to different albums. Linkin Park Hunting Party, Reel Big Fish Turn off the radio and Soundgarden Badmotorfinger just to name a few TODAY.  I've tried deleting the Volbeat Album cover and syncing my iPod to reset the Album covers, I've tried deleting The non-Volbeat albums covers to rest them. and it hasn't worked.  I should mention that they had the right album covers for about a half hour (not including Soundgarden).  Another thing I forgot to mention is that when  turn my iPod to the side, the album covers are correct, like they are on my laptop.  Just my iPod doesn't have the correct cover.

    iTunes cannot handle multiple references for one song file.
    You might want to let our friends in Cupertino know your thoughts on the matter by submitting the form on this page .

  • Credit Memo with reference

    Dear All,
    I have a requriement where Credit memo will be created against multiple invoice reference
    but amount will be copy in single line from VBRK-NETWR for all refenced bills.
    I have sarched in furum and found that it is not possible I have to copy items from referenced
    invoices and then proceed for credit memo.Plz revert if this is possible in SAP standared configuration.
    regards,
    sps.

    Retro Billing is used when you go for mass change of Base Pricing Condition Type  in Billing doc(complete) based on Sold-to party & Material for a given range Billing date from & to. To do this you need agreement of your customer, and accordingly you make necessary changes in  Base Pricing Condition Type  condition record. Thus, retro billing is not at all relevant for the requirement.
    Whereas, invoice creation request will have line item, one for Credit and one for Debit. If there are several corrected items, the system cumulates the values of all the items and calculates a total value. And based on your requirement you need to manually change either debit or credit line item amount. Based on the difference of these item the Credit (postive diff) or Debit memo (Negative diff) will be proposed by system. And you can have multiple reference.
    @ Prasanna: For further information & clarification, kindly read the PDF recommended by you.
    Regards
    JP

Maybe you are looking for

  • Challenges in deployment descriptors

    We currently have an EJB (called CD) that is contacted "remotely" by a web service (called CA) for some processing. The two (CD and CA) are deployed on different WLS8.1SP1 domains. CD is currently deployed as an EJB jar file (cd.jar) whereas CA is pa

  • Why do PDF attachments open in Mail

    When I add a PDF as an attachment in Mail  it opens the first page and the other pages do not show. This only happens after installing Maverick OS10.9. I had previously used Snow Leopard 10.6.8 and this was never a problem. Do I have to reset somethi

  • Installing and Registering QuickTime 7 Pro

    Hi, I just paid for a download of QuickTime 7 Pro, downloaded and installed (including restarting) it but it doesn't seem to be the Pro version. It seems to be the free version and when I try register it says My registration is invalid. Information a

  • AA XI Standard: No "Share" button to simply attach pdf to email without asking for review and comment?

    In AA X, there was a "Share" button which would allow me to attach a copy of the current pdf to an email to be sent out. The pdf wouldn't be for "review" or "comment." Just a plain, vanilla, "Here's a copy of a document." I can't find that capability

  • What is cannot be resolved to a type error?

    When i run jsp programs, am getting : org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: 6 in the jsp file: /dbcoffee.jsp Generated servlet error: CoffeeQBean cannot be resolved to a type org.apache.jasper.c