Can posting with Special Periods possible 4 other than Last posting period?

Hi Gurus,
My client is following a calendar year specific fiscal year (JAN TO DEC). Now, is it possible to post accounting documents or any documents giving any of the 4 special periods and with posting date as that of March? This is for income tax purpose...
Fiscal Year Variant USED  is K4.
Regards
Deepak

Hi,
This is not possible, as the period has a conversion attached to it internally, i.e., the period is derived from the posting date, as such the special periods (13-16) will only remain in the period field of the document when the posting date is in December.  Else it will be overwritten by the posting date period.
If you are in a non-ECC system, you may look at building an April to March ledger in Special purpose ledger, which will have its own balance carry forward and adjustment postings for the tax year. The SL uses the same postings from the FI ledger, however you can set a different fiscal year variant for the special ledger, so April will become period 1 in SL, while remaining 4 in FI.
Cheers
Neeraj

Similar Messages

  • What can I change to gain access to my work vpn.  I can access with my MacBook Air and other routers.  Can use my ipad and this time capsule to successfully access the VPN.

    What can I change to gain access to my work vpn.  I can access with my MacBook Air and other routers.  Can use my ipad and this time capsule to successfully access the VPN.

    You need to give us a lot more info.
    I presume the MBA and the TC are the combo that doesn't work, although you don't clearly state that.
    If the ipad and TC work.. are you sure the ipad is connected via the TC and not 3G network?
    If it is then the TC itself is fine and the issue might be setup on the MBA.. although if the MBA works with other routers.. that rather confuses the matter.
    You need to actually tell us how the TC is setup in the network. What kind of broadband modem you have and what kind of vpn you are using.

  • How can i transfer songs from another itunes other than mine

    how can i transfer songs from another itunes other than mine

    Purchases made under 1 Apple ID are permanently associated with that Apple ID and CANNOT be transferred to another Apple ID.  So if you want to keep those songs, you'll need to always have access to your dad's account.
    B-rock

  • I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.

    I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.  Unticking the "show title slide" did not reverse the situation back to my required state.   Any ideas why it might have happened or how it might br resolved?   Regards, Marshfrog1

    Attached is Dennis Linam’s Audition – “Log File” and “Log – Last File”
    Contact information Dennis [email protected]
    Previous contact information with your organization (DURIM):
    Dennis - i just finished my audition trial and bought the subscription the 2014 version.
    created by durin in Audition CS5.5, CS6 & CC - View the full discussion 
    DURIM - Okay.  I would expect the "Cache Warning" message because your default directories would not be the same as the ones in the settings file I generated.
    If you go back to the "7.0" directory and open the "Logs" folder, can you copy the "Audition Log.txt" file and send it as an attachment to [email protected]?  We'll take a look in that logfile and see if it gives us more information about why this is failing now.
    Also, do you have any other Adobe applications installed on this machine, such as Premiere Pro?  If so, do they launch as expected or fail as well?
    I do have the trial Pro version of Adobe reader, but I have not activated it, because I fear the same thing will happen did it. I cannot afford to activate the subscription for that product and take the chance of it not working either. I depend on those two programs religiously. Here is the files that you requested. I appreciate any help you can give me to get this audition program started
    Audition Log- file
    Ticks = 16       C:\Program Files (x86)\Common Files\Adobe\dynamiclink\7.0\dynamiclinkmanager.exe
    Sent from Windows Mail

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • Aging calculation with Special periods

    Hi all,
    I have a asset cube (Cumulative movements) to store values by fiscalyear/period including special period (P13-P16) and requirements to get aging report based on fiscal year/period and report as follows.
                                    Curent | >30days|>60 days| >120 days| >180 days|
    Asset Number
    I’m getting aging is based on selection period, and with off set (-1, -2, -3 etc.) .
    For example, If selection date 002.2014, P2 amount will be in current , P1 amount in >30 days, P12 amount in >60days but in >60days expecting to get from P16 to P12 values.
    Please give some inputs to get special periods values into aging backet as Cube is storing special period values.
    Regards
    Naani.

    Hi Naami
    Since you can't work with fiscal year period to offset with std values then create a Variable with customer exit and translate fiscal year period to calmonth then offset this one with your values.
    Thank you
    Yiannis

  • Depreciation run with special period

    We require 2 set of FS reports:-
    1.) FS as at 14/12/2007
    2.) FS as at 31/12/2007
    We have use the following period to derive the the reports
    1.) Period 12 (Transactions 1st - 14th Dec 2007)
    2.) Period 14 ( Transactions 15th - 31st Dec 2007)
    Q1.)Should Dec depreciation run on period 14?
    Q2.) If yes, will the depreciation run capture the depreciation from 1st - 31st Dec 2007?
    Q3.) We have tried to run Dec depreciation in period 14 but error "According to the posting cycle, you should post period 012 next."
    Pls advise
    1.) Steps to run Dec 2007 depreciation in order to capture the whole month depreciation.
    2.) Which period to open in OB52.
    Kindly assist as this is urgent. Points will be rewarded. Thank you

    Dear Hari,
    Thank you for the helpful points. Rewarded.
    FYI, our cut off date is 14th Dec 2007. Any transactions after this date will go to period 14. In OB52, we set only period 14 open to block user from posting to other periods. Will this affect the depreciation run (given scenario where we run AFAB for period 12)?
    When we run AFAB for period 12, this is the error we get:
    Period 12 is not allowed
    Message no. F5567
    Diagnosis
    The period entered (12) is different from the period calculated (14) and is also not in the interval for special periods (013 to 016).
    System Response
    Error.
    Procedure
    Correct the value entered for the posting period.
    What shoud we do?

  • Not able to Park document with special GL indicator 7-Other Advance to Empl

    Dear All
    We have defined a Special GL indicator 7 - Other Advance to Employees for Account type K-Vendors.
    Allowed transaction type for this special GL indicator is Down payemnt/Down payment request.
    Posting Keys for Debit - 29 and Credit 39.
    By using this spcial GL indicator and posting key 29 we have posted down payment to employee vendor.
    and every month we are posting docuemnt as below thru FB01 for recovery of instalments.
      Positing Key  SP GL   
       39                   7                Employee Vendor               - XXXXX
       40                                     salaries                                 XXXXX
    Now as per JSOX audit compliance, first user has to Park the above docuemnt and then to be posted.
    While parking the document we are facing below error.
    Special G/L indicator 7 is not defined for down payments.
    Any one please guide on this.
    We have to use above special GL indicator only.
    Thanks
    RK

    Hi,
    In down payment how you will debit the salaries.
    Only vendor is debited with special gl and Bank is credited.
    so are you making the advance payment with the request or directly making the down payment in f-48.
    is 7 special GL indicator that you defined, as Standard is A.
    Never change the standard transaction types of down payment.
    Standard SAP will not allow to Park the payments.
    Regards,
    Padma
    Edited by: Padma J on Jul 17, 2009 1:23 PM
    Edited by: Padma J on Jul 17, 2009 1:26 PM

  • Can iWeb be hosted by another site other than .Mac?

    I have already purchased a domain name and a hosting agreement with GoDaddy, however I cannot utilize their web page templates for some reason. Another mac user suggested I purchase iWeb and then have GoDaddy host. Can that be easily accomplished?

    Yes, it can be easily accomplished. Here's iWeb's Help info on this topic...
    Publishing to a server or hosting service other than .Mac:
    Instead of publishing your site to .Mac, you can publish your site to a local folder and then upload it to the server or hosting provider of your choice. You may want to use this method if you own a domain name and want to place your site there.
    To publish your site to a local destination:
    Choose File > Publish to a Folder.
    Choose a location to store your site, and then click Choose.
    After you publish your site to a folder, you can use an FTP (file transfer protocol) client to upload the site folder and index file to the location of your choice. iWeb does not provide an FTP client, but they are easy to obtain. Some hosting services provide a web-based FTP upload service, or you can download an FTP client from the web. For more information, contact your server administrator.
    If you don't publish your site to .Mac, these features are unavailable:
    Password protection
    Blog comments
    Blog search
    Hit counter
    Enhanced slideshows
    Also, for Subscribe buttons to work, you must specify your site's URL in the field provided after you publish to a folder.

  • Stacks in LR5 will not expand, and I can't seem to select any photo other than the top of the stack.

    Since upgrading to LR5, I've been really frustrated by stacks. When I export to jpg, I add it to the library, and add it to a stack with the raw. In LR4, it was easy to select either of these files, since they were side-by-side in the library, but with a visible indication that they were linked. Now, choosing expand stack does exactly... nothing. As far as I can tell, I can either select the very top photo of the stack by clicking on it, or all files in the stack by clicking on the little 1 of X box on the stack, but I have no way of selecting individual files in a stack.

    Your email provider has blocked the standard mail port 25 for sending emails and is requiring a different port. This is to avoid mail relays that use mail clients to send spam. You need to find the port that is used by your provider for sending outgoing mail. Then change the settings in your email account on your phone to match the port. You will also have to provide some security credentials for the account.
    You can also try deleting the email account from your iphone, and the adding the email account back as this will many times set the correct port for sending emails.
    You could also do a Google search on the the settings for your device with your email provider. That will provide you with the proper settings.

  • Can I use an outgoing SMTP server (other than .me)

    Can I set up my Mail account to use an out going SMTP server other than .me? I want to use my .me (iCloud) account for incoming mail but want another server for my out going mail. (The reason is a need to keep an existing From: address rather than be required to use "[email protected]".)

    I think some networks restrict what smtp people use, I know that is true for my school. I think the answer this person is looking for is how is a quick way to choose the smtp. I think if the orinial poster selects new message, there is a littel black down arrow to the left of the subject line. If you press this down arrow and select customize, you could put a check box in the outgoing smtp field. Then you can select your out going mail server. But as for chaning your incoming mail server for all incoming email... well no... you can not determine what incoming email server you use for each account.
    @rpeskin The Apple Mail program, does a good job or seperating email accounts. Look for a "show" button on the top menu (somewhere under the red close dot.)
    rpeskinwrote:
    Mar 2, 2012 5:15 PM 
    Can I set up my Mail account to use an out going SMTP server other than .me? I want to use my .me (iCloud) account for incoming mail but want another server for my out going mail. (The reason is a need to keep an existing From: address rather than be required to use "[email protected]".)
    or you can change your default email in the mail preferences.
    Message was edited by: Carlo TD

  • Can iCal send email alarms to someone other than self?

    I would like to have iCal send an email to someone other than myself via an alarm. Is that an option and if so, how is it done? Thanks in advance.

    If you have a ISP based email it can only be sent through Mail via your home ISP connection (or the same ISP elsewhere).
    If you use the ISP's web page email access then you can do it from any machine or on any ISP.
    Most people use a free web based email like GMail or Yahoo, then they can access through any computer with a web browser anywhere.
    I haven't used Mail in years.

  • HT5858 how can I delete photos on my iPhone other than one at a time?

    Can someone help me to delete photos from my iPhone other than one at a time.
    Thanks

    http://osxdaily.com/2012/08/02/delete-all-photos-from-iphone/

  • Unable to read a CD with songs from I tunes other than on a computer with I tunes ???

    I am unable to read other than on a computer with I tunes my CD , What is the solution ???

    Unless you/your band recorded the music you do not have the right/lience to burn the music to a CD for a someone

  • Can I instal Reader to a drive other than C:?

    Is someone able to tell me how to instal Reader to a drive other than C:?
    I am trying to free up space on C: and prefer to load the Reader files into another drive, but I did not see an option to do that when downloading, and the installer just starts automatically without prompting for a target folder.

    Use the offline installer from http://get.adobe.com/reader/enterprise/ and click on Change Destination Folder

Maybe you are looking for

  • Since upgrade from Exchange 2007 to Exchange 2013 the conversations in Outlook do not group by subject

    Hi Microsoft, Since we have upgraded from Exchange 2007 to 2013 users complain their conversations in Outlook are no longer grouped based on the subject of an e-mail. I looks like Outlook uses other message properties for grouping e-mails in a conver

  • Javascript Visuals in OBIEE 11g

    Hi guys, Im facing problems in making custom javascript visuals using Narrative view..I am referring to examples from the SampleApp Linux image available on OTN, which has examples of most of the fucntionality supported by OBIEE. Most of the Javascri

  • How to create Import Declaration (Inward Processing) in SAP GTS

    How to create Import declaration in SAP GTS system for transaction based on Sales Order and Return Delivery documents in ECC6 feeder system. The scenario is described as below: In backend (feeder) system ECC6: 1. Sales Order SD Document Category = u2

  • Change an existing controls style

    I'm in the process of upgrading a large application from LV 8 to 2011. I would also like to update the UI to use the System control style instead of Classic, which is the current style. Is there a way of modifying a controls style without having to r

  • Can not enable HDD Protection

    When I open the HDD Protection the window opens but it is grayed out and "OFF" is selected, why is it grayed out?  How to I activate it?  Please & Thankyou.