How to find the exact package that I need?

How can I find the exact package that I need, for example, in Ubuntu, I can add launcher in System -> Preferences -> Main Menu, but in Arch, I can not find this Main Menu, I know I need to install something, but don't know where to go?

Ghost1227 wrote:depends... where are you now?
LOL
pacman -Ss <package-name>
would help you out. You can also put in part of the name and it will return all the matches. As for a GUI -- you don't get that by default in Arch.
There is a GUI wrapper for pacman called shaman, but iirc, it uses kdelibs and integrates well with KDE. It looks like you are using Gnome, but you can use shaman in Gnome too.

Similar Messages

  • How to find the exact user exit for our requirement?

    Dear Mr. keerthi,
    can you please explain me how to find the exact user exit for our requirement?

    Hi sandip
    There is more than one method in which you can check for user-exits.The following method is used very often.
    <b>How to find the exact user-exit for your requirement.</b>
    1.     You can check the user exists using transaction SE85.
    2.     Repository Information System -> Enhancements -> Customer exits
    3.     You can search the user-exits by package name.
    4.     Double click on each exit name to check the function module exits.
    <b>The procedure to find the package name.</b>
    Execute transaction SE93 
    Enter the tcode of the transaction for which you want to check the user exit.
    Example: if you want to find the user-exit for purchase orders while changing, enter ME22n  and press display.
    You will get to see the package name
    But you need to confirm that the user exit will get triggered at the appropriate event.
    ( example: you might want some validations to be done ON SAVE of a purchase order)
    <b>Checking if the user-exit is getting triggered or not.</b>
    1.     Open the user exit function module (that you have got in step 4) in Tcode SE37.
    2.     Click on where used button. In the pop up that immediately appears choose only programs .
    3.     You will get a list of programs. Double click on the program name.
    4.     You will get the list of location where this function module user exit is used.
    5.     Place session break points at each of these location ( at each CALL FUNCTION statement)
    6.     Now go to your transaction ( say change purchase order tcode:Me22n) and check if the user exit is getting triggered on appropriate event.
    regards,
    Prasad

  • How to find the exact user exit in enhancement.

    Hi All,
    I am in learning phase. I am working on TCODE VA01 and want to change the PO Date. But i am unable to find out the exact user exit.  If somebody could guide me that what is the procedure to find the exact user exit for a perticular field or like that.  I am know how to find all the enhancements in the TCODE.

    hi
    Run this program and give the tcode and it will list down all the user exits for that Tcode.
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    TABLES : tstc, tadir,            modsapt,            modact,            trdir,             tfdir,      enlfdir,     tstct.   
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    START-OF-SELECTION.
      SELECT SINGLE * FROM tstc    WHERE tcode EQ p_tcode.
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir       WHERE pgmid    = 'R3TR'         AND object   = 'PROG'
             AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir         WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir          WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir          WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir          WHERE pgmid    = 'R3TR'            AND object   = 'FUGR'
                AND obj_name = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
        SELECT * FROM tadir      INTO TABLE jtab      WHERE pgmid    = 'R3TR'        AND object   = 'SMOD'
            AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct      WHERE sprsl EQ sy-langu        AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',    20(20) p_tcode,    45(50) tstct-ttext.    SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline,      2 'Exit Name',      21 sy-vline ,      22 'Description',      95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt        WHERE sprsl = sy-langu AND        name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline,   2 jtab-obj_name HOTSPOT ON,  21 sy-vline , 22 modsapt-modtext, 95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
         SKIP.
         FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Regards
    Sajid
    Edited by: shaik sajid on Jun 26, 2009 12:06 PM
    Edited by: shaik sajid on Jun 26, 2009 12:10 PM

  • How to find the exact word in a long text?

    Hi,
    Scenario:
    I have long text containing the system status of the equipment.
    Issue:
    I need to find the exact word from the list of the statuses. I have tried to use the FIND keyword but it does not work for all the cases.
    Example:
              FIND 'REL' IN <status_list> IGNORING CASE.
              if sy-subrc = 0.
              " do something
              endif.
    If the status list contains the word 'RELR', the sy-subrc is set to 0 (which may be because it searches the list based on a pattern) but I want to get the exact match.
    Can anybody suggest me on this.
    Regards
    s@k

    >
    siemens.a.k wrote:
    > Dear Kiran, Vasuki,
    >
    > The data type of status list is char with length 40.
    > The status list:
    >
    > Case 1: list -  REL  MANC NMAT PRC  SETC
    > FIND 'REL ' IN <status_list> IGNORING CASE
    > the sy-subrc is set to 0
    >
    > Case2: list - CRTD MSCP NMAT PRC  RELR SETC
    > FIND 'REL ' IN <status_list> IGNORING CASE
    > the sy-subrc is still set to 0 even though the list does not contain the word 'REL'
    >
    > I have also tried using
    > if <status_list> CS 'REL'
    > and
    > if <status_list> CS 'REL '
    >
    >
    > Please do let me know if I am anyway unclear about issue...:)
    >
    > Regards
    > s@k
    This is becacuse when you check
    > Case2: list - CRTD MSCP NMAT PRC  RELR SETC
    It is having RELR so that is the reason you are getting subrc = 0.
    >Ok try CS it should work perfectly.
    It seems... CS also not the correct answer
    (It will count RELR)  below thread sachin is correct ...Do that way ....
    Regards
    sas
    Regards
    Sas
    Edited by: saslove sap on Jan 25, 2010 6:58 AM

  • How to find the relation between that tables

    Hi,
      I have to get the data from different tables but I dont have any table relation ship. So If any body can help me to get that relation ship that will be very helpful for me.
    my tables are
    LFA1     
    LFB1
    LFC1
    RFSDO
    BSIK     
    Thanks
    Imran

    >
    SURINDER SINGH OBEROI wrote:
    > Hi,
    >
    > LFA1-LIFNR = LFB1-LIFNR = LFC1-LIFNR = BSIK- LIFNR
    > LFB1-BUKRS = LFC1-BUKRS = BSIK-BUKRS
    > LFC1-GJAHR = BSIK-GJAHR
    > LFC1-ERDAT = BSIK-AUGDT
    >
    > Cheers,
    > Surinder
    You think, you can fetch accurate data with the above mentioned linkages?
    Oh btw, the question i believe the question was How to find the relation....
    pk

  • How to find the reports/Txs that are affected by changes made in NA30

    Hi All,
    Does anyone know how to find the reports and transactions that are affected by ISH Billing (Interim Billing /Final billing) in hte Tx NA30. I need to modify the some functiionality of Interim billing at NA30 and still maintain the consitenecy of NA30.
    Many thanks & Regards,
    Vijaya

    No idea about any such report but from SAP help got following list of billing reports. It might be helpful
    RNAABGR0 IS-H: Revenue Accrual
    RNAABRKZ IS-H: Change Billing Indicator of a Case
    RNABD000  IS-H: Patient Billing
    RNABILB0   IS-H: Change Billing Block via Conditions
    RNABILB1   IS-H: Change Billing Block via Conditions (Outpatient Cases)
    RNADIN03   IS-H: Billing Document Mass Print Program
    RNAFSPER  IS-H: Change Billing Block
    RNANFAL0 IS-H: Set Cases Without Billable Services to "Final Billed"
    RNANFAL1 IS-H: Set Outpatient Cases Without Services to "Final Billed"
    RNANFAL2 IS-H: Set Fully Billed Cases to "Final Billed"
    RNASED00 IS-H: Delete Case Selections
    RNASEK00 IS-H: Copy Case Selection
    RNASELM0 IS-H: Billing - Process Messages
    RNASEL00 IS-H: Case Selection
    RNASEL01 IS-H: Case Selection via Outpatient Visits
    RNASTO01 IS-H: Cancel Billing Documents for Case [Live Mode]
    RNASTO02 IS-H: Cancel Billing Documents for Case: Mass Partial Cancellation [Live Mode]
    RNASTO03 IS-H: Cancel Invoice Items per Case (Partial Cancellation) [Live Mode]
    RNASTO04 IS-H: Cancel Provisional Invoice
    RNAPRV04 IS-H: Cost Reimbursement u2013 Direct Patient Billing
    RNAENT00 IS-H: Billing Status of Inpatient Cases
    RNA_CASCADE_BILLING IS-H: Cascade Bill Processing

  • How to find the parent package

    Hi,
    The problem I'm trying to solve is, given an instance of a SSIS package being executed, I need to find the GUID and execution id of the package that calls it. According to the API (https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.package.aspx)
    the Package class
    has a property "Parent", which returns the instance of the container that contains the child package. In reality though, this doesn't seem to work. Here's what I did,
    1. Create a child package that simply has a script task which writes a line to a file for debugging purpose.
    2. Create a custom SSIS component in which the child package is called by the myPackage.Execute() method;
    3. Given the reference myPackage, try to print the parent container id through the FireInfo() method from IDTSComponents interface.
    What I got was an "reference not set to an object" error, which means the parent property is null. This leads me to wonder, when is the parent property set? Is it only set during the execution of the child package? I tried to access it both before
    and after executing the child package, and in both cases the value was null.
    My ultimate goal is to write the parent package id (and execution id) into the ssis log so as to easily trace the execution of packages. Another option to achieving this goal would be through passing values via parent package variables but that seems to
    be too clumsy. 
    Any help / suggestion is greatly appreciated.
    Regards,
    Amos

    I have done the same thing via different way. Let me tell you how
    Step 1: Create a log table
    CREATE TABLE [dbo].[ExecutionLog](
    [LogID] [int] IDENTITY(1,1) NOT NULL,
    [ParentLogID] [int] NULL,
    [Description] [varchar](50) NULL,
    [PackageName] [varchar](50) NOT NULL,
    [PackageGuid] [uniqueidentifier] NOT NULL,
    [MachineName] [varchar](50) NOT NULL,
    [ExecutionGuid] [uniqueidentifier] NOT NULL,
    [Operator] [varchar](50) NOT NULL,
    [StartTime] [datetime] NOT NULL,
    [EndTime] [datetime] NULL,
    [Status] [tinyint] NOT NULL,
    [FailureTask] [varchar](64) NULL,
    CONSTRAINT [PK_ExecutionLog] PRIMARY KEY CLUSTERED
    [LogID] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[ExecutionLog] WITH CHECK ADD CONSTRAINT [FK_ExecutionLog_ExecutionLog] FOREIGN KEY([ParentLogID])
    REFERENCES [dbo].[ExecutionLog] ([LogID])
    GO
    ALTER TABLE [dbo].[ExecutionLog] CHECK CONSTRAINT [FK_ExecutionLog_ExecutionLog]
    GO
    Step 2: On every package Create three Execute SQL Task
     Execute SQL Task 1 :  On begin of package 
     Execute SQL Task 2  : After completion of all task
    Step 3: Now create two SP
    For EQT #1
    --Root-level nodes should have a null parent
    if @ParentLogID <= 0 set @ParentLogID = null
    --Insert the log record
    insert into dbo.ExecutionLog(
    ParentLogID
    ,Description
    ,PackageName
    ,PackageGuid
    ,MachineName
    ,ExecutionGuid
    ,Operator
    ,StartTime
    ,EndTime
    ,Status
    ,FailureTask
    ) values (
    @ParentLogID
    ,@Description
    ,@PackageName
    ,@PackageGuid
    ,@MachineName
    ,@ExecutionGuid
    ,@operator
    ,getdate()
    ,null
    ,0 --InProcess
    ,null
    set @logID = scope_identity()
    EQT #2 On End
    update dbo.ExecutionLog set
    EndTime = getdate() -
    ,Status = case
    when Status = 0 then 1 --Complete
    else Status
    end --case
    where
    LogID = @logID
    You can create similar SP for OnError if you want 
    Step 4: Now create two variables LogId & parentLogId Int default value 0
    Step 5: Step up parent package variable configuration for logId like below
    Step 6: Call these SP in respective execute SQL task
    Hope this will help
    Glad to help! Please remember to accept the answer if you found it helpful. It will be useful for future readers having same issue.
    My Profile on Microsoft ASP.NET forum

  • How to find the exact driver for my hardware

    Operating System: Microsoft Windows 7 (64-bit)
    Product name: HP Pavilion dv6 - 7025tx Entertainment PC
    Product number: B3J88PA#AB5
    Motherboard: Hewlett-Packard 181E
    Chipset: Intel HM77 (Panther Point)
    BIOS: 05/29/2014 ver. F.2B
    I have installed an SSD and a clean Windows 7. I started to download drivers from the website when I found that there are too many drivers for the same hardware, e.g. under Network there are 9 drivers from Intel, Broadcom, Ralink, Realtec and Atheros.
    How can I find which is the exact driver for my PC?
    This question was solved.
    View Solution.

    This tells it all. Each device has a unique signature or device ID:
    http://dellwindowsreinstallationguide.com/download​ing-drivers-checking-hardware-ids-and-downloading-​...
    If you find the Device ID and google it you can find out what it is. From my own laptop I have an Intel Dual Band AC 7260 wireless card and this is the device ID:
    PCI\VEN_8086&DEV_08B2&SUBSYS_C2708086
    So find a string like that for each device and it will tell you the manufacturer and chipset of each device and let you figure out the driver to install. If you find multiple drivers for the same device look at the issue dates of the drivers and only install the newest. 
    If this is "the Answer" please click "Accept as Solution" to help others find it. 

  • How to find the info packages which have periodic data selections?

    Hi,
    is there any way we can find the list of infopackages that have data selection enabled only on time? ( say calendar day )
    if not, is there anyway to find the list of infopackages which has data selection?
    Thanks,
    Ravi

    Hi Ravi,
    what do you mean exactly?
    if you are in SE16 or SE11 in the selection screen, you can enable these fields for the selection via menu Setting / fields for selection; then mark FIELDNAME and IOBJNM.
    then enter OBJVERS = 'A'
    and e.g. IOBJNM = 0CALDAY
    or double click in the input box of IOBJNM and select "not equal to" and leave the input box empty in order to see all IPack with a selection on any IObj.
    hope this helps otherwise pls let me know
    Olivier.

  • How to find the T-codes that's in a Single Role & Composite Role??

    Hi all,
    Some of the user have authorization to particular t-codes. However single roles are not created for them.
    Now I need to assign authorization to that particular t-code to a new employee.
    Since the single role is not there, I do not know how to find if it is inside a composite role.
    Which table should I find all the t-codes that are assigned to a single role / composite role?
    pls help.
    Regards,
    Pri

    Rakesh Kulkarni wrote:>
    > Table AGRS_TCODES give the roles with their tcode assignment.
    Beware of AGR_TCODES, it only reports transactions entered into the role menu. If you query table AGR_1251 filtered on object S_TCODE you get the actual transaction authorizations.
    Besides that, authorizations are always in single roles, so if you cannot find them there there's no point in searching through the composites.

  • How to find the exact coloumn which fired the column value too large error

    Hi all
    I have a procedure which has a insert statement init.
    I have encountered an column value too large error in that procedure.
    I want to know exactly in which column the error has come
    Any ideas,
    Thanks
    Hari

    What is your insert statement? I get the exact column name here.
    SQL> create table sample1(col1 number(1), col2 number(3), col3 varchar2(2))
      2  /
    Table created.
    SQL> insert into sample1
      2  select 1, 2, 'A' from dual
      3  union
      4  select 1,333, 'B' from dual
      5  union
      6  select 2, 44, 'CCC' from dual
      7  /
    insert into sample1
    ERROR at line 1:
    ORA-12899: value too large for column "ETL_USER"."SAMPLE1"."COL3" (actual: 3,
    maximum: 2)
    SQL> Cheers
    Sarma.

  • How to find the exact time backup run

    Hi,
    I would like to know the specific date ( hour + minute) a backup was executed.
    For example the output of rman command : list backup of database;
    show Completion Time : 08-MAY-12 . I would like to get the exact time .
    Please advice.
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    33627   Incr 1  256.00K    SBT_TAPE    00:00:05     08-MAY-12    <<<<<<======
            BP Key: 33994   Status: AVAILABLE  Compressed: NO  Tag: TAG20120507T230332
            Handle: bzq1<bzq1_inc_889661:782699508:1>.dbf   Media:
      List of Datafiles in backup set 33627
      File LV Type Ckp SCN    Ckp Time  Name
      279  1  Incr 8042759810240 08-MAY-12 /bzq1/oracalls_2011_data2/y0211pricing_internet04.dbf
    .....Thanks

    I took level 0 rman database backup.
    The problem is that there are also level 1 backup which seems to be run at the very same time.
    For eample :
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    31891   Incr 1  3.00M      SBT_TAPE    00:01:25     07-MAY-12                               <<<<<=== level 1
            BP Key: 32278   Status: AVAILABLE  Compressed: NO  Tag: TAG20120507T230332
            Handle: bzq1<bzq1_inc_889062:782696160:1>.dbf   Media:
      List of Datafiles in backup set 31891
      File LV Type Ckp SCN    Ckp Time  Name
      103  1  Incr 8042758295621 07-MAY-12 /bzq1/oradata3/data06_ts_17.dbf
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    31892   Incr 0  1.18G      SBT_TAPE    00:00:34     07-MAY-12                                        <<<<<=== level 0
            BP Key: 32279   Status: AVAILABLE  Compressed: NO  Tag: TAG20120507T200203
            Handle: bzq1_full<bzq1_889069:782696225:1>.dbf   Media:
      List of Datafiles in backup set 31892
      File LV Type Ckp SCN    Ckp Time  Name
      528  0  Incr 8042758303427 07-MAY-12 /bzq1/oracalls_2011_data3/q311_calls_ts_10.dbf
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    31893   Incr 1  256.00K    SBT_TAPE    00:01:24     07-MAY-12                                              <<<<<=== level 1
            BP Key: 32280   Status: AVAILABLE  Compressed: NO  Tag: TAG20120507T230332
            Handle: bzq1<bzq1_inc_889065:782696196:1>.dbf   Media:
      List of Datafiles in backup set 31893
      File LV Type Ckp SCN    Ckp Time  Name
      154  1  Incr 8042758299495 07-MAY-12 /bzq1/oradata5/tc_deb_cred_tb_11.dbf
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    31894   Incr 0  1.36G      SBT_TAPE    00:01:55     07-MAY-12                                                    <<<<<=== level 0
            BP Key: 32281   Status: AVAILABLE  Compressed: NO  Tag: TAG20120507T200203
            Handle: bzq1_full<bzq1_889064:782696169:1>.dbf   Media:
      List of Datafiles in backup set 31894
      File LV Type Ckp SCN    Ckp Time  Name
      576  0  Incr 8042758296792 07-MAY-12 /bzq1/oracalls_2012_indx1/Q112_icalls_ts_07.dbf

  • How to input the right path that i need in miscellaneous files folder

    i have this sample code
    public class image extends JFrame
    private JLabel statusBar = new JLabel();
    private JMenuItem menuFileExit = new JMenuItem();
    private JMenu menuFile = new JMenu();
    private JMenuBar menuBar = new JMenuBar();
    private ImageIcon imagedoc = new ImageIcon(button.class.getResource("help.gif"));
    private JButton buttondoc = new JButton();
    private JPanel jPanel1 = new JPanel();
    it works but i used the pictures in the file that is already with the jframe.
    i want to add other image, i've already add them on my project but my problem is it is located to another folder. the miscelleanous files folder. if i used the same code, there are errors.
    i want to know the right path in how i can use those images in that folder.
    thanks in advance
    pls reply as soon as possible... i really need this one.

    Hello,
    I think the way to make your images/icons work in your jclient app,
    is to use such a code (test it):
    Class c = Class.forName("YourList.YourListWindowFrame");
    java.net.URL testt = c.getResource("create.gif");
    ImageIcon imageCreate = new ImageIcon(testt);
    if ( imageCreate != null)
    buttonCreate.setIcon(imageCreate);
    But this only works if you copy your icon (create.gif ) into your class directory
    YourList/classes/YourList. This is if your output directory in your project Settings
    is set to YourList/classes and the package is YourList.
    Even if your additional class path is set to YourList/classes and you try to set
    your additional class path to YourList/icons, your icons are not found.
    It looks like JDeveloper is only looking in your output sub directories.
    When you build your application, your gif files are "copied" to your output directory:
    YourList/classes.
    So, you will have to manually put the icons in your class/packages to make this work.
    The idea is that the image files need to be in the same dir as the Java
    class file that loads them. Therefore, the best way to do that is to have
    an ImageLoader class that is in the same folder as the images one:
    public class ImageLoader
    public ImageLoader()
    public ImageIcon getImageIcon(String name)
    return new ImageIcon(getClass().getResource(name + ".gif"));
    and would be called like this:
    mButtonButton.setIcon(imgl.getImageIcon("JButton"));
    http://otn.oracle.com/sample_code/products/jdev/jclient/jclient_binding_demo.html
    There you will find a jClient Component Demo that has this code you can use.
    (its a pretty cool and extensive demo ... he can look at files ImageLoader.java
    and StartFrame.java to see how that particular coding is done.)
    Reference:
    I don't how much help that can be for you, but here is an interesting Metalink note :
    Note 130302.1
    "Sample JSP Code: Directory and File Browser Implemented with Custom Tag Library"
    Regards,
    Steff

  • How to find the iAS edition that is installed?

    Hi,
    Customer is running v10.1.2 of iAS but not sure whether Java, Standard, or Enterprise Edition.
    What command can we use at command prompt or GUI to confirm this?
    Thanks.

    Do you have a question/problem?

  • How do I find the exact resolution of a photo I just took?

    I Can't figure out how to find the exact resolution of a photo I just took. How do I find this? from my phone

    Japib wrote:
    hi,
    did you get your question answered?
    Don't fish for points.  If the OP thinks you answered the question or were helpful, then they'll act accordingly.

Maybe you are looking for

  • Why do I have to use View Message Best alternative to view graphic?

    Often in the last 3 years, back to when I was using Leopard, Mail messages would appear in my mailbox which obviously contained graphics or pictures but which didn't show up in the email. (There would be paperclip icon in the right column.) By going

  • Itunes has stopped working in windows 8 when I try to access itunes store

    itunes seems to be working ok, but when i try to access the itunes store, i get a message that itunes has stopped working correctly and windows will close the program.  i have uninstalled and reinstalled itunes several times (the recommended long way

  • [HELP!] perl and unicode are not working

    I have a database that I know supports Unicode, I'm trying to read/write data using perl and I'm pulling my hair out! I have a table populated with some Unicode characters that I inserted using TOAD and this sql statement: insert into jay_test values

  • How to import java Classes in report Builder

    Hi, I want to import classes from a jar file into Report Builder (10 g). I'm not able to find my JAR in -- Program --> Import Java Classes option. I have set the classpath pointing to my JAR.

  • Recomnded setting for the client browser with oas

    Hi all, I am using webforms10g(9.0.4) with OAS(first release). In some sites the client can not open the reports(in rtf format)-the screen shows up for a second,and then disappear. In others the client get alert that allow him only to save the file(n