Pls send me a report of sd using sprat and vbeln

pls

tables: vbak,vbap,vbfa,mast,stpo,mara,makt,kna1.
data: begin of it_temp occurs 0,
         vbeln type vbak-vbeln,      "Sale Order No
         audat type vbak-audat,      "Sale Order Date
         vdatu type vbak-vdatu,      "Requested Delivery Date
         posnr type vbap-posnr,      "Item Number
         matnr type vbap-matnr,      "Material Number
         arktx type vbap-arktx,      "Mat. Desc
         kunnr type vbak-kunnr,      "Customer
         kwmeng type vbap-kwmeng,    "Sale Order Qty
         netwr type vbap-netwr,      "Sale Order Net Price
         werks type vbap-werks,      "Plant
         vgbel type vbap-vgbel,      "Delivery Doc. Num.
         mbdat type vbep-mbdat,      "Assured Delivery Date
         rfmng type vbfa-rfmng,      "Delivery Qty
         erdat type vbfa-erdat,      "Delivery Date
       end of it_temp.
data: begin of it_pending occurs 0,
         vbeln type vbak-vbeln,      "Sale Order No
         audat type vbak-audat,      "Sale Order Date
         vdatu type vbak-vdatu,      "Requested Delivery Date
         posnr type vbap-posnr,      "Item Number
         matnr type vbap-matnr,      "Material Number
         arktx type vbap-arktx,      "Mat. Desc
         kunnr type vbak-kunnr,      "Customer
         kwmeng type vbap-kwmeng,    "Sale Order Qty
         netwr type vbap-netwr,      "Sale Order Net Price
         werks type vbap-werks,      "Plant
         vgbel type vbap-vgbel,      "Delivery Doc. Num.
         mbdat type vbep-mbdat,      "Assured Delivery Date
         rfmng type vbfa-rfmng,      "Delivery Qty
         erdat type vbfa-erdat,      "Delivery Date
       end of it_pending.
internal able to hold executed sale order data.
data: begin of it_exec occurs 0,
         vbeln type vbak-vbeln,
         audat type vbak-audat,
         vdatu type vbak-vdatu,
         posnr type vbap-posnr,
         matnr type vbap-matnr,
         arktx type vbap-arktx,
        idnrk type stpo-idnrk,
         kunnr type vbak-kunnr,
         name1 type kna1-name1,
         kwmeng type vbap-kwmeng,
         netwr type vbap-netwr,
         vgbel type  vbap-vgbel,     "Delivery Doc. Num.
         mbdat type vbep-mbdat,      "Assured Delivery Date
         rfmng type vbfa-rfmng,      "Delivery Qty
         erdat type vbfa-erdat,      "Delivery Date
         diff_qty type vbfa-rfmng,
         diff_val type konv-kwert,
         lead_time type p,
         delay type p,
     end of it_exec.
internal able to hold pending sale order data.
data: begin of it_pend occurs 0,
         vbeln type vbak-vbeln,
         audat type vbak-audat,
         vdatu type vbak-vdatu,
         matnr type vbap-matnr,
         arktx type vbap-arktx,
         idnrk type stpo-idnrk,
         kunnr type vbak-kunnr,
         name1 type kna1-name1,
         kwmeng type vbap-kwmeng,
         netwr type vbap-netwr,
         vgbel type  vbap-vgbel,     "Delivery Doc. Num.
         mbdat type vbep-mbdat,      "Assured Delivery Date
         delay type p,
      end of it_pend.
data: total_netwr type konv-kwert.
data : begin of it_vbrk occurs  5,
vbeln type vbrk-vbeln,
end of it_vbrk.
data: begin of it_vbfa  occurs 5,
vbelv type vbfa-vbelv,
end of it_vbfa.
data : begin of t_vbak occurs 5,
vbeln type vbak-vbeln,
end of t_vbak.
Selection Screen
select-options: r_vbeln for vbak-vbeln no intervals no-extension.
select-options: r_kunnr for vbak-kunnr no intervals no-extension.
parameters: p_werks type vbap-werks obligatory.
select-options: r_date for vbak-erdat.
To find the HALB Material Number for Corresponding Material Number for Pending orders
   clear: mast,stpo,stpo,makt.
   select single stlnr from mast into mast-stlnr where matnr = it_temp-matnr and werks = it_temp-werks.
   select idnrk rekrs from stpo into (stpo-idnrk, stpo-rekrs) where stlnr = mast-stlnr.
     select single mtart from mara into mara-mtart where matnr = stpo-idnrk and mtart = 'HALB'.
     if sy-subrc = 0.
       exit.
     else.
       clear: stpo, makt.
     endif.
   endselect.
   if stpo-idnrk ne ' '.
     it_pend-idnrk = stpo-idnrk.
   else.
     it_pend-idnrk = it_temp-matnr.
   endif.
End of HALB Material Number find.
*select a~posnr
      a~matnr
      a~arktx
      a~kwmeng
      a~netwr
      a~werks
      a~vgbel
      b~vbeln
      b~kunnr
      b~audat
      bvdatu into corresponding fields of table it_temp from ( vbap as a join vbak as b on avbeln = b~vbeln )
                                                              where b~erdat in r_date
                                                                and b~kunnr in r_kunnr
                                                                and b~vbeln in r_vbeln
                                                                and a~werks = p_werks
                                                                and b~auart in ('ZOR1','ZOR3','ZTM').
select vbeln from vbrk into corresponding fields of table it_vbrk where fkdat in r_date.
if not it_vbrk[] is initial.
select vbelv into corresponding fields of table it_vbfa  from vbfa for all entries in it_vbrk where vbeln = it_vbrk-vbeln and vbtyp_v = 'C'.
endif.
sort it_vbfa by vbelv.
delete adjacent duplicates from it_vbfa comparing all fields.
select a~posnr
       a~matnr
       a~arktx
       a~kwmeng
       a~netwr
       a~werks
       a~vgbel
       b~vbeln
       b~kunnr
       b~audat
       b~vdatu
       into corresponding fields of table it_temp from ( vbap as a join vbak as b on a~vbeln = b~vbeln )
                                                               where b~kunnr in r_kunnr
                                                                 and b~vbeln in r_vbeln
                                                                 and a~werks = p_werks
                                                                 and b~auart in ('ZOR1','ZOR3','ZTM').
loop at it_temp.
read table it_vbfa with key vbelv = it_temp-vbeln.
if sy-subrc = 0.
else.
move : it_temp to it_pending.
append it_pending.
delete it_temp.
endif.
endloop.
select vbeln from vbak into corresponding fields of table t_vbak where kunnr in r_kunnr and erdat in r_date and vbeln in r_vbeln.
loop at it_pending.
read table t_vbak with key vbeln = it_pending-vbeln.
if sy-subrc = 0.
else.
delete it_pending.
endif.
endloop.
loop at it_pending.
move-corresponding it_pending to it_temp.
append it_temp.
endloop.
To segregate Executed Orders from Pending Orders
loop at it_temp.
  on change of it_temp-vbeln.
    select single name1 from kna1 into kna1-name1 where kunnr = it_temp-kunnr.
  endon.
  select rfmng erdat from vbfa into corresponding fields of vbfa where vbelv = it_temp-vbeln
                                                                      and posnv = it_temp-posnr
                                                                      and vbtyp_n = 'J'.
    it_temp-rfmng = it_temp-rfmng + vbfa-rfmng.
    it_temp-erdat = vbfa-erdat.
  endselect.
Executed Orders
  if sy-subrc = 0.
    move-corresponding it_temp to it_exec.
    it_exec-name1 = kna1-name1.
    append it_exec.
    clear it_exec.
  else.
Pending Orders
    move-corresponding it_temp to it_pend.
    it_pend-name1 = kna1-name1.
    append it_pend.
    clear it_pend.
  endif.
endloop.
loop at it_exec.
  it_exec-diff_qty = it_exec-kwmeng - it_exec-rfmng.
  if it_exec-kwmeng is not initial.
    it_exec-diff_val = it_exec-diff_qty * ( it_exec-netwr / it_exec-kwmeng ).
  endif.
  if it_exec-audat is not initial and it_exec-erdat is not initial.
    it_exec-lead_time = it_exec-erdat - it_exec-audat.
  endif.
  if it_exec-vdatu is not initial and it_exec-erdat is not initial.
    it_exec-delay = it_exec-erdat - it_exec-vdatu.
  endif.
  modify it_exec.
  clear it_exec.
endloop.
loop at it_pend.
  if it_pend-audat is not initial and it_pend-vdatu is not initial.
    it_pend-delay = sy-datum - it_pend-audat.
  endif.
  modify it_pend.
  clear it_pend.
endloop.
sort it_exec ascending by vbeln.
sort it_pend ascending by vbeln.
**************************************************Report Write************************************************************
skip.
******Executed Customer Orders
format color 7 intensified off.
if p_werks = '1002'.
  write: /'Executed Customer Orders'.
elseif p_werks = '1001'.
  write: /'Samples Dispatch Details'.
endif.
format color 1.
uline.
write: /2 'Customer Name' color 4 , 35 'Order No.' color 4, 47 'Order Date' color 4, 59 'FERT No.' color 4, 72 'FERT Name' color 4,
       111 'Order Volume' color 4,126 'Order Value' color 4, 140 'Req.Delv.Date' color 4,
       157 'Act.Delv.Date' color 4,177 'Act.Vol.Dispatched' color 4, 199 'Difference Kg' color 4, 218 'Difference INR' color 4,
       235 'Lead Time' color 4, 250 'Delay' color 4, 265 ''.
write: /50 '( a )' color 4, 144 '( b )' color 4, 161 '( c )' color 4, 235 '( c - a )' color 4, 250 '( c - b )' color 4, 265 ''.
uline.
format color 2.
loop at it_exec.
  format color 2.
  at new vbeln.
    read table it_exec index sy-tabix.
    write: /2 it_exec-name1,
            35 it_exec-vbeln,
            47 it_exec-audat,
            265 ''.
  endat.
  write: /59 it_exec-matnr,
          72 it_exec-arktx,
         111 it_exec-kwmeng left-justified,
         126 it_exec-netwr left-justified,
         140 it_exec-vdatu,
        157 it_exec-mbdat,
         157 it_exec-erdat,
         177 it_exec-rfmng left-justified,
         199 it_exec-diff_qty left-justified,
         218 it_exec-diff_val left-justified,
         235 it_exec-lead_time left-justified,
         250 it_exec-delay left-justified,
         265 ''.
  at end of vbeln.
    sum.
    format color 3.
    write: /95 'SUM:',
            111 it_exec-kwmeng left-justified,
            126 it_exec-netwr left-justified,
            265 ''.
  endat.
  at last.
    format: color 3 intensified on.
    sum.
    write:/87 'Overall SUM:',
          111 it_exec-kwmeng left-justified,
          126 it_exec-netwr left-justified,
          265 ''.
  endat.
endloop.
********Pending Customer Orders
skip 3.
format color 7 intensified off.
if p_werks = '1002'.
  write: /'Pending Customer Orders'.
elseif p_werks = '1001'.
  write: /'Pending Samples Dispatch'.
endif.
format color 1.
uline.
write: /2 'Customer Name' color 4, 35 'Order No.' color 4, 47 'Order Date' color 4, 59 'FERT No.' color 4, 72 'FERT Name' color 4,
       111 'Order Volume' color 4, 126 'Order Value' color 4, 140 'Req.Delv.Date' color 4,  156 'Delay as of Today' color 4,
       173 ' '.
format color 2.
uline.
loop at it_pend.
  format color 2.
  at new vbeln.
    read table it_pend index sy-tabix.
    write: /2 it_pend-name1,
            35 it_pend-vbeln,
            47 it_pend-audat,
            173 ''.
  endat.
  write: /59 it_pend-matnr,
          72 it_pend-arktx,
         111 it_pend-kwmeng left-justified,
         126 it_pend-netwr left-justified,
         140 it_pend-vdatu,
        157 it_pend-mbdat,
         156 it_pend-delay left-justified,
         173 ''.
  at end of vbeln.
    sum.
    format color 3.
    write: /100 'SUM:',
            111 it_pend-kwmeng left-justified,
            126 it_pend-netwr left-justified,
            173 ' '.
  endat.
  at last.
    sum.
    format color 3 intensified on.
    write:/92 'Overall SUM:',
          111 it_pend-kwmeng left-justified,
          126 it_pend-netwr left-justified,
          173 ' '.
  endat.
endloop.
<b>Reward points if helpful,</b>
Jinesh

Similar Messages

  • Pls Send Some Good Doc's on Business Area and Cost Center

    Dear Gurus,
    <b>Pls Send Some Good Doc's on Business Area and Cost Center.
    My mail id is [email protected]</b>
    Its Very Urgents.
    Regrds
    Mahesh

    Hello
    Check these help links
    For Business area:
    http://help.sap.com/erp2005_ehp_02/helpdata/en/5f/1fac7c4aee11d189740000e8322d00/frameset.htm
    For Cost Center
    http://help.sap.com/erp2005_ehp_02/helpdata/en/0b/2a623f507d11d18ee90000e8366fc2/frameset.htm
    Reg
    *assign points if useful

  • Pls send me oracle 10g xml desktop publisher ebook and software.

    can any body send me oracle 10g xml desktop publisher ebook and software.
    Thankin you in advance.

    Hi,
    It looks like it is trying to create an account for SAP and getting error. It's permission problem. You may want to continue installation with administration previliges.
    or try restart.
    Thanks,

  • Passing parameters to a report via URL : using 'like' and '%' ?

    Hi,
    I have created a report by sql query, and I'm calling it by the means of a URL with a '.show' extension, and then I can specify as many parameters as I wish.
    In my case I use a string as a bind variable ans I would like to pass it as a condition to render the report.
    Thus I tried to use that :
    "[call_url].show?p_arg_names=_[...]_cond&p_arg_values=like&p_arg_names=_[...]_[bind_variable]&p_arg_values=[xxx]"
    To be able to use it I have to add a '%' at the end of it, so that I get all the rows beginning with the letters I specified, ie 'xxx' could be 'A%', so that I get all the rows beginning with an A.
    The problem is that this character is not effective. I succeeded with the '_' character, but it brings a limitation to the length of the field, and it's not what I want. I also tried this : "...p_arg_values=A'&'%'", but I didn't manage to make it work !
    Any idea appreciated !
    Regards,
    gael.

    Hi Gael,
    your URL is made up of :
    [ProcedureName]?[parameter1]=[value1]&[parameter2]=[value2]
    creating URLs like this can have problems especially with spaces and punctuation.
    the answer is a FORM
    the following will create a hidden form :
    FORM ACTION="[ProcedureName]" METHOD="POST" name="F1"
    INPUT type="HIDDEN" name="[parameter1]" value="[value1]"
    INPUT type="HIDDEN" name="[parameter2]" value="[value2]"
    /FORM
    you can set the values in the form using:
    document.F1.[parameter1].value="abc123%%&&$$!";
    document.F1.submit();
    will submit the form and the PL/SQL procedure should receive the text as it was contained in the form.
    the only characters that can now cause problems are :
    " as it delimits the field.
    ' as it may cause problems in PL/SQL.
    \ as it is a special character.
    Regards Michael

  • Can't send mail since downloading Maverick.  Using comcast and can send and receive via their website

    I have tried all the standard troubleshooting suggestions.

    Hi Han71, and a warm welcome to the forums!
    Start with these three, check SpamCop or SpamHaus to see if your IP is there...
    http://spamcop.net/bl.shtml
    http://www.spamhaus.org/lookup.lasso
    http://www.spamhaus.org/zen/
    Sometimes an ISP will bloc a whole other ISP too, if it's the source of too much SPAM.
    Might also see this post by Gallomimia...
    http://discussions.apple.com/message.jspa?messageID=9465359#9465359

  • Pls Send Hardware Requirements of EP6.0

    Hi,
      I am New for EP, i don't know the requirements, pls send Hardware requirments i.e RAM, HARDDISK SPACE AND VERSIONS etc.
    Regards,
    Jagadish Babu Kanikanti.

    Hi Jagadish
    Is it SR1 installation that you are carrying out or a Pre-SR1 installation?
    There are installation guides available on the Service Marketplace based on your installation type, Database and operating system. Its a good practice to go through these guides before begining your installation.
    Here's the link where you can find these guides.
    http://service.sap.com/instguides -> SAP NetWeaver -> Release 04 -> Installation.
    You can find the installation guides for all the NetWeaver components there. You will need a user Id to login to the site.
    If you are using Windows Operating system on Oracle database, the hardware requirements are as follows.
    1. Suitable backup system
    2. Minimum disk space: 4 GB
    3. Minimum RAM: 1 GB
    4. Virtual Memory: for a 32 bit -> IGB plus 3 times RAM
    Software requirements for Windows OS and Oracle Database:
    1. Oracle 9.2.0 for Windows
    2. Current Patch Set and hotfix if available
    Windows Version (Any one of the following)
    1. Windows 2000 Server
    2. Windows 2000 Advanced Server
    3. Windows Server 2003 Enterprise Edition.
    Hope that helped
    Best Regards
    Priya

  • Pls Send Usefull UNIX /LiNUX commands in SAP?

    hi,
    pls send me anybody what are the useful UNIX/LINUX  commands in SAP.
    regards,
    reddy

    Hi brother,
      the following commands will help you do it and practice it  give rewards....
    Copy files one system to another system in network
    #mount -t nfs <IPAddress> : /<Source Directory> /<Target Directory>
    To Display Clock
    #xclock
    Check Process Details:
    #top
    #ps -ef | grep user/process/servicename
    Check Memory Size:
    #free
    Check Disk space:
    #df -k (in %)
    #df -h (in GB)
    Check Subdirectory files
    #du /usr

  • FI Reports using ABAP and their Related Tables

    Hi can anyone tell me some of the commonly developed reports from FI using ABAP and their related Tables.
    Thank You

    You can find the details about the FI module here
    http://www.sap-img.com/sap-fi.htm
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • How to run report from form using run_object_report

    I AM USNING FORMS9I/REPORTS 9I , HOW TO RUN REPORT FROM FROM USING RUN_REPORT_OBJECT AND HOW
    TO PASS PARAMETER AS WE DID IN RUN_REPORTS PLEASE HELP ME

    here an example !
    I hope this example you can use it
    PROCEDURE pr_reporte IS
    BEGIN
    DECLARE
         repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status Varchar2(20);
    d1 DATE;
    d2 DATE;
    BEGIN
         d1 := :GLOBAL.DIA_INI;
         d2 := :GLOBAL.DIA_FIN;
         repid := find_report_object('rep_lab02');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'p_fec_uno='||to_char((add_months(last_day(d1),-1) +1),'DD/MM/YYYY')||' '||
         'p_fec_dos='||to_char(d2,'DD/MM/YYYY'));
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := report_object_status(v_rep);
         WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
              rep_status := report_object_status(v_rep);
         END LOOP;
         IF rep_status = 'FINISHED' then
              WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver','_blank');
         ELSE
              ventana('E','error reporte no encontrado','S');
         END IF;
    END;
    END;
    The 'rep_lab02' is the name of the report that you give in the node reports
    p_fec_uno and p_fec_dos they are the parameters in the report
    repserver is the name of server created with rwserver
    Greetings

  • Pls send me PDF'S for Integration Repository and Mapping

    Hello All,
    I need to make presentation.
    Pls send me different PDF'S for Integration Repository and Mapping
    Regards

    Henry,
    I hope this will help you.
    http://help.sap.com/bp_bpmv130/Documentation/Operation/MappingXI30.pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d046c490-0201-0010-84b6-9df523cbca31
    raj.

  • I would like to execute an existing BW report from Excel (using VBA).

    I would like to execute an existing BW report from Excel (using VBA) and download the results into Excel.  I understand that there is an Excel Add-In which (I believe) should allow me to do this.  I am an experienced user of Excel / VBA but I have virtually no experience with SAP.  If someone could point me to any source of information or specific instructions I would be extremely appreciative.  I've done multiple searches on the internet but everything I find seems to assume more knowledge of SAP and SAP acronyms than I possess. 

    Paul,
    If your company (or your client's company) has an SAP license (I assume this is the case, since there would be no other reason for you to want to access an SAP system using Excel), there is a person in your company who can request an ID for you.  It is called a SAP Service Marketplace userid, more commonly called an 'S' number.  This person in your company is usually a Basis Administrator.  Go to your SAP Basis team and ask them for access to Service Marketplace.
    The common solution for your Excel analysis problem is to install the Bex Analyzer on your PC.  You will need these same guys (Basis Team) to help you with getting the required SAP access, and to install the associated SAP software onto your PC.
    In the meantime, here is some bedtime reading for you.
    Analysis &amp;amp; Reporting: BEx Analyzer - Business Intelligence - SAP Library
    Best Regards,
    DB49

  • Scheduling a background job using Job_Submit and Job_Close FM

    Hi Guys,
                  I am calling a report in background using Job_Submit and Job_Close FM's.
    I am not providing start time and date in the Job_close FM, in this case, when the job will be scheduled to start.
    Even after an hour, job status is still scheduled.
    I am not exporting variant, since I am using memory ID.
    Thanks
    Edited by: sapgeek007 on May 11, 2009 4:11 AM

    In Job_close fm use the parameter 'STRTIMMED'
    CALL FUNCTION 'JOB_CLOSE'
      EXPORTING
        jobcount                          = LV_NUMBER
        jobname                           = LV_NAME
        STRTIMMED                         = 'X'
    EXCEPTIONS
       CANT_START_IMMEDIATE              = 1
       INVALID_STARTDATE                 = 2
       JOBNAME_MISSING                   = 3
       JOB_CLOSE_FAILED                  = 4
       JOB_NOSTEPS                       = 5
       JOB_NOTEX                         = 6
       LOCK_FAILED                       = 7
       INVALID_TARGET                    = 8
       OTHERS                            = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    That would start the background job immediately.
    Regards,
    Deepak

  • Adding #FROM_ROLE TO wf_notifications.send is giving error :active autonomous transaction detected and rolled back

    Hello all,
    I'm using the below code to send the notication using plsql package. It works fine and sends notification if i don't use '#FROM_ROLE' and 'SENDER' attributetext in the code. If i use them, i get the error message. Please advice
        L_MESSAGE_TYPE := 'WFMAIL';
        L_MESSAGE_NAME := 'OPEN_MAIL_FYI';
        L_NID          := WF_NOTIFICATION.SEND(UPPER(P_USER_NAME),
                                               L_MESSAGE_TYPE,
                                               L_MESSAGE_NAME);
        WF_NOTIFICATION.SETATTRTEXT(L_NID, 'SUBJECT', P_SUBJECT);
        WF_NOTIFICATION.SETATTRTEXT(L_NID, 'BODY', P_TEXT_BODY);
        WF_NOTIFICATION.SETATTRTEXT(L_NID, '#FROM_ROLE', 'USERNAME1'); 
        WF_NOTIFICATION.SETATTRTEXT(L_NID, 'SENDER', 'USERNAME1');
        WF_NOTIFICATION.DENORMALIZE_NOTIFICATION(L_NID);
    Thanks
    KK

    Hi KK,
    What error you are getting when you set the attributes '#FROM_ROLE' and 'SENDER'?
    when you set '#FROM_ROLE' then  Wf_Notification.Denormalize_Notification(nid) API will be called.  If the attribute is 'sender' then event 'oracle.apps.wf.notification.setattrtext wll be rasied.

  • Problem in sending mail from REPORT BUILDER...HELP ...PLS ....URGENT

    Hi All,
    I added the mailserver part in the rwbuilder.conf file.This is how it looks
    <pluginParam name="mailServer">smtp.xxx.com</pluginParam>
    The smtp server of our company is working fine.
    Now when i am sending mail frm report builder i am getting the error.
    Pls tell me .....
    Do i have to configure any other file?
    Should the smtp server be running in my local machine?WHAT IS THE SOLUTION ...FOR THIS PROBLEM?
    Please someone give me some guidance..
    regards,
    ashok

    Hi,
    Pls give some idea ......
    your reply will be greatly appreciated.
    regards,
    ashok

  • Illustrator keeps quitting-notice others have had similar issues, not resolved-so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help-come on-someon

    Illustrator keeps quitting…notice others have had similar issues…so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help…come on…someone has to have an answer…HELP Pleeeeease

    <moved from Adobe Creative Cloud to Illustrator>
    reset your preferences -
    acrobat:  http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7feb.w .html
    adobe media encoder: https://forums.adobe.com/thread/1713540
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    dreamweaver:  https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    lightroom: https://helpx.adobe.com/lightroom/help/setting-preferences-lightroom.html
    muse (mac): https://forums.adobe.com/thread/1246022?tstart=0
    photoshop:  https://forums.adobe.com/thread/375776
    photoshop elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html,  http://www.photokaboom.com/photography/learn/Photoshop_Elements/troubleshooting/1_delete_p references_file.htm
    premiere elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html
    premiere pro: http://www.mediacollege.com/adobe/premiere/pro/troubleshooter/trash-preferences.html
    if that fails, uninstall, clean (http://www.adobe.com/support/contact/cscleanertool.html) and reinstall

Maybe you are looking for

  • How do I add multiple fills more accordingly?

    I sometimes like to add a little more depth into my drawings than having single paths be of a single fill. In the illustration below, for example, I have two balls drawn. The first was made the way I was taught. A stroke and fill - all consisting of

  • Suggestions For A Reporting System

    Hi, I'm currently working a nefty Swing application and was looking for ideas as to how to develop a robust, extensible reporting system. I would appreciate any all suggestions to make the whole system work as efficiently as possible, with little dif

  • Looping part of a QT movie in keynote

    Hi, I want to be able to have a movie in keynote that plays the whole movie and once it reaches the end it jumps back to a certin point in the movie (not the begining) and plays that part over and over till i change the slide, so the effect is, for e

  • Unicode error in statement Describe Field

    Hi, There is a statement in my program which is giving Unicode error. DESCRIBE FIELD t_mara-mfrpn LENGTH len. Here t_mara is internal table with header line. Unicode error which I am getting is 'In Unicode, Describe Length can only be used in Byte mo

  • Content Repository vs Archive Link

    We are using a third party content repository to store SRM attachments. We configured this through OACT OAC0 transactions. We are able to send attachments and retrieve from this content management system fine. However, when the Content Repository is