BPM Acknoloedgement Issue - Help needed urgently!!

I have a requirement where i get a flat file and send to Receiver(SAP) thru BPM and wait for Acknoledgement.
After sending the file to receiver (SAP)
SAP I wil be sending SYSTAT01 idoc type. i.e., status idoc to help to indicate "file arrival acknowledgement purpose”.
How to receive the SYSTAT01 Idoc from the same BPM instance?
Thanks for your help in advance.
Regards
Sudha

Hi,
Go through this links it will help ful
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/903a0abc-e56e-2910-51a8-9dc616df56eb
Idoc Acknowledgements and BPM.
Plz award points
thanq

Similar Messages

  • JFC Swing Focus Issue : Help Needed :Urgent

    �In my application,Swing (JFC,jdk 1.6) calls C++ executables ,at times executable pop up comes before the main swing window (C++ is faster than swing window to come), as java window comes second it steals focus from C++ dialog , but our intention is to have focus on C++ Dialog (It is already set to modal and comes on TOP but it doesn�t retain focus) ,has anyone encountered similar problem ? �

    Why don't you wait until your Swing GUI is visible before running the C++ programs? If you're launching some other Process asynchronously while the Swing GUI is loading, and your GUI is slow to create, then you'll always have the problem of the other Process possibly displaying its window first.
    Again, my suggestion is to wait until your Swing GUI is realized before creating/displaying any native dialogs, to ensure things pop up in the "right order."

  • HT201210 i have an error of no 11. kindly help, needed urgently

    i have an error of no 11. kindly help, needed urgently
    when i try to upgrage my
    iphone 3gs wit 4.1 to new latest 5.1
    it gives the erorr of 11. what that mean? Reply as soon as you can !
    thnx

    Error -1 may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.

  • Some J2ME midlets doubts!! help needed urgently!!!

    Hi,
    I am currently working in a company where it does wireless technology like WAP and I am assigned a task of creating a screensaver midlet. I have some doubts on the midlets.
    1) How do i use a midlet suites? From what I heard from my colleagues & friends, a servlet is needed for midlets to interact with one another. is it true?
    2) How do I get the startin midlet to take note the phone is idling so that the screen saver midlet can be called?
    Help needed urgently... if there is any source codes for me to refer to would be better... Thanks...
    Leonard

    indicates that MIDlet suites are isolated (on purpose) from each other, so you can't write over another one's address space.
    Also, I believe (at least on cell phones) that you have to specifically enter the Java Apps mode; unless you do the app won't execute. If you are in Java apps mode and a call comes in, the cell's OS puts the Java app currently executing on "Pause" mode and switches back to phone mode.
    Not sure if you will be able to have a Java app do that automatically.
    BTW why do you need a screensaver on an LCD display? Is it really intended to show an advertisement?
    Download and real all the docs you can from Sun, once you get over the generic Java deficiencies MIDlet's aren't that hard.

  • Load bar at start up, then shut down. HELP NEEDED URGENTLY!!! plss....

    Load bar at start up, then shut down. HELP NEEDED URGENTLY!!! plss..

    The startup disk may need repairing.
    Startup your Mac while holding down the Command + R keys so you can access the built in utiliites to repair the startup disk if necessary or restore OS X using OS X Recovery

  • BPM Workflow Help Needed Urgently please

    Hi All,
    We are working on a BPM workflow
    User A submits the request which goes to User B for review if rejected by user B the process stops but if approved then the amount is calculated using a decision table and based on the amount it will be routed to the respective users.
    I did it till BPM part and created rules in the BRM part as well but dont know how to call this BRM in BPM.
    Please help me its very very urgent.
    Thanks in advance

    Refer step 25 of this document to see how to create a web-service for your BRM ruleset.
    Once the web service is ready, it can be imported anywhere for use.
    1. In your BPM, right-click on the 'WSDL' folder and select 'Import WSDL'. You can import your BRM web-service here.
    2. Then place an automated activity in your BPM process design and set the BRM service as the Service Reference property of the Automated activity.
    3. Once this is done, you will see the Condition and Action values of your BRM decision table in the Input and Output mapping of the Automated Activity.
    4. Map the values of BPM process context to the BRM condition values in the 'Input Mapping' and get the corresponding output in Output mapping (Action Values of decision table).
    Refer step 12 in this document to see how to import a WSDL in your BPM Process.
    Hope this helps.

  • Help needed urgently on a problem..plzzz

    hi..this is a linear congruential generator. I have to implement it and i need the execution time for the program.
    for your understanding i'm providing an example below.
    Xn=(( a* xn-1 )+b) mod m
    If X0=7 ; a = 7 ; b =7 ; m=10
    Then
    X0 = 7
    X1 =((7 * 7) + 7))mod 10 = 6
    X2 = ((6*7)+7))mod 10 = 9
    X3 = ((9*7)+7) mod 10 = 0
    X4 = ((0*7)+7) mod 10 = 7
    Now since the cycle is being repeated i.e 7 appears again�so the period is 4 coz there are 4 diff nos. i.e 7,6,9,0�..
    help required urgently....your help will be appreciated...thankyou..

    Hi,
    I wrote the code so that it catches any cycle (not only the "big" one).
    Otherwise it will enter infinite loop...
    The time complexity is O(N*logN): it can do at most N iterations (here N is your 'm'), and in each iteration there can be O(log N) comparisons (since I maintain TreeSet).
    Interesting issue: is it possible to supply such (x0, a, b, m) tuple such that all possible values from 0 to m-1 will be output? I think no :)
    Here is the program:
    package recurr;
    import java.util.TreeSet;
    import java.util.Comparator;
    public class Recurrences {
         private static long x0, a, b, m;
         private static TreeSet theSet;
         public static void main(String[] args)
              long l0, l1, l2, l3;
              try {
                   x0 = Long.parseLong(args[0]);
                   a = Long.parseLong(args[1]);
                   b = Long.parseLong(args[2]);
                   m = Long.parseLong(args[3]);
              } catch(NumberFormatException nfe) {
                   nfe.printStackTrace();
              System.out.println("X[0]: " + x0 + "\n");
              long curr = x0;
              boolean cut = false;
              int i;
              // initialize the set
              theSet = new TreeSet(new LongComparator());
              // we can get at most m distinct values (from 0 to m-1) through recurrences
              for(i=1; i <= m; ++i) {
                   // iterate until we find duplicate
                   theSet.add(new Long(curr));
                   curr = recurrence(curr);
                   if(theSet.contains(new Long(curr))) {
                        cut = true;
                        break;
                   System.out.println("X[" + i + "]: " + curr + "\n");
              if(cut) {
                   System.out.println("Cycle found: the next will come " + curr + "\n");
              } else {
                   System.out.println("No cycle found!");
              System.out.println("----------------------------------");
              System.out.println("Totally " + (i-1) + " iterations");
         private static long recurrence(long previous)
              return (a*previous + b)%m;
         static class LongComparator implements Comparator
              public int compare(Object o1, Object o2)
                   if(((Long)o1).longValue() < ((Long)o2).longValue()) {
                        return -1;
                   } else if(((Long)o1).longValue() > ((Long)o2).longValue()) {
                        return 1;
                   } else return 0;
    }

  • Help needed Urgently- Rebate based on collected amount

    Dear all,
    I come across scenario while discussiion with client that they require rebate with collection. Details of the requirement are given below:
    1. SAP rebates run on billed values & set the accrual in rebate agreement on the rate what we have specified in the rebate agreement. Requirement is that, If i have billed on 1000$ & my accrual value is 100$ with the rate of 10%. If i collected 800$ instead of 1000$, then i need to pay the accrual on the basis of 800$ not on the basis of 1000$. It means i have to adjust accrual amount on the basis of 800$. Conclusion is that i have to pay not 100$ accrual instead less then 100$ on the basis of 800$ which i collected.
    2. In month 1 have billed on 5000$, my accrual amount is 500$ with rate of 10%. In the 2nd month i have to bill 1000$ and i have given an discount of 500$, it means my billed value is 500$ and my accrual amount is 50$@10%. In month 3 again i billed 500$ and my accrual amount is 50$@10%.
    Requirement is that, when i am going to pay the accrual to client, i should pay correct accrual for which he is entitled for. Means i should pay 100$ accrual not 600$ because i have already given an discount of 500$. Discount which i have given already of 500$ should need to be offest with the first month accrual of 500$. So remaning accrual is 100$.
    Great if somebody can help me out for the solutioning of the above requirements.

    Thanks Ivano,
    Somebody has started the conversation.
    Let me put my questions again.
    This requirement is nothing to do with Payment procedure in the agreement type.
    1. In any month if i billed 1000$, so my account receivable would be 1000$. My rebate for that month is 100$ at the rate of 10%. During customer receipt if i collected against my invoice 900$ instead of 1000$, my accrual needs to be corrected 90$ instead of 100$.
    I know this can not be fullfilled by standard SAP, by any thoughts on this welcomed.
    2. I know Rebate can be settled partially or full settlement by payment method( by cheque, bank transfer, or by credit memo) we have configure in rebate agreement type. But here requirement is totally different.
    Here, i need to pay the Rebate as a Discount instead of by cheque or by credit memo. While doing the partial or full settlement system will take into account collected accrual up to that day & apply as a discount to the final bill.
    Scenario is like that sometimes customer asked to give us the discount on bill for whatever they accrued so far.
    This is again cannot solved by standard SAP, but any thought by any body welcome. We have already thought that we need to enhance the solution.
    Solution needed urgently.

  • Unable to allocate 27160 bytes.........Help needed urgently

    hi
    in my production database in getting this error..
    ORA-04031: unable to allocate 27160 bytes of shared memory ("shared
    pool","unknown object","sga heap(1,0)","session param values")
    help needed urgently

    If you have a program that does not use bind variables you can get this error.
    In such cases you do not want to increase the size of the shared pool, but reduce it, and flush regularly. This is a bug in the application and should be fixed to use bind variables.
    Another possible workaround is setting cursor_sharing = force, but this can cause other problems, so should only be used as a last resort. If the apps connections can be distinguished by user account or machine, then a log on trigger could be set cursor_sharing just for that application, to limit the damage until the vendor can fix it.

  • How to add Two Interface Mappings to One Receiver(BPM) Help needed urgently

    I have a requirement where i get a flat file and split into multiple files and send to BPM.
    For each split file I created Interface Mapping using Java Mapping Program.
    In the Configuration how to add more Interface Mappings?
    Thanks for your help in advance.
    Regards
    Sudha

    You can use Enhanced Interface Determination to split one message to Multiple hence to multiple Interfaces.
    You have to change the Occurance of Messages in Message Mapping and their Corresponding Interfaces in Interface Mapping. That would create Multiple Files with Multiple Interfaces to Receiver (BPM)
    1) You need not to use Multilpe Interface Mapping
    2) You will use Extended Interface Determination for this.
    regards.
    Jeet.

  • TaskQuery issue in worklist : Help needed urgently

    Hi ,
    Currently we are in a migration project from weblogic 8.1 to weblogic 10.2 integration.
    In 8.1 we have used the TaskSeclector .However in 10.2 it is depricated.So we were tying to use the TaskQuery.
    However while using TaskQuery we are getting unexpected result:In the following code we are using assignee as:
    Users[0] ="xyx" ;
    and xyz is not a worklist user.
    Here we are getting all the task assigned to all the user for a weblogic 8.1 specific Task plan
    Following is the code:
    logger.info("Getting Task Info ") ;
    String Users[] = new String[1];
    Users[0] ="xyx" ;
    Assignee assignee= new Assignee();
    assignee.setUsers(Users);
    taskQuery = new com.bea.wli.worklist.api.TaskQuery();
    taskQuery.setAssignee(assignee);
    taskQuery.setSortByCompletionDueDate((short)1);
    taskQuery.setTaskName(" mytaskname",false);
    taskQuery.setIncludeTaskAssignee(true);
    com.bea.wli.worklist.api.taskplan.TaskPlanId taskPlan[]= new com.bea.wli.worklist.api.taskplan.TaskPlanId[1];
    taskPlan[0]=new com.bea.wli.worklist.api.taskplan.TaskPlanId("/Worklist/Compatibility 8.1.x");
    com.bea.wli.worklist.api.AdminState.Type[] states = new com.bea.wli.worklist.api.AdminState.Type[1] ;
    states[0]=com.bea.wli.worklist.api.AdminState.getStateType("ACTIVE");
    com.bea.wli.worklist.api.WorkingState.Type[] woprkingStates = new com.bea.wli.worklist.api.WorkingState.Type[2] ;
    woprkingStates[0]=com.bea.wli.worklist.api.WorkingState.getStateType("CLAIMED");
    woprkingStates[1]=com.bea.wli.worklist.api.WorkingState.getStateType("ASSIGNED");
    taskQuery.setAdminStates(states);
    taskQuery.setWorkingStates(woprkingStates);
    taskQuery.setTaskPlanIds(taskPlan);
    // #START: CODE GENERATED - PROTECTED SECTION - you can safely add code above this comment in this method. #//
    // input transform
    // return method call
    this.taskDataForAssignee = taskWorkerBatchControl.getTasks(taskQuery);
    // output transform
    // output assignments
    // #END : CODE GENERATED - PROTECTED SECTION - you can safely add code below this comment in this method. //
    Please need help urgently

    Hi Karna,
    I am not sure on how many different lengths of metal rods you will have, but one possibility I see is to use different items for each of the lengths.
    So you can have an item "metal-rod-300" and "metal-rod-200" and so on.
    The UOM is then "each", and you define how many 300cm metal rods you have etc.
    Of course this is only possible in case you have a limited set of different lengths..
    best regards,
    David.

  • Help needed urgently with two major Logic 9 issues

    Dear all,
    We've recently migrated from Logic 7 to 9 and have a major album project to finish using a fairly modest tracking setup. We've encountered two major issues that are holding up progress and wondered if anyone here has experienced them and has a solution..?
    Our set up is an early 2009 2.93GHz 17" unibody Macbook Pro with a Motu 828mkII Firewire interface. We also have a motu microlite for extra midi.
    Firstly, we're trying to track drums from an Elektron MachineDrum. With Logic 7 the MachineDrum's transport controls would control Logic's transport automatically so that we had a clear sync when tracking and could edit sounds and patterns on plus control Logic's transport from the MachineDrum. It also meant that we could drop in parts from song based sequences (of multiple patterns) in the correct position as song pointer information was also received. In the midi synch settings it would automayically jump to "midi clock". In Logic 9 it seems the Midi clock option is gone entirely.
    We've also tried with an Elektron MonoMachine and have exactly the same problem. This all worked automatically in Logic 7. These machines have excellent sequencers and are very hands on so it makes it preferable to do it this way. We've spent the afternoon trying to replicate the behaviour of Logic 7 with no joy at all. I should say that Logic is receiving midi information but is not responding to the transport controls. Has this midi clock feature been removed entirely..? It will be a huge disappointment if this vital functionality has been removed as it's crucial to the way we write, sequence and record.
    Does anyone have a solution..?
    Secondly, there seems to be a major bug with Logic 9 and we frequently have to quit and reboot to overcome it. Namely, certain actions reduce the audio to metal machine noise/ digital breakup bearing no resemblance to what we've recorded. This includes opening two projects simultaneously, dragging any audio from the media bin to the arrange, editing a marker in the list window etc. This has happened about twenty times today doing some light work on a project. We also noticed this intermittently when doing some vocal tracking on Logic 8 at a friends studio.
    Has anyone else experienced this? It's a nightmare and means we won't be able to use it reliably live either. Does anyone have a solution?
    Many thanks for taking the time to consider this,
    JH 

    Pancenter wrote:
    spheric wrote:
    Having tried to sync Logic to my LinnDrum back in Logic 7, I can see why they removed it.
    It was hideously catastrophic and caused me ages of grief, as the function only really makes sense for MIDI/trigger sequencing.
    As I remember it works perfectly well with MIDI only, which is what it was designed for. I've synced Logic via MIDI from a second computer for 20-30 minutes with absolutely no sync problems or drift.
    yes, that worked fine.
    But then turning around and trying to sync +something else+ to that recording.
    Logic never could record tempo variation as a continuous stream, as an analogue tape machine would record a sync signal, so the stepping would inevitably lead to increasing loss of sync, loss of hair, and the desire to break things.
    I eventually just set aside that function, with the intention if revisiting in a later, hopefully fixed, version.
    And whaddaya know - they fixed it good.

  • Issue with using xmltable() with xmltype() in plsql--help needed urgent

    HI All,
    I am trying to use XMLTABLE() to get the data from the xmltype(), I used the below query, when I run this, I get the syntax error "ORA-00906: missing left parenthesis--I am struggling to find out which paranthesis I am missing
    00906. 00000 - "missing left parenthesis"
    *Cause:
    *Action:
    Error at Line: 9 Column: 22"
    SELECT
    hours.OpeningTime, hours.ClosingTime, hours.DayOfWeek
    from table1 tab,
    XMLTABLE(XMLNAMESPACES(DEFAULT 'https://xxx.xxx.xx.gov/'),'/ProviderApplicationDTO/ProvOperationHours/WeekHours/KeyValuePairOfFirstDayOfWeekHoursOfOperation'
    PASSING tab.column --this column is of xmltype()
    COLUMNS
    OpeningTime varchar2 PATH '/ProviderApplicationDTO/ProvOperationHours/WeekHours/KeyValuePairOfFirstDayOfWeekHoursOfOperation/Value/OpeningTime',
    ClosingTime varchar2 PATH '/ProviderApplicationDTO/ProvOperationHours/WeekHours/KeyValuePairOfFirstDayOfWeekHoursOfOperation/Value/ClosingTime',
    DayOfWeek varchar2 PATH '/ProviderApplicationDTO/ProvOperationHours/WeekHours/KeyValuePairOfFirstDayOfWeekHoursOfOperation/Key') hours
    Where column = 70;
    <ProviderApplicationDTO>
    <ProvOperationHours>
    <WeekHours>
    <KeyValuePairOfFirstDayOfWeekHoursOfOperation>
    <Value>
    <OpeningTime />
    <ClosingTime />
    </Value>
    <Key>Sunday</Key>
    </KeyValuePairOfFirstDayOfWeekHoursOfOperation>
    <KeyValuePairOfFirstDayOfWeekHoursOfOperation>
    <Value>
    <OpeningTime />
    <ClosingTime />
    <IsOpenAM>AM</IsOpenAM>
    <IsCloseAM>PM</IsCloseAM>
    </Value>
    <Key>Monday</Key>
    </KeyValuePairOfFirstDayOfWeekHoursOfOperation>
    <KeyValuePairOfFirstDayOfWeekHoursOfOperation>
    <Value>
    <OpeningTime />
    <ClosingTime />
    </Value>
    </ProvOperationHours>
    </ProviderApplicationDTO>
    Edited by: 804681 on Jan 7, 2011 8:22 AM

    Interesting... it seems they either changed the comma in between 10g and 11g or there is a bug in the 11g documentation. I think I will report it to the documentation forum. Since the 11g gif description includes the coma. http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/img_text/xmltable.htm
    I guess Michaels found the real bug. You can always count on him when it gets to XML-action.

  • DVR/STB/Remote issues - Help Needed

    New to Verizon FIOS (Installed about 2 weeks ago).  Have a few issues. Any help is appreciated
    1) When im on the Home Media DVR and i fast forward through a program, when i stop or hit play, an extremely loud beep that lasts for 1-3 seconds comes from the speakers.  How do i get this to stop, what is causing it, etc?
    2) When i fast forward from one of the STB (regular HD box), if i hit FF once, it fast forwards pretty slow, if i hit it again, it goes somewhat faster.  The problem is.  When i hit it that 2nd time, it seems that 70-80% of the time, it jumps me back to an early portion of the program.  I.E.  Was watching the 2 hour episode of "24", was one hour and 20 min in, got to commercials, i hit FF twice and it jumped me back to 23 minutes in.  Tried again at next commercial break and it jumped me back to 11 minutes in.  What is the deal here?  How do i fix it?
    3) Are there only 2 fast forward speeds on STB?  I came from Brighthouse that had 4 speeds, im a little disappointed with only 2 speeds.  Can anyone verify?
    4) The remotes seem to take 2 seconds or so to register when performing any function other than changing channels.  When i hit FF or REW, DVR or Last, it seems to take a few seconds to kick in.  Is this a known issue, or possibly my box or remotes?
    Thanks for any and all help

    Sorry the ff speeds are the same. On the main MR-DVR there are 3 ff speeds, where the remote STB has 2 ff speeds. I think they did that because how the remote system works, it has slower responses being remote. But with the update you will not need to worry about the ff, because you will not get the hub error. I was one of the first people to get the update and I have not seen the hub error yet.
    As far as a time frame I don't believe there is any thing public about it, I think the only thing they have said is it is going to be rolled out per market, and one market a week. But nothing on the order of the markets.  

  • Html to wml conversion help needed urgently

    Hello everybody,
    I need static HTML to WML code urgently as soon as possible.
    Can please somebody help.
    Moreover, how to discard the tags in HTML which are not in WML.The problem is that few tags are not mandatory to close.So, what should be the rule of discarding tags?
    Please help!!!!
    iwapsms

    http://www.google.co.uk/search?q=html+2+wml&start=0&ie=utf-8&oe=utf-8

Maybe you are looking for

  • Our IT guy installed the new Adobe reader on my machine, but FF isn't picking it up and I don't have admin privileges to install it as a plug-in.

    I just need to know how to get FF to "pick up" the new version of Acrobat Reader that is already on my computer. I got a new work computer, and don't have admin privileges to install AR as a plug-in on FF. The new version is fully installed -- just n

  • Stateful session bean

    I am creating a web application using JSPs and want to keep stateful information from one call to the next.  In the first jsp I run the code: InitialContext ic = new InitialContext(); StatefulTestLocal testbean = ((StatefulTestLocalHome)ic.lookup("ja

  • Powerpoint- Mac and PC

    I have to work on a Project for school and all they have there are Windows Computers. When I come home, I have a personal Mac that I work on. I made this really good PowerPoint that has videos from YouTube in it (.mp4 and .mpv formats) and when I try

  • Select value of most occurances - analytical function?!

    Hi ... I've get stuck with a "little" problem. I try to provide some testing code for this: CREATE TABLE a1 (      id NUMBER(8),      val NUMBER(6),      title VARCHAR2(16),      CONSTRAINT test_pk PRIMARY KEY(id) INERT INTO a1 (id, val, title) VALUE

  • Unresponsive after CD burn

    Hello All, Anyone else seen this problem? I took a lot of photos on vacation, and am burning backup copies on CD. After I successfully burn about 100 shots onto a CD, the Mini becomes unresponsive. Move the mouse, get the spinning beach ball. Try to