Another question related to using to_char(d_date, IW)

dear all;
I posted a similar problem a while back but I would like to see if I can get help on this particular problem
I have the following sample data
create table table_one
v_id varchar2(60),
close_date date
insert into table_one
  (v_id, close_date)
values
  ('A', to_date('1/1/2010 4:47:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
insert into table_one
  (v_id, close_date)
values
  ('A', to_date('1/2/2010 2:47:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
insert into table_one
  (v_id, close_date)
values
  ('A', to_date('1/3/2010 1:47:19 PM', 'MM/DD/YYYY HH:MI:SS:AM'));  
insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/4/2010 5:47:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/5/2010 4:47:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/6/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/7/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
  insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/8/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
  insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/9/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
  insert into table_one
  (v_id, close_date)
values
  ('D', to_date('1/10/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
  insert into table_one
  (v_id, close_date)
values
  ('L', to_date('1/11/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
  insert into table_one
  (v_id, close_date)
values
  ('L', to_date('1/12/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
  insert into table_one
  (v_id, close_date)
values
  ('L', to_date('1/13/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM')); 
    insert into table_one
  (v_id, close_date)
values
  ('L', to_date('1/14/2010 5:17:09 PM', 'MM/DD/YYYY HH:MI:SS:AM'));I am using the following query below
select y.v_id, to_char(y.close_date, 'IW') as d_date   from table_one y
  group by to_char(y.close_date, 'IW'), y.v_id;which gives me the following results
V_ID   D_DATE
D          01
L           02
A          53now I would like to modify the query so that I can get something similar to this
V_ID       D_DATE
D             (beginning date of that week - ending date of that week)
L             (beginning date of that week - ending date of that week)
A            (begining date of that week - ending date of that week)
hence, if week 01 based on the ISO week calendar starts on Jan5th, 2010 and ends on Jan12th, 2010 and if week 02 based on the ISO week calendar starts on Jan 13th, 2010 - Jan 20th, 2010 and so on
then I would like to see that
so that I can get this instead
V_ID        D_DATE
D            01/05/2010 - 01/12/2010
L             01/13/2010 - 01/20/2010
All help is appreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Thank you for providing sample data. Is this what you are looking for?
SQL> SELECT v_id
  2       , TO_CHAR(TRUNC(close_date,'IW'),'MM/DD/YYYY') || '-' || TO_CHAR(TRUNC(close_date,'IW') + 7,'MM/DD/YYYY') AS d_date
  3  FROM   table_one
  4  ORDER BY v_id
  5  ;
V_ID                                                         D_DATE
A                                                            12/28/2009-01/04/2010
A                                                            12/28/2009-01/04/2010
A                                                            12/28/2009-01/04/2010
D                                                            01/04/2010-01/11/2010
D                                                            01/04/2010-01/11/2010
D                                                            01/04/2010-01/11/2010
D                                                            01/04/2010-01/11/2010
D                                                            01/04/2010-01/11/2010
D                                                            01/04/2010-01/11/2010
D                                                            01/04/2010-01/11/2010
L                                                            01/11/2010-01/18/2010
L                                                            01/11/2010-01/18/2010
L                                                            01/11/2010-01/18/2010
L                                                            01/11/2010-01/18/2010If not please provide more information.

Similar Messages

  • I have another question related to the connection and operation of FP-RLY-422

    1. I use one 25 VDC power to supply power for all the five fieldpoint modules(i.e. V and C terminals of FP-2000, FP-AI-110, FP-AO-200 and FP-RLY-422 are connected) However, as cascading power from neighboring bases or network modules defeats isolation between cascaded modules. I want to know whether the switching of one channel of a module have influence on the reading or switching of other channels in other modules. May I need to provide seperate power supply for FP-2000, FP-AI-100, FP-AO-200, and FP-RLY-422. If FP-RLY-422 was suppled by power of 120 VAC. Is it OK. I read the manual of FP-RLY-422 which specifies 3 A at 35 VDC or 250 VAC. If I used it to control three heaters of 500 w each and
    another 750 W. The current of each channel will be over 3 A. Can it be wired in this way?
    2. I use FP-RLY-422 to control four heaters. Now I connected it in this way. I connect it firstly to one of four solid state relays for each channel of the fieldpoint relay. The solid state relay is just a open/close relay the input is 3-32VDC and the output is 110-220VAC/25 A or 240 VAC/50 A. In this case, I build the VI for the operation of heater just in two statuses i.e. on and off. In this case the temperature can't be controlled very accurately. I want to know whether I can build a VI based on PID control based on the present wiring of my cable (i.e. fieldpoint relay control on/off solid relay to control operation of heater indiretly). In this case may I wire the fieldpoint relay FP-RLY-422 directly to the heater of 750 W? I understand the fieldpoint relay FP-RLY-422 in this way. It is a mechanical relay and I can heard the sound when it switched between normally open and normally closed.
    I think it have only two statuses i.e. on and off. In this case would you please explain how it contrl the output for the heater more accurately. Does it control by regulating the time being on/off?

    Bo,
    1a) All FieldPoint I/O modules are supplied operating power from the power supply in the network module. Certain modules may require additional power for sourcing power via outputs or inputs. Of the modules you list above, the following module requires external power; FP-AO-200. The following modules do not require external power wired to the V & C terminals; FP-AI-100, FP-AI-110, FP-TC-120, and FP-RLY-422. The V & C terminals are provided on modules that do not require them to simplify wiring (e.g. not requiring external terminal blocks if you have loop powered current transmitters).
    1b) The FP-RLY-422 is rated for up to 3 amps at 35 VDC or 250 VAC. Currents above 3 Amps may damage the relays, the traces on the terminal base and FP-RLY-422 PWBs, and wi
    ll cause overheating of the connectoer between the terminal base and the I/O module.
    2a) You can use the FP-RLY-422 with a PID control algorithm to control the heater. However, as relays have limited life expectancies and are simply on/off the control will not be a fine as some other options. What may be better is to use a FP-PWM-520 pulse width module to control the solid state relays. You still control the solid state relay via on/off, but in this case, the on/off time can be occuring relatively quickly, and you change the amount of on time vs the amount of off time, to control the power going in to the heater.
    Regards,
    Aaron

  • Question related to use of a managed library in iPhoto11

    Question 1 - A family member decided to place folders with photos on the desktop. I want to import those photos and delete those folders from the desktop? Will the photos be properly transferred and stored in iPhoto 11?
    Question 2- The photos were placed on the desktop for external transfer via email, drop box etc. Can this be done within iPhoto 11 instead of locating photos external to the software?

    1. If you're running a managed library, yes.
    A Managed Library, is the default setting, and iPhoto copies files into the iPhoto Library when Importing. The files are then stored in the Library package
    A Referenced Library is when iPhoto is NOT copying the files into the iPhoto Library when importing because you made a change at iPhoto -> Preferences -> Advanced. (You unchecked the option to copy files into the Library on import) The files are then stored where ever you put them and not in the Library package. In this scenario you are responsible for the File Management.
    2.For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491
    3. For more on iPhoto and file management see this User Tip:
    https://discussions.apple.com/docs/DOC-6361

  • Another question about problem using arrays

    Hey guys, if you helped me answer my other problems thanks a bunch and again thank you to all the people who try to help us learn the unique language of Java. Anyway the other problem goes like this:
    Return the number of even ints in the given array. Note: the % "mod" operator computes the remainder, e.g. 5 % 2 is 1.
    countEvens({2, 1, 2, 3, 4}) ?? 3
    countEvens({2, 2, 2}) ?? 3
    countEvens({1, 3, 5}) ?? 0
    Ok so basically I would want to count all the evens in an array and basically if I use the module operator I can figure out whether something is even or not if it returns me a 0. So I know there will be an if statement there. I'm wondering if I would have to also use a "for each" statement to check every element. I would also need a variable to keep count of the number of elements that are even. Any suggestions on how the implementation of this method should be like?

    Hey thanks a bunch actually, I just pretty much reasoned it out and ended up with this:
    public int countEvens(int[] nums) {
    int count = 0;
    for (int e:nums)
         if ((e%2)==0)
            count++;
       return count;      
    }Really appreciate the help.

  • Thanks all for the great advice.  Another question.  If I use Entourage on my desktop Mac to access an email address I use on there, is it possible to be able to access my email on that same email address on my iPad either with or without Entourage?

    Thanks all for the great advice.  Another question.  If I use Entourage on my Mac desktop to access my mail using an email address I have on there, is it possible to access my emails on that same email address on my iPad, either with or without using Entourage.  Is there an Entourage app, or something I could use?  Thanks...

    Simply add the email account to Mail, no need for Entourage.
    One word of warning, though, iPads tend to become community property (meaning anyone who uses your iPad can access your email). That is why I have zero email accounts on my iPad.
    I use Entourage on my desktop as well, so going back and forth between Entourage and Mail (whether on your iPad or iPhone) is no problem.

  • I have a question related to patch download using ftp which was working in

    Hi,
    I have a question related to patch download using ftp which was working in Classic Metalink.
    ftp updates.oracle.com allowed to download patches before but now it says the following.
    $ ftp updates.oracle.com
    Connected to updates.oraclegha.com.
    421-*********************** Downtime Notice ************************
    421-
    421-This service was retired as of November 06, 2009.
    421-
    421-****************************************************************
    421
    Is there a way to download patches now using command prompt. I couldn't see category for metalink in forums hence posted here.
    Regards,
    Nagendra Chillale

    Enter the following command where username and password are your My Oracle Support login and password and filename is the patch file name that you copied from the Properties window::
    wget http-user=username http-password=password no-check-certificate output-document=filename "http://updates.oracle.com/Orion/Download/download_patch/<filename>"
    For example, to download patch 7154429 for Linux where the patch file name is p7154429_10204_Linux-x86.zip, enter:
    wget http-user=[email protected] http-password=password no-check-certificate  output-document=p7154429_10204_Linux-x86.zip "http://updates.oracle.com/Orion/Download/download_patch/p7154429_10204_Linux-x86.zip"
    My Oracle Support FAQ ID 747242.5
    Regards,
    Nagendra Chillale
    Edited by: user12023326 on Dec 16, 2009 11:43 AM

  • Question related to IDOCs

    Hello,
    I have a question related to IDOC processing.
    Lets assume that I process the following IDOCs collectively in the transaction BD87: -
    1) 100
    2) 140
    3) 150
    Simultaneously, another user using the same user ID as myself, processes the following IDOCs: -
    1) 110
    2) 120
    3) 130
    Is it possible to determine which IDOCs were processed collectively together? I mean is there some sort of an IDOC attribute which would be the same for IDOCs 100, 140 and 150 and for IDOCs 110, 120 and 130?
    I hope that my question is clear. Please try and answer it as quickly as possible.
    Best regards,
    Divyaman Singh Rawat

    Simultaneously, another user using the same user ID
    I dont think SAP has any such provision. May be you can track by UserID but in your case that too is same.

  • TS4124 Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Depends on why it's ineligible.  If it's under 96 Kpbs, try right-clicking on the file and choosing Create AAC Version.  (If you don't see this option, go to iTunes>Preferences, click "Import Settings..." then choose "Import Using: AAC Encoder" and "Setting: iTunes Plus".)  Then rescan your library to see if this version will add to iTunes Match.  Or, after changing your import setting, just re-import the song to your iTunes library.
    If the song is over 200 MB you would have to reduce it's size to make it eligible.

  • How to backup external hard drive to another external hard drive using time machine ?

    Hello,
    i have an external hard drive which i store all my drum samples and sound library on and files are contantly changing, adding new sounds, deleting old ones etc ..
    So my method of back up as of now is to just copy all the edited files and click and drag to the back up disk.
    Now, my question is, how do i back up my external hard drive to another external hard drive using time machine ? I read somewhere that you can do this, i cant find the post however. It would be nice to automate the back up process rather than manually finding the files to copy over.
    Thanks in advance !

    The question you pose is conditional, in that you should have more than an exact
    capacity replacement for a clone, if the drive you are going from (or one going to)
    has insufficient free space and that has a bootable clone on the drive; any space
    tied up in a partition for Time Machine backup, takes away from the running space
    if you should need to run the computer from a clone on the external HDD's other
    partition.... Better to have a good capacity of additional reserve unused free space.
    Be sure any clone copy that you hope to use as a re-close, that each in turn is tested
    after a clone operation. Also consider using each running system's Disk utility and
    have First Aid 'repair disk permissions'. Preparation of a new drive or even an old
    drive that may have questionable artifacts or errors on it, should be reformatted. To
    even go as far as Secure Erase (overwrite) at least one-pass before reformatting it
    again, could help.
    However, I'm not sure if the drives and situation you are looking at would necessarily
    be a good match. It could work, but you'd need a reasonable size partition or hard
    disk drive for a system. Snow Leopard and all its associated applications, can do
    OK in a 100GB HDD. (My computers have more storage capacity than is used; so
    for mine to have 60% free space, is good.) Virtual Memory is drive space used by
    OS X, that can be a substantial amount for swap and temp files. Some applications
    make duplicates of works-in-progress, for each change in an open file; that adds up.
    {This question (& my reply) should've been in their own thread & not at the end
    of one that is nearly three months old, + marked 'solved' by the original poster.}
    So I guess I don't have a direct answer to your question; having just returned from
    a few hundred miles and automobile issues, too. I'm not really thinking on-topic...
    The clone should be on its own separate drive, and up to 3TB drive dedicated to
    Time Machine may be overkill, however that software will consume old backups first
    when it uses up all the space. Or usually that is what happens in TM backups. If
    that isn't happening, there may an issue in how Time Machine is set up.
    Good luck & happy computing!

  • Basic Questions related EHPs for SEM

    Hi Guys,
    I've some basic questions related to EHPs: -
    1. If we don't mean to implement any of the new functionalities does it make any sense to implement EHP? In other words do EHPs also have some general improments other than the functionalities which can be specifically activated?
    2. If we just activate a functionality and don't implement/ use it can there be any negative impact?
    3. In case of a pure technical upgrade from SEM 4.0 to SEM 6.0 which EHP would be recommended?
    4. Is there a quick way to find all relevant notes in EHPn which are related to corrections for EHPn-1?
    Thanks in advance,
    -SSC

    HI,
    If you see some of my older posts I have had many issues with certain features of the EHP2 functionality but that doesn't mean I would recommned against it.
    BCS 6 EHPs 3 & 4  (BCS 6.03 / 6.04) - enhancement packs worth implementing?
    BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack
    My recommendation is to implement the EHPs but not necesarrily activate the functions (in SFW5) unless you need them - this means that you will only have to test once after EHP implementation and will have the ability to activate the other features as and when required (although testing is required after activation of course) whereas it might be difficult to persuade your client/basis team to implement EHP4 later if you don't do it now.
    In the features of EHP2 (activate FIN_ACC_GROUP_CLOSE) it states that there is a general performance improvement - although I have yet to experience it! From OSS note 1171344 "The functionality which is available in EHP2 consists of...
    ... Performance improvements of status management, reporting and initial start-up of consolidation workbench and monitor.
    Since activating FIN_ACC_GROUP_CLOSE I have had many OSS notes requiring application but i discovered that when the technical team implemented the EHPs (before i joined this client) they somehow forgot the latest SP (support packs) and didn't upgrade to the current level - so make sure that you get the right SPs too (see the links in Greg's link above) to avoid the many OSS notes.
    As for your question - "is there a list of OSS notes to specific to EHP upgrades? - the answer is most definietly "NO" - I already asked OSS in desperation!
    however, you can see the OSS notes that i have applied listed in the above link ( BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack )

  • Some questions related to SAP XI

    Hello!
    I would like to know the answers for the following questions regarding SAP XI-context (if it possible with Yes/No and a short comment/explanation)
    <b>CAPACITY PLANNING GUIDELINES</b>
    a) Guidelines to size the server(s)?
    b) Guidelines for sizing the over all environment for High-Availability
    <b>ARCHIVING CAPABILITIES</b>
    a) Approach to archiving of obsolete data
    <b>PLATFORM SUPPORT</b>
    a) Software supported on HP-UX 11.i V2 (r6) on Itanium.
    b) software supported on Windows 2003 sp1 (x64) on AMD Opteron 
    c) software support aligned with release roadmaps for future versions of HP-UX and/or Windows Server
    d) Software supported on OS clustered servers  (If mutliple products, please indicate if all are support or list areas where clustering may not be recommended and why)
    <b>RELATIONAL DATABASE </b>
    a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools?  If not, please explain the databases and tools supported.
    b) database monitoring tools be used to manage impending maintenance needs and potential problems and performance impacts (i.e., tool will monitor and detect prior to real problem occurring)
    c) standard pre-defined SQL queries and related calculations provided for use with industry standard reporting tools
    d) database accept binary-large-objects (BLOBs) and  be referenced via the relational engine.
    Thank you in advance!
    Regards!
    A.Henke

    two questions related to this:
    1. Why Java is designed to only permit single
    inheritence, any stories behind the scene? I think
    some major reasons why "prefer interfaces toabstract
    classes" is accepted is rooted in this limitation.Yes, one of the reasons interfaces are better is that
    you can only extend one class, but implement many
    interfaces. Say you have a concrete class that should
    "implement" two different types. If those types were
    defined as abstract classes, you could only use one
    type. You could implement both types if they were
    interfaces though. So why java is designed to have this limitation? There may be some arguments before this is settled down. I always like to hear this kind of stories:)
    2. Base on the fact that once an interface is outof
    box and widely implemented, it is almostimpossible
    to change it. So how you guys design yourinterfaces?
    Could you share some? In my idea, I would designmy
    interfaces as compact as possible.You could extend the interface and start using that
    if you didn't want to break existing code. You
    couldn't use that implementation as an Interface1
    though, since the new methods only exist in
    Interface2, so that's not an optimal solution.So we may always need to add a new interface when we just want to add a new method.

  • OWB general questions for effective use.

    Hi all,
    I have been using OWB for a while now, and am getting to the point where I want to make sure I am using it effectively.
    For example, how does one decide what to include in one project, or to split it up into multiple projects? I am loading a warehouse, and so far I am only loading raw data into tables.
    My next step will be to perform ETL on the raw data and start forming more structured warehouse data. Would that step be better contained in a separate project? Would I need to repeat the definitions of the tables in the loading project? Should I just keep the whole thing in one project? The loading project is quite large, as we have raw data from many sources, and it seems to get one file in takes about 5 - 7 OWB objects (flat file, ext table, 2 - 3 mappings, process flow, 1 - 2 tables.)
    So I have dozens of mappings, tables, etc.
    Even though much of the data comes from different places, it is generally used together by the end users, and the ETL will likely also need to use most of it together.
    Is there any "Best Practices" posted anywhere?
    Another question that has come up is this: It seems the idea is to create the warehouse structures completely in OWB and deploy to the DB. However OWB doesn't allow for a full table definition, for things like Triggers, or for advanced features due to a later DB version.
    So does one just create a "phantom" entry in OWB that is never deployed, and then create the actual table manually, or deploy and then modify manually to add the trigger?
    Or are we not supposed to be using DB triggers, and instead control everything through OWB?
    Any insight would be appreciated.
    Thanks

    Hi
    I think the kind of questions you are asking are more aimed at methodology's not so much OWB. There are plenty of sites you can get this kind of info from one but not necessarily the best being <http://www.ittoolbox.com/>
    In any case we use three projects and multiple schemas
    project & schema 1 is used to collect data quickly from multiple sources
    project & schema 2 normalizes the data (acts as the storage repository)
    project & schema 3 is where the datamarts exist (de-normalized data)
    this approach allows you to isolate your integration layer from your reporting layer. most changes only affect one of the layers, not all.
    as far as creating your structures in owb is concerned I seen no problem, provided you are using a good ER tool and have ironed out any potential problems.
    I have certainly created triggers manually and added them after deployment, but in most cases you can use Transformations, post-mapping, and pre-mapping processes to do the same thing, after all the data should only get into the target through a mapping. If it gets in any other way, you have a hole in you bucket.
    Chris

  • General questions related to Java

    Good evening,I would like to ask you some questions related to Java :
    1) class A {
    public int x=1;
    public int y=5;
    public A() { y=6; }
    public A(int a) { x=a; }
    public A(int a, int b) { x=a; y=b; }
    class B extends A {
    public B() {}
    public B(int a) { super(a); }
    public B(int a, int b) { super(a,b); }
    public B(int a, int b, int c) { x=a+b+c; }
    public B(int a, int b, int c, int d) {
    super(a,b); y=c+d; }
    public class Test {
    public static void main(String[] args) {
    B b4 = new B(1,1,1);
    System.out.println("b4.x: "+b4.x+" b4.y: "+b4.y);
    I cannot understand why y = 6.
    As i see it,i find it more logical that y = 5.
    Could anybody tell me why y becomes 6?
    How did we get into the constructor of A : public A() in order y to be changed?
    2) Well in an exercise i have to handle out we have to find the a,b,c of a program .Unfortunately i dunno about them,Can anybody explain to me what do they mean or attach me a link (e.g. a tutorial) in order to figure out?
    a)pre condition in Java
    b)post condition in Java
    c)invariant condition
    3)
    3) Fraction apple = new Fraction (1, 2);
    Fraction peach = new Fraction (4, 5);
    Fraction pear = apple;
    peach.halve();
    pear.halve();
    System.out.println(apple);
    System.out.println(peach);
    System.out.println(pear);
    It's the first time i see an object as a parameter in System.out.println.
    CAn anybody tell me when i can pass an object as an argument in System.out.println?
    Thanks in advance!

    How did we get into the constructor of A : public A() in order y to be changed?if you don't explicitly call a super constructor, the empty super constructor is called for you. If no empty accessible super constructor is available and no explicit call from subclass is made - compile error.
    CAn anybody tell me when i can pass an object as an argument in System.out.println?Whenever you want. Object.toString() will be called and the resulting String will be used. If the object is null, the String "null" will be used instead.

  • Question related to E-Business Suite (Business Group)

    Dear All,
    I just started my career as an oracle Functional Consultant (HRMS), I have questions related to Business Group
    - Why BG is a part of HRMS? Although we associates different profiles with it like, legal entity, which is used for financial purpose only.
    - Under which conditions we make more then on Business Group?

    Pl do not post duplicates - E-Business Suite queries related to BG

  • Question related to concept of PCK

    Hi All.
    I am quite a newbie to XI and am only learning it thru online help. I have one conceptual question related to PCK.
    My understanding is that PCK is needed by a small business company to communicate to its larger partner which already has XI running. Correct me if I am wrong here itself.
    Now if the larger business partner already has XI, why does the smaller one need a PCK at all? The XI instance on the larger partner will have all the necessary adapters to understand any format send by the partner. So even if the partner(smaller) sends any format- be it IDOC/HTTP/FTP, the XI instance on larger partner will have its adapters ready to perform the conversion.
    Then why is this PCK needed at all?
    Thanks in advance. Hope my query is clear
    Regards.
    Samant

    Hi Samant,
      Your question is a very good one, Though I have not worked on PCK, I can share my ideas based on some brain storming session I had with our collegues & business partners.
      While executing projects, there are technical & operational issues. For example, when you access any HR related data of a UK based organisation then all those who work on that project have to undertake data security pledge. Like wise there are many constraints on data & system accesses, which vary across organisations.
    When you use PCK*, irrespective of different systems what the small vendors have, you communicate with your Big company's XI system only on the XI's msging protocol http(s)/SOAP. This allows a fair amount of ownership of data/access related issues to the small partners.
    -> you go for PCK, when there is no need for small vendors to go for XI.
    Hope this is of some help. As Michal said there might be much more (or even better) reasons.
    Michal, when you say "all of the mappings and transformations have to be on the small company side", what exactly you mean by this. can you please eloborate.
    Thanks & Regards
    Vishnu

Maybe you are looking for

  • Data is not saving using BDT

    Hi All, I have enhanced BP screen using BDT  . I have created fields in already exisitng role and tab and the data is not getting saved in ztable . there is one tcode called BUS7 where I need to give FM for dsave  and few other events. I have defined

  • IP Address Assign & Port Forwarding

    Using the UFO Airport Extreme and Xpress. I want to use one of my system to host a server. How do I assign an IP Address to that particular host? A problem I tried port forwarding to an IP address is let say I want to assign to this system (say 10.0.

  • SCOM 2012 - how to setup alerts for specific IT groups.

    Hello everyone - I have seen a few similar questions but never any specific answers. Our IT department is split up in teams.  We have a Database team - Exchange Team - SharePoint Team - Web Team and others. We currently run around 650 Servers for the

  • Why is it my pod touch 4th gen version 4.3.3 won't let me delete some pictures, says total gb is 6.5, and won't let me upgrade the firmware

    My iPod touch is version 4.3.3 and recently I was thinking I'm sick of my iPods memory always being full so I can't take pictures. My memory has allowed at max 6.5 gb which is highly annoying so I started by trying to delete photos for room and I del

  • Why can't I open final cut pro x

    I moved one of my libraries in FCPX and haven't been able to open the program since. It starts to open, then just sits on "resoring with window layout." HELP!