Adding a Label to the ouput of a GROUPING SET.Please see

I have created a report using GROUP BY GROUPING SET and am getting
the correct output in 9i Reports and have used the 'Group Above' Layout
SQL Query :
SELECT
               crest_pid                 as Lender,
               crest_trans_id            as Transaction_ID,
               crest_otran_id            as Loan_Return_ID,
               acnt_code                 as Account_ID,
               delrec                    as DelRec,
               substr(consid,1,3)        as CCY,
               sum(Substr(consid,4))     as Amount
FROM     msg_sld_atxp_v
group by grouping sets (
                  (crest_pid, crest_trans_id,crest_otran_id,acnt_code,delrec,substr(consid,1,3) ) ,
                  (crest_pid, acnt_code, delrec,substr(consid,1,3) ),
                  (acnt_code, delrec,substr(consid,1,3) )
order by Transaction_ID,Loan_Return_ID,Account_IDReport Output :
Transaction ID Loan Return ID Account ID   DelRec         CCY       Amount
HSBC
ABCD          LR_LoanId1     AC_Id1       DELIVER        GBP       1000.00
ABCD          LR_LoanId2     AC_Id1       DELIVER        GBP       1000.00
                             AC_Id1       DELIVER        GBP       2000.00                              Look at the third line.It sums up Amount for DelRec and CCY.Thats right.
Now,I want to add the Label 'TOTAL' on this 3rd Line,so that this looks like
Transaction ID Loan Return ID Account ID   DelRec         CCY       Amount
HSBC
ABCD          LR_LoanId1     AC_Id1       DELIVER        GBP       1000.00
ABCD          LR_LoanId2     AC_Id1       DELIVER        GBP       1000.00
              TOTAL          AC_Id1       DELIVER        GBP       2000.00                              I am unable to add this Label as in the Data Model,the record is in a
repeating frame and I cannot add the label.
Is there any way I can add a Label so that the user can see the Label 'TOTAL'
which clearly specified that it is totalling the Amount.
Can I say something like :
SELECT
               crest_pid                 as Lender,
               crest_trans_id            as Transaction_ID,
               crest_otran_id            as Loan_Return_ID,
               acnt_code                 as Account_ID,
               delrec                    as DelRec,
               substr(consid,1,3)        as CCY,
               sum(Substr(consid,4))     as Amount
FROM     msg_sld_atxp_v
group by grouping sets (
                  (crest_pid, crest_trans_id,crest_otran_id,acnt_code,delrec,substr(consid,1,3) ) ,
                  (crest_pid, acnt_code, delrec,substr(consid,1,3) ),
                  (acnt_code, delrec,substr(consid,1,3) ) TOTAL
order by Transaction_ID,Loan_Return_ID,Account_IDI am hardcoding TOTAL in the set
(acnt_code, delrec,substr(consid,1,3) ) TOTAL
Am I clear in my explaination

Labels & Addresses will let you customize the address in anyway you like. Furthermore, if you need to print multiple addresses, which seems to be the case here, merge printing will allow you to print addresses for multiple contacts. The program integrates with Address Book, so you can easily use contacts stored there.

Similar Messages

  • I have an issue installing photoshop CC trial, I currently have elements and wanted to see the differences before buying, when installing through the creative cloud app I get the error message  Exit Code: 7 Please see specific errors below for troubleshoo

    I have an issue installing photoshop CC trial, I currently have elements and wanted to see the differences before buying, when installing through the creative cloud app I get the error message  Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR: DW041 ...   -------------------------------------- Summary --------------------------------------   - 0 fatal error(s), 1 error(s)
    ERROR: DW041: INSTALLDIR Volume D:\ doesn't exist.  -------------------------------------------------------------------------------------  System Requirements  and it will not install, It says cant find the path D: im not sure why because as far as I can see its set to install on drive C: which is where I want it!

    Exit Code: 6, Exit Code: 7 Installation Errors - http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for information on how to review your installation logs

  • Why when I open my password protected Pages document it doesn't require me to enter the password that I have set to see the document?

    When I open my Pages app and try to open my previously password protected document it doesn't require me to enter the password to see the document. It just takes me straight to the document like any other document that isn't password protected. Isn't this the point of having a document password protected so no one can see it without knowing the password? Am I missing something when I set the password in the first place? Thanks.

    When you set a password in Pages v5(.2), you are offered a check box to remember the saved password in your keychain. If you do not enable this check box, you will always be prompted locally for the document password. If checked, before opening the document, Pages queries keychain if it knows anything about the current local document security, and once confirmed, it simply opens the document without a challenge.
    To disable the keychain knowledge for the local document, you open the document, and choose File > Change Password… . Enter the current (old) password only, then select the Remove Password button. Now, you can use File > Set Password… again to set the password, and omit the Remember this password in my keychain option. The desired document password prompt will occur on your local (and remote) access.

  • Frm - 41337 - can not populate the list from record group

    Hi
    I have created a form with 4 combo boxes. And i am trying to populate the 4 combo boxes dynamically.
    Here is my table structure.
    BUS_FUNCTION VARCHAR2(500),
    SEQ NUMBER,
    STEP1 VARCHAR2(500),
    STEP2 VARCHAR2(500),
    STEP3 VARCHAR2(500),
    STEP4 VARCHAR2(500),
    KEYSTEP VARCHAR2(4000),
    OBJ_NAME VARCHAR2(500),
    SME VARCHAR2(50)
    In the fist combo box i am retriving bus_function and second seq and third step1.
    i wrote a trigger when_new_form_instance and i am calling a procedure from the trigger.
    here is my procedure code.
    PROCEDURE fp_get_list IS
    l_sql_text VARCHAR2(2000);
    BEGIN
    l_sql_text := 'SELECT bus_function,bus_function FROM TABS_BUS_FUNC';
    lp_populate_list('BUSFUNC.list22','rgcat2',l_sql_text);
    l_sql_text := 'SELECT TO_CHAR(SEQ),TO_CHAR(SEQ) FROM TABS_BUS_FUNC';
    lp_populate_list('BUSFUNC.BUS_FUNC','rgcat',l_sql_text);
    l_sql_text := 'SELECT step1,step1 FROM TABS_BUS_FUNC';
    lp_populate_list('BUSFUNC.list20','rgcat1',l_sql_text);
    END;
    Now the problem is i can able to get the values fro the first two colums. but the third column values are not populating.
    i am getting an error frm - 41337 - can not populate the list from record group.
    PLease help me in this.
    Thanks in advance,
    Raju

    I got answer
    i write a code in when-new-form-instance
    declare
    v_rg_id RECORDGROUP;
    v_return number;
    v_query varchar2(2000);
    outcome number ;
    begin
    v_rg_id := CREATE_GROUP_FROM_QUERY('RG_LIST','select Dname,To_char(Deptno) deptno from dept');
    v_return := POPULATE_GROUP(v_rg_id);
    POPULATE_LIST('emp.deptno', 'RG_LIST');
    end;
    but remember property of list item must be mapping of others value null and initial value null
    if ur problem not solve then tel me email, i ll send u fmb file

  • Added new field to ALV but not  displaying the ouput

    Hi guys,
    I'm adding one more column to be displayed on an old existing program that uses REUSE_ALV_FIELDCATALOG_MERGE to generate the ALV fieldcat.
    DATA : BEGIN OF itab OCCURS 0,
      matnr LIKE eina-matnr,
      extwg LIKE mara-extw,
      matkl LIKE mara-matkl,
      mtart LIKE mara-mtart,
      maktx LIKE makt-maktx,
      lifnr LIKE eina-lifnr,
      wglif LIKE eina-wglif,
    <span style="color:red">idnlf like eina-idnlf,          " <----
    new field</span>
      name1 LIKE lfa1-name1,
      profl LIKE mara-profl,
    END OF itab.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = sy-cprog
          i_internal_tabname     = 'ITAB'
          i_client_never_display = ''
          i_inclname             = sy-cprog
         i_bypassing_buffer     = 'X'
        CHANGING
          ct_fieldcat            = t_cat
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
    I've added in a new field inside the ITAB internal table, but it wouldn't appear in the t_cat, only all the old fields will appear. What have i done wrong?

    Hi
      Facing similar kind of issue.. added one field to the existing internal table. This is not getting populted by the field catalog merge FM. Tried with the suggested solution also of running programs BALVBUFDEL,
    BCALV_BUFFER_DEL_SHARED then logging off  and logging in..
    But the newly added field is not getting populated. Any suggestions would be of great help.
    Regards,
    sridevi S

  • Adding label for the total value shown

    Hi,
    I'd like to add a label to the report's grand total row.
    Let us say I've a report that shows the count of all employees and the sum of their salaries reporting to a particular manager 'ABC' in a particular location say 'UK', so I've a grouping by manager and location. I've the display of subtotals enabled at both groups. For each total row, i want to show the label as Total Employees for ABC is 5. Total Salary for ABC is 1000. Similarly Total Employees for ABC in UK is 3 and Total Salary for ABC in UK is 700. How do I achieve this in a Report that I created in Oracle Business Intelligence.
    Appreciate your help.
    Thanks,
    Rad

    user600853 wrote:
    Hi,
    I'd like to add a label to the report's grand total row.
    Let us say I've a report that shows the count of all employees and the sum of their salaries reporting to a particular manager 'ABC' in a particular location say 'UK', so I've a grouping by manager and location. I've the display of subtotals enabled at both groups. For each total row, i want to show the label as Total Employees for ABC is 5. Total Salary for ABC is 1000. Similarly Total Employees for ABC in UK is 3 and Total Salary for ABC in UK is 700. How do I achieve this in a Report that I created in Oracle Business Intelligence.
    Appreciate your help.
    Thanks,
    RadDo this:
    1) Put the location column in position 1 in the Rows section of your pivot table.
    2) Click on the "sigma sign" on the Location column and select "After."
    3) Click the sigma sign again and this time choose "Format Labels."
    4) In the Caption window, enter: Total Employees and Salaries for @1 is:
    5) Click on "Horizontal Alignment" and select "Right."
    6) Click "OK."
    7) Put the count and salary metric in the Measures section of the pivot table.
    That should do it.

  • Adding data labels to column graph

    I work in the financial industry and I have to add data labels to all bars that appear in my ten year performance graphs (see http://fundinvestor.calamos.com/ClosedEndFunds/CEFund.aspx?name=CHI under the "Performance" tab as an example). Is there a script that can do this? I saw there's this technique that Adobe offers for column totals: http://livedocs.adobe.com/en_US/Illustrator/13.0/help.html?content=WS714a382cdf7d304e7e07d 0100196cbc5f-619e.html but that's not working. What am I doing wrong? Adding data labels to bars is ridiculously simple in Excel, why can't I find the way to do it easily in Illustrator?

    http://help.adobe.com/en_US/Illustrator/14.0/WS714a382cdf7d304e7e07d0100196cbc5f-619ea.htm l
    That should do the trick.
    Mylenium

  • Label Printing Using Address Book - How can I Print multiple labels of the same name?

    Label Printing Using Address Book - How can I Print multiple labels of the same name?

    I used to be able to print multiple copies of the same picture on one page using iphoto. There was a customise button when you went through to print and it was there somewhere. I can't see it anymore - maybe since an upgrade.
    It's gone. But as a work-around, duplicate your photo (⌘D) to create as many versions as you want copies and select all at once. Then use the "Custom" print layout and set the photo size you want.
    After printing, trash the added versions.

  • How to keep a label at the left side of a JScrollPane

    Hi all
    I am essentially trying to make a text block that doesn't move as the scrollpane scrolls (horizontally in my case)
    Here's my code trying to do this simply using Graphics.drawString (not compilable - tell me if you need something that compiles):
              g.setFont(getTaskFont());
              g.setColor(getTaskLabelForeground());
              g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
              JScrollPane sp = ComponentUtilities.getJScrollPaneAncester(this);
              for (int i = 0; i < tasks.size() - 1; i++) {
                   Task t = tasks.get(i + 1);
                   FontMetrics fm = g.getFontMetrics();
                   int y = i * (rowHeight + rowSpace) + fm.getAscent() + (rowHeight - fm.getHeight()) / 2;
                   int strlen = fm.stringWidth(t.getName().toUpperCase());
                   int start = getXLocationForTime(t.getStart());
                   int end = getXLocationForTime(t.getFinish());
                   int len = end - start;
                   int x = 0;
                   //System.out.println("task: " + t.getName());
                   if (strlen < len) {
                        x = Math.min(end + 5, Math.max(start + 3, sp.getHorizontalScrollBar().getValue()));
                   else {
                        x = end + 5;
                   g.drawString(t.getName().toUpperCase(), x, y);
              }Here's my code trying to do this using a JLabel
                   JScrollPane sp = ComponentUtilities.getJScrollPaneAncester(this);
                   int y = i * (rowHeight + rowSpace); //+ fm.getAscent() + (rowHeight - fm.getHeight()) / 2;
                   int strlen = fm.stringWidth(t.getName().toUpperCase());
                   int start = getXLocationForTime(t.getStart());
                   int end = getXLocationForTime(t.getFinish());
                   int len = end - start;
                   int x = 0;
                   //System.out.println("task: " + t.getName());
                   if (strlen < len) {
                        x = Math.min(end + 5, Math.max(start + 3, sp.getHorizontalScrollBar().getValue()));
                   else {
                        x = end + 5;
                   floaters.setLocation(x, y + (rowHeight - fm.getHeight()) / 4);
                   floaters[i].repaint();
    Both [i]almost work, but the scrolling is not smooth (blinks back & forth). It seemed like a double buffering problem, but when I added code to paint first to an image and then to screen the issue remained.
    I also tried adding labels to the JLayeredPane popup layer, but I this solution is problematic also, as labels start drawing all over the place. Plus, I'd rather not have to keep track of the labels and be repositioning them in the first place.
    Any advice on this is sincerely appreciated.
    Thanks!
    -Tom
    Anyone know how to fix this?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Darryl Burke wrote:
    a label at the left side of a JScrollPaneI take it <tt>setRowHeader</tt> / <tt>setRowHeaderView</tt> don't do what you want?
    dbThat's a very helpful suggestion, and I think would solve the problem as stated, however in reading your answer I see now that I didn't state my problem well, and that what I am trying to do is much more complex than I originally thought it was.
    Thanks tho, you have helped me gain clarity in what I am trying to do.

  • Time Machine not backing up music added to iTunes since the original backup

    My girlfriend has a Macbook and I decided it was time for her to back up. I used Time Machine with my Lacie external HD. The original back up got all the music, documents, etc.
    This morning was the first time I had hooked up the external HD since the original back up. I manually ran it and wanted to check if it added the new music and documents. My resume, which I updated last night, was there. But when I looked in the iTunes folder the new music I had added was missing.
    Will the daily or weekly back up get the new music files? Is there something I did wrong with set up? Of course I could start over but I'd rather fix the issue and make sure everything is being backed up.
    Your suggestions or comments are appreciated.

    Erik Griffin wrote:
    My girlfriend has a Macbook and I decided it was time for her to back up. I used Time Machine with my Lacie external HD. The original back up got all the music, documents, etc.
    How long ago was this?
    This morning was the first time I had hooked up the external HD since the original back up. I manually ran it and wanted to check if it added the new music and documents. My resume, which I updated last night, was there. But when I looked in the iTunes folder the new music I had added was missing.
    How are you verifying whether they were backed-up? Use +Enter Time Machine,+ not the Finder.
    Will the daily or weekly back up get the new music files?
    The labels of hourly, daily, and weekly backups are just labels. The process is the same with each. The only thing that's different is how long TM will keep them. A TM backup is a TM Backup.
    Is there something I did wrong with set up? Of course I could start over but I'd rather fix the issue and make sure everything is being backed up.
    First, check TM Preferences > Options. Be sure nothing is listed there that would prevent any iTunes data from being backed-up.
    If you still don't see them, download the TimeTracker app, from www.charlessoft.com.
    It shows most of the files saved by TM for each backup (excluding some hidden/system files, etc.). That should show what was actually backed-up.

  • Folder action to change the label of the folder

    Hi all
    I would like to use Automator/Folder Actions to set the Label of the folder to show that it contains a file that was created or modified as follows:
    Red if in the last three days,
    Orange if over three days but less than seven; and
    Yellow if over seven days but less than fourteen
    Oh, and clear the folder label if the contents of the folder are over fourteen days old.
    Is it possible to do using Automator and folder actions?
    Thanks
    Jai
    iMac G5; iBook G3; PB165c; PB170; Mac IIcx; Mac SE/30; Mac SE; Mac Plus; Newton 130; 2gen iPod 10G     Mac OS X (10.4.7)   MacUser since 1984... and waiting for a tablet (like the Nokia 770 with MacOSX)

    In Automator-No
    The trigger for folder actions to run is the act of adding a file/folder to the folder which has the action applied. If you don't add anything, they won't do anything.
    You could probably get close to what you want using Smart Folders. It won't be color-coded or perfect though because modifying a file doesn't always reflect on the modification date of the folder. And parent folders are not affected by changes made in sub-folders.

  • On which router B bit is added in Label?

    On which router B bit is added in Label?

    Ashwin,
    I hope you are referring "Bottom of stack" bit?. If yes, please see below,
    When LER (Label Edge Router) receives the IP packet and if the egress is LSP based, it pushes one or more labels. The number of label to be pushed depends on the service and the transport path. For example, when the SP is providing L2/L3 VPN service, the LER will push 2 labels. The bottom label to identify the service and the top label to identify the remote edge router. If there is TE tunnel established along the path and if the TE is not end-to-end, you may see 3 labels pushed. 
    When LER pushes the labels, it set the S bit as 1 in the bottom label. This is required so the ASIC can understand if the ethertype is to be set to 0800 (IP packet) or 8847 (MPLS packet).
    -Nagendra

  • Why doesn't the "Command Number" keyboard shortcut apply the colored label to the selected image?

    Why doesn't the "Command Number" keyboard shortcut apply the colored label to the selected image?  The similar keyboard shortcut to assign stars works, but the shortcut to assign a label color doesn't?

    Just to be sure they haven;t been reassigned in your Aperture go to Aperture->Commands->Customize then in the search box in the upper right hand corner enter color.
    You should see the keyboard shortcuts and the corresponding add label commands.
    If they are set then quit Aperture move you preference file to the desktop and restart Aperture. The instructions for moving the preference file can be found at Aperture 3: Troubleshooting Basics
    Post back the results
    Message was edited by: Frank Caggiano - Added preference file move

  • Problem of putting the label in the middle.

    I am having a problem of putting the label in the middle.
    below are my codes.
    import java.awt.*;
    import java.applet.Applet;
    public class glay1 extends Applet{
    public void init(){
    Button button1;
    TextField textfield1;
    button1 = new Button("Set fuel Price(p)");
    textfield1 = new TextField(" ");
    Label label1, label2, label3, label4;
    label1 = new Label("pump1", Label.CENTER);
    label1.setBackground(Color.white);
    label2 = new Label("pump2", Label.CENTER);
    label2.setBackground(Color.white);
    label3 = new Label("pump3", Label.CENTER);
    label3.setBackground(Color.lightGray);
    label4 = new Label("pump4", Label.CENTER);
    label4.setBackground(Color.lightGray);
    Panel pc = new Panel();
    Panel ps = new Panel();
    setLayout(new BorderLayout());
    setBackground(Color.black);
    pc.setLayout(new GridLayout(2,2,220,50));
    pc.add(label1);
    pc.add(label2);
    pc.add(label3);
    pc.add(label4);
    ps.add(button1);
    ps.add(textfield1);
    add("South", ps);
    add("Center", pc);
    My problem is the label all are put on each corner.
    How to put the label to the middle?
    but I don't want the label to join one another,
    just put them more to the middle only.

    btw, I haven't actually used GridLayout myself but wouldn't it work for you to use the methods setHgap(int hgap) and setVgap(int vgap)?
    With GridBagLayout you can add components of varying sizes and you can easily position them on the grid. Look at this example, adding components to a JPanel called resultsPanel:
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,0,1,1,5,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,resultFileLabel,c,gridbag,1,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,2,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,loadResultFileButton,c,gridbag,3,1,0,0,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,4,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,2,1,1,5,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,linkerFileLabel,c,gridbag,1,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,2,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,linkerButton,c,gridbag,3,3,0,0,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,4,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,4,1,1,5,1);
                   The addComponent(...) method looks like this:
         public static void addComponent(Container target, JComponent comp, GridBagConstraints c, GridBagLayout g, int x, int y, int wx, int wy, int w, int h)
                  c.fill = GridBagConstraints.BOTH;
                  c.gridx = x;
                  c.gridy = y;
                  c.weightx = wx;
                  c.weighty = wy;
                  c.gridwidth = w;
                  c.gridheight = h;
                  g.setConstraints(comp, c);
                  target.add(comp);
           }     x and y specifies the position of the component and w and h the size of it. But really, read the tutorials!
    /P

  • Adding Custom Labels Missing for Contact Numbers After Upgrading to iOS 8.0 and issue still exists on iOS 8.1

    I noticed that after upgrading to iOS 8.0 on my iPhone 5s, adding custom labels for contact numbers got removed. It still exists on iOS 8.1 as well. Is there someone who is facing a similar issue or can someone help me how to get that back. Any suggestions would be greatly appreciated.
    Thank you.

    Hi Yugendra,
    Thanks for visiting Apple Support Communities.
    I have good news. You can still choose a custom label in Contacts on iOS 8. The option should be below "Other" in the list of labels when editing a contact. This information is found in the iOS 8 user guide:
    Contacts at a glance - iPhone
    Change a label. If a field has the wrong label, such as Home instead of Work, tap Edit. Then tap the label and choose one from the list, or tap Add Custom Label to create one of your own.
    Best Regards,
    Jeremy

Maybe you are looking for

  • What is this Symbol called and what does it mean?

    What is this symbol/icon called and what does it mean?  It goes away with it's "notification" and I would have no idea where to find it should I need to. Please.  And thank you.

  • Please help! Elements 11 image quality poor compared to LR

    Hello, I just started using elements and am very irritated because the image quality is very poor compared to when i am viewing in LR.  Its not the conversion - i have tried pulling directly from the camear.  It looks great in Camera Raw 7.1 but the

  • Dynamic Line Graph

    I am interested in adding a dynamic line graph to a form I have. I attempted to use myChart with an array which pretty much went nowhere. I have read a little on the subject which entails lots of script, which is ok, however I am lost and in need of

  • Problems using Visual Composer with Web Dynpro runtime

    I am currently trying to build a Visual Composer iView and we need to use the Web Dynpro runtime rather than Flash because it needs to work with a screen reader for users with sight problems.  Which is a pity because Flash works fine. But when I use

  • Trouble opening RAW images w/ PSE v. 3.0

    I use a Pentax *ist DS digital slr camera to take RAW images and tried putting them into PSE v.3.0 but the program will not take them and says the format is incorrect. The format is pef whatever that is. I tried downloading camera raw updates 3.3 and