Script_!

hi,
how to create box for my invoice info window (, name, city...)
in sap script , and beckround grey.

Hi,
You need to you BOX command for this one
<b>Box <xpos> <ypos> <width> <height> <frame> <intensity></b>
The BOX command draws a box as per the specifications. The x y co-ordinates are for the upper left corner relative to the values in the position command
<b>BOX Command</b>
Syntax
/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
Effect: draws a box of the specified size at the specified position.
Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
XPOS, YPOS
Upper left corner of the box, relative to the values of the POSITION command.
Default: Values specified in the POSITION command.
The following calculation is performed internally to determine the absolute output position of a box on the page:
X(abs) = XORIGIN + XPOS
Y(abs) = YORIGIN + YPOS
WIDTH
Width of the box. Default: WIDTH value of the SIZE command.
HEIGHT
Height of the box. Default: HEIGHT value of the SIZE command.
FRAME
Thickness of frame.
Default: 0 (no frame).
INTENSITY
Grayscale of box contents as %.
Default: 100 (full black)
Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
Units of measurement: The following units of measurement may be used:
TW (twip)
PT (point)
IN (inch)
MM (millimeter)
CM (centimeter)
LN (line)
CH (character).
The following conversion factors apply:
1 TW = 1/20 PT
1 PT = 1/72 IN
1 IN = 2.54 CM
1 CM = 10 MM
1 CH = height of a character relative to the CPI specification in the form header
1 LN = height of a line relative to the LPI specification in the form header
/: BOX FRAME 10 TW
Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
<b>/: BOX INTENSITY 10
Fills the window background with shading having a gray scale of 10 %.</b>
/: BOX HEIGHT 0 TW FRAME 10 TW
Draws a horizontal line across the complete top edge of the window.
/: BOX WIDTH 0 TW FRAME 10 TW
Draws a vertical line along the complete height of the left hand edge of the window.
/: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
/: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
/: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
/: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
REgards
Sudheer1

Similar Messages

  • 10.5 Mail: Hide unread message counts of folders? (or, how backup all mail)

    Ok, this is a very confusing topic. I have connected Apple Care, and they understand what I'm trying to do, but say there is "no way" that it can be done. But I know there is a way so hopefully someone can help.
    First, this is what I'm asking for...then I'll explain why. I am looking for a way to "hide" the unread mail counts of a SPECIFIC FOLDER. (not the in box, not all messages, ONLY messages in ONE folder.)
    Here is why.... I finally got my mother using email with her Verizon DSL address in Mail.app. The problem is, she is one of those people that "deletes" just about every message she gets because she "doesn't need it anymore" But, there has been many times where she has deleted something that down the road might be needed - and therefore, it is lost. Sure, Time Machine is set up and could recover it, and there are other ways of getting things back, but is just too difficult, and those methods don't last forever.
    So here is what I did to solve this and make it easy - I set up a RULE in mail.app that takes every message and COPIES it to a folder called "BACKUP." Now, she can delete things from her in box when she is done with them (which will make her happy) but down the road if the message is ever needed again, it is just a search or even a SPOTLIGHT search away! Or, you could just open the "backup" folder and see an index of ALL the messages. So I had this setup for a while and it was great....but there was one problem.... The folder "backup" would count un-read messages. So after a while, she would go to check her mail and see that she has 50 unread messages! (only 1 of which was really un-read in her in box, but the other 49 where old copies in the backup folder.) So I then edited the rule and found an action to mark the message as read. Time goes by and then I realize that NOTHING in being marked read. So even real unread messages in the in box would immediately be marked as read and would not come up as bolded or with the blue dot. So that became annoying as it was hard to see what was new and what wasn't. So then I came up with this idea of setting a rule that all of her Verizon email would be forwarded to another account (I set up a gmail account for her) so that all I messages would be forwarded there. Then, I setup gmail to forwarded them back thinking it would be easy to setup a rule that says any message coming from "gmail account" would be moved to folder and marked as read. I then get a panic phone call saying..."my inbox keeps getting hundreds of unread messages...there all the same thing! I then log in to see that one new message was being pushed back and forth between Mail.app and gmail in an endless loop! so I had to shut the forwarding to stop that!
    So as you can see....this is very difficult, but yet the problem is so simple and should have an easy fix. All I want is a way to backup all incoming messages, and keep them stored in a folder that marks them as read.
    Could anyone PLEASE help me out with this? _Apple says there is no way to do this because of the limitations in the Rules that mail.app provides_....but it does give me the option to run an Apple Script. _AppleCare said that it could easily be done via an Apple Script_, but I have NO CLUE on how to even start that! Even the easy tutorials I tried left me confused.
    So - ANY ideas????
    Thank you SO much in advance for anyone that could help out!
    -Scott

    Sorry I am marking this solved, but it never was.
    The best thing that could be done is to rely on Time Machine, or forward all of your incoming email to another address.
    Apparently, there is no way to do what I asked. But there should be. So Apple, please fix this.
    Again, sorry I am marking it as solved.

  • Outer Join not giving correct result

    I have two tables=> tab_child_tmp (product_id,region,child_val,mst_product) and
    tab_master_tmp (master_product_id,region,master_val)
    tab_child_tmp.mst_product is the foreign key referencing tab_master_tmp.master_product_id.
    Currently the tables are populated with below values
    tab_child_tmp
    PRODUCT_ID REGION CHILD_VAL MST_PRODUCT
    Arm-01,     CAL,     100,     Arm-Master
    Arm-01,     DEL,     222,     Arm-Master
    Arm-01,     CHEN,     55,     Arm-Master
    Arm-02,     MUM,     69,     Arm-Master
    Arm-02,     DEL,     90,     Arm-Master
    tab_master_tmp
    MST_PRODUCT     REGION     MASTER_VAL
    Arm-Master     , CAL,     390
    Arm-Master     , DEL,     300
    Arm-Master, CHEN,     450
    Arm-Master, MUM,     600
    Now I want to display the result in the below format
    PRODUCT_ID REGION CHILD_VAL MASTER_VAL
    1. Arm-01     , CAL, 100,     390
    2. Arm-01     , DEL, 222,     300
    3. Arm-01     , CHEN, 55,     450
    4. Arm-01     , MUM, 0,     600
    5. Arm-02     , MUM, 69,     600
    6. Arm-02     , DEL, 90,     300
    7. Arm-02     , CHEN, 0,     450
    8. Arm-02     , CAL, 0,     390
    When I am running the below query it is not returning the above 4,7 and 8 rows. Can you please provide the correct sql to get the above desired output
    SELECT
    a.product_id,
    nvl(a.region,b.region) geo,
    nvl(a.child_val,0)match_val,
    b.master_val
    FROM
    tab_child_tmp a,
    tab_master_tmp b
    WHERE
    a.mst_product(+) = b.master_product AND
    a.region(+) = b.region
    Thanks

    Hi
    Thanks for the reply. Please find below the details.
    Oracle Version*
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Solaris: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Create Table Script_
    create table TAB_CHILD_TMP
    PRODUCT_ID VARCHAR2(50),
    REGION VARCHAR2(100),
    CHILD_VAL NUMBER,
    MST_PRODUCT VARCHAR2(50)
    create table TAB_MASTER_TMP
    MST_PRODUCT VARCHAR2(50),
    REGION VARCHAR2(100),
    MASTER_VAL NUMBER
    Insert Script_
    INSERT INTO tab_child_tmp VALUES ('Arm-01','CAL',100,'Arm-Master');
    INSERT INTO tab_child_tmp VALUES ('Arm-01','DEL',222,'Arm-Master');
    INSERT INTO tab_child_tmp VALUES ('Arm-01','CHEN',55,'Arm-Master');
    INSERT INTO tab_child_tmp VALUES ('Arm-Master','MUM',69,'PLC1');
    INSERT INTO tab_child_tmp VALUES ('Arm-Master','DEL',90,'PLC1');
    INSERT INTO tab_master_tmp VALUES ('Arm-Master','CAL',390);
    INSERT INTO tab_master_tmp VALUES ('Arm-Master','DEL',300);
    INSERT INTO tab_master_tmp VALUES ('Arm-Master','CHEN',450);
    INSERT INTO tab_master_tmp VALUES ('Arm-Master','MUM',600);
    INSERT INTO tab_master_tmp VALUES ('PLC1','MUM',199);
    INSERT INTO tab_master_tmp VALUES ('PLC1','DEL',299);
    INSERT INTO tab_master_tmp VALUES ('PLC1','CHEN',399);
    Expected output logic*
    Need to display the product value for each region along with the value of master product for the corresponding product and region. If a product doesn't belong to a particular region, but the corresponding master product is, then that value also needs to be displayed for that product and region with child value as zero.
    ie. for product Arm-01 there is no record in tab_child_tmp for region "MUM", but it's master product 'Arm-Master' has a record for region 'MUM' in tab master_tmp table. So in ouput there will be a record for product 'Arm-01' and region-'MUM' with child value as 0 and master value as 600.
    Expected Output*
    PRODUCT_ID ~~~ REG ~~~ CHILD_VAL ~~~ MASTER_VAL
    Arm-01 ~~~ CAL ~~~ 100 ~~~ 390
    Arm-01 ~~~ DEL ~~~ 222 ~~~ 300
    Arm-01 ~~~ CHEN ~~~ 55 ~~~ 450
    Arm-01 ~~~ MUM ~~~ 0 ~~~ 600
    Arm-MASTER ~~~ MUM ~~~ 69 ~~~ 199
    Arm-MASTER ~~~ DEL ~~~ 90 ~~~ 299
    Arm-MASTER ~~~ CHEN ~~~ 0 ~~~ 399
    Please help

  • Translation of Iris script into Darwin

    Hi,
    I am trying to install a utility called EGS_Windows in Darwin and it comes with an installation script for the old Iris system. This utility is normally installed in Linux, and I have the linux installer script as well. Anyhowm I try to run the script by:
    make -f Makefile.iris
    or
    make -f Makefile.Linux
    Both of these return a long error message that I have attached to see if any can give me any word of advice on how do I start translating the iris script into something Darwin can understand in order to install the utility.
    Thanks a lot
    macarabe
    PS:
    _Here is the MAKEFILE.IRIS script_:
    # This is /usr/people/egsnrc/EGS_Windows/RCS/Makefile.iris,v
    # Revision 1.1 last edited 2001-02-02 15:14:51-05
    # Last changed by bwalters and currently locked by
    # Makefile for EGS graphics software.
    # See the Makefile for Linux for a description of the variables
    CC= cc
    F77= f77
    INCLUDES= -I./ -I/usr/include/GL -I/usr/local/include
    LIBS= -lforms -lglut -lGL -lGLU -lXmu -lXext -lX11 -lm -ltiff
    LDFLAGS= -L/usr/local/lib -L/usr/lib
    EGSSOURCE= egs_main.c \
    palette.c \
    egs_input.c \
    egs_graphics.c \
    egs_labels.c \
    egs_printer.c \
    egs_history.c \
    egs_prefs.c \
    egs_prefacts.c
    EGSOBJS= \
    egs_main.o \
    egs_graphics.o \
    palette.o \
    egs_input.o \
    egs_labels.o \
    egs_printer.o \
    egs_history.o \
    egs_prefs.o \
    egs_prefacts.o
    TARFILES= \
    *.c examples *.h *.f \
    *.help *.map Makefile README Announcement CHANGES
    EGSWindows4.0.sgi.exe: $(EGSOBJS)
    $(F77) $(EGSOBJS) ${INCLUDES} ${LDFLAGS} ${LIBS} -g -o EGSWindows4.0.iris.exe
    egs_main.o: egs_main.c egs_guis.c egs_prefs.h
    ${CC} egs_main.c $(CFLAGS) $(INCLUDES) -g -c -o egs_main.o
    palette.o: palette.c
    ${CC} palette.c $(CFLAGS) $(INCLUDES) -g -c -o palette.o
    egs_graphics.o: egs_graphics.c egs_guis.c egsgfxglobals.h
    $(CC) egs_graphics.c $(CFLAGS) $(INCLUDES) -DMACHINETYPE=sgi -g -c -o egs_graphics.o
    egs_labels.o: egs_labels.c egs_guis.c egs_guis.h
    $(CC) egs_labels.c $(CFLAGS) $(INCLUDES) -g -c -o egs_labels.o
    egs_printer.o: egs_printer.c egs_guis.c egs_guis.h
    $(CC) egs_printer.c $(CFLAGS) $(INCLUDES) -g -c -o egs_printer.o
    egs_history.o: egs_history.c egs_guis.c egsgfxglobals.h
    $(CC) egs_history.c $(CFLAGS) $(INCLUDES) -g -c -o egs_history.o
    egs_prefs.o: egs_prefs.c egs_prefs.h
    $(CC) egs_prefs.c $(CFLAGS) $(INCLUDES) -g -c -o egs_prefs.o
    egs_prefacts.o: egs_prefacts.c egs_prefs.h egsgfxglobals.h
    $(CC) egs_prefacts.c $(CFLAGS) $(INCLUDES) -g -c -o egs_prefacts.o
    egs_input.o: egs_input.c
    $(CC) egs_input.c $(CFLAGS) $(INCLUDES) -g -c -o egs_input.o
    clean:
    touch $(EGSSOURCE)
    rm *.o
    tarfile:
    tar -cvf EGSWindows4.0.tar $(TARFILES)
    gzip *.tar
    _And here is the MAKEFILE.LINUX script_:
    # This is /usr/people/egsnrc/EGS_Windows/RCS/Makefile.Linux,v
    # Revision 1.3 last edited 2002-12-29 08:12:45-05
    # Last changed by dave and currently locked by
    # Makefile for EGS graphics software.
    # Change the cc, g77 to what you use to compile C and FORTRAN.
    CC= cc
    F77= g77
    # The following lines tell us where to find the vaious include files
    # needed by the code. Specifically EGS_Windows needs to know where to
    # find the files
    # 1) egs_guis.h, egs_prefs.h, egsgfxglobals.h, banner.xbm,
    # canflag.xpm, which are in ./
    # 2) math.h, stdio.h, stdlib.h, string.h, X11/StringDefs.h,
    # X11/keysym.h, X11/cursorfont.h, X11/extensions/XShm.h, X11/Xlib.h,
    # which at NRC are in /usr/include
    # 3) gl.h, glx.h, glu.h, glut.h, which at NRC are in /usr/local/include/GL
    # 4) forms.h, tiffio.h which at NRC are in /usr/local/include. The make
    # utility has this path on its default directory search so it needn't be
    # specified.
    INCLUDES= -I./ -I/usr/include -I/usr/X11R6/include -I/usr/include/GL -I/usr/X11R6/include/X11
    # The following are the libraries that EGS_Windows requires to link in
    # at the final compilation stage.
    LIBS= -lforms -lglut -lGL -lGLU -lXmu -lXext -lX11 -lm -ltiff
    #in one installation, one needed to add -lXi to the above(Henning Kiel)
    # The following are the directory search paths of the above listed
    # libraries. All of the above libraries can be found in these
    # directories at NRC; they should be changed or added to depending on
    # where they live on your directory tree.
    LDFLAGS= -L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib
    EGSSOURCE= egs_main.c \
    palette.c \
    egs_input.c \
    egs_graphics.c \
    egs_labels.c \
    egs_printer.c \
    egs_history.c \
    egs_prefs.c \
    egs_prefacts.c
    EGSOBJS= \
    egs_main.o \
    egs_graphics.o \
    palette.o \
    egs_input.o \
    egs_labels.o \
    egs_printer.o \
    egs_history.o \
    egs_prefs.o \
    egs_prefacts.o
    TARFILES= \
    *.c examples *.h *.f \
    *.help *.map Makefile README Announcement CHANGES
    EGSWindows4.0.Linux.exe: $(EGSOBJS)
    $(F77) $(EGSOBJS) ${INCLUDES} ${LDFLAGS} ${LIBS} -g -gldebug -o EGSWindows4.0.Linux.exe
    egs_main.o: egs_main.c egs_guis.c egs_prefs.h
    ${CC} egs_main.c $(CFLAGS) $(INCLUDES) -g -c -o egs_main.o
    palette.o: palette.c
    ${CC} palette.c $(CFLAGS) $(INCLUDES) -g -c -o palette.o
    egs_graphics.o: egs_graphics.c egs_guis.c egsgfxglobals.h
    $(CC) egs_graphics.c $(CFLAGS) $(INCLUDES) -DMACHINETYPE=linux -g -c -o egs_graphics.o
    egs_labels.o: egs_labels.c egs_guis.c egs_guis.h
    $(CC) egs_labels.c $(CFLAGS) $(INCLUDES) -g -c -o egs_labels.o
    egs_printer.o: egs_printer.c egs_guis.c egs_guis.h
    $(CC) egs_printer.c $(CFLAGS) $(INCLUDES) -g -c -o egs_printer.o
    egs_history.o: egs_history.c egs_guis.c egsgfxglobals.h
    $(CC) egs_history.c $(CFLAGS) $(INCLUDES) -g -c -o egs_history.o
    egs_prefs.o: egs_prefs.c egs_prefs.h
    $(CC) egs_prefs.c $(CFLAGS) $(INCLUDES) -g -c -o egs_prefs.o
    egs_prefacts.o: egs_prefacts.c egs_prefs.h egsgfxglobals.h
    $(CC) egs_prefacts.c $(CFLAGS) $(INCLUDES) -g -c -o egs_prefacts.o
    egs_input.o: egs_input.c
    $(CC) egs_input.c $(CFLAGS) $(INCLUDES) -g -c -o egs_input.o
    clean:
    touch $(EGSSOURCE)
    rm *.o
    tarfile:
    tar -cvf EGSWindows4.0.tar $(TARFILES)
    gzip *.tar

    macarabe wrote:
    Both of these return a long error message that I have attached to see if any can give me any word of advice on how do I start translating the iris script into something Darwin can understand in order to install the utility.
    You didn't include the error message. Porting a makefile from Linux shouldn't be too difficult. The only unusual thing I see is FORTRAN. You'll probably need a FORTRAN compiler to proceed.

  • Running a job repetitively

    Hi,
    We need to run a script (SCRIPT_A) every hour, every workday from 14:00 to 20:00. This script is in a job chain (GLOBAL_JOBCHAIN) which is executed every workday too.
    We use "schedule parameters" and "timewidows" to schedule scripts between 14h and 16h, then 15h and 16h, etc.
    Global_Jobchain
      Step 1
         <some task(s) that need to run first>
      Step 2
         SCRIPT_A
             schedule parameter time window = PARTITION.FROM_1400
      Step 3
         SCRIPT_A
             schedule parameter time window = PARTITION.FROM_1500
      Step 4
         SCRIPT_A
             schedule parameter time window = PARTITION.FROM_1600
      Step X
         <some task(s) that need to run afterwards>
    We have have a problem when the SCRIPT_A (launched in the step 2) running from 14h to 16h30.
    We have 2 cases :
    1) With a precondition on the jobchain step, steps 3 and 4 are "skipped"
    2) With no precondition on the jobchain steps, step 3 is "scheduled" (wait 15h at the next day), and step 4 stay in "chained".
    The process we want to obtain is step 3 "skipped" (step 3 is executed only between 15h et 16h), but step 4 is executed at 16h30(because his timewindows is between 16h and 17h)
    Thank you for your help,

    Hi,
    The reason the step 3 is waiting until the next day is that step 2 runs so long that the time window for step 3 is closed, and the next allowed execution is for the next day.
    So you could combine the calls to SCRIPT_A in one step, each still with their own time window just as they have now.
    Then, if the first call runs too long, the second call will start in parallel with it at 15:00, so in this setup it is assumed that that is OK.
    If that is not OK, so the jobs should not run in parallel, then the situation with the preconditions seems the correct behaviour: step 2 runs so long that step 3 can not be executed => skipped, maybe even also step 4 depending on how long step 2 runs.
    Regards,
    Anton.

  • Extract data from Essbase - MDX/Report Script

    Hi,
    I was trying to extract data from an ASO cube using both MDX and Report Script approaches.
    I liked the MDX_ method since i could specify:
    - level zero members with values for the Revenue measure.
    SELECT
    {[Revenue]} on columns,
    NON EMPTY{[Accounts].Levels(0).Members} on AXIS(1),
    NON EMPTY {[Accounts2].Levels(0).Members} on AXIS(2),
    NON EMPTY {[Accounts3].Levels(0).Members} on AXIS(3),
    NON EMPTY {[Accounts4].Levels(0).Members} on AXIS(4)
    FROM CUBER.CUBER
    Problem:_ For other measure, it shows many #Missing at Cost measure field. Not sure how it happened. I tried to use:
    SELECT
    {[Revenue]} on columns,
    NON EMPTY{ FILTER ([Accounts].Levels(0).Members}, [Revenue] <> Missing) on AXIS(1),
    NON EMPTY {[Accounts2].Levels(0).Members} on AXIS(2)
    FROM CUBER.CUBER
    But still does not solve the issue.
    Then i tried to use Report Script_ approach. However, it is not simple to declare that i want all level zero members within dimension Account1 (which has 5 level hierarchy, with level zero members almost each level) and only entries that has values for my measure "Revenue" or "Cost"

    Hi Ye
    For extracting data from Essbase you need to have either Calc script or Report script and you have to use LKM Essbase(Data) to SQL as your KM
    For loading data into SQL server you can use IKM SQL Append or IKM SQL incremental update.
    When you use Essbase as your source you have to use LKM ESSBASE (MetaData) to SQL as your KM.
    So all sources would have LKMs (as KMs) and all targets have IKM as KMs.
    -app

  • UCCX Get Calling Party info

    Hi Expert,
    I've the below requirement, caller_X calling in to the main line/script_A from the PSTN, the script routed the calls to the agent_A. Here the calling party is caller_X, and the called party is script_A (mainline number). When the agent_A completed the calls, he/she would like to transfer the current call to another CTI_RP/script_B, which handled by UCCX as well.
    In such cases, the calling party should will display as agent_A or the caller_X? If i want to retain the calling party as caller_X, can i use the "Get Call Contact Info" calling party setting? and if i want to display the agent_A who transfer the call, can i use the "last redirected numberd"
    TIA

    Ok, I think I understand what you are saying.  Here is what I think, in my own words, but copied from another conversation I had with someone who e-mailed me directly about the same topic.
    It turns out that a transfer is consultative, meaning that, the Agent truly is the one calling the script, up until the point at which they complete the transfer.You are simply checking the Calling Number too soon in the script not giving the transfer enough time to complete.
    To prove that this is actually the case in your situation, you could simply create a new script to do test transfer into and it could look like this:
    Variables
    String calling_number = ""
    Script
    Start
    Accept (--Triggering Contact--)
    calling_number = Get Call Contact Info (--Triggering Contact--, Calling Number)
    Play Prompt (--Triggering Contact--, S[calling_number])
    Play Prompt (--Triggering Contact--, S[321])
    calling_number = Get Call Contact Info (--Triggering Contact--, Calling Number)
    Play Prompt (--Triggering Contact--, S[calling_number])
    End
    When you go to setup your transfer, you will hear the system play back your Agent phone number.  Then you will hear "three, two, one".  You need to complete the transfer before the count down ends.  If you do, then your caller will hear the second calling number playback which should be their own.  However, if you wait all the way through count down and the second playback you will hear your Agent number twice.  Note that the key thing in the script, is that I am "asking" for the calling number again with the Get Call Contact Info step after the transfer completes.You have a few options here:
    1. Train your Agents to transfer quicker2. Put a delay in the beginning of the script after the answer but before the Get Call Contact Info step3. Move the Get Call Contact Info step further down in the script closer to where you need to use it
    Hope that helps.  Let me know if you need more help, and I'll see what I can do.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

Maybe you are looking for

  • IOS 8.1.2 will not update on my iPad and my apps are now no longer connecting to the internet

    My iPad will not update with iOS 8.1.2 and now my apps won't open either.

  • APP check printing issue

    hi when i run APP the system is creating check and making payment but in printout i say the english words eveything is coming fine <b> but the company specific date like vendor name, company code name open item details i.e the line items and the amou

  • Getting date and time format through RIDC call

    Hello, i want to set date and time features to my document , how can i get the date and time from RIDC call Regards Mayur Mitkari

  • Backup photos to DVD (Not Time Machine)

    Hi, I am running Time Machine and backing up locally. What I am interested in doing is backing up my photos to DVDs and storing the DVDs off site. Is there any easy & free way to do that? I know I can make a burn folder and do it by hand. What I am l

  • Help Me With My First Laptop

    I am new to Adobe Premium Production and new to buying my first laptop for editing.  Can anyone give me piece of mind by telling me if this systems specs should work well with Adobe?  I know the specs say 7200 rpm Hard Drive but can I buy an external