ALEAUD01 just 3 different Status?

Hi everybody,
we got the following scenario
SAP R/3 sending a message through BPM to JDBC.
In case of database is down/offline we got a exception branch in BPM.
There we want to send a ALEAUD back to R/3 to inform.
Question:
Which fields do I have to fill in ALEAUD?
My special question:
When I debug <b>IDOC_INPUT_ALEAUD</b> (= standard function for incoming ALEAUD) in <b>INCLUDE LBDADF02/FORM IDOC_LIST_WRITE_STATUS</b>
I see:
    CASE STATUS_GROUP.
      WHEN 'C' OR 'D'.
        EDI_STATUS-STATUS = C_STATUS_OUT_FINISHED_OK.
        APPEND EDI_STATUS TO T_OK_STATUS.
<b>        WA_IDOC_LIST-STATUS = C_STATUS_OUT_FINISHED_OK.</b>      WHEN 'G' OR ' '.
        EDI_STATUS-STATUS = C_STATUS_OUT_FINISHED_ERROR.
        APPEND EDI_STATUS TO T_ERROR_STATUS.
<b>        WA_IDOC_LIST-STATUS = C_STATUS_OUT_FINISHED_ERROR.</b>      WHEN OTHERS.
        EDI_STATUS-STATUS = C_STATUS_OUT_ACKNOWLEDGE.
        APPEND EDI_STATUS TO T_PROCESS_STATUS.
  <b>      WA_IDOC_LIST-STATUS = C_STATUS_OUT_ACKNOWLEDGE.</b>    ENDCASE.
    MODIFY T_IDOC_LIST FROM WA_IDOC_LIST.
  ENDLOOP.
Does this mean, the IDOC origin send, can just get 3 different status?
Thanks a lot
Regards Mario

hi,
1. you can find all statuses in this doc:
https://websmp104.sap-ag.de/~sapdownload/011000358700003477212005E/HowTo_IDOC_Ack_20040817RR.pdf
(at the bottom of this doc there's a table with all of them)
2. you can also use (we use it) IDOC systat01 to change the status of the IDOC
Regards,
michal
<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Similar Messages

  • I downloaded pages from the app store and I can use it on my Mac login but it doesn't show up when my wife logs in to her account? Were using the same computer, just different logins.

    I downloaded pages from the app store and I can use it on my Mac login but it doesn't show up when my wife logs in to her account? Were using the same computer, just different logins.

    No. You need to buy it for your Apple ID and for the other. You will have problems with updates

  • TS3999 Received 2 appointments, same date, same content, just different hours. Since then I receive message from iCal: Access to "Subject" in account "iCloud" is not permitted. The server responded "403" to CalDAVWriteEntityQueueableOperation. It's a bug!

    Received 2 appointments from a customer, same date, same content, just different hours. Since then I receive message from iCal: Access to “Subject” in account “iCloud” is not permitted. The server responded "403" to CalDAVWriteEntityQueueableOperation. In my opinion this is a bug, because iCloud is not able to handle 2 appointments at the same date with same content, just at different hours. The different hours should be enough individuality for each event on calendar.

    In my opinion this is a bug, because iCloud is not able to handle 2 appointments at the same date with same content, just at different hours. The different hours should be enough individuality for each event on calendar.
    Here are 4 identical events (other than time) in Calendar on my mac
    Here is how they appear at iCloud.com
    I concluded that iCloud has no problem with identical events seperated by time, so the question becomes what is wrong with your setup as opposed to what is wrong with iCloud.

  • Are there two type of associations between objects or are there just different representations?

    I've been spending some time on 're-tuning' some of my OOP understanding, and I've come up against a concept that is confusing me.
    Lets say I have two objects. A user object
    and an account object.
    Back to basics here, but each object has state, behaviour and identity (often referred to as an entity object).
    The user object
    manages behaviour purely associated with a user, for example we could have a login(credentials) method
    that returns if successfully logged in or throws exception if not.
    The account object
    manages behaviour purely associated with a users account. For example we could have a method checkActive() that checks if the account is active. The account object checks if the account has an up-to-date subscription, checks if there are any admin flags added
    which would make it inactive. It returns if checks pass, or throws exception if not.
    Now here lies my problem. There is clearly a relationship between user and account,
    but I feel that there are actually two TYPES of association to consider. One that is data driven (exists only in the data/state of the objects and the database) and one that is behaviour driven (represents an object call to methods of the associated object).
    Data Driven Association
    In the example I have presented, there is clearly a data association between user and account.
    In a database schema we could have the following table:
    USER_ACCOUNTS
    id
    user_id
    When we instantiate the account and
    load the database data into it, there will be a class variable containing user_id.
    In essence, the account object
    holds an integer representation of user through user_id
    Behaviour Driven Association
    Behaviour driven associations are really the dependencies of an object. If object A calls methods on object B there is an association going from A to B. A holds an object representation of B.
    In my example case, neither the user object
    nor the account object
    depend on each other to perform their tasks i.e. neither object calls methods on the other object. There is therefore no behaviour driven association between the two and neither object holds an object reference to the other.
    Question
    Is the case I presented purely a case of entity representation? The association between user and account is
    always present, but its being represented in different ways?
    ie. the user entity
    has an identity that can be represented in different forms. It can be represented as an object (the instantiated user object)
    or as a unique integer from the users table in the databases.
    Is this a formalised way of recognising different implementations of associations or have I completely lost my mind?
    One thing that bugs me is how would I describe the differences in UML or similar? Or is it just an implementation detail?

    It s a bit hard to fully understand what is problem actually in :). I think you are a bit mixing some concepts.
    Entities representation
    At first, all models we are implementing is just a simplification of some real-world objects and environment. Your conceptual entity user corresponds to some real user and contains some attributes we are intresteing in according to application needs. Thus there
    are some models we have to implement.
    Thus, all user defined by DB schema, user defined by class, and probably user defined by some presentation logic is normally present some real-world user. It is only about implementation purposes, we have to store, view and manipulate with user.
    On the other hand let's take a look on Single Responsibility Principle. It tells us to use every class or program unit just for certain needs. Using single user (class or program unit) for storage and presentation needs violates this principles.
    the user entity has an identity that can be represented in different forms. It can be represented as an object (the instantiated user object) or as a unique integer from the users table in the
    databases.
    So, the answer is yes.
    Associations and dependencies
    I think it is more about terminology than about nature of problem. But in general you are right - there are different types of object realtions (especially, I will use other terms to list it). For example "referencing", "creation", "using",
    "coordinating", "storing", "inheriting" (!) ....
    According to this, user instance references account instance. And A instance uses B instance.
    For most cases it is good enough to distinguish just "referencing" and "using". It is what you've just written. It's enough common and abstract to be understood by other person when talking about domain, e.g.
    But sometimes, to emphasize some aspects you should describe relations in a way like "A dispatches ensemble of Bs" or "R stores X to database". It's more applicable for specification and modelling.
    Is this a formalised way of recognising different implementations of associations or have I completely lost my mind?
    To call something formalized I suggest to look at UML.
    UML and other modelling instruments
    One thing that bugs me is how would I describe the differences in UML or similar? Or is it just an implementation detail?
    There are a lot of UML models (diagrams). Let's take a look at most well-known - Classes and Objects Diagram.
    It's interesting that UML allows to present all type of object relations, and moreover allows to decide "is it just an implementation detail".
    Martin Fowler describes 3 levels (or point of views) of understanding of Classes Diagram.
    Conceptual. Diagram is considered as high-level domain model, independent from implementation.
    Specification. Diagram is considered as high-level realization model containing of interfaces.
    Implementation. Diagram is considered as low-level technical paper containing interfaces, classes, references, other types of relations.
    Is this a formalised way of recognising different implementations of associations or have I completely lost my mind?
    Yes, you have to fix some point of view and choose appropriate relations set.
    For example, let's take a look at Classes Diagram and consider it from an implementation point of view. UML defines 3 type of relations (and propose corresponding means to its designation):
    Association
    Association corresponds "referencing" between instances.
    Dependency
    Dependency combines all types of relations such as "using", "creating", "storing", etc.
    Inheritance.
    Inheritances as a fundamental OOP instrument is presented by UML in a distinct way. It's more about classes than about instances, but also one can say that A instance inherit attributes of B instance. So, that's ok.
    First and second points of view on Class Diagram, as I remember uses only one type of relation unifying both associations and dependencies and is designated like association (no inheritance, of course).
    Also, UML proposes Objects Diagram which is same to Classes Diagram, but fits better for runtime modelling needs.
    Finally, a choice of a set of relations taken into consideration depends on a context and point of view. UML provides some ones.

  • Different status reflect at SO (item) fields!

    Dear gurus!
    i have actually two questions that bothering me for ages:
    1. in schedule line category, if we block the transfer of requirement of availability check, when i create a sales order with this schedule line, this order would not transfer any requirements. but is there a field that controls this function we can see in any field of this saved order? like in VBAP, VBEP...this field's value is different from the value in normal order allowing transfer of requirement?
    2. it's quite a same question as above. also, i wanna find out is there a different field's value existing, when we carry out a sales order cost caculating (shift+f7) or not?
    thanks in advance!

    I think by VBEP, we can make out from the Requirement type and Planning type fields. If both of them have a null value then the requirements will not be transferred.

  • What exactly happens when syncing two PCs having truly conflicting settings (not just different tabs or bookmarks to be merged)? Is one defined as a master?

    While different tabs or bookmarks can simply be added/merged (see question of handysubman one year ago), more differentiated rules are required when conflicting settings have been defined, e.g. different starting pages, or different volumes/folders to save downloads, or different applications to open specific file types...
    Is one of the machines defined as a master, or are individual conflicts left to the user to solve, or... ?

    When you setup Sync you should have seen the Setup Options window. That is the "control" for which set of data to use. IOW the "Master" at time of setup when adding each "new device". After that all devices are equal partners. ''FirefoxHome on iOS devices and Firefox on Android devices vary a bit from the way the desktop versions work.
    If you want different settings per device, de-select those settings from being synchronized. i.e., Preferences for Homepage, download folder, and MIME-types

  • Different status msg in MONI

    Hello,
    When does the following status show up in the MONI?
    1. Recorded
    2. Recorded for outbound processing
    3. scheduled
    Venkat.

    Hi Venkat,
    You can see their complete meaning here venkat:
    http://help.sap.com/saphelp_nw04/helpdata/en/ea/2f053d39177608e10000000a114084/frameset.htm
    Regards,
    ---Satish

  • Schedules show different status on 2 cluster machines

    Hello,
    I have the following problem:
    I've set up a cluster in BOXIR2 SP4, with 2 machines.
    Let's say I schedule a report to run each monday. It'll show up on both machines in infoview as a recurring schedule.
    When machine 1 picks up the schedule it gets status 'running' (active), but on machine 2 it still has status 'recurring'. And vice versa. It seems that only after some time the schedules get the same status.
    Is there some kind of interval parameter which can be adjusted? It is very annoying if both machines don't show the same status.
    Kind regards.

    Hi,
    there are some parameters for syncing the Time for all CMS`s available in the Cluster.
    1. Check the "Command Line Parameters" section in the admin guide.
    2. Check SAP Note -  1370324
    Regards
    -Seb.

  • SO Many of These; Similar errors; Just different Apps.

    Description:
    Faulting application name: conhost.exe, version: 6.1.7601.18015
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000005
    Fault offset: 0x000000000009970a
    Faulting process id: 0x9c0
    Faulting application start time: 0x01ce19063784175e
    Faulting application path: C:\windows\system32\conhost.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 7543ad40-84f9-11e2-a365-cdf73f06c773

    I've been getting similar errors.
    eg.
    Faulting application name: wmpnscfg.exe, version: 12.0.7600.16385, time stamp: 0x4a5bd026
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000005
    Fault offset: 0x000000000009970a
    Faulting process id: 0x1f4
    Faulting application start time: 0x01ce6c475bcdc6bc
    Faulting application path: C:\Program Files\Windows Media Player\wmpnscfg.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 9a3fe3d3-d83a-11e2-92ae-90fba6efcd89
    I did a search using the event viewer for 0x000000000009970a to see when it started and it went all the way back to 14/10/12.
    I checked what I had installed then and found three things on that date.
    iLivid, Searchqu Toolbar and DriverIdentifier 4.2
    I have just uninstalled them. 
    It would be interesting to know if you have these installed.

  • Milestones with different statuses triggering at the same time

    Hi Experts,
    I have created a Project with 1 WBS Element and 1 Network.
    Under Network i have created 1 activity and within that activity there are 2 Milestones.
    1) First Milestone has status 'REL' and a Workflow assigned to it
    2) Second Milestone had a status 'CNF' and a diff Workflow assigned to it.
    i have used BO MLST_NETW as start conditions in both thw workflows.
    I want the 1st milestone to trigger when the Network is release and the second when an activity is confirmed.
    My problem is when i change the status to Release both the milestones/workflows are getting triggered.
    Please let me know where i am going wrong .
    Thank You,
    Radhika.

    Problem solved by using conditions .

  • Stat machine workflow task workflow status different values on different state activity(Approval level)

    i have developed the State machine workflow in which i am using default workflow task
    i have added one status dropdown and that is having approve or reject that i set using workflow task drop down values
    now my requirement is that when my workflow goes to different approval i need to have different status values in dropdown
    for example
    on manager approval state activity i need to add additional status value forward to legal
    but when it moved to next activity this task status field should show only approve and reject
    in summary i need to have different status values for workflow task when it moved to different state activity(approval levels)
    can we set these status field of task for state machine workflow programtically as well like for different approval level of task i need different status to be set for the dropdown of task status field
    MCTS,ITIL

    Hi Shahid Siddique,
    I have seen a similar thread from you about this issue, create custom form for the seperate form is a considerable workaround, you can have a check whether it works.
    http://social.technet.microsoft.com/Forums/en-US/9baa0c32-1cde-4c58-aa7c-3568ccf0cdc9/different-approval-level-of-task-i-need-different-status-to-be-set-for-the-dropdown-of-task-status?forum=sharepointdevelopmentprevious
    Thanks,
    Qiao Wei
    TechNet Community Support

  • If you have a picture in two different albums, it is not possible to delete from just one album, you got to delete from all albums

    I cant delete singel/multiple pictures from my albums, without deleting the same picures from another album.
    When you press delete on a picture you get a question wich says "delete from all albums", and thats it?
    You cant choose to select yes or no.

    When you 'copy' photos into new albums you are only creating a pointer to the photo, you are not creating a separate copy of it - if you delete the original photo you will be deleting all pointers to it and it will be removed from any album that you've 'copied' it into.
    The Collections/Photos and Albums views are just different ways of viewing the same photos.

  • Posting status is different between IDES & Development

    Hi Guys, I am getting 2 different status in two different server when creating a contract.
    In IDES when I am creating a contract, after saving I am getting the VTBFHAPO-SBEWEBE = 0
    But at the same time same contract if I am creating in Development the I am getting VTBFHAPO-SBEWEBE = 1.
    Is there any configuration mistake. I have debugged it, but not getting any result.
    Please help me on this.
    Thanks
    Anil

    >> Is it responsible for posting status ? I changed the processing category to without settlement from with settlement .
    [Renatas]: as far as I understand, VTBFHAPO-SBEWEBE is not responsible for posting status, however controls if any posting is allowed for this particular transaction.
    as you know, if the intention is that any transaction should be settled (kind of approval/ validation) before any posting can be triggered - in this case you choose Processing category 00002. In this case VTBFHAPO-SBEWEBE = 0 after deal is captured, therefore you are not allowed to trigger any postings. Of course, once the respective deal is settled, VTBFHAPO-SBEWEBE = 1.
    >> I changed because it was not allowing to change the contract one settled.
    [Renatas]: please verify your settings, relevant to Field Selection (SPRO -> ... -> Treasury and Risk Management  -> Transaction Manager -> General Settings  -> Transaction Management  -> Define Field Selection) as this is the area where you can implement control over certain fields in deals, depending on its processing stage.
    Kind regards,
    Renatas

  • Credit check status in MV45AFZZ

    Dear All expert,
    I want to do update a custom table in MV45AFZZ  when the order passed credit check.
    But I do not know , is there any indicator about the result of the credit check?
    I mean some field or table stored those kind of data.
    Many thanks in advance!

    Hi,
    We do have this data available. Check the field VBUK-CMGST(Overall status of credit checks).  You can directly use work area VBUK.
    Below are different statuses.
    space               Credit check was not executed/Status not set
    A     Credit check was executed, document OK
    B     Credit check was executed, document not OK
    C     Credit check was executed, document not OK, partial release
    D     Document released by credit representative
    There are different types of credit checks. Just search in table VBUK with "credit check". You can see different fields. But in your case, you need overall status i hope.
    Table VBUP gives you item level statuses.
    Thanks,
    Vinod.

  • How to create a gui pf status and guititle in module pool programming?

    hi frnds,
    how to create a gui pf status and gui title in module pool programming?
    my problem is i created a screen and wen execute the screen by a tcode.am nt able to activate SAVE BACK EXIT CANCEL COMMANDS?.how to do this can any one explain in detail procedure?
    plz gve step by step process.

    Hi,
    For Title:In PBO...just write
    SET TITLEBAR 'ZTITLE'.
    double click on 'ZTITLE'....give whatever title u want...save it...activate...and check...reward points if useful...
    PF means FUNCTION CODE
    ex; set pf-status 'zrstatus'.
    double click on the zrstatus expand the application server ,
    at the time of execution the default menu(ie system,help),application toolbar buttons like enter,help etc and function keys(by default there will be no function keys)as are there on the normal
    will appear on the screen.
    Details:
    PF-STATUS is used to set the GUI Status of a screen, ie you can control the options on your menu bar, application toolbar, the function keys assigned to various options etc.
    Implementing the status for a screen can be done in 2 ways:
    1) Create the GUI status using the object list of the program or by using the transaction SE41. Then, assign it to the screen using SET PF-STATUS statement.
    2) Create the GUI status by means of forward navigation, ie, use the SET PF-STATUS 'XXX' statement where 'XXX' is the name of the GUI status and double click on it to create it.
    Status names can have a maximum of 20 characters.
    After assigning a GUI status to a screen, this is inherited to all subsequent screens. In order to have a different status for each of the subsequent screens, you have to set a separate status for each screen.
    In transaction SE41,
    1) Give the program name and the status name and click on the Create button.
    2) Go to 'Function keys' and expand.
    3) On top of the save icon type SAVE, on top of the back icon type BACK, on top the the exit icon type EXIT etc ie on top of all the icons that you want to use, type the respective names that you want to give.
    Whatever you have typed now becomes the function codes of these icons and can be used in your program.
    For example you have a screen 100.
    In the 'Element list' tab of the screen, give "ok_code" as the name where "OK" is the type of screen element. Activate screen.
    The flow logic for the screen looks like this:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
    Create the modules STATUS_0100 and USER_COMMAND_0100 in the main program by simply double clicking on them.
    The code for these modules can be something like this:
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'Example'. "Example is the name of the GUI status
    ENDMODULE.
    MODULE user_command_0100 INPUT.
    CASE ok_code.
    WHEN 'SAVE'.
    "call a subroutine to save the data or give statements to save data.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE.
    Regards,
    Shiva Kumar (Reward If helpful)

Maybe you are looking for

  • Error while instantiating report Z_RD_ABSENCE_REPORT

    Hi Guys, we have just patched BWD, and while testing the broadcast setting i came across the following error. Error while instantiating report Z_RD_ABSENCE_REPORT  Notification Number RSBOLAP 014  I am opening report designer and when i publish via B

  • ITunes has stopped working on my computer.   Help!

    After a recent iTunes update, iTunes will no longer work on my computer.  It works partially, I should say.  When I launch the program I have to give permission for it to "make changes to the hard drive."  Then it changes the color scheme to Windows

  • Working with 2  submit buttons in a html form

    I have 2 submit buttons in a form. I will upload a file and save in a filepath in server when I click on one "upload" button. I want to use this file path in the code when I click on another button called"Process".  When I click the process nothing i

  • Problem with locales in jbuilderX

    hi there, i don't know if this is a the best place to search for this but i have a problem. When running my app in jbuilder X it returns me the locale en_US, not the correct one, it should be nl_BE, now i made a executable jar , and ran it and it giv

  • How can I get it to accept my serial number?

    I installed the wrong disk yesterday giving my serial number. I uninstalled the wrong disk. Now I am trying to install the correct disk but it is saying my serial number is not a serial number.