Need information in understanding OBIA ETL Workflows

Hi All,
I installed and configured OBIA on the OBIEE environment. I also got DAC installed and configured. When I opened the ETL workflows I seel almost eveyr workflow has a duplicate workflow name with suffix full. I don't know why this is being used. If I see the DAC execution path I don't see these workflows being called. If they are not called then what is the purpose of these full workflows. Can somebody provide me some overview on these workflows or share any document which would give info on the same..
Appreciate your quick response.

Hi,
In OBIA, almost for every mapping there will be 2 workflows i.e.., one is for full load and other is for incremental load. When you run the loads depending upon the type of load the dac will automatically choose whether to run the task with incremental workflow or _full workflow.
The tasks with full denotes that it is used while running the full load and the other task with no full will indicate that it is used for incremental load.
In DAC, you can see these both workflows in Design > Tasks and select any one task and in the lower pane go to Edit tab. In Edit tab, there will be a Command for Incremental load and Command for full load and you will find the both the workflow names within these fields. The taks with _full will be in Command for full load and the other will be in Command for incremental load.
Hope this helps...........
Thanks,
Navin Kumar Bolla

Similar Messages

  • I need information about personal experience with DFS-R: shortcomings and limitaions of DFS-R

    Hello,
    We plan to install DFS-R in our organization.
    I need information about personal experience with DFS-R: shortcomings and limitations of DFS-R.
    Thank you for any info. 

    Hi,
    You could refer to the articles below to see some limits about DFSR and some DFSR configuration mistakes which will cause DFSR problems:
    Understanding DFS Replication "limits"
    http://blogs.technet.com/b/filecab/archive/2005/12/12/understanding-dfs-replication-_2200_limits_2200_.aspx
    Common DFSR Configuration Mistakes and Oversights
    http://blogs.technet.com/b/askds/archive/2010/11/01/common-dfsr-configuration-mistakes-and-oversights.aspx
    Regards,
    Mandy
    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.

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi,
    I need information about actionscript interfaces and
    namespaces, I'm preparing for ACE for Flash CS3 and I need to learn
    about this subjects and I can not find resources or simple examples
    that make these subjects understandable.
    Anybody can help me!
    Thanks a lot.

    Interfaces (cont.)
    Perhaps the most useful feature of interfaces is that you not
    only can define the data type but also method signature of the
    class that implements this interface. In other words, interface can
    define and enforce what methods class MUST implement. This is very
    useful when classes are branching in packages and team of
    developers works on a large application among others.
    The general syntax for an Interface with method signatures is
    written the following way:
    package{
    public interface InterfaceName {
    // here we specify the methods that will heave to be
    implemented
    function method1 (var1:dataType,
    var2:datType,…):returnType;
    function method2 (var1:dataType,
    var2:datType,…):returnType;
    To the previous example:
    package{
    public interface IQualified {
    function method1 ():void;
    function method2 ():int;
    Let’s write a class that implements it.
    If I just write:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    public function ClassOne(){}
    I will get a compilation error that states that I did not
    implement required by the interface methods.
    Now let’s implement only one method:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    public function ClassOne(){}
    I will get the error again because I implemented only one out
    of two required methods.
    Now let’s implement all of them:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    private function method2():int{
    return 4;
    public function ClassOne(){}
    Now everything works OK.
    Now let’s screw with return datatypes. I attempt to
    return String instead of void in method1 in ClassOne:
    private function method1():String{
    return “blah”;
    I am getting an error again – Interface requires that
    the method1 returns void.
    Now let’s attempt to pass something into the method1:
    private function method1(obj:MovieClip):void{
    return;
    Oops! An error again. Interface specified that the function
    doesn’t accept any parameters.
    Now rewrite the interface:
    package{
    public interface IQualified {
    function method1 (obj:MovieClip):void;
    function method2 ():int;
    Now compiler stops complaining.
    But, if we revert the class back to:
    private function method1():void{
    return;
    compiler starts complaining again because we don’t pass
    any parameters into the function.
    The point is that interface is sort of a set of rules. In a
    simple language, if it is stated:
    public class ClassOne implements IQualified
    it says: “I, class ClassOne, pledge to abide by all the
    rules that IQualified has established and I will not function
    correctly if I fail to do so in any way. (IMPORTANT) I can do more,
    of course, but NOT LESS.”
    Of course the class that implements an interface can have
    more that number of methods the corresponding interface requires
    – but never less.
    MORE means that in addition to any number of functions it can
    implement as many interfaces as it is desired.
    For instance, I have three interfaces:
    package{
    public interface InterfaceOne {
    function method1 ():void;
    function method2 ():int;
    package{
    public interface InterfaceTwo {
    function method3 ():void;
    package{
    public interface InterfaceThree{
    function method4 ():void;
    If our class promises to implement all three interface it
    must have all four classes in it’s signature:
    package{
    public class ClassOne extends DisplayObject implements
    InterfaceOne, InterfaceTwi, InterfaceThree{
    private function method1():void{return;}
    private function method2():int{return 4;}
    private function method3():void{return;}
    private function method4():void{return;}
    public function ClassOne(){}
    Hope it helps.

  • Need information about release codes

    Hi,
    I need information about release codes.In which Transcation we will get it.
    Please give the information ASAP.
    Regards,
    Chow.

    Hi Naidu,
    Release code is a two-character identifier with which a person responsible for processing a document can release/ approve an item of a purchase requisition, a complete purchase requisition, or a complete external purchasing document, or cancel a release.
    If a link to SAP Business Workflow has been defined for the release code, the person can refuse to effect release (withhold approval), thus rejecting the item or document.
    You can find the relelase codes Using the following path :
        Go to Transaction : SPRO and click on SAP Reference IMG and follow the menu :
               -> Material Management ->Purchasing->Purchase Requisition->Release Procedure ->Procedure with classification -> Setup procedure with classification
    Hope this helps..
    Thank you
    Srinivas

  • Need information on oApplicationSettings in Fiori applications

    Hi Experts,
    Need help in understanding the parameter
    sap.ca.common.uilib.bootstrap.applicationSettings
    Where is this defined and what all can be configured using this?
    Thanks and Regards
    Puneet Jagdev

    I dont think there is any documentatoin on the licensing part. You can probably talk to the Live sales chat representative to get the information you needed from oracle.( http://www.oracle.com/us/solutions/ent-performance-bi/enterprise-edition-066546.html ).

  • Need help in understanding the error ORA-01843: not a valid month - ECX_ACT

    Hello All,
    We need help in understanding the Transaction Monitor -> Processing Message (error "ORA-01843: not a valid month - ECX_ACTIONS.GET_CONVERTED_DATE").
    And how to enable the log for Transaction Monitor -> Processing Logfile.
    Actually we are trying to import the Purchase Order XML (OAG) into eBusiness Suite via BPEL Process Manager using the Oracle Applications Adapter. The process is working fine with expected payload until it reaches the XML Gateway Transaction Monitor, where we are getting this error.
    thanks
    muthu.

    Hello All,
    We need help in understanding the Transaction Monitor -> Processing Message (error "ORA-01843: not a valid month - ECX_ACTIONS.GET_CONVERTED_DATE").
    And how to enable the log for Transaction Monitor -> Processing Logfile.
    Actually we are trying to import the Purchase Order XML (OAG) into eBusiness Suite via BPEL Process Manager using the Oracle Applications Adapter. The process is working fine with expected payload until it reaches the XML Gateway Transaction Monitor, where we are getting this error.
    thanks
    muthu.

  • I need Information about Grid

    Hello,
    The first, i don't speak english very well.... ;)
    the company for which work has 3 seats now, but is going to open 5 more.
    All these seats are small, and the cost to install Oracle in each one of them is very elevated.
    i would like to know to me if Grid Computing can help me centralizing everything in a Seat. The scalability is something very important. and i need have several instances of BD oracle up...
    I need information...
    Yo can write me to [email protected]
    Thanks in advance

    Hi.
    By seat, I assume you mean site or location.
    It's difficult to answer this type of question as it depends on so many factors. Personally, I would always go for the centralized solution. This way you don't need to worry about replication or distribution of data. Those things are always a nightmare.
    RAC is great for high availability, and it will allow you to increase your horsepower as and when you need it, but you still need to consider your performance erquierments up front.
    Of course, centralization comes with it's own set of problems. Are you going to connect to the central server via the web, VPN, leased line? What happens when the connection is unavailable?
    There is just so much to consider...
    Cheers
    Tim...

  • I need information about reports

    hi gurus,
      i need information about Trending reports and Management reports. Can any body provide me the scenario regarding this issues:

    Hi
    Trend reports are the reports which show a certain trend all over the years
    Say, Sales revenue for the year compared to all the previous years...This show what is the trend in the last few years
    Management reports high level reports with summarized data which helps in decision making. Say, Vendor performance report...this report shows list of default vendors by ranking them and management can decide to continue or not to continue with certain vendors
    Regards
    N Ganesh

  • I need information regarding the creation of Workbook and WAD.

    Hi,
    I need information regarding the How to create the Workbook and WAD.
    Can any one help me to get the information..
    Regards,
    Suman
    Edited by: Suman Reddy Vuyyuru on May 19, 2009 8:22 AM

    Hi,
    for workbook:
    [Queries in Workbook|http://help.sap.com/saphelp_sem40bw/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm]
    for WAD:
    [WAD for Beginners|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/749a4622-0a01-0010-36bf-b6b30a2a3a22]
    thnks.

  • I need  information  about  oops  concept  programming  in abap

    Hi  ,
    I need  information  about  oops  concept  programming  in abap
    Thanks,
    Asha

    Of course, the best place to start is help.sap.com.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    There are a couple good books out there as well.  You can get them at www.amazon.com
    Regards,
    Rich Heilman

  • I need information on my bill, for the last two yrs, how do i go about looking for it

    i need information on my bill for the last two yrs, how i go about looking for it . thanks\

    The last 12 months' worth can be obtained via your on-line MyVerizon account; look under View Bill and use the drop-down to select the appropriate bill.  Anything prior to the past 12 months would need to be obtained via Customer Service; there is a charge (I believe $5 per copy, but I'm not sure).

  • I need information about Web dynpro ABAP Exception : ICF Service Node

    I need information about Web dynpro ABAP Exception :
    ICF Service Node "/sap/bc/webdynpro/sap/abcd/undefined" does not exist.
    Here abcd is application name.
    ICF Service Node exists and activated but kindly let me know from where "undefined" is coming .
    Please let me know your comments /views about  this.

    Hi,
    I think ur webdynpro service is not active after upgradation.
    You have manually activate it.
    Go go Tcode SICF,Execute the Initial screen,
    and in this new screen give service  as your application name and click on filter.
    You will get your service below which will be ur application name .
    right-Click on the deactivate and activate it or just activate it,.
    This shd work

  • I need information about ESS and Training and Work Experience

    I need information about ESS and Training and Work Experience.
    Anyone know if  there is something inside of the component ESS about Training and Work Experience (infotypes 22 and 23)?
    I appreciate information.
    Thanks.

    Marciano,
    check this documentation
    http://help.sap.com/saphelp_erp2005/helpdata/en/4d/c19ce6ef2842258283afc35a54172a/frameset.htm
    Thanks
    Bala Duvvuri

  • I'm a Microsoft Outlook for Mac user, I need information of how to know when e-mail was readed and confirm receipt of e-mails sent. thank you!  regards Mauricio

    I'm a Microsoft Outlook for Mac user, I need information of how to know when e-mail was readed and confirm receipt of e-mails sent. thank you!  regards Mauricio

    Mail and Address book

  • Need information about "Activation Task"

    Hi at all
    I need information about "HOW" the activation task work. I try to found information on Metalink and I can't found anything. Who anyone show me where I can find this information?
    The information from Design Studio are not enough.
    Thanks in advice
    Luis
    Edited by: Luis_ITA on 9-giu-2011 10.35

    Hi Luis,
    Following are the resources you can use to seek information about Activation Tasks:
    1. Following link is from OU that provides an overview of the Activation Task:
    http://ilearning.oracle.com/ilearn/en/learner/jsp/rco_details_find.jsp?srchfor=1&rcoid=920335765
    2. Design Studio Online Help provides comprehensive description about the task – what is it, how to use it, different compensation modes etc.
    Thanks,
    Deepankar (Deep) Dey
    OSM- Product Management

Maybe you are looking for

  • AppleTV 2 doesn't display or play video in iTunes library on MacBook Pro i7

    please help, apple tv doesn't play or display movies on the computer. brand new appleTV 2nd gen, it plays itunes store videos, netflix and youtube videos. network works great. latest software updated. home sharing active. computer autorized. it shows

  • Changed Apple ID password and now Iphone 6 having issues

    I had to reset my password when signing into my apple ID and now my Iphone is having issues.  I can not use imessage. Under settings, It will not allow me to turn it on.  Also under settings my facetime and iCloud are greyed out.  I can using os8.1.2

  • Dynamic forms struts

    I need to display a page with dynamic form elements. i.e I will not be aware of the form content...how many text boxes, drop downs while writing the concrete form bean. Can anyone let me know how to achieve this using struts.

  • How to get current/present version guid from CRMD_ORDERADM_H ?

    Hi, Can any one tell me  how to get the current version guid value from CRMD_ORDERADM_H table for Business Object type 'BUS2000113' . For example for one contract if we have more than one version then how to get the latest version guid from this tabl

  • Error -43 when opening a quicktime over the network

    Hi, a really strange one here. I've moved our FTP server internally to a different Mac running 10.5.x Server. Everything seems to be working except when we try and play a quicktime over the network on a Windows PC. The file will play correctly in VLC