Change dpi for Ruler Guides

Hello.
I'd like to use exact size in dots when making layout for my document.
Ruler Guide set to "px" displays pixel values for 72dpi, but I'll print the document in 300dpi. I'd still like to measure dots exactly, is there a way to change Ruler Guide pixels to 300dpi?
Thanks in advance.

Thanks for the quick replies.
What I'm trying to do is to print enlarged pixel art illustrations, which are very low resolution images that are meant to be enlarged.
The problem is, when we enlarge those low-res images, their new size must be exactly divisible by their original size. Let's say, if I have 7x7 picture (I know it's too small, just for the sake of example), it should have 14x14, 21x21 or maybe 70x70 frame, but not 22x22, since this will lead to scaling artifacts. The artifacts are only visible if you look very closely (or, alternatively, look from far away), but it appears that they are able to mess with pixel patterns slightly.
In other words, each pixel art enlarged "pixel" should ideally have the same size in real dots, or else there'll be some approximations, which are harmful to clean pixel art. Not neccesarily, but it'd be cool.
So, if it's possible, I'd like to define exactly how much points on print will the frame take in any given dpi (300 dpi is just an example).
Eugene Tyson is pretty close with what I wanted to do. But it'd be even greater to position Ruler Guides using real points in their X and Y coordinates for given dpi, not only 72 dpi (otherwise I'll have to count all those grids manually). I guess that's impossible?
Thanks.

Similar Messages

  • Changing ruler guide color not working

    Having an issue when I go to Layout > Ruler guides and change the ruler guide color, it doesn't update on the canvas and the color is still this mint green which is hard to see against a white background. Any idea on how to fix this?

    yeah i went into preferences and changed all the colors in there too, but the one for ruler guides isn't in preferences its under layout > ruler guides. not sure why its not updating

  • Itu00B4s possible to change the Distribution rules for a order type RM01 ??

    Hi Experts:
    I need to change the settlement rule which is automatic created at the moment  that you create a Cost colector (class order RM01) transaction KKF6N..
    but when I go into KKF6N transaction and I select the "change" option and after that I go into settlement rule screen, I can´t change the distribution rule.
    I would need to change the settlement type from "PER" value to "TOT" value.. It´is possible in this kind of Cost colectors??
    Thanks and regards!
    Manuel

    Hi,
       Please note that you will not be able to change manually the settlement rule for a cost collector. 
    When you save, the system creates a settlement rule for the product cost collector.
    The settlement rule for the product cost collector always specifies the distribution rule "100% to material" and the settlement type  is always PER (periodic).
    Also refer the note 388457 in which one of the paragraph it says "As of Release 4.5, a special settlement rule is generated when you create a product cost collector (with procedure 5: delivery value for product cost collector). You cannot subsequently change this settlement rule".
    regards
    Waman

  • How to change ruler guide to custom units

    I have changed the line grid to a custom size by this code:
    InterfacePtr<IUnitOfMeasureSettings> iUOMPref((IUnitOfMeasureSettings*)::QueryPreferences(IID_IUNITOFMEASURESETTINGS, pDoc->GetUIDRef()));
    iUOMPref->SetVertCustomPoints(gridDivision);
    where gridDivision is my number of points. This works.
    Now I'd like to apply the same unit to the vertical ruler guide. The value is already applied to custom units, but the measurement shown is still millimeters.
    What is the right way to switch to custom units?
    Thanks!

    Unfortunately, the last change did not update the vertical ruler immediately. So I decided to use a boss command:
    /* set line grid to user defined size (gridDivision):*/
    InterfacePtr<IUnitOfMeasureSettings> iUOMPref((IUnitOfMeasureSettings*)::QueryPreferences(IID_IUNITOFMEASURESETTINGS, pDoc->GetUIDRef()));
    iUOMPref->SetVertCustomPoints(gridDivision);
    /* set vertical ruler to user defined size:*/
    InterfacePtr<ICommand> smuCmd( CmdUtils::CreateCommand( kSetMeasureUnitsCmdBoss ) );
    if( !smuCmd )
        return false;
    InterfacePtr<IMeasureUnitsCmdData> smuData( smuCmd, IID_IIMEASUREUNITSCMDDATA );
    if( !smuData )
        return false;
    smuData->Set( pDoc->GetUIDRef(),
                    iUOMPref->GetYUnitOfMeasure(),
                       kRulerCustomMSBoss,
                       iUOMPref->GetTextUnitOfMeasure(),
                       iUOMPref->GetTextSizeUnitOfMeasure(),
                       iUOMPref->GetPrintUnitOfMeasure(),
                       iUOMPref->GetLineUnitOfMeasure(),
                       iUOMPref->GetHorzCustomPoints(),
                       gridDivision,
                       iUOMPref->GetKeyNudgeInc() ,
                       iUOMPref->GetPointsPerInch());
    if (CmdUtils::ProcessCommand(smuCmd) != kSuccess)
        return false;  
    Works fine.

  • Guide to create service for rules (xlm and java)

    It will be helpful to create step by step guide to cretae service for rules. I tried creating one but i guess it was based on xsd and not java ( it will help if someone tells us differnece),  guide should consider fact that functional consultants are going to create service.
    I tried creating service for approval process but received folowing error. I am not sure whether I was creting XML service or JAVA i was following guide by Arti while
    used guide - Generating Web Service Manually for a Rules Project (using XSD) .
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    children=[
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    Deploy Exception.
    com.sap.engine.services.dc.api.deploy.DeployException: [ERROR CODE DPL.DCAPI.1027] DeploymentException.
    Reason: ASJ.dpl_dc.001085 [ERROR CODE DPL.DC.3077] An
    error occurred while deploying the deployment item [demo.sap.com_generic_xsd_ear].
    ; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of
    [demo.sap.com_generic_xsd_ear]. Cannot deploy it.
    at com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.deployItems(DeployProcessorImpl.java:715)
    at com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.deploy(DeployProcessorImpl.java:226)
    at
    com.sap.ide.eclipse.deployer.dc.deploy.DeployProcessor70.deploy(DeployProcessor70.java:112)
    at
    com.sap.ide.tools.services.dc.EngineDcDeployService.deployFiles(EngineDcDeployService.java:251)
    at com.sap.ide.tools.services.dc.EngineDcDeployService.deploy
    (EngineDcDeployService.java:125)
    at com.sap.ide.dii05.ui.internal.actions.dc.DcDeployAction$3.run(DcDeployAction.java:224)
    at
    org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Nested exceptions :com.sap.engine.services.dc.cm.deploy.DeploymentException: ASJ.dpl_dc.001085
    [ERROR CODE DPL.DC.3077] An error occurred while deploying the deployment item [demo.sap.com_generic_xsd_ear].
    ; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of
    [demo.sap.com_generic_xsd_ear]. Cannot deploy it.
    atcom.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery
    (OnlineDeployProcessor.java:188)
    atcom.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:57)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:229)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:91)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:34)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
    atcom.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Nested exceptions
    :com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [demo.sap.com_generic_xsd_ear]. Cannot
    deploy it.
    atcom.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:118)
    atcom.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:108)
    atcom.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:51)
    atcom.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:163)
    atcom.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:57)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:229)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:91)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:34)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
    atcom.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Nested exceptions
    :com.sap.engine.services.deploy.server.utils.DSRemoteException: [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
    com.sap.engine.services.deploy.container.DeploymentException:
    atcom.sap.engine.services.deploy.server.DeployServiceImpl.catchDeploymentExceptionWithDSRem
    (DeployServiceImpl.java:4714)
    atcom.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:325)
    atcom.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:104)
    atcom.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:108)
    atcom.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:51)
    atcom.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:163)
    atcom.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:57)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:229)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:91)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:34)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
    atcom.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Nested exceptions
    :com.sap.engine.services.deploy.container.DeploymentException:
    atcom.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.deploy
    (WebServicesDeployManager.java:269)
    atcom.sap.engine.services.deploy.server.utils.container.ContainerWrapper.deploy(ContainerWrapper.java:195)
    atcom.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:526)
    atcom.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:249)
    atcom.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:188)
    atcom.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:493)
    atcom.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:544)
    atcom.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:2536)
    atcom.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:378)
    atcom.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:323)
    atcom.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy
    (ApplicationDeployer.java:104)
    atcom.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:108)
    atcom.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:51)
    atcom.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:163)
    atcom.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:57)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:229)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
    atcom.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:91)
    atcom.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:34)
    atcom.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
    atcom.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Nested exceptions :java.lang.Exception:
    com.sap.engine.interfaces.webservices.server.deploy.WSDeploymentException: Exception occured during web services deployment. Unable to extract web services
    deployment data for archive demo.sap.com~generic_xsd_ws.war, application demo.sap.com/generic_xsd_ear.
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.extractWebServicesJ2EEEngineDescriptors(WSDeployProcess.java:293)
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.extractWebServicesJ2EEEngineDescriptors(WSDeployProcess.java:254)
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployProcess.init(WSDeployProcess.java:149)
         at com.sap.engine.services.webservices.server.deploy.WSBaseAbstractDProcess.makeProcess(WSBaseAbstractDProcess.java:308)
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.deployWebServices(WebServicesDeployManager.java:1092)
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.deploy(WebServicesDeployManager.java:257)
         at com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.deploy(ContainerWrapper.java:195)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:526)
         at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:249)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:188)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:493)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:544)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:2536)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:378)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:323)
         at com.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:104)
         at com.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:108)
         at com.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:51)
         at com.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:163)
         at com.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:57)
         at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:229)
         at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
         at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:91)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:34)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Caused by: com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException: JAR entry WEB-INF/wsdl/schemas/approval.xsd not found in
    D:\usr\sap\CE1\J04\j2ee\cluster\server0\temp\deploy\demo.sap.comgeneric_xsd_ear.ear1246957632534\demo.sap.comgeneric_xsd_ws_ws.war
         at com.sap.engine.services.webservices.espbase.wsdl.wsdl11.WSDL11Loader.resolveAndLoadSchema(WSDL11Loader.java:1697)

    Thank you Arti,
    While testing service created using tool suggested by you i got following response :
    <?xml version="1.0" encoding="utf-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <SOAP-ENV:Body>
        <SOAP-ENV:Fault>
          <faultcode>SOAP-ENV:Client</faultcode>
          <faultstring>Unable to process the request</faultstring>
          <detail>
            <yq1:javax.xml.ws.WebServiceException xmlns:yq1="http://sap-j2ee-engine/client-runtime-error">Unable to process the request</yq1:javax.xml.ws.WebServiceException>
          </detail>
        </SOAP-ENV:Fault>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Could not figure out this error.

  • Change Pointers for the fields PERNR, GBDAT and PERID

    Hi,
         I want to know, how we can delete/de-activate and then add/activate Change Pointers for these fields. Is my Question a valid one? Please guide me if I'm wrong and help me in this issue.
    Thanks in advance,
    Exertive.
    Message was edited by:
            Exertive

    Hi Suresh,
                   I didn't get your point exactly. With this report, we can only Log the Changes that has been performed on a Particular Pernr or an Infotype. Actually, if see go through my Previous Post, you will get Clear Idea. Actually, I'm looking for the Concept below:
    Actually, I'm using the Standard ALE Process for Masking Master Data fields (PERID and GBDAT) with default values from one system to another using the Message Type, HRMD_A (which will be used as a Standard Message Type for HR Personnel Administration and Organizational Management). For this, I' have used two Conversion Rules in the above Message Type. To make this ALE trigger, I have to Run the Report, RBDMIDOC. But, before trigerring the ALE for all the Employees in the System, I want to test the ALE for few Employees, whether it is working properly or not. For this, I think, I need to delete the Change Pointers for all the Employees except for the few Employees whom I want to Test. But, I don't have any idea, how to delete those Change Pointers. Please guide me some solution or provide me some document where I can find exact procedure for doing this. Guide me, If I'm going in wrong procedure.
    Thanks in advance,
    Exertive.

  • Is there a way to create guides within ruler guides or aligned to ruler guides?

    So I was wondering for my own sake if there was a way to create guides within ruler guides or have it align to ruler guides? I am working on this magazine where the layout has a ruler guides. Which is inside the margins. I'm guessing this is to ensure the content is safe and also leaving adequate room for folios and running heads. This leaves me with the inside of the ruler guide to create my own grid. I tried doing this by hand and it seems to work fine however I was wondering is there a way to align the guides/grid (columns and rows) to the ruler guides instead of the margin or page? This would be extremely helpful as doing it by hand is quite the task. I'm trying to personally see how many rows and columns I can get in for a verstatile grid that can be used for different sorts of layout. (although I guess the grid could too many rows and columns) Any help would be greatly appreciated.

    Is there a way to make it align to the ruler guides instead of the page and margin? example of what i'm talking about:

  • How can I make the ruler guides work?

    I am working on a large document. For some reason, I cannot extend the ruler guides onto most pages. They will appear on some pages though. Does anyone know why this happens and how to fix it?

    If the mouse is over a page when you release, the guide will be confined to that page, so horizontal guides will appear only on one side of a two-page spread. You can hold Ctrl (Cmd) while dragging to make them extend across the entire spread and pasteboard, or releas the mouse over the pasteboard for the same result.

  • How to find out Last Changed Fields for a line item of a PO

    Dear All,
    Pls let me know is there any FM or procedure to find the last changed fields for each line item of a PO. I should be able to get the details on the basis of Last changed Date. Can u pls guide me in this?

    Hello,
    Check the table CDHDR,CDPOS for PO items,
    Check this code:
    REPORT ZV_GET_LATEST_SO .
    DATA: BEGIN OF ITAB OCCURS 0,
            OBJECTCLAS TYPE CDHDR-OBJECTCLAS,
            OBJECTID TYPE CDHDR-OBJECTID,
            CHANGENR TYPE CDHDR-CHANGENR,
            USERNAME TYPE CDHDR-USERNAME,
            UDATE TYPE CDHDR-UDATE,
            UTIME TYPE CDHDR-UTIME,
            TCODE TYPE CDHDR-TCODE,
            TABNAME TYPE CDPOS-TABNAME,
            TABKEY TYPE CDPOS-TABKEY,
            FNAME TYPE CDPOS-FNAME,
            CHNGIND TYPE CDPOS-CHNGIND,
          END OF ITAB.
    TABLES: CDHDR,CDPOS.
    DATA: LT_CDHDR LIKE CDHDR OCCURS 0 WITH HEADER LINE,
    LT_CDPOS LIKE CDPOS OCCURS 0 WITH HEADER LINE.
    *REFRESH AUSG.
    CLEAR CDHDR.
    CLEAR CDPOS.
    CDHDR-OBJECTCLAS = 'EINKBELEG'.
    CDHDR-OBJECTID   = '0000001784'.  " Purchase order number
    **SELECT A~OBJECTCLASS A~OBJECTID A~CHANGENR A~USERNAME A~UDATE A~UNAME
    **B~TCODE
    **B~TABNAME B~TABKEY B~FNAME B~CHNGIND INTO TABLE ITAB FROM CDHDR AS A
    **INNER JOIN CDPOS AS B ON A~OBJECTCLASS = B~OBJECTCLASS
    **                         A~OBJECTID    = B~OBJECTID
    **                         A~CHANGENR    = B~CHANGENR
    **                    WHERE OBJECTCLAS = 'VERKBELEG'
    **                      AND OBJECTID = '0000001784'.
    *SELECT * FROM CDPOS INTO TABLE LT_CDPOS WHERE OBJECTCLAS = 'VERKBELEG'
    *                                    AND OBJECTID = '0000001784'.
    *IF NOT LT_CDPOS[] IS INITIAL.
    *  SELECT *
    *  INTO   TABLE LT_CDHDR
    *  FROM   CDHDR
    *  FOR    ALL ENTRIES IN LT_CDPOS
    *  WHERE  OBJECTCLAS = LT_CDPOS-OBJECTCLAS
    *  AND    OBJECTID = LT_CDPOS-OBJECTID
    *  AND    CHANGENR = LT_CDPOS-CHANGENR.
    *ENDIF.
    **  SORT ITAB BY OBJECTCLAS ODJECTID DESCENDING.
    *LOOP AT ITAB.
    *  WRITE: ITAB-UDATE."ITAB-UNAME.
    *ENDLOOP.
    *--- Interne Tabellen -------------------------------------------------
    DATA: BEGIN OF ICDSHW OCCURS 50.       "Ausgabeaufbereitung
            INCLUDE STRUCTURE CDSHW.       "Zwischendatei
    DATA: END OF ICDSHW.
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
         EXPORTING
              DATE_OF_CHANGE    = CDHDR-UDATE
              OBJECTCLASS       = CDHDR-OBJECTCLAS
              OBJECTID          = CDHDR-OBJECTID
              TIME_OF_CHANGE    = CDHDR-UTIME
              USERNAME          = CDHDR-USERNAME
         TABLES
              I_CDHDR           = LT_CDHDR
         EXCEPTIONS
              NO_POSITION_FOUND = 1
              OTHERS            = 2.
    LOOP AT LT_CDHDR.
      CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
        EXPORTING
    *   ARCHIVE_HANDLE                = 0
          CHANGENUMBER                  = LT_CDHDR-CHANGENR
    *   TABLEKEY                      = '00000000 '
    *   TABLENAME                     = ' '
    * IMPORTING
    *   HEADER                        =
       TABLES
         EDITPOS                       = ICDSHW
    *   EDITPOS_WITH_HEADER           =
    * EXCEPTIONS
    *   NO_POSITION_FOUND             = 1
    *   WRONG_ACCESS_TO_ARCHIVE       = 2
    *   OTHERS                        = 3
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT ICDSHW.
        IF ICDSHW-TABKEY+3(10) = '0000001784'
           AND ICDSHW-TABKEY+13(6) = '000001'.
        ENDIF.
      ENDLOOP.
    ENDLOOP.
    Vasanth

  • Massive change of settlement rules in Sale order

    HI,
    CAN ANYONE ADVISE ME ON THIS TOPIC:
    I NEED TO "REFRESH"  THE PROFITABILITY SEGMENT IN THE SETTLEMENT RULES OF THE SALES ORDER, AS SOME OF THE CHARECHARISTICS WERE  CHANGED AND AS LONG AS I USE THE "OLD" SETTLEMENT RULES IT GIVES ME THE OLDER CHARECHATERISTICS.
    I WAS THINKING OF DOING A MASSIVE CHANGE TO SETTLEMET RULES - BLOCKING THE PREVIOUS  SETTLEMENT LINE AND OPEN A NEW ONE
    DOES ANYONE HAS AN IDEA OF HOW TO DO IT ?
    THANK YOU
    AMALIA

    Hi,
    1. Please check your customizing in SPRO -> Sales and Distribution -> Basic Functions-> Account Assignment/Costing -> Automatic generation of settlement rules.
    2. Have a derivation rule in COPA (KEDR) which will post the changed value to COPA during settlement. If the settlement rule is not automatically adjusted and if you don't change the old value afterwards manually on the profitability segment screen of the settlement rule final derivation (at time of creation of the CO-PA line item) would overwrite the wrong char value for the line item - without any impact on the settlement rule itself.
    regards
    Waman

  • Cannot add ruler guides in InDesign CS4. What am I doing wrong?

    I'm trying out InDesign CS4 on a trial basis. I have the Web Design CS3 suite and have no problem making ruler guides by clicking and dragging from a ruler. I'm wondering if there is a conflict between CS3 and CS4 products. I can't select the Selection or Direct Selection Tools by clicking on them. They do become active, however, if I use the keyboard shortcuts (V) or (A).  According to the 1-on-1 tutorial, my Selection Tool cursor should change from black to white when the guide snaps to an existing margin. My cursor turns white as soon as a click on the ruler. When I drag, nothing happens. When I release the mouse button, the cursor turns black again. With the Direct Selection Tool, the cursor remains white throughout the entire attempt. Nothing happens in either situation. This is a simple, getting started doc. There is only one layer, I'm in Normal view, and I have created margins and columns that are visible. I can select Baseline and Document grids and they work. Is this a bug or am I missing something?
    P.S. I've tried to attach the InDesign file (840 kb), but got the message, "The content type of this attachment is not allowed." Sheesh!

    You were right in your original assessment; it was a corrupt installation. There were several other things not functioning as designed. I just came upon the guides problem first. BTW, I found that if I expanded the document to where it covered the entire screen, the guides were visible. Unfortunately, the tool box and menus are covered, so that was a bit inconvenient. Just wanted to say thanks and tip my hat to you and the others who responded by offering help.
    One last thing, when I posted my original posting, I tried to attach the InDesign doc file I was working on and got a pop-up window saying that these type of files are not allowed. Am I to understand that you can't post InDesign files on the Adobe forum?

  • Ruler guides, again

    Yes, I did a search and I found a few discussions about ruler guides. But, nothing is working for me yet. All I want is ruler guides across ALL my pages, not just the page I created it on. I've tried using Control. Doesn't work. I've tried making sure the guide is outside of the page margin when I create it. Doesn't work. I've tried pressing "w" off and on. Doesn't work.
    Thanks,
    Peter

    P Spier wrote:
    Peter Britt Bailey wrote:
    Adobe InDesign Help.
    Are you referring to http://help.adobe.com/en_US/indesign/cs/using/WSfd1234e1c4b69f30d2a505 1004d659b1c-7fefa.html?
    Ruler guides are different from grids in that they can be positioned freely on a page or on a pasteboard. You can create two kinds of ruler guides: page guides, which appear only on the page on which you create them, or spread guides, which span all pages and the pasteboard of a multiple-page spread. You can drag any ruler guide to the pasteboard. A ruler guide is displayed or hidden with the layer on which it was created.
    I can see how you might have misinterpreted this by not reading carefully. Let me add a little emphasis to the critical wording: spread guides, which span all pages and the pasteboard of a multiple-page spread
    Note that it says spread, not, document. Further clarification should come fromthe next paragraph:
    New ruler guides always appear on the target spread. For example, if several spreads are visible in the document window and you drag a new guide into the window, the new guide becomes visible only on the target spread. (Emphasis added)
    Hi, Peter S.
    It seems that the Help's description favors a somewhat experienced user, rather than a newer user. Your clarifications are helpful; if you have a few spare moments, you might want to post a comment on the help page that suggest a bit of "disambiguation."
    Regards,
    Peter Gold
    KnowHow ProServices

  • Change Document splitting rule

    Our company has been live with the new GL and document splitting for 3 years.  The original splitting rule was set to split on the Business Area.  However we would like to change the rule to split on Profit Center instead of Business Area.  Is it possible to change the splitting rules without adversely effecting the system?

    Hi Michael,
    There is no harm in discontinuing the active rule but activating the inactive rule is really a big deal and SAP doe recommend this because it has potential threat. See below example.
    Only Business Area active as Document Splitting rule.
    Invoice was posted where there was profit center not populated for some reason and system did not give any error since it was not active field.
    Now you activate profit center as document splitting characteristic
    You clear the invoice posted above, system will give error like Document Splitting: Item for clearing not found which is irresolvable by the way of confguration change for which data has to be migrated using cockpit and that has to be done under SAP's Consultancy only.
    If you want activate Profit Center as a Document Splitting Characteristic then go ahead but do not select it as a Mandatory Field
    Regards,
    Chintan Joshi

  • Using a change document for Z table maintenance generatro to log changes

    Hi Forum,
    I have created a a change document for one of the Z tables now I want to use it in the table maintenance generator of this table so that any changes made to this table using maintenance generator are logged in table CDHDR and CDPOS.
    I am using the event 02     After saving the data in the database
    and have created a new FORM..ENDFORM for this event and it is working fine till here.
    But I am unable to find any table or structure where the information of the action performed in maintenance generator is kept for eg. what action was performed like add, delete or change and on how many records and contents of those records.
    I can update the tables CDHDR and CDPOS only if I have the above information.
    Please guide me as to where can I find all this information within the maintenenace generator program?
    Thank you,
    Anubhav

    Hello Anubhav,
    Are you calling the change document function module in your save event ? The function module needs to be first created using SCDO for your Z table, select the fields on which you want to track the changes.  Auto generate the programs for this change object. Once the FM is generated, you will have to call this FM in your SM30 event.
    The change document tracking also needs to be enabled at the data element level..
    Regards,
    Jay

  • Ruler guides are not exact, Can you Help?

    I'm dealing with a Block of text and the Frame is set to leading and the text is 10 pt and 11 pt leading. If i Drop a ruler guide on the baseline of the text I can put the continuation of the column in the next column and just line the top of the 2nd column frame to the base line of the next and the columns will line up exactly. my problem is about every 5th line of text I can't line the guide up exactly. It may be OCD but my lines are of by .0005 and I have to zero out the ruler guides nudge it .0005.
    I upgraded from indesign cs2 to cs5. In cs2 at 4000% view it was never a problem but now i waste time by having to zero the guide and type in the nudge in the controll pallete, before the upgrade this was never an issue.
    Is there something I'm missing?

    Excellent Idea, i set them up and they are working fine, I am able to snap to the grid. This is a great,  and negates the use and the time spent of laying down guides.
    But when the baseline grid is hidden I'm still not able to drop a ruler guide on the bottom of, lets say a serif on a lowercase "i" (this only happens about every 5th baseline, if you were to dray a ruler guide on 5 consecutive paragraph sentences and it seems like the one that don't work is the one i need, 50% of the time). With the baseline grid shown i shouldn't need the ruler guides as much, but it's still annoying that I can't do it. I've included a more Exaggerated close up of what I'm talking about. See how its just off on the 2nd line.
    I dont know if there is a fix? kind of a non issues with the baseline grid. Thanks for your help Peter.

Maybe you are looking for

  • Oracle XE and character set

    Hello all, I installed Oracle XE on RHEL 4 Linux and I found out that database character set is AL32UTF8. Does anyone know why oracle choose this character set? Maybe because of NLS_LANG env variable? Is it possible to change it to EE8ISO8859P2? Sinc

  • Social App not working even after update from noki...

    nokia n8 social loading feeds. My wife and i have the same problem now, only last week she said my phone will not work on facebook the widget on main home screen will not load feeds at all, and the widget is now blank saying refresh all the time, so

  • How to do Title and Paragraph Side-by-side?

    I'd like to switch from Word to Pages, but I need to figure out how to format a title and/or a subtitle such that it sits to the left of a paragraph (horizontally even) rather than above it. In Word, I would put the Headings/subheadings into a text b

  • TUNGSTEN T5 Synch

    About ready to give up. Have T5, Synch driving me crazy. Using Laptop with Windows 7, 32 bit. When I Synch using USB cable, with Synch settings on 'Synch with handheld' it erases all addresses and dates from laptop. When I set on 'Computer  Overides

  • Menu bar invisible

    I have been troubleshooting a problem now for months. When I bring up iTunes (64-bit) the menu bar is invisible.  If I hover over the area I can select the items. I also cannot type anything in the search/find box (while in "Music") I have tried brin