YTD problem in varible offsets

Hi all,
If my user enter YTD I have to display another colum with same day with last year.
For ex: IF user enter : 15/01/2009 .I haveto display both 15/01/2009 and 15/01/2008 data.
I know how to design the report  useing Offsets.
But the problem is with dates ...I mean if I am give the offset as -365 days i will get data correctly ,but in leaf years totals days are 366 days .So data will not display correctly (If user enter :15/01/2009 ,system willl display 16/01/2008 data.Actualy system have to display 15/01/2008 data)
To overcome above problem we have to use varible with customer exit.If any one come across this time of requirement pls share customer exit with me. OR any other ways to over come this issue.
Thanks....Bk
Edited by: BK BI on Feb 3, 2009 5:37 AM

Hi,
Declare the another customer exit date variable e.g ZPYDATE and populate it using the user entry date variable. Assume that user has enter the data in variable ZPCDATE and value is '15/01/2009' as you told in example.
DATA : wa_loc_var_range LIKE rrrangeexit,
       wa_l_s_range TYPE rsr_s_rangesid,
      tdate like sy-datum.
Case i_vnam.
WHEN 'ZPYDATE'.
IF i_step = 2.
LOOP AT i_t_var_range INTO wa_loc_var_range where VNAM = 'ZPCDATE'.
condense wa_loc_var_range-low .
tdate = wa_loc_var_range-low.
tdate6(2) = tdate0(4) - 1.
wa_l_s_range-sign = 'I'.
wa_l_s_range-opt  = 'EQ'.
wa_l_s_range-low  = tdate.
APPEND wa_l_s_range TO e_t_range
ENDLOOP.
ENDIF.
ENDCASE.
ENDLOOP.
ENDIF.
Thanks.

Similar Messages

  • Problem in using offset value in streams

    hi friends,
    I have been having this problem far few hours. I am unable to understand why this exception is comming, although I know the cause of exception as I have figured it out by now but unable to remove it.
    here is a simple file copy program using character streams wrapped around Buffered streams.
       import java.io.*;
    public class CopyBytes {
        public static void main(String[] args) throws IOException {
            BufferedReader in = null;
            BufferedWriter out = null;
            char []buff=new char[5];
            int offset=0,length=5;
            try {
                in = new BufferedReader(new FileReader("Factorial.java"));*
                out = new BufferedWriter(new FileWriter("outagain.java"));            
                while (true) {
                    in.read(buff,offset,length);     //this line causing error
                    out.write(buff,offset,length);
                    offset+=length;
            } finally {
                if (in != null) {
                    in.close();
                if (out != null) {
                    out.close();
    }when I ran the program I got following exception java.lang.IndexOutOfBountException
    I know the exception is at commented line, but I am not sure wheather this is coming due to offset or length variable
    by the way, first 5 characters from source file have been copied to destination file as I saw.
    thanks in advance

    san_4u wrote:
    how can I skip offset variable as this method must pass one char[] and two int variables.
    would you please explain how these three parameters are being used. I have read it many times but still unable to understand the use of offset and length variables.For the read method, the offset parameter specifies at which index of buff to start writing data.
    For the write method, the offset parameter specifies from which index of buff to start reading data.
    Since you are using buff as temporary buffer only, you can always read stuff into buff at its beginning (i.e. index 0).
    Of course, when writing data to the stream from buff, you should write the data previously stored. So, you should (obviously) use the same offset for writing to the stream as you previously used when reading from the stream. To be able to write exactly the data you previously read, you also need to know how many chars were read and stored in buff. Luckily, that is exactly what the return value of read does tell you (with -1 being a special flag for "no more data available").
    Hope you can figure it out now.

  • Problem in Purchase Offset Entry for partially PO Goods Receipt

    Dear Sir,
    I have active Purchase Account Processing in company code with t code   OBY6 and define G/L Accounts for purchase offset a/c and its going fine for new GR but for old purchase order those are partially GR they have creating problem for GR in purchase offset accounting.
    How I can solve this please let me know.
    Thanks & Regards,
    Hemant Kumar

    Hi
    What is the error you are getting?
    VVR

  • Problem with variable offset

    Hi, I am using BI 7.0.
    I have a query with 0calmonth in rows, I need the last 12 months, so I did 0calmonth from variable -1 to -11. I have the 12 rows with the month description correctly.
    I have 8 columns with formulas and  filter.
    I can see the rows of the month I executed with the numbers without problem, but in the other rows (months before) of all the offset I don´t have the result.
    Does anyone have any idea? I made it Z with other object and Z variable, but still the problem.
    I tried with differents months, but the same problem.
    Thanks in advance
    Tomas

    Tomas,
    Any chance your variable on Cal Month is in the free Characteristics or the Filter?   If so you entire results area is restricted to this value irrespective of what offsets you have put on.  You will need to put the variable into a selection.
    Regards
    Gill

  • Problem with variable offset for 0CALMONTH

    Hello Community,
    I have a problem with using variables offset for time characteristic 0CALMONTH
    Let's say my current query looks like this:
    ...................01.2006..........02.2006..........03.2006   (0CALMONTH)
    Sales ..............100..................125................200   (Keyfigure)
    What I want do now is to add a previous year comparison. So that it should look this way:
    ...................01.2006..........02.2006..........03.2006   (0CALMONTH)
    Sales ..............100..................125................200   (selected months)
    LY_Sales...........50..................100................100   (selected months - 12)
    (LY_Sales should show figures of 01.2005, 02.2005 and 03.2006 in this example)
    I used new selection for LY_Sales with variable offset for 0CALMONTH -12 but that didn't work. Figures in second line are zero. The desired figures would show up (if I expand the selected time intervall wide enough) in 01.2005, 02.2005 and 03.2005 but that's of course not what I want.
    Please help if you can!
    Regards,
    Ulrich

    Hi,
    We can get an an other way by using CELL editor caoncept.
    First create teh query like this:
    ...................01.2006..........02.2006........12.2006.....01.2005...02.20005...12.2005  Sales ..............100................125..............200.............50...........100.........100 
    Sales ..............100................125..............200.............50...........100.........100
    Then hide the 2005 years' kf:
    ...................01.2006..........02.2006........12.2006
      Sales ..............100................125..............200 
    Sales ..............100................125..............200
    Though the call editor concept overwrite the second rows(selection) content with hidden columns of second row(selection) one by one .i.e first cell of 2nd row will be overwritten by 13 th cell of second column.similarly second cell of 2nd row will be overwritten by 14 th cell of second column........
    First row(selection) : Cal year Charactertic with restriction 2006.
    second row(selection) : Cal year Charactertic with restriction 2005.
    With rgds,
    Anil Kumar Sharma .P

  • PDF exportig problems from numbers: offset margins, pages missing

    hi,
    we are encountering some odd problems in numbers here..
    first our problem was, that exporting a pages of a numbers document to a pdf with
    document margins lead to an offset of the margins. The whole content was offset
    and f.i. the window of an envelope didn't work.
    the wrong margins even showed as fine thin lines in the preview of the pdf.
    we worked around that problem by exporting the pdf via the printing menu.
    NOW - since mavericks - even our workaround seems to be bugged.
    It is only possible to print only one page although the document has multiple pages.
    Seriously,.. this is very annoying. Since the new mavericks numbers has "NO" working Page preview,
    which is essential to writing invoices out of numbers.
    What happened? Can anyone help please? I am supposing this has something to do
    with the Adobe-PDF engine and the Apple PDF engine.
    Help much appreciated,
    no page preview in numbers 3.0.1
    printing only one page is possible!
    checking All pages leads to exporting one page
    the wrong margins that offset the whole layout even show in preview as hairlines

    Hi weme,
    Yes, stay with Numbers 2 for serious business.
    As a matter of interest, I do not know why you can print only one page to PDF in Numbers 3.
    Numbers 3.0.1 with a long table (Header Row frozen to make this a smaller screen shot)
    File > Print... shows two pages
    There is only one Sheet (in the spreadsheet sense) consisting of two pages (of "paper"). 'This Sheet' has the same effect as 'All Sheets'.
    Click on Print.
    Lower left, click on PDF and choose Open PDF in Preview
    Here is Preview (zoomed out) showing two pages.
    The Preview app's Print Preview:
    1 of 2. Have a play with settings such as Auto Rotate and Scale to get what you want.
    Numbers 2 will do what you want, but I thought this discussion would help those who are persevering with Numbers 3. (And those who do not have the option to use Numbers 2).
    Regards,
    Ian.

  • Problem with SMPTE offset with video

    Hi everyone,
    I'm having a strange problem with a SMPTE offset for a video clip I am working on and I was wondering if anyone can help me out. Here's what I've done so far in Logic Pro (7.2.1):
    1) Set the Sync Mode to Internal.
    2) Set the Frame Rate to 29.97 non-drop.
    3) Imported the video clip that can be found here in case you want to give it a try: http://www.andrew-munro.com/video/video.html
    4) Entered the Movie Start time as 00:00:00:00.
    5) In the Video Song Settings under Synchronization I set it so bar 1 plays at SMPTE 00:00:07:20.
    The problem was that sometimes the SMPTE frame in Logic did not match the burned in time code in the video clip. Sometimes it matched just fine. The other strange thing was that if I saved the song, closed it, then opened it again, I'd have to do the offset all over again b/c it didn't save.
    Does anyone have some suggestions about how to solve this problem, or an alternate way to create the offset?

    Zero out your Video Song Settings offset and instead, try setting the offset either in the Tempo Window or on the movie's "movie start" field. See if that makes a difference.

  • YTD Problem

    Hi Experts!
    I have an EVDRE where in columns I writte the current month and the next 6 periods. The user inputs all the data except two accounts:
    Total and Acumulated Total
    On acumulated total I have a dimension formula like:
    ([POSICIONES].[PG00002],[MEASURES].[YTD])-([POSICIONES].[PG00003],[MEASURES].[YTD])
    Everything has been working fine until now (August) when the sith month is january and the acumulated value is reset.
    Any idea on how could I stablish a formula with variables where I could add the months individually? another way to aproach the problem?
    I've thinking if there could be a way to read/modify the data after the query reads and before presenting it...can UJQ_SHARED_QUERY Badi help me to resolve the problem this way?
    Thanks a lot
    it0

    Hi,
    Declare the another customer exit date variable e.g ZPYDATE and populate it using the user entry date variable. Assume that user has enter the data in variable ZPCDATE and value is '15/01/2009' as you told in example.
    DATA : wa_loc_var_range LIKE rrrangeexit,
           wa_l_s_range TYPE rsr_s_rangesid,
          tdate like sy-datum.
    Case i_vnam.
    WHEN 'ZPYDATE'.
    IF i_step = 2.
    LOOP AT i_t_var_range INTO wa_loc_var_range where VNAM = 'ZPCDATE'.
    condense wa_loc_var_range-low .
    tdate = wa_loc_var_range-low.
    tdate6(2) = tdate0(4) - 1.
    wa_l_s_range-sign = 'I'.
    wa_l_s_range-opt  = 'EQ'.
    wa_l_s_range-low  = tdate.
    APPEND wa_l_s_range TO e_t_range
    ENDLOOP.
    ENDIF.
    ENDCASE.
    ENDLOOP.
    ENDIF.
    Thanks.

  • Problem with document offset

    Hi !!!
    We are using file adapter in our interface. As per client requirement first 20 records we have to avoid so we are using document offset as 20. But the problem is once they are sending 19 records.as per my client request that records also have to reach  the target ! Kindly help me to slove this problem
    Thanks in advance
    Sri.

    >>>But the problem is once they are sending 19 records.as per my client request that records also have to reach  the target !
    What do you mean by that records??Can you explain a bit more.
    Set the document offset to 19 in file channel and whenever you need to ignore one more record, ignore that in the mapping if you have any identifier.

  • Applescript problems with character offsets and embedded objects in Pages

    https://discussions.apple.com/thread/2550810?start=0&tstart=0
    The above discussion is archived, but I've noticed a problem witht he solution it proposes.
    Essentially, the problem seems to be that the character offset of a selection becomes either inaccessible or out of sync when embedded objects are present in the file.
    The following document can be used to demonstrate:
    http://images.apple.com/support/pages/docs/ePub_Best_Practices_EN.zip
    I've slightly modified the script fromt he previous thread, so here's my own script:
    tell front document of application "Pages"
              set C to character offset of (get selection)
              set N to 0
              repeat with P in (get character offset of paragraphs)
                        if P > C then exit repeat
                        set N to N + 1
      select paragraph (N + 1)
              end repeat
              N
    end tell
    This script is supposed to select the next paragraph in a document, when given a selection. The intention is to call it recursively to get each paragraph of the document in turn.
    At the start of the document, it functions correctly, however when it gets to the embedded pictures, lines and table of contents, things start to break. This wouldn't be so bad, because I could simply ignore paragraphs that contains those embedded objects, but the real problems arise in the normal text below these objects.
    If you place the cursor on the 3rd page of that document, in an ordinary paragraph, for example, this script will simply return the same paragraph over and over. The reason for this is that the character offset of the paragraphs is being thrown off, so the if statement gets hit too early. You can also see this if you look at the character offsets of the word "Introduction" in the heading at the top of the 3rd page. You'll notice that the character offset is duplicated for a couple of letters, and is out of sync with the index of the character itself.
    What I need is a script that will take a selection (of any type), and simply return the correct index of the paragraph containing it every time. It doesn't seem like a difficult thing to do, and since the paragraphs are accessible by index, they should be able to return their index to the user. I have a feeling Apple need to add this functionality to the Pages Applescript dictionary, and they definitely need to fix the bug where the character offsets go out of sync after embedded objects. These are really quite bad problems.

    Hi,
    Pierre L. wrote:
    I have tested it with the document referred to by andyboyd. When the first word (“Introduction”) of the first paragraph of page 3 is selected, your script returns {10}, while it returns {12} when the second word (“to”) of the same paragraph is selected.
    Message was edited by: Pierre L.
    Thanks Pierre.
    Ok, the error is that I mixed the variable N and N1, during the renaming of variables
    return N - 1  must be return N1 - 1 -- return the index
    Here the corrected script :
    set indexList to my getIndexOfLinesInSelection()
    on getIndexOfLinesInSelection()
       script o
          property parOffsetList : {}
          on getIndex(C)
             tell application "Pages" to tell front document
                set parOffsetList to character offset of paragraphs
                set tc to count parOffsetList
                repeat with N from 1 to tc
                   if N = tc then return tc -- it's the last paragraph
                   if (item N of parOffsetList) > C then
                      set N1 to N
                      repeat -- check the  character offset of the selected line
                         if N1 = tc then return tc -- it's the last paragraph
                         select paragraph N1 -- select next paragraph
                         set sel to (get selection)
                         if class of sel is list then
                            repeat with aItem in sel --  this line contains text and object
                               try
                                  if character offset of first character of aItem > C then return N1 - 1 -- return the index
                                  exit repeat -- else  character offset of the selection <= C , exit the repeat
                               end try -- error,aItem is not valid, continue the repeat
                            end repeat
                         else
                            try
                               if (character offset of first character of sel) > C then return N1 - 1 -- return the index
                            end try
                         end if
                         set N1 to N1 + 1
                      end repeat
                   end if
                end repeat
             end tell
          end getIndex
       end script
       tell application "Pages" to tell front document
          set sel to (get selection)
          if class of sel is list then -- selection contains object or  (Non-Continuous selection in the same line or in  différents lines).
             set charOffsetList to {}
             repeat with aItem in sel
                try
                   set end of charOffsetList to (character offset of aItem) -- get character offset of  the  valid item
                end try
             end repeat
          else -- insertion point or  the first line in continous text selection
             set charOffsetList to {character offset of sel}
          end if
          if charOffsetList is {} then return {} --  no valid item in the selection
          set indexList to {}
          repeat with C in charOffsetList
             set r to o's getIndex(C)
             if r is not in indexList then set end of indexList to r
          end repeat
          return indexList
       end tell
    end getIndexOfLinesInSelection

  • Problem In Variable Offset BI 7.0

    Hi,
      In SAP BI 7.0   i have cerated a variable on Posting date with Interval now i have to restrict that with  Variable off set 0 and -7,
    For that  Under Show dropdown list i have selected Valuranges.  and in next dropdown box i have selected between
    Then when i am selecting my variable from Select from list when i am seclting Variables i am not able to see my variable .
    I have tried so many times but it is not showing any newly creatd variable. insted of value ranges if i select variables i can see my created variable in the list but if i select value ranges and between i am not able to get my variable as per my requirement i need to pass two offset value.
    Any one having any sugestion/ idea please share with me.
    Amit

    Hi Amitpati, From your context, I assume you would like to view the Posting Dates for 1 week duration. I'm just giving a possible  workaround for this scenario. 1st RKF: create a variable for 0CALDAY on the row/col structure which is the 1st element. In the second RKF use an offset -7 to query on the past 1week data. Use a formula to compute difference between KF elements 1 & 2. Pls let me know if I'm correctly following your query. Assuming you may be using current date as posting date, you may have a look into Key Date; which is listed on the Query Properties on the right most tab. Also, you may try changing the query using 0CALWEEK in cube; but this being a task to change the structure would be the last priority. Thanks!

  • Financial Analyzer : YTD figures

    We have recently implemented OFA at our site where reports have been defined for management reporting. When we try to access a YTD column in a report for Year 2000 months, the system gives following error : "An error occurred setting up data for the report. Consider changing the definition to access a different selection." We have no such problem for Year 1999.
    We have tried all the suggested solution by our off-shore consultant without any luck. Such as the YTD_OFFSETVAL has all values stored in it.
    I would appreciate any assistance to resolve this problem.

    Marianne,
    Regret the delay in thanking you for the response. The problem was somewhere else.
    We have now resolved the problem. GL_TIME1.OFFSET variable data was not submitted to Shared database.
    Earlier Our consultant had responded as follows :
    QUOTE
    "There will not be any Y2K problem in the YTD calculation. Infact, this same logic is used to calculate YTD in Oracle Sales Analyzer, which is another Oracle OLAP tool. Also, if you remember, we had tested the reports for March 2000 and given reports to Financial/Management Account reports. We did not have any problems at all then.
    To make things more clear about the YTD formula, I am not manipulating the
    year value at all. Instead, the offset variable just stores a number against
    the month ranging from -11 to 0. This is used in the MOVINGTOTAL function to
    total up the appropriate preceeding months from the current month. The syntax
    should make it clearer,
    MOVINGTOTAL(variable,start pos, stop pos, step, TIME dimension)
    eg.The offset value for month no.12 (Dec) will be -11. So that the total will be the sum of all the preceeding 11 months including the current month. The offset value for Jan will be 0, bcoz that is the first month. etc.
    Yes, GL_TIME1.OFFSET is not a standard OFA object. But OFA/Express does not have a generic function to calculate YTD. Hence, we use user-defined stored variables along with MOVINGTOTAL function to get YTD.
    I hope that this make things clearer." UNQUOTE
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Marianne Slight ([email protected]):
    Akbar
    I think the problem lies in your GL_TIME1.OFFSET object. This is not a standard
    OFA/GL link object. It may be something like you're using extchars on the year
    value, and have introduced a Y2K bug by subtracting 1 from the '00' year to give
    you '0-1'. Describe your GL_TIME1.OFFSET object - if it's a formula make sure
    that it operates correctly on 2000 years, if it's a variable then make sure it's
    populated correctly.
    Regards
    Marianne
    <HR></BLOCKQUOTE>
    null

  • GR/IR Account - Offsetting Account -

    Hi All
    Can anyone please let me know how can I make the following setting.
    In our legacy system we get the Offsetting Entry for each entry to  GR/IR account, but I am not sure how its coming up.
    Now after one rollout project, the business wants the Offsetting account to appear inthe new system as well.
    But I am not sure how and where to make this setting.
    How can I populate the values in the offsetting Account field in the GR/IR document.
    Eg :
    GR/IR Document -
    Itm PK       Acct no.   Description               Amount
    001 21       1006292    Angell Communications    3,901.00
    002 96       22790051   Acc Exp - GR/IR            470.00-
    003 96       22790051   Acc Exp - GR/IR          2,500.00-
    004 96       22790051   Acc Exp - GR/IR            350.00-
    005 50       23420002   VAT UK - Input/Recov       581.00-
    When I check the GR/IR through FS10N
    G/L Account No.         22790051    Other Accrued Exp - GR/IR
    Company Code            A001
      DocumentNo Type        Amt           Offst.acct
      5100117451 RE         470.00-           1006294
      5100117451 RE        2,500.00-                      1006294
      5100117451 RE          350.00-                        1006294
    Can anyone please let me know, what needs to be done in order to get this offsetting account into the document.
    Regards
    Krishna

    Hi Jayram
    Thanks for the reply. But the problem is the offsetting Account field is blank, and I want it to be populated. How do we do that any idea.
    regards
    Krishna

  • Strange transparency problem trying to print a pdf made in Pages

    Hello,
    Let me apologize in advance for this one, I think it's probably a doosy.
    Not having the know-how to efficiently do a layout in InDesign, I have been doing print projects in Pages. It has worked fine in the past to print to Adobe PDF postscript from Pages, open up Distiller and convert to a CMYK pdf from there. For my current project it worked fine for the first 2 renditions, but for the 3rd edition (incidentally the one the printing company printed) looked very "muddy." Fonts were very rough and rasterized badly, and the whole thing looked kind of "brown-washed". They claimed to use a program called "Apogee" which they said told them there was a transparent layer over everything, converting all the fonts to CMYK and thus making them lose their nice crisp blackness.They've also said that it must be a setting in Pages that has caused this, but I can't see how that's possible! When I look at the source file in pages there is no such transparency. Several of the images do have their opacity decreased to varying degrees to help the whole piece blend, however this transparency they say Apogee pulled off the top cannot be seen from my end. We are down to the wire trying to get this job to print again, but I am stumped as to how to ensure that this rendition of the file will be done correctly.
    As perhaps a side note, Distiller seems to be a pretty quirky application for me, often failing to convert on the first or second try, but somehow "magically" working on the second or third attempt for no apparent reason and without doing anything differently.
    Thanks so much for any help - I am definitely cracking out the books and forcing myself to learn InDesign after this nightmare!
    - A-J L.

    They claimed to use a program called "Apogee"
    Agfa Apogee, introduced in 1998, was simply the first prepress workflow product that processed page-independent PDF instead of processing page-dependent PostScript into an internal and intermediate display list prior to marking. The prepress operator would be using Apogee to preflight the PDF you submit as printing master, and the problems found in the preflight are those of which you were informed.
    As perhaps a side note, Distiller seems to be a pretty quirky application for me,
    Adobe Acrobat Distiller has been difficult to configure since the day it was introduced.
    Adobe Acrobat Distiller is a PostScript interpreter that converts page-dependent PostScript page description programs into page-independent PDF page descriptions without programming loops and links that produce dependencies. PDF uses a directory design for the objects in the page descriptions, a design that originates with Xerox Interpress (the idea of a directory is in fact printed on page 390 of "Interpress - The Source Book" by Harrington and Buckley published in 1988).
    converting all the fonts to CMYK and thus making them lose their nice crisp blackness.They've also said that it must be a setting in Pages that has caused this, but I can't see how that's possible!
    It is left to 'application intelligence' whether to match RGB black for type to CMYK black for type or to match RGB black for type to separationBlack for one plate/plane on a four plate/plane offset press. The problem with an offset press is that it lays down the inks at inking units that are some distance apart which invites misregistration. QuarkXPress, PageMaker, InDesign and other authoring applications developed for PostScript imaging on offset presses have ink palettes with four fixed inks of which Black produces separationBlack.
    Pages does not have this possibility, so if you want your type to image as deviceK / separationBlack then you need to select your type and apply the following procedure, or set up styles with the following procedure applied. Open the Apple Colour Palette, select the CMYK slider mode, select some type, select the Advanced icon (the colour space icon on the left), in the drop-down menu select Device CMYK, and set the slider to C0, M0, Y0, K100. This procedure can be used by the typographer to control that deviceK / separationBlack is imaged, but for as long as Microsoft Word has produced type that is RGB, prepress processes have intercepted this in PostScript and reset it to deviceK / separationBlack including Helios colour management for OPI.
    In prepress there is no way to please all parties. If you as developer say, "OK, I'll set the type to deviceK and then show this colour managed on the display" then you will have designers and people who write for designers like Sandee Cohen yelling at you for making type less black than they think type should be, even if in fact the colour of type printed on diffusing uncoated paper is way lighter than they think. And if you say, "OK, I'll set the type to R0 G0 B0 so it is as black as the designers think type should be" then you'll have the prepress crowd with their offset presses yelling at you. Neither party accept that black is a colour, one wants type to be as black as possible regardless and the other party wants type to mark on one and only one printing plate/plane regardless.
    converting all the fonts to CMYK and thus making them lose their nice crisp blackness
    I would wager a box of Carlsberg beer that the prepress operator is ignorant of the controls in Agfa Apogee, and that Agfa Apogee has a control to catch RGB type and convert to deviceK / separationBlack. Try telling the prepress operator to READ the manual -:).
    Several of the images do have their opacity decreased to varying degrees to help the whole piece blend, however this transparency they say Apogee pulled off the top cannot be seen from my end.
    Generally speaking, you should not be sending plain PDF to prepress. You should be sending PDF/X-3 which depends on you as designer flattening transparency, or better still PDF/X-4 which passes the problem of flattening transparency to the application intelligence of the prepress raster processing system. PDF 1.3 does not support transparency nor does EPS and nor does PostScript any language level.
    /hh

  • Offset for variable not working !

    Experts,
    I have to show sales for last 5 months ( in 5 diff. Columns )
    So, i have written CMOD code, where i am converting System date in to Fiscal Year / Period using FM DATE_TO_PERIOD_CONVERT.
    every thing works good, i do get result. but the problem is the Offset for Variable function doesnt support that.
    I was hoping that, Now i can do Offset -1, -2 , -3...till -5 and i will have all 5 Periods.
    But looks like its not working out.
    What other logic i can use.
    !!!!!!!!!!My Variable is Not ready for Input !!!!!!!!!!! So the only way i found is to convert system date to current Period and then off setting it till last 5 months. And i do need to so last 5 months starting current Period -1, -2, -3, -4 and -5
    is there any other way to get current Period ( i guess only from system date ).
    I think in my logic, when i do offset, its not offsetting the Period, but its off setting system date.
    Please help

    Hi Honar,
    I am pretty sure offset should work, in your customer exit, calculate the current period as using the system date, once you get that, create a variable with the same name as you defined in the customer exit and use that variable in five different restricted key figures with each with (Variable, Variable -1, Variable -2, Variable - 3 and Variable - 4). If you have done so and not working, what are you getting in each of the variables, there might be some notes which could address that issue.
    thanks.
    Wond

Maybe you are looking for

  • Computer loads black screen installing Windows 7 / 8

    Hello, I have installed Windows 7 on my machine several times without any problems.  After updating to Mountain Lion however my computer will always hang at a black screen when it is time to run the Windows installer. I have tried this with Windows 8

  • Where can I view all apps by a publisher?

    In ios 7 I don't see "view all" when your on a publishers page where it shows all the apps on it.  But I don't see a view all button for either iPhone apps or iPad apps. Where is it the button to view all of the apps?

  • Where are audio settings in Elements 9 organizer

    I use Phtoshop Elements 9 on a Mac running Snow Lion (10.6.8)  I am trying to boot up Supercollider, but I get a message that the localhost won't initialize because of a sample rate mismatch. The error notice shows only the Mac built in inputs and ou

  • Procurement Contracts Interface Tables

    What are the usage of these two Interfaces: 1- OKC_ValueSets_Interface 2- OKC_VS_Values_Interface On which form will i see the posted data and what are the names of their destinaition tables? Regards

  • Can not access websits that are not part of my favorites, very frustrated

    I can not access any website that was not part of my favorites through firefox. When i type in the url nothing happens it just sits there. I have tried starting firefox in safemode and still same results. I can not add any type of search engine eithe