Status Detail in Consolidation Monitor (Transaction: UCMON)

Hi experts,
I'm new to SEM-BCS, and i have to find out how and where the "Status Detail" is stored.
I've been doing some debug ... and it got so confusing ... then i've been looking some documentation but i couldn't find any clues about it ... i've found a lot about the basic concepts and so.
But what i need is (since i'm a developer) is to know how can i get or where to find the status detail of a certain task. And do they only keep the last change ?? Don't they have a historical ?
Thanks in advance.
Dev.

Hi Bobby,
yesterday i was searching for some tables and i have found this two: /1FB/MD_6600BA and UCS010C that gives me the corresponding SID's to search in /1SEM/UCS_66002 and get the detail status i want.
BUT .. there's always a "but" ... when i'm searching i only find SID's up to certain level in the hierarchy ... where is the rest of the values .. i mean .. for the last nodes in the hierarchy ...??
do you know something about it ? or anybody ?
Dev.

Similar Messages

  • Consolidation monitor status

    Hi All,
    I have requirement in our project to have a Consolidation monitor to have statuses (status management) in excel and then we can have a % completion calculated.
    We have folder for each Tasks and then there are various tasks under each folder which are run at different dates during MEND.
    I need to know if this is possible in standard way or we need to do customization.
    Thanks in advance for your assistance.
    Regards,
    Vijay

    Hi Thomas,
    Thanks for prompt reply.
    I checked the link,do the pie chart would show the errors and warning only.
    I need to have all status management (pending,errors,complete etc).Is there any mechanism where we
    can have all statuses for consolidation groups /Task groups in excel.
    Thanks for your assistance.
    Regards,
    VM

  • Status showing Pending Preced.task in UCMON

    Hi Friends
    Please help me to solve the problem of "Status showing Pending Preced.task in UCMON ".
    I executed all the tasks right from Period Initialization to Validation of cons.data.
    But all the Tasks status shows that "preceding task is pending".
    The Status of the all the Tasks group are in "Incomplete"
    Help me how to correct them .
    Thanks &Regards
    Suraj.

    Hi Dan,
    Thank u for responding.
    We got only one Hierarchy i.e Cons.by Legal .
    Cons.Monitor --> Task Hierarchy --> Cons. by.legal.
    But we do have Regional Hierarchy in Consolidation Group.
    Cons.Unit --> Cons.group --> 1.Cons.by Legal,
                                               2.Cons by Region.
    In UCMON we are executing the tasks for 1.Cons. by Legal Hierarchy
    we did not taken the Cons.by Region Hierarchy at all in UCMON.
    please help me to solve the problem.
    Thanks & Regards
    Suraj.

  • InterUnit Elimination Task not shown in Consolidation Monitor

    Dear Experts,
    WHile executing The consolidation Monitor for Inter Unit Elimination Task,
    I can see the Task at Company Level,, but not at Consolidation Unit Level. Can some one suggest how to resolve that.
    Hierarchy--NameTask Group--
    Task
    Hier-1--Hier NameO--
    O
    Cons Unit-1------ CU Name--Blank--
    Blank
    Cons Unit-2------ CU Name--Blank--
    Blank
    Kindly advise.
    Thanks
    Rakesh Shrivastav

    Dear Sir,
    I have defined teh document Type as follows :-
    Properties Tab
    Posting Level -    Two Sided Elimination Entry
    Balance Check-   Error when Balance not equal to Zero
    Application-         Other
    Posting-               Automatic Posting
    Inversion -         NO Automatic Inversion
    Key Figures
    Transaction Currency (Ticked)
    Group Currency (Ticked)
    Number Range : (ZX) Created and assigned
    Clearing Items Tab
    Clearing Balance Sheet
    GL Account - GL Account (Created manually in BCS as BS Item)
    Clearing Income Statment
    GL Account - GL Account (Created manually in BCS as INcome Statment  Item)
    Is any thing ommited???

  • Not able to find entity details in Controls monitor

    Hi Experts,
    We could not find the entity details in controls monitor.
    Our System Details BPC 10.1 SP2
    We have defined Controls, Control set and assigned the control set and activated control and work status. Maintained control level in Entity dimension.
    Request to help me what could be the reason not able to see the entity details in control monitor.
    Regards,
    Chandra

    Hi Experts,
    Did any one come across like my issue and found solution?
    Please share solution.
    Regards,
    Chandra

  • How to find out the User Details for the particular transaction

    Hi,
    Actually AJAB -Asset Year closing was done by One User.How and Where to find out the User details who executed the Transaction.Kindly tell me the T-code for this.
    Thanks
    Sap Guru

    Hi:
    Please contact you basis administrator.Give him the T.code and date when Year closing was done. He may resolve your problem.
    Please let me know if you need more information,
    Assign points if useful.
    Regards
    MSReddy

  • Monitoring Transactions by name

    Hi,
    when monitoring transactions by name, the name is the class and method
    of the called ejb. This does not make a sense if the same physical bean
    is deployed several times with different jndi names. Is there any
    possibility or plan to distinguish transactions rather by their logical
    name (jndi name or name in the deployment descriptor) than by the
    classname?
    Thanks,
    Daniel

    Hi Rogerio
    I've spent the day investigating the same thing and it appears it is simply how the ALSB ReportingMDB gets invoked. Every time it checks for a message it creates a new Transaction and then rolls it back without so much as a whimper. I have no idea it would work like this but I've got about 12 OSB installations and they are all doing the same thing with no clue as to why it is behaving this way.
    I think it is messy but it doesn't seem to be an issue in and of itself.
    Cheers
    Brock

  • Master & detail table in one transaction

    Experts,
    I am useing 11g 11.1.1.4 and ADF BC, I have thought about this question quite for a while.
    I have a master & detail constructure in one page, master as af:form and detail as af: table.
    The master is 'booking' table (booking_id, create_date, create_user, user_contact) ,
    and detail is 'booking_line' table ( booking_id, booking_det_id, booking_weight, booking_volume, booking_type)
    According to my customer, user have to enter the master and detail data in one transaction and once user clicked the 'Submit booking' (actually is 'commit' operation),
    the system need to check at least one detail line have been entered by user, otherwise the error message issued and return back to the current page. how this one can be done? Thanks!

    Thanks a lot M.Jabr!
    I have used your suggestion as follwoing:
    public String cb3_action() {
    BindingContext bindingctx = BindingContext.getCurrent();
    BindingContainer bindings = null;
    bindings = bindingctx.getCurrentBindingsEntry();
    DCBindingContainer bindingsImpl = (DCBindingContainer) bindings;
    DCIteratorBinding dciter = null;
    //access the iterator by its ID value in the PageDef file.
    dciter = bindingsImpl.findIteratorBinding("BookingDetOlVO1Iterator");
    ViewObject vo= dciter.getViewObject();
    long rowsCount= vo.getEstimatedRowCount();
    if (rowsCount > 0) {
    OperationBinding operationBinding = (OperationBinding)bindings.getOperationBinding("Commit");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty())
    return null;
    return "BookingDone";
    } else {
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, null, "Please enter at least one Booking Detail line");
    context.addMessage(null, msg);
    return null;
    but there is another propblem after testing, I found if user just click the 'createInsert' operation in detail table. but without enter any values for some required fields, then can still - return "BookingDone"; that's means the required validation are skipped. any suggestion?

  • Table name for Reason field in Details tab in CRMD_ORDER transaction

    hi ,
    kindly pls suggest me the table name for field Reason in Details tab of CRMD_ORDER transaction.
    thanks

    Hi,
    You need to go via these four tables:
    CRMD_ORDERADM_H
    CRMD_LINK
    CRMD_SRV_OSSET
    CRMD_SRV_SUBJECT
    /Anders

  • How to insert a new customized user status in an existing business transaction?

    Hi Gurus:
    We have a service request where we need a new user status, but I have in a productive system service requests created already.
    We customized the new user status for the transaction type that we are using, but how to retrieve in the old business transactions created this new user status?
    Is there a way to insert the new customizing in old transactions? Is possible to force by some ABAP code to insert the new user status in some old business transactions?
    I'll appreciate your inputs.
    Susana

    Hi Susana,
    Can you try the report of note
    1289525
    If this is not working may be you can use partaily the code of the report .
    Best regards
    Christophe

  • Consolidation monitor

    Hi Experts,
    I have a problem with the consolidation monitor. The standard BCS content was activated and the customization was completed. When i run the consolidation monitor, there is no hierachy displayed but the sequence of task heading columns are there.  is there any thing that I missed from consolidation workbench? The master data for the consoloidation unit is created in BCS.
    Appreciate your help and time.
    Thank you.

    hi Eugene,
    Thank you for the suggestions.
    - ConsUnits hierarchy.-> This is checked and it is defined in Work bench..
    - Tasks hierarchy with tasks assigned.-> Tasks hierarchies are created and respective methods are assigned. Here my question is, should i need to assign the task methods to consolidation units during the customization process? If yes where shall i do it please?
    - You are trying to see the monitor in the same version and year/period.-> yes this has been checked already
    - Cons frequency for versions combinations is set.-> Yes
    Actually I am able to see the tasks in the column headings but not the cons unit hierarchies. This seems to be very strange issue. Any suggestions will be really appreciated.
    Thanks.

  • Problem executing task in consolidation monitor

    Hello
    I have a small issue i get the following error message when i try to test executing a task in cons monitor for load from data stream
    Task 001001 cannot be executed in period 001
    Message no. UCS0150
    Diagnosis
    No method with a period category containing period 001 is assigned to task 001001 in version 111 for the time period 2008/001.
    System Response
    Task cannot be executed in period 001.
    Procedure
    If you still want to execute task 001001 in period 001, you need to use period categories that contain period 001 in the customizing settings of the task when you assign a method.
    Here I am trying to collect data using Load from Data Stream, I have defined the method and I am able to test the same in consolidation workbench
    But the same does not work in consolidation monitor
    why??
    Following are defined :
    Method for Load from Data stream
    Method
    Task
    In consolidatin monitor I have
    Hierarchy
    task group and task.
    Regards
    sameer

    Hi Sameer K
    Now I got the same error message, when executing data collection task in cons monitor.
    I did as per inputs provided by you in this thread.  But it was not work.
    Let us explain what occur in my end is i changes period category in data collection task and then save it. After than I close the session and reopen, what ever i changes earlier was not appearing in my workbench in Data collection task.
    Configuration in Data Collection task was:
    Cons Freq: Monthly
    Period Category: All method follows same method.  In this we maintain 1 to 12 periods
    Assign method: Depends on Company (I configred data collection method for each company)
    Pls provide inputs to resolve
    Madhu

  • How to monitor transactions in OEM

    Hi All,
    Can anyone please tell me how can I monitor transactions in OEM 12c Cloud Control?
    Thanks in Advance!!

    You can manage them with the Java Console but with limited functionality. It will be best to use Grid Control if you have the license.
    Metalink Note:277066.1 shows features available in the different EM versions.

  • XI Monitoring transaction code

    Dear Consultant
    I am new in XI . I am upgradting my skill, can any one help and send me the list of XI monitoring transaction code and some valuable document which help me to upgrade myself as a XI administrator.
    Regards
    Vimal Pathak

    Hi,
    Also check these:
    sxmb_ifr-- launch integration builder/ configuration
    Proxy Generation
    SPROXY--Proxy generation
    Monitering features:
    sxmb_moni-- monitering of messages
    SXMB_MONI_BPE--Business process monitering
    SXMS_SAMON--- monitor for sync-async communication
    Adminsitration of XI
    sxmb_adm-- Administration
    QUEUE MONITORING
    SMQ1 Outbound queue
    SMQ2 Inbound Queue
    IDoc's& RFC's related
    idx1, idx2 for IDoc meta data
    SM58--RFC error Log
    Others
    SWELS---Event trace switching on and off.
    SXI_MAPPING_TEST To test mappings
    SXI_CACHE To check directory cache
    Regards,
    Subhasha Ranjan
    Reward points for  helpful answer. *

  • Consolidation Monitor - SEM BCS

    Hi all,
    is there the posibility of simulating a Manual Posting in a custom report (e.g. using BAPI, FM, ect..)
    I'm new in SEM, but analist has told me that Manual Posting is a standard functionality in Consolidation Monitor.
    In my report after selecting some data I have to do some manual posting with them...
    thanks,
    enzo.

    Hi,
    Please check if notes 897782 & 833400 applicable.
    Best regards,
    Eugene

Maybe you are looking for

  • How to transfer files and playlists from separate drives

    I have my iTunes library on an external hard drive, but the iTunes is on the old G3 iMac. I want to transfer the music files and the iTunes prefs (eg playlists) to a newer laptop. Both the iMac and the hard drive have firewire connections. How do I g

  • Are Gigabit speeds achievable, am I using the right RJ45 plugs?

    I recently purchased a AEBS, and am so pleased with it. Wireless printing work flawless and I have not be prone to any problems yet. However, I thought I would try out the Gigabit Ethernet today. I bought a Cat 6 Patch cable with the ends already fit

  • Download OBIEE report followed with date of report generation

    Hi All, We have the requirement that whenever the user generates the report and tries downloading, the report should be downloaded into the desired format with name as report name+date of report generation automatically. May I know if this is feasibl

  • Custom Math functions

    I going through the book ActionScript Cookbook by O'Reilly, and I can't seem to add a custom math method. Here is a simple example: Math.timesTwo = function(num){ return num*2; trace(Math.timesTwo(5)); I get the following error: **Error** Scene=Scene

  • When will textedit work again?

    when will textedit work again? it just crashes on startup