Same Dynamic Filename used multiple times

Hi all,
In PI we would like to use the same dynamically created filename for multiple outputs of the same file in different locations.
Is it possible to create the filename and save it in a Java container (for instance) that can be accessed by other mapping programs?
Many thanks,
Aldo

>
Aldo wrote:
> Hi Sunil,
>
> I don't know if I'll be able to resolve my problem using these features......... but this for sure answers my question.  Thank you.!
>
> Best regards,
>
> Aldo
Just to correct you here... Your requirement is to reuse the file name value in different mappings and NOT to reuse the udf code.
The above blogs say's how to reuse the udf code in different mappings... So make sure what exactly you are looking for...
UDF can only store the value at run time for a particular mapping... once execution is over the value will be lost.
So as suggested by Sunil, you can store the file name into some table and then use the RFCLookup get it into your another mappings...

Similar Messages

  • Using multiple timer in the same SessionBean

    Hello,
    Is it possible to use multiple timer in the same Stateless Session Bean. In my application a user can schedule some task to execute. To do so I was thinking of creating a Session Bean which would create calendar timer on user request and, when one of the timer expires, retrieve the task to execute thanks to the information stored in the timer.
    When I tried the solution explained above, it seems that the @timeout method is synchronized on 1 timer. For example if I create a timer that will be executed every 10 seconds and another one executed every 30 seconds, the timeout callback is called every 30 seconds but 4 times.
    My code looks like that :
    @Stateless
    @LocalBean
    public class TimeManager {
        public void onUserRequest(ScheduleExpression expression) {
            Timer timer = timerService.createCalendarTimer(expression, timerCfg);
        @Timeout
        void timeout(Timer timer) {
            logger.log(Level.INFO, (String) timer.getInfo());
    }Is there a way to do what I want?
    Thank you

    This doesn't make any sense to me. If i were to write a bunch of schemas for a particular applicaion, would
    I have them all in the same namespace? You would normally have one schema that describes the information model associated with the one namespace that the different documents in your application use.
    If so, why can't I load more than one in the same name space?The parser chooses the schema based on the namespace alone. There is no other information used to decide which schema to use, so you can only have one schema for the namespace.
    They all have different root elements.You can have different root elements in the one schema.
    I don't even need the namespaces, but I can't
    figure out how to get rid of them (the schema isn't valid with out them according to XML Spy). You can set the schema explicitily before parsing, but not (AFAIK) set after parsing has begun, except by using the mapping of namespace to schema location.
    I have also tried to use the external-noNameSpaceSchemaLocationproperty, but it doesn't seem like you can pass in an array of schemas to that one. It only expects a
    String as the Object you pass in to setProperty. Yes, you can only validate a document against the one schema.
    So, how can I load all my schemas so I don't have to reference them in the XML documents? Either combine your schemas so you have one schema for your namespace that validates elements which are defined in that namespace (the formal/correct way of doing it), or construct a filter that inserts a PI to point to the schema once the root element is opened (the pragmatic/bit of a hack way of doing it).
    Pete

  • Avoid same TID used multiple times

    Hello everybody,
    I have a little problem with transaction id. What I do at the Moment:
    I have an JAVA based RFC Client that connects to SAP ECC 6.0 via JCo3. If I have a message for upload to SAP...
    1) ... I request a TID
    2) ... I add the received TID to the iDoc and store that iDoc to a database
    3) ... I send the iDoc (including the TID) to SAP, using the stored TID for the sending-process
    I store all the iDoc information in the database to be able to re-send the iDoc - in case of a connection problem or simmilar. Now I had a problem where I managed sending some iDocs twice. Basically I thought ECC would not proceed an iDoc that has an already used TID but it did. I wonder if there is a way to avoid a TID being used multiple times with JCo. Or should it be handled from ECC?
    Thanks for help
    Sebastian

    Now I had a problem where I managed sending some iDocs twice. Basically I thought ECC would not proceed an iDoc that has an already used TID but it did. I wonder if there is a way to avoid a TID being used multiple times with JCo. Or should it be handled from ECC?
    Please note that in general transactional RFC (tRFC) is used to prevent multiple execution in case of errors, not for successful calls (see for example [sending and executing tRFC LUWs|http://help.sap.com/saphelp_nw04/helpdata/en/25/bcfa40badbf46fe10000000a1550b0/content.htm]). In essence the TID reference can be deleted by the client and the server once the RFC call was executed successfully. So you cannot use it to prevent sending (and processing) and IDoc multiple times in general.
    Now, if we talk about errors for tRFC calls, we do not talk about normal errors in the IDoc processing (i.e. a failed IDoc which might be in status 51 or 56 or something like that). For IDocs it's important to distinguish between creating them on the database and processing the IDocs (in most systems configured to be done in a separate LUW, even if immediate processing is chosen in the partner profile). Most likely you don't want to resend an IDoc once it exists in SAP (as any error handling from then on should be done in SAP).
    So TID handling is not build for successful RFCs. This is why you see in some application code provisions to prevent duplicate postings (e.g. issue an error as soon as for example a duplicate reference number is encountered).
    Cheers, harald

  • The same podcast shows up multiple times

    In iTunes, the same podcast shows up multiple times. There is only one copy of the file on my computer, and the file it located in the right location, but in iTunes, the same podcast is repeated two or more times. When I delete a single podcast and try to play its copies, iTunes notifies me that it can't find the file. I believe this happens when I use the import folder utility and add music in the iTunes music default location (which includes the podcasts as well as the music I want to import). Does anyone know how to keep this from happening?
    Thanks

    Well, the easiest way would be to stop using the import folder utility. Sounds like you're adding the podcast multiple times. You're probably doing it to other files as well...

  • I live in the UAE and i dont have the face time app on my iphone 5 and it's not showing in the settings list as well only face time mentioned in the notification center , my friends in the same area are using face time normally any advice?

    i live in the UAE and i dont have the face time app on my iphone 5 and it's not showing in the settings list as well only face time mentioned in the notification center , my friends in the same area are using face time normally any advice?

    Doesn't matter.  That store is likely selling illegit iphones, brought oin from somewhere else.
    The fact remains the UAE government does not allow Facetime on iphones legitimately sold there.

  • A Cocoa window which is used multiple times (for instances of a class)

    Hi everyone,
    I develop with newest xCode using Obj-C, Java and Cocoa.
    It works perfectly to create a window and connect it to some code: I just design it, and connect it to a class which has been instantiated previously.
    What I need now is a window, which is used multiple times. Means that I create a class where the window should be connected to, from which I create multiple instances.
    I've seen that it works to create a class in Obj-C and just generate the window by code: it works to generate multiple windows. But how would I be able to design a window with InterfaeBuilder for a class which is not yetinstantiated? A class for which I create the instances while my app is running?
    Thanks a lot for your answers!
    -Lucas

    Like PeeJay says, a custom window controller seems the way to go. Try creating a subclass of NSWindowController, with header something like this:
    #import <Cocoa/Cocoa.h>
    @interface MyWindowController : NSWindowController
    IBOutlet NSTextField *infoField;
    -(void)setInfoText:(NSString *)str;
    @end
    The implementation of the setInfoText would be something like:
    -(void)setInfoText:(NSString *)str{
    [infoField setStringValue:str];
    Create a nib file with your window in interface builder. Drop the header file for your custom window controller into the interface builder window. Set the custom class of the nib's File's Owner to MyWindowController. You can then hook up the window and infoField outlets from File's Owner to your window.
    In the body of your code where you open a new info window, add something like:
    MyWindowController *windowController=[[MyWindowController alloc] initWithWindowNibName:@"nameOfWindowNibFile"];
    [windowController setInfoText:@"Whatever"];
    [windowController showWindow:self];
    If you are going to have an undetermined amount of these custom window, it might be a good idea to store the window controller instances in a mutable array, rather than retaining instance variables for each one.
    Jim

  • Same Windows Update installed multiple times through SCCM 2012

    Hello There,
    I am using SCCM 2012 to deploy critical and important updates through Automatic Deployment Rule it works fine but i have noticed recently on the client machines i see the same KB / update is installed multiple times.
    Why would this happen? Please suggest.
    Regards,
    Maqsood
    Maqsood Mohammed Senior Systems Engineer MCITP-Enterprise Admin & ITILv3 Foundation Certified

    Hi,
    My computer also have duplicated updates installed. I uninstalled one of them that needed a restart. Then uninstall another one after restart, it hadn't asked for restart and the uninstall process was very fast. So I think the update only installed one time,
    the others are duplicated records.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Same system being shown multiple time in Solution for Early Watch Report

    Hi Gurus ,
    I have some satellite system configured to Solution Manager . Today I can see the same system entry multiple time in the
    Operations: Solution Monitoring -> Early Watch Alert.
    eg .,
    I have a system whose SID is ABC , i can see the ABC entry for todays date (i.e., 4 FEB 08) nearly 4 time .And this systems are not rescheduled for the next EWR (i.e scheduled for 11 FEB 08- since we have kept a period of 7 days )
    Please suggest
    Anthony

    Hi Anthony,
    There was an error, that EWA sessions for one systems were scheduled multiple times per week.
    Please check [SAP Note 1083108 - Duplicate EarlyWatch Alerts|http://service.sap.com/sap/support/notes/1083108]
    Search for SAP Notes with key words: EWA, multiple, duplicate.
    Application area: SV-SMG-OP
    What's the software configuration of your SolMan?
    Best regards,
    Ruediger

  • EEM - same event is triggered multiple times in a short period

    I have a applet that will monitor the routing flapping..
    event manager applet route-flag
    event routing network 10.1.2.0/24 type modify
    action .....
    I like to have a hold down timer feature of this EEM appet. Let's say the event is triggered immediately when there is one change to the 10.1.2.0/24 network, but do not trigger it again if there is another change to within 60 sec. So what I want is the action will only run once no matter how many changes within 60sec.
    How can I achive this?
    Thanks in advance.

    There isn't a native feature to do this.  You could do something using multiple applets like:
    event manager environment q "
    event manager applet route-flag
    event routing network 10.1.2.0/24 type modify
    action 010 cli command "enable"
    action 011 cli command "config t"
    action 012 cli command "event manager applet route-flag"
    action 013 cli command "event none"
    action 014 cli command "event manager applet reenable-route-flag"
    action 015 cli command "event timer countdown time 60"
    action 016 cli command "action 1.0 cli command enable"
    action 017 cli command "action 2.0 cli command $q config t$q"
    action 018 cli command "action 3.0 cli command $q event manager applet route-flag$q"
    action 019 cli command "action 4.0 cli command $q event routing network 10.1.2.0/24 type modify$q"
    action 020 cli command "action 5.0 cli command $q no event manager applet reenable-route-flag$q"
    action 021 cli command "end"

  • Receiving same email from Telstra, multiple times

    Have received the exact same email from Telstra, 4 times within a half hour. Can anyone tell me if there is any cause for concern? A copy of these emails follows.
    From: <[email protected]>
    Date: 13 July 2015 9:02:06 pm GMT-7
    To: <removed>
    Subject: We’ve switched your Post-Paid service to Telstra
    Reply-To: [email protected]
    Our network is yours to enjoy
    Hi MICHAEL,
    Good news – we’ve successfully switched your mobile, <removed>, to Telstra.
    If you haven’t already, you can insert your new Telstra SIM into your device and you’re ready to go. You can now start enjoying the benefits of Australia’s largest and most reliable network.
    Getting started
    Firstly, get started with your new mobile. See all the tools and tips to help you manage your account, understand your bill, monitor your usage, and loads more.
    Need more info?
    Support is available online any time, or you can visit CrowdSupport® to ask questions, get help from the crowd, and more.
    Like us on Facebook and follow us on Twitter. We’re here 24x7 to provide the answers to your questions.
    Thanks for bringing your mobile to Telstra.
    Best regards,
    Andy Ellis
    Head of Customer Service and Contact Centres
    My Account Crowd Support
    Privacy | Our Customer Terms
    Please do not reply to this email as we are unable to respond. The contents of this email are strictly confidential. If you are not the intended recipient, any use, disclosure or copying of this email (including any attachments) is unauthorised and prohibited. If you have received this email in error, please delete the message from your system. We’re aiming to improve how we interact with you online. If you have any suggestions, we’d love to hear them - just let us know on our CrowdSupport® forum (login required). Privacy: protecting your privacy is important to us. View our Privacy Statement online. Twitter is a trade mark of Twitter, Inc., and is used under licence. Telstra 24x7® and CrowdSupport® are registered trade marks of Telstra Corporation Limited, ABN 33 051 775 556.
    Mod edit: email and phone number removed

    No cause  for concern. I would however remove all the names, numbers and email addresses from your post.

  • Select an artist in the 'view' & the same album is shown multiple times

    Hi, my top 'view' has Genre, Artist, Album as selection criteria. If I select 'The beatles' in the second pane (Artist) all Beatles albums are displayed but multiple times. E.G The album is shown 16 times, with one track on each entry. I just want it to show each album once in the main view ?
    Can this be changed or can I reset all settings ?
    Any help appreciated.
    Thanks
    Chris
    Message was edited by: chriskkkkkkkkk

    Article on that:
    http://support.apple.com/kb/TS1468
    That article is for itunes 7. The Compilation box has moved to the Options tab in itunes 8.

  • Same Variant used multiple times in a process chain

    Hi, I just noticed that you cannot use the same variant in a process chain twice!  You have create a duplicate variant in order to. 
    Example:  I need to activate my ODS at 2 different points in my process chain and it's not supported.  Why would they force me to create a whole other variant just for this.  Don' t you think we should be able to use the same variant more than once in a chain?
    Anyone.

    No response

  • Dynamic orchestration using multiple proxy services

    The project I am currently on is using ALSB for service orchestration. For a given orchestration, we would have one orchestration proxy (the control center), that synchronously calls a sequence of alsb proxy services.
    Each proxy service in this second level fronts one or more business service calls to perform a specific operation ("Create Account", "Create User", etc.).
    So far so good, all this can work just fine (and much of it is already working in production). The trick that I am trying to make happen currently, is to dynamically load the list of second-level proxies and loop through the list to trigger calls.
    Loading a list of proxy paths/names is no problem, I have many options there. It's when I try to take that list and loop through it, calling each proxy on the list that I am stuck.
    Unfortunately, it appears I could have three routing choices and none of them work:
    1. Service Callouts only work with a static service name, not a dynamic one (so even if I had a for-each loop around a Service Callout action, it doesn't do me any good).
    2. Dynamic Publish actions are asynchronous only
    3. Dynamic Routing actions inside Route nodes work, except that only one can exist per proxy service.
    Am I missing anything? Is there some way to get ALSB to accept dynamic synchronous invocation of multiple proxy services from one orchestration proxy service?
    Meghan Pietila
    Granite Consulting, Inc.
    Minnesota

    A way of Invoking a dynamically chosen proxy service (PS) synchronously could be the following.
    Service Callout actions are synchronous, so ALSB will block in PS2 (PS=proxy service) when it does the invocation of PS1.
    Assuming the following very simple scenario (I hope to have understood correctly your case):
    OPS = orchestration proxy service
    case1: OPS -> PS1 -> PS3 -> ...
    case2: OPS -> PS1 -> PS2 -> ...
    where each PSi calls one or more business service (I suppose that the business services called in each PSi are called in a predefined order), so what is changing from one case to another is the sequence of PSi to be called.
    I've setup the following ALSB project:
    - OPS proxy services
    - PS1 .. PS4 proxy services
    - a proxy called 'step'
    - a xquery called 'routing'
    The idea is to call, from OPS, another proxy (the 'step' proxy) in a synch way (service callout) passing the information of what proxy should be called dynamically.
    In the 'step' proxy then I create the <route><service> XML fragment, for the Dynamic Route action. This <route><service> XML fragment will point to the configuration of yet another proxy service (PSx), that is the PSx that I want to call.
    One limitation is that I assume that your OPS always calls for example 2 proxies which name is resolved dynamically.
    About the xquery:
    <routing>
    <case name="1">
    <node>PS1</node>
    <node>PS3</node>
    </case>
    <case name="2">
    <node>PS1</node>
    <node>PS2</node>
    </case>
    </routing>
    OPS performs the following steps:
    - chooses what is the case: 1 or 2
    - does 2 service callout to the proxy called 'step' passing each time the correct node to be called
    $routing/case[@name=data($case)]/node[1]
    $routing/case[@name=data($case)]/node[2]
    In the 'step' proxy I do a dynamic publish to desidered PS:
    <route xmlns="http://www.bea.com/wli/sb/context">
    <service isProxy="true">{ $proxyToBeInvoked }</service>
    </route>
    where the proxyToBeInvoked variable is built from the node received by the caller.
    I've used this approach in a solution currently under development but I've found some problems when I want to receive back in OPS the error raised by any PSi: I'm able to catch the error but I'm not able to receive back the detailed error like in an usual stack trace.
    I hope that could be useful.
    Regards
    ferp

  • Design Time Bean Customizer validate Rule and use multiple time problem

    Hi,
    I have implement a custom validation rule ,add a design time bean customizer for my rule then register on datamodel project,i can use the graphic design time bean customizer and add my validate rule to my entity xml file,but when i add another instance to the same entity,data added to entity xml file was not correct,it may be not integrity or all data are same ,how can i do ? I found all bean validation with the same name ,it is the registered rule name "plsql rule", any suggestion are appreciative
    thank you advance
    li xin zhu 2007/09/08

    Hi,
    One thing you can do in the FOX would be to mark all fields in 'to be changed'. This will have the impact of having all data in the same data package and the FOX code will execute only once.

  • Using multiple Time Machines for network with bup

    Hi Filks
    Here is what I am looking to do. I have 3 buildings on 1 property.
    I have eathernet wired to all
    I have a closet with all wires terminating there.
    I have 4 2T Time Machines, 1 Comcast Modem, 1,  24 port switch
    I want to put one Time maching at the modem then connect switch to that and then all others to the switch so that I have one network behing the Time Machine.
    I want to set up the other time machines so that they are the same wireless but not entending the wireless as they will be wired to the number 1 Time machine.
    I need the wireless for all the items that are not connected to network obviously.
    Do I set the additional Time Machines to be new wireless but use same info as #1?

    Sorry meant Folks

Maybe you are looking for

  • Error converting Pagemaker file to PDF

    Hi there, I've been trying endlessly to convert an Adobe PageMaker 7.0  file to PDF. I've followed the process of "click on File, and then Export to PDF"; however, during the conversion process, an error message always pops up: "When you create a PDF

  • Mail enabled list not picking up items from the drop folder.

    Hi all,  I'm sorry if this has already been addressed but my searches didn't turn up anything that helped. Our site has some mail enabled lists, that used to work and now do not.  Here is a list of things I've verified and done. 1.  Verified that ema

  • XI 3.0 Trusted Authentication

    When setting up for Trusted Authentication, the TrustedPrincipal.conf file needs to be added to the BO install.  The documentation (Admin Guide) says that it needs to go to <drive>:\Program Files\Files\Business Objects\ BusinessObjects Enterprise 12.

  • Substitution rule for STO - changing business area.

    Hello Experts, We are transferring stock from one plant to another plant. Each plant is business area. We are doing stock transfer at some profit element of Rs. 250. Transfer is done from Business Area D002 to Business Area D001. When we do outbound

  • Forte UDS 5.1.8 Syntax

    I am primarily a C# programmer with some java experience. We have an application that we purchased that uses Forte UDS 5.1.8. The syntax is easy to figure out but there is one thing that I have not been able to find documentation on. It is database o