Need one solution

Hi All,
We have one view and two tables --JOB_STAGE and JOB_MAIN
View and two tables are having structure like
Job_Name varchar2(50);
JOB_QUANTITY number;
Root_id            number;
We need to add all the records into the Main table(JOB_MAIN) from the view(JOB_VIEW ) for root ids which are present into the stage(JOB_STAGE).
We have tried like : - insert into JOB_MAIN select * from JOB_VIEW where root_id in (select root_id from JOB_STAGE)
This insert statement is working fine for few number of records but we need to process one root Id at a time to avoid server performance issue in case of large number of records.
We have created one procedure to process the single root id at a time.We are calling cursor of the view for each root Id.
The procedure is executing through the job which runs at every one hour.
At the time of job execution if new data is added to the view then it is causing data mismatch.
We want to avoid the data which has been added to the view when the job is runnig. Newly added data should be inserted into the Main table in next job run.
Please provide the help.
create or replace
PROCEDURE         TMP_LOAD_JOB_MAIN
IS
v_sqlerrm        VARCHAR2(250);
errors             NUMBER;
dml_errors       EXCEPTION;
L_CNT            NUMBER := 0;
J                    varchar2(25);
cursor CUR_COMP_PATH is
         SELECT DISTINCT ROOT_ID FROM JOB_STAGE;
V_BOM_LAST_UPDATED_DT varchar2(30);       
cursor CUR_GIEA_DATA(I_STAGE_RT in number) is
        select  JOB_NAME,
                JOB_QUANTITY,
                   root_id
          from JOB_VIEW
          where ROOT_ID=I_STAGE_RT;                      
BEGIN
begin        
        OPEN CUR_COMP_PATH;
        LOOP
         FETCH CUR_COMP_PATH  INTO J;
          begin
                DELETE  FROM JOB_MAIN
                WHERE ROOT_ID = J;                                                               
            OPEN CUR_GIEA_DATA(J);
                Loop
                    Fetch Cur_Giea_Data Bulk Collect Into Bom_Order_Dt Limit 1000;
                          BEGIN
                                FORALL I in 1..BOM_ORDER_DT.COUNT SAVE exceptions
                                insert into JOB_MAIN values BOM_ORDER_DT(I);                                                               
                          end;
                       EXIT WHEN CUR_GIEA_DATA%NOTFOUND;
                END LOOP;
             CLOSE CUR_GIEA_DATA;
             COMMIT;      
            END;
            EXIT WHEN CUR_COMP_PATH%NOTFOUND;
            END LOOP;
          CLOSE CUR_COMP_PATH;
      COMMIT; 
      EXCEPTION
         WHEN OTHERS
         THEN
         ROLLBACK;
         v_sqlerrm := SQLERRM;
          rollback;
END;         
END TMP_LOAD_JOB_MAIN;

> This insert statement is working fine for few number of records but we need to process one root Id at a time to avoid server performance issue in case of large number of records.
What server performance issue? Is that an assumption or you are actually having performance issue?
> We have created one procedure to process the single root id at a time.We are calling cursor of the view for each root Id.
This is like putting a bullet in your head because you have stomach pain. The DML in cursor (even using bulk operation) does not scale very well. It will leave your data base in an inconsistent state (Unless you manually maintain consistency). NEVER take this approach. Its always (99.99%, 0.01 I give it as benefit of doubt) wrong.
If you have performance issue with your INSERT statement then address that. I would suggest you read Re: 3. How to  improve the performance of my query? / My query is running slow.

Similar Messages

  • My ITunes got corrupted and I kept getting a message when updating iTunes64msi missing so I uninstalled all files and I thought I removed all registry values but  when reinstalling I get an older version is installed and cannot be removed. I need a soluti

    My ITunes got corrupted and I kept getting a message when updating iTunes64msi missing so I uninstalled all files and I thought I removed all registry values but  when reinstalling I get an older version is installed and cannot be removed. I need a solution.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Multiple users logged into one server, each users printer has a different name, application needs ONE name to print to.

    Multiple users logged into one server, each users printer has a different name, application needs ONE name to print to. 
    I'm NOT in any way a Terminal Services expert and I need help trying to get an application program working in a multi-user environment.
    The issue is that the printer changes for every user that is logged in. The application needs to print NOT to the default printer, but to a "special" printer which is selected in the application... let's call it a label printer to simplify the explanation.
    You have your default regular printer, easy for the application to find that one, and then you have a special printer that labels get printed onto. The application needs to know what printer is the label printer. So we allow the user to select that in the
    application and the selection is stored in a config file in 
    C:\ProgramData\mfgr\prog\setting files
    I don't have access to the application so I can't change how this works.  
    In the "regular" world, selecting the label printer driver to use should be per machine, NOT per user. When a new user logs into a machine, the physical printer doesn't go "poof" and a new printer suddenly appear. Same printer for all
    users.
    Yet in terminal services, the physical machine is "merged" with the virtual machine on the server. And there can be many users logged in at the same time. So each users real machine (and real printer) is injected into the "fake" terminal
    services machine. The name of the printers is made unique for each user. So the printers DO go "poof" and change names depending on the user logged into terminal services.
    So user "A" logs in and sets up the application to print to "LabelPrinterForUserA" (or whatever the name of the printer happens to be), that setting is stored in the ProgramData subfolder, and all is well. Later, user "B" logs
    in, and when they print, the application tries to print to "LabelPrinterForUserA" which doesn't exist for user B or is only accessible by user A. If user B re-configures, that breaks it for user A. 
    SOLUTION 1: The way that /should/ work (in my mind) is that you define one "generic" printer in Terminal Services... call it "Virtual Label printer" and when the user wants to print to it, the print job gets re-directed back to whatever
    physical printer is actually connected to their local workstation. There is a map of virtual printer to actual printer depending on the current user. The application is told once to print to "Virtual Label Printer" for all users.
    SOLUTION 2: Or... there should be some way to make the ProgramData sub folders separate per user. E.g. when user "A" tries to access:
    C:\ProgramData\mfgr\prog\setting files
    they actually get 
    C:\UserData\UserA\AppData\mfgr\prog\setting files
    and user "B" gets
    C:\UserData\UserB\AppData\mfgr\prog\setting files
    So the question I have is: Does either of those solutions exist hidden somewhere in the setup of terminal server? Or is there another way around this issue that I don't know?

    I don't really have a "for sure" answer to this, but because people here can't seem to deal with a question that hasn't been answered I'll provide the best answer I did receive from ServerFault.com user Nathan:
    I can feel your pain with using old software on terminal servers ...the solution I've come up with definitely won't scale as it requires some manual configuration, but I've gotten this method to work with our label printers (which require to be
    printed to an LPT port...yep, that old).
    Share your USB-connected printers to the network on each machine. Then, have the user log in on aunique session for each of them
    (a TS account cannot be shared among computers for this to work) and install a network printer pointing to the USB one they shared. Try to use a DNS name to account for possible DHCP movements.
    After, it should work. Each user can do this since display names can be identical as long as the ports are different (which they are).
    This was clarified by the following series of comments:
    I think you are on to something here, and I originally advised the admin to do this. The problem he ran into is that it setup the printer names in the TS as "printer on usersworkstation"
    and he could not rename it except to change the "printer" to whatever. E.g. the "on userworkstation" remained. I believe there is another way of installing the printer which avoids this, but I can't find it. Ages ago, one used to do NET
    USE LPT2 \\computer\printer password /USER:domain\user /PERSISTENT:YES and then tell the driver to print to LPT2 –  James
    Newton Mar
    17 at 16:21   
    @JamesNewton That's actually the exact method we used. The way around the "network printer" part is to install it as local printer and map it to a TCP/IP port that way. –  Nathan
    C Mar
    17 at 16:28
    You mean in the case where the printers are TCP/IP connected and not local USB / LPT to the users workstation? That makes sense. Wonder if this will work for USB connected printers... –  James
    NewtonMar
    17 at 16:35   
    @JamesNewton You'd share the local printer on the client's PC then on the server connect via TCP/IP to it. You'd need static addresses or use DNS names if DHCP, though. –  Nathan
    C Mar
    17 at 16:51
    Ah. Yes. I see. Looks like the LPT thing should work even with a USB connected printer:superuser.com/questions/182655/… –  James
    Newton Mar
    17 at 17:09   

  • I need a solution of this complicated problem to finalize my final project

    Introduction
    This project revolves around an important text processing task, text compression. In particular, you will be required to encode a sequence of words read from a source file into binary strings (using only the characters 0 and 1). It is important to note that text compression makes it possible to minimize the time needed to transmit text over a low-bandwidth channel, such as infrared connection. Moreover, text compression is helpful in storing large documents more efficiently. The coding scheme explored in this project is the Huffman Coding Scheme. While standard encoding schemes, such as Unicode and ASCII, use fixed-length binary strings to encode characters, Huffman coding assigns variable-length codes to characters. The length of a Huffman code depends on the relative frequency of its associated character. Specifically, Huffman coding capitalizes on the fact that some characters are used more frequently than others to use short codewords when encoding high-frequency characters and long codewords to encode low-frequency characters. Huffman coding saves space over state of the art fixed-length encoding and is therefore at the heart of file compression techniques in common use today. Figure 1 shows the relative frequencies of the letters of the alphabet as they appear in a representative sample of English documents.
    Letter     Frequency     Letter     Frequency
    A     77     N     67
    B     17     O     67
    C     32     P     20
    D     42     Q     5
    E     120     R     59
    F     24     S     67
    G     17     T     85
    H     50     U     37
    I     76     V     12
    J     4     W     22
    K     7     X     4
    L     42     Y     22
    M     24     Z     2
    Figure 1. Relative frequencies for the 26 letters of the alphabet.
    Huffman coding and decoding
    Huffman’s algorithm for producing optimal variable-length codes is based on the construction of a binary tree T that represents the code. In other words, the Huffman code for each character is derived from a full binary tree known as the Huffman coding tree, or simply the Huffman tree. Each edge in the Huffman tree represents a bit in a codeword, with each edge connecting a node with its left child representing a “0” and each edge connecting a node with its right child representing a “1”. Each external node in the tree is associated with a specific character, and the Huffman code for a character is defined by the sequence of bits in the path from the root to the leaf corresponding to that character. Given codes for the characters, it is a simple matter to use these codes to encode a text message. You will have simply to replace each letter in the string with its binary code (a lookup table can be used for this purpose).
    In this project, you are not going to use the table given in Figure 1 to determine the frequency of occurrence per character. Instead, you will derive the frequency corresponding to a character by counting the number of times that character appears in an input file. For example, if the input file contains the following line of text “a fast runner need never be afraid of the dark”, then the frequencies listed in the table given in Figure 2 should be used per character:
    Character          a     b     d     e     f     H     i     k     n     O     r     s     t     u     v
    Frequency     9     5     1     3     7     3     1     1     1     4     1     5     1     2     1     1
    Figure 2. The frequency of each character of the String X.
    Based on the frequencies shown in Figure 2, the Huffman tree depicted in Figure 3 can be constructed:
    Figure 3. Huffman tree for String X.
    The code for a character is thus obtained by tracing the path from the root of the Huffman tree to the external node where that character is stored, and associating a left edge with 0 and a right edge with 1. In the context of the considered example for instance, the code for “a” is 010, and the code for “f” is 1100.
    Once the Huffman tree is constructed and the message obtained from the input file has been encoded, decoding the message is done by looking at the bits in the coded string from left to right until all characters are decoded. This can be done by using the Huffman tree in a reverse process from that used to generate the codes. Decoding the bit string begins at the root of the tree. Branches are taken depending on the bit value – left for ‘0’ and right for ‘1’ – until reaching a leaf node. This leaf contains the first character in the message. The next bit in the code is then processed from the root again to start the next character. The process is repeated until all the remaining characters are decoded. For example, to decode the string “0101100” in the case of the example under study, you begin at the root of the tree and take a left branch for the first bit which is ‘0’. Since the next bit is a ‘1’, you take a right branch. Then, you take a left branch (for the third bit ‘1’), arriving at the leaf node corresponding to the letter a. Thus, the first letter of the coded word is a. You then begin again at the root of the tree to process the fourth bit, which is a ‘1’. Taking 2 right branches then two left branches, you reach the leaf node corresponding to the letter f.
    Problem statement
    You are required to implement the Huffman coding/decoding algorithms. After you complete the implementation of the coding/decoding processes, you are asked to use the resulting Java code to:
    1.     Read through a source file called “in1.dat” that contains the following paragraph:
    “the Huffman coding algorithm views each of the d distinct characters of the string X as being in separate Huffman trees initially with each tree composed of a single leaf node these separate trees will eventually be joined into a single Huffman tree in each round the algorithm takes the two binary trees with the smallest frequencies and merges them into a single binary tree it repeats this process until only one tree is left.”
    2.     Determine the actual frequencies for all the letters in the file.
    3.     Use the frequencies from the previous step to create a Huffman coding tree before you assign codes to individual letters. Use the LinkedBinaryTree class that we developed in class to realize your Huffman coding trees.
    4.     Produce an encoded version of the input file “in1.dat” and then store it in an output file called “out.dat”.
    5.     Finally, the decoding algorithm will come into play to decipher the codes contained in “out.dat”. The resulting decoded message should be written to an output file called “in2.dat”. If nothing goes wrong, the text stored in “in1.dat” and the one in “in2.dat” must match up correctly.

    jschell wrote:
    I need a solution of this complicated problem to finalize my final project The solution:
    1. Write code
    2. Test code3. If test fails, debug code, then go to step 2.

  • I´ve bought the new IPad3, what a disappointment the 3G does not work, no Internet available, APPLE what are you doing for the all the people in Germany who bought the new IPad3? I´m still an Apple fan, all my products are from Apple but I need a solution

    I have been waiting since months for the new IPad4G 64 Gbt. ON recommendation of Apple Support I have changed my IPad 4G last week in the hope that something was wrong with the firts one I bought.
    The one I have now has the same problems. WiFi is working however 4G not at all. Apple what can I do? What are you doing for the thausands of German Apple fans who have bought a IPad4G and can not use it. We need a solution NOW. I´m working with this tool and need to be able to rely on it.
    Thanks for a feed back.

    JKerki wrote:
    They had not heard about the problem, however made no problem to change it for an other one. Apple Support Germany pretendet not to know about this problem. However the web is full of complaints.
    It would be advisable for Apple to react officially on it. € 799, - for something that doesn´t function is no fun :-((
    Isn't replacing your iPad Apple "officially" acting on it?

  • My 4s phone getting hot in sim tray side so i need a solution

    my 4s phone getting hot in sim tray side so i need a solution?

    They are free at Corporate Verizon stores; retailers usually charge for them.  You also can call Customer Service and have them send you one.
    And you don't need a SIM card to activate an iPhone 4S on VzW's network.

  • I need a solution

    Hi,
    i need a solution for voip,
    we have two offices in two city
    in one of our offices we have 100 land line and in another 25 land line, we need 200 internal line for first office and 75 internal for second office , we need both offices connect to each other,
    what equipments do you offer to me
    Regards,

    linksys is just for small office home office, im afraid the device they have will not be able to handle the network setup that you required. the number of lines that can be available for linksys voice system is limited. you may check some other heavy duty voice over ip device for this kind of network setup.

  • BI and the all in one solution

    Hi
    We have a situation where we we hqve many clients attched to one central  BW system and then some customers wish to have a local installation (which we dont want to do due to many systems etc). So we are looking at the SAP ALL in one solution and i have been ased the question how easy will it be to just copy the existing production client in the central solution and use this as a template.
    I have raised potential problems such as:-
    we have many clients in the central one and we dont need these in the all in one just one for each client
    many objects that we have in production thatis not needed
    unwanted and old data flows (yes we havent cleaned it in a while)
    however, can anyone else shed any light on the issues here. Please note thta is is not an alternative to reduce the client numbers in the main system etc.
    Regards
    Andrew

    Hi,
    Please check the following link first:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c04473034&tmp_task=prodinfoCategory&cc=us&dlc=en...
    and the following link shows how to install new patch:
      http://h10025.www1.hp.com/ewfrf/wc/document?docname=c04469325&tmp_task=useCategory&cc=us&dlc=en&lc=e...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Two earlywatch reports for same instance in one Solution manager

    Hi
    i am trying to create two solutons for early watch reports for same instance. let me explain here.
    In SAP Solution Manager: Active Solutions  >>> i have two solutions like this
    Solution                                                          Early Watch Alert Reports
    Avnet Global Solutions         >>>> here i have configured the PR1, PB1 PCB instances
    PR1                                      >>>>>here i configured the only PR1 instance.
    so i have configured the same instance in two solutions.
    i am not gettting the early watch report automatically  after after configuring like this . but manually working fine.
    when i kick of the report manually working fine.
    here my question is ... do i can create two early watch reports in one solution manage for same instance or not.  if yes then why i am not getting report automatically.
    Thank you
    Vish

    Dear Paul,
    Thank you for your response
    this is what i got from SAP.
    Hello Vish,
    You can have the same system in different solutions. With regards
    to why the report is not generating automatically, please review
    SDCCN on the satellite system.
    I dialed into the system and found that the SDCCN for PB1 is not
    downloading the sessions from Solution Manager.
    I would recommend that you deactivate and then activate SDCCN.
    Tcode SDCCN -> GoTo - Settings - Task Processor - Deactivate
    Tcode SDCCN ->Utilities -> Activate
    Then create a Refresh Session task and verify if the upcoming sessions
    are getting pulled down to PB1.
    If you need help with this, please let me know if it is fine with you
    if I make the necessary changes to get the system working.
    Thank you in advance and best regards,
    Jared Singh
    SAP Active Global Support - Netweaver Web Application Server
    could i know your comment

  • Adobe error (523:523) In version 10 - Need Alternative solution

    When I am trying view Statements(PDF) which are encrypted in my application , for few statements it triggers " There is problem with Acrobat / reader. If it is  running, Please exit and try again(523:523)". In few forums it has been stated that by turning off the protected mode at start up " Edit-->preferences-->general-->Enable protected mode at start up" resolves this issue. But the client doesnt want to turn off " Protected mode"due to security reason. Can any one help me with this?
    FYKI :
    I have got reply from Adobe forums ..
    https://forums.adobe.com/message/6578512#6578512
    The purpose of re- posting the same query is we need  alternate solution other than Turning OFF Ënable protected Mode at start up.
    Please advice me in this regard. Thanks a lot.
    Regards,
    Sreelatha Sekhar.Pat Willener

    Hi Shakti,
    Please find the details which you have asked me for.
    1) I am the user  of those encrypted files.
    2) Windows 7 / Windows 8.1.
    3) I am not opening the PDFs in Browser instead I am opening through the application in which Adobe Reader is linked to it to view the PDF files.
    I have also updated to Adobe Reader 11.0.08. Still the problem persists.
    Please help me in this regard. Thank You.
    Sreelatha

  • One Solution: Offload Home Folder Items with Mavericks on SSD

    One Solution for offloading home folder items in Mavericks with a small SSD
    Like others I wanted to use my SSD as the boot disk because of the speed gain and at the same time knew that its 120 GB capacity would not accommodate my basic 10.9.1 installation AND my 93 GB folder of documents.
    Two other factors lead me to seek a solution: 1) When I updated from Mountain Lion to Mavericks my computer became extremely sluggish. 2) I was desperate to find a way to access the hundreds of documents and drawings that I had made in AppleWorks over a period of many years, all of which could not be opened in Mavericks (or Lion or Mountain Lion).
    Solution to the second problem was LibreOffice to be found at libreoffice.org. This opensource application is one of the greatest finds in my 30 years of using a Macintosh. So far, I have been able to open every AppleWorks document tried. How it is that Apple with its billions in the bank cannot offer such an application with similar features is beyond my understanding. Don’t forget to support them with a donation.
    Solution to problem number one was to back up my one-volume, 1 TB internal hard disk and to erase and reformat the disk using three partitions (volumes). On partition one I installed 10.6.8 (Snow Leopard), on partition two I installed 10.8.5 (Mountain Lion) and I left partition three blank for any future experiment that might be needed. Although I much prefer to have a single internal hard disk matched by a single external hard disk, I finally concluded that this would be best for now. While I plan to learn LibreOffice, I have thousands of hours working with AppleWorks and can, if necessary, create a drawing in that application without spending a lot of time learning a new feature. Also, keep in mind that a person may resize the volumes on a single disk by using Disk Utility.
    Redirecting the user folder is not as easy in Mavericks as it was in Mountain Lion and I did not trust myself to use the Terminal. So I experimented and quickly discovered what appears to be a work-around.
    First of all, keep in mind that your home folder contains seven folders, i.e, Desktop, Documents, Downloads, Movies, Music, Pictures and Public. For myself, the Desktop and Public folders are never a problem. In using xScan I can instantly view the usage of all my disks and volumes and do not allow Downloads to accumulate. Movies I save to a designated external disk. All my music is accessed by iTunes and I believe that you may move the iTunes library to another volume, then link to it as I will explain in a moment regarding the Document folder. All pictures are maintained in iPhoto and you may link to the appropriate folder and/or file in the same way as iTunes. That leaves me with my 93 GB folder of documents.
    I solved this problem simply by opening (⌘-O) a window for both the 10.8.5 volume and the SSD disk. See below:
    I then located and clicked on my Documents folder in the 10.8.5 volume and dragged it to the Sidebar of the SSD window. Now when I create a document and want to save it to my Documents Folder, I simply locate the Documents Folder on my 10.8.5 volume in the Save As window. When I wish to work on that particular document again in the future I can do so in one of several ways: 1) If the application is open I can to to File → Open Recent, or I can simply click on the Documents icon in the sidebar of the SSD and I have the view set so that I can quickly view those documents opened by Today, Yesterday, Previous 7 Days, Previous 30 days, etc.
    Folders within the Documents Folder, such as Correspondence, can be dragged to the SSD Sidebar in the same manner.
    Keep in mind that the side bar for the SSD drive with Mavericks will display a Documents icon that look like two sheets of paper rather than a folder. If having two documents icons confuses you, simply remove the Mavericks Document icon.
    Caution: After arranging the above, do NOT eject the volume containing your Documents Folder because that will break your link and you will have to repeat the procedure. If having numerous icons on your desktop bothers you, simply click on the Desktop and go to the Finder Menu and uncheck External disks.
    Erasing a disk and arranging a computer as I did requires a lot of time. Also, keep in mind that I did NOT transfer any preference files because I feared that my problems may have been caused by one or more corrupted preference files. So, remember to have a printout of your passwords and the serial numbers before starting. I can only say that I went from a very slow computer to a lightning fast computer.
    Admittedly, I may encounter some problem(s) that I have not yet encountered — and I would appreciate any feedback — but so far everything is working like a champ!
    I will state that this will probably be the last update that I make on this 27-inch, Mid 2010 iMac. While updates have always proved to have problems, I am not happy with the new Mavericks interface. In my opinion, Apple made a big mistake in firing Scott Forstall. And as you know, a FREE OS may — and did for me — require costly updates.
    Any feedback to my suggested solution will be appreciated.

    I forgot to insert this graphic

  • Need Learning Solutions and Training and Event Configuaration Steps

    Hi Gurus,
    I need to configuare Learning Solutions Module. Please tell me Basic configuaration step for Learning Solutions and Training and Event Management.
    Thanks in Advance.
    Answers will be rewarded.
    Regards,
    Ram

    Thanks Kavya,
    I need one by on steps for the LSO Configuaration like.
    1) What all steps we need to configure in Training and Event Management
    2) What all steps we need to configure in Authoring Environment
    3) What all steps we need to configure in Content Management
    4) What all steps we need to configure in Portal.
    To implement  LSO ,  out of these four module which one we have to configure first.
    What kind of assistence we have to provide for Technical People.
    Please let me know.
    Thanks a lot once again for your support.
    Regards,
    Ram

  • Configuring full landscape in one solution

    Hi all,
    I am liitle confused.I am using ECC 6 . i have normal 3 system landscape n now installed solution manager in my system,Now want to configue that for my landscape.Should i put these servers development,quality and production server in one solution.Also while configuring for dev server ,which clients do i need to generate RFC's, same thing for quality server which clients do i need to genetare RFC's  and same thing for production server?
    Please help me ,i m really confused.
    Regards
    Praveen

    Praveen,
    All processes should run in only one solution. So systems involved in the same business process belong to the same solution. You thus do not mix production and dev servers etc in one solution.
    You could create a single solution for each of these environments (If I remember correct you can actually set the role of the solution, i.e. Production System,when defining the solution).

  • I have created a Flex App with out a Server now I need one

    So I'm new to Flex and didn't think the project needed a
    server at first (poor planning on my part) now I'll need one. I
    have alot built and would like to just conevert the app if I can.
    The project has been sourced in to Subversion, I would like not to
    have to rebuild the repository.
    Thanks for the help

    OK, so I think what you're saying is that you have developed
    locally, which is good, and are using java objects as your back end
    solution - I'll just state that Java is the *only* method of data
    transfer that I haven't used (I use ColdFusion, XML, WEb Services
    mostly), so at some stage I may not be able to help you.
    Still, lets see how far we get. So, you can deploy your SWF
    file to any web server, and browse to it with your browser. The
    output in the /bin directory will include the SWF (usually the name
    of the project) and a html wrapper file.
    Is the Flex app actually rendering (i.e., your containers)
    before you get the error? (I'm trying to determine if the problem
    is the data transfer or the flex app proper)??
    David

  • Need a solution on which page template to opt for my requirement..

    Hi Forum,
    I need a solution how to proceed with this requirement.
    I need a Two pages on my application
    First Page : It need to be displaying approx 7 to 10 cloumns of data from 5 tables based on QUERY1, out which one is the hyper link to the second page ( say JOBNUM as one of the column ). These data are located in a flat database.There are no PK in the tables. Once you click on the JOBNUM it needs to navigate to the second page displaying data based on a QUERY2 which runs with the JOBNUM we clicked and the clumns on the second page needs to be alligned as per my design. Example is shown below.
    DATA1 DATA2 DATA3
    DATA4
    DATA5 DATA6
    I started this by designing a FORM ON REPORT.
    The first page which is report is fine displaying data and I changes one of the columns JOBNUM on the first page to Hyperlink onto 2 page ( FORM ). But now I need some help from the forum how to generate that FORM page based on
    1) on a SQL query which runs on 5 tables
    2) and the JOBNUM selected as this JOBNUM is in those 5 tables
    and How to change the allignment of the cloumns on the form
    Thanks for your time and help in advance.
    Krishna.

    Krishna...
    When you ask about creating page two as a FORM page, are you wanting the ability to update the record(s) that are queried from those five tables? If so, you'll more than likely need to build the page by hand without using one of the wizard options that do all the DML for you. If you are updating information of just one of those tables, you should include the ROWID of the table you wish to update in your query since you said there is no PK on any of those tables. You can easy store the ROWID in a hidden item on the page. If you wish to update more than one table, you should include all of the ROWIDs of each table with different aliases. Then your page processing needs to be savvy to which columns were updated in order to perform update statements against each table individually using the appropriate ROWID.
    If you are not updating and simply want to display the information in a report region and the query on page 2 will be retrieving more than one record based on your JOBNUM parameter, you could look into using a custom region template that you build using a combination of standard HTML tags and special Application Express placeholder tags. An example of this is in the Aria People Search packaged application found at this link, http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html, and look at (hopefully) page 2. There is a report region on one of the main pages that displays a lot of information about a person and uses a custom region template that positions the resulting columns of a query into specific locations in of a table. Not necessarily positioned exactly like how you want it, but the concept is the exact same -- you can use HTML [table] [table] syntax to put the results of your query into specific locations.
    Hopefully I have not completely misunderstood your request.
    Shane.

Maybe you are looking for

  • Problem with different execution paths in hierarchical query

    Hello, I have problems with the following query: SELECT DISTINCT P.ID FROM PRODUCTELEMENTIMPL P WHERE ( ( LABEL = 'SomeLabel' AND PRODUCTELEMENTTYPE = 'SomeText' AND ( STATE = 'created' OR STATE = 'stored' OR STATE = 'archived' OR STATE = 'archivedRe

  • Abnormal behavior of READ_TEXT for PO text in ME23N

    Hi SAP Gurus, I am facing the following issue in reading PO text from ME23N. I am using function module READ_TEXT to read the text. For the first time the function module is not reading the text. If I edit the text and save, Then the function module

  • How to show Hand Symbol when the cursor move to particular field.?

    Hi all, in alv report ,i have to give first column as link to action,and whenever  mouse came to that column a hand symbol ie,hot spot has to be appear . How can i do for that? Regards, ravi

  • Variable table name

    Hi all, I tried to execute the statement below inside a push button on forms 6i select count(*) into :global.temp from *:variable_table_name* where rownum=1; but it fails to compile because it only accepts a static table name....I need such statement

  • Best codec for editing

    What's the best codec to export to DVD if someone else is editing the footage?