Data download for planning

I want to production planning in other SYSTEM other than SAP R/3 , for that to load all relevant data from R/3 to other system.
1. Independent demand  ( item , ship-to , qty, so no. so line no. cust no. cust name due date  ) :
please give table name and filed name above mentioned.
2. Dependent Demand ( Transfer order )  ( Item , ship-to, qty, sto no. sto line no. cust no. due date )
please give table name and filed name above mentioned.
Regards
vinod

HI
  DATA:PLINE TYPE I,CLINE TYPE I.
  REFRESH IT_S.
  REFRESH: itab,GT_S.
  CALL FUNCTION 'NAMETAB_GET'
    EXPORTING
      langu          = sy-langu
      tabname        = itoper-tabname
    TABLES
      nametab        = itab
    EXCEPTIONS
      no_texts_found = 1.
  IF sy-subrc = 1.
    MESSAGE 'STOP,CREATE TABLE ERROR' TYPE 'E'.
  ENDIF.
  DESCRIBE TABLE itab LINES pline.
  LOOP AT <F_FS> ASSIGNING <F_FS5>.
    CLEAR CLINE.
    LOOP AT itab.
      CLINE = sy-tabix.
      ASSIGN COMPONENT itab-fieldname OF STRUCTURE <F_FS5> TO <F_FS6>.
      IF SY-SUBRC = 0.
        IF CLINE = 1.
          WA_S = <F_FS6>.
        ELSE.
          CONCATENATE WA_S <F_FS6> INTO WA_S separated by con_tab.
          IF CLINE = pline.
            concatenate  WA_S con_cret into WA_S.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDLOOP.
    REFRESH IT_S.
    CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
  EXPORTING
    TEXT            = WA_S
IMPORTING
  LENGTH          =
  TABLES
    FTEXT_TAB       = IT_S
    APPEND LINES OF IT_S TO GT_S.
   APPEND WA_S TO IT_S.
  ENDLOOP.
  IF <F_FS5> IS ASSIGNED.
    UNASSIGN <F_FS5>.
  ENDIF.
  IF <F_FS6> IS ASSIGNED.
    UNASSIGN <F_FS6>.
  ENDIF.
WHEN RUN:
    CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
  EXPORTING
    TEXT            = WA_S
IMPORTING
  LENGTH          =
  TABLES
    FTEXT_TAB       = IT_S
Will dump out!
TYPES:S_STRING TYPE STRING.
DATA:WA_S TYPE S_STRING,
     IT_S TYPE TABLE OF S_STRING WITH HEADER LINE,
     GT_S TYPE TABLE OF S_STRING WITH HEADER LINE.

Similar Messages

  • Creating data source for planning area

    Hi Experts,
    Can you please help me by providing steps to create data source for planning area.
    Thanks in advance for your help.
    Regards,
    Brahma

    Hi Brahma,
    Please follow below link....
    http://help.sap.com/saphelp_scm50/helpdata/en/00/dc54384ac9a81be10000009b38f8cf/frameset.htm
    Hope this may help
    Regards,
    Harshil Desai

  • How to delete data source for Planning?

    I have removed some decommed planning cubes and apps but when I try to delete teh data sources for them in the planning config utility, it refuses, saying that the data sources are "associated with an application"?

    First delete the applicaiton from the link http://machinename:8300/HyperionPlanning/AppWizard.jsp
    after successful deletion, goto the configuration utility. click on the DSN Delete.
    Regards

  • Sample Data download for practice.

    Hi DBA
    can any one tel me where i can download sample data for practicing.
    Thanks
    Raja....

    803338 wrote:
    Hi Pavan,
    Thanks for your response.
    Raja...
    create table tbl_practice as
    select * from dba_objects;:)
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • Have large data downloads for no apparent reason can be upwards of a half a gb. Any ideas

    Hi,
    My sons iPhone 4S with 64 megs of memory periodically has a large data usage. Can be around .5 gb for no apparent reason. Wifi is on. Sometimes this download occurs in middle of night. Any ideas. Thanks

    If it is cellular data usage you should be able to identify the cause with a little detective work. Settings > Cellular > Use Cellular Data For will show data usage by app and if you click on System Services in that list it will also show the details of system service usage. The numbers are from the last time the statistics were reset (bottom of the same screen).

  • Data download (for excel) ISSUE!

    hi
    i use GUI_DOWNLOAD function download inter table data generated xls format.
    in inter table data have ID FIeld which consist of numeric!
    example:
    35000078297773587
    when download the field will change:3.50001E+16
    i want to avoid it!
    in sap stardand provide a mothod:
    run REUSE_ALV_GRID_DISPLAY function to display
    data.
    in REUSE_ALV_GRID_DISPLAY screen:
    go to list>export>sprresheet
    choice excel(in MHTML format) will download data what i want!
    who know which function is executed in REUSE_ALV_GRID_DISPLAY  .
    or exist other method to solve this issue!
    help!
    thank you advance!

    HI
      DATA:PLINE TYPE I,CLINE TYPE I.
      REFRESH IT_S.
      REFRESH: itab,GT_S.
      CALL FUNCTION 'NAMETAB_GET'
        EXPORTING
          langu          = sy-langu
          tabname        = itoper-tabname
        TABLES
          nametab        = itab
        EXCEPTIONS
          no_texts_found = 1.
      IF sy-subrc = 1.
        MESSAGE 'STOP,CREATE TABLE ERROR' TYPE 'E'.
      ENDIF.
      DESCRIBE TABLE itab LINES pline.
      LOOP AT <F_FS> ASSIGNING <F_FS5>.
        CLEAR CLINE.
        LOOP AT itab.
          CLINE = sy-tabix.
          ASSIGN COMPONENT itab-fieldname OF STRUCTURE <F_FS5> TO <F_FS6>.
          IF SY-SUBRC = 0.
            IF CLINE = 1.
              WA_S = <F_FS6>.
            ELSE.
              CONCATENATE WA_S <F_FS6> INTO WA_S separated by con_tab.
              IF CLINE = pline.
                concatenate  WA_S con_cret into WA_S.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDLOOP.
        REFRESH IT_S.
        CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
      EXPORTING
        TEXT            = WA_S
    IMPORTING
      LENGTH          =
      TABLES
        FTEXT_TAB       = IT_S
        APPEND LINES OF IT_S TO GT_S.
       APPEND WA_S TO IT_S.
      ENDLOOP.
      IF <F_FS5> IS ASSIGNED.
        UNASSIGN <F_FS5>.
      ENDIF.
      IF <F_FS6> IS ASSIGNED.
        UNASSIGN <F_FS6>.
      ENDIF.
    WHEN RUN:
        CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
      EXPORTING
        TEXT            = WA_S
    IMPORTING
      LENGTH          =
      TABLES
        FTEXT_TAB       = IT_S
    Will dump out!
    TYPES:S_STRING TYPE STRING.
    DATA:WA_S TYPE S_STRING,
         IT_S TYPE TABLE OF S_STRING WITH HEADER LINE,
         GT_S TYPE TABLE OF S_STRING WITH HEADER LINE.

  • Unable to create data source for planning via workspace

    I have installed the following products in Hyperion 11.1.2
    - Foundation
    - Essbase, EAS
    - Planning
    - Reporting & Analysis
    However, when I log in to Workspace (http://server:19000/workspace, I only see the following menu options under Navigate -> Administer
    -Shared Services Console
    -Workspace Server Settings
    -Manage preferences
    There is another menu item Navigate->Open Items which is grayed out.
    I am able to create the Planning application via http://server:8300/HyperionPlanning/AppWizard.jsp url but unable to do that via workspace.
    Any help regarding why I do not see the other menu options under Navigate->Administer would be highly appreciated.
    Edited by: user12209997 on Dec 14, 2010 1:30 AM

    Try running the configurator again and go through "Foundation > Configure web server", I would then restart the services in the correct order and see if that helps.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Generate Export datasource for planning area

    Hi,
    we are using SCM 4.0 version for running Demand planning.
    i have one strange problem. that is, to generate export data source for planning area, there is no option when
    right clicking on planning area(context menu).is this option is available somewhere else?. please give me a clue on how to generate export datasource for planning
    area in version SCM 4.0? or do i need to do some configurations?.
    Thanks in advance
    Ramakrishna

    Hi,
    You may try the following:
    1) From the menu: Demand Planning->Environment->Current Settings->Administration of Demand Planning
    2)From the list of planning areas, double click your Planning Area to display your planning area setup
    3) Then from go to the menu Extras->Generate Datasource
    Hope this helps.

  • Cyber Duck killed my Canon DPP Lens Data Downloads?

    I run a programme called DPP, Digital Photo Professional, which was working fine and I was able to download 'lens data' for this program.
    I then tried out Cyber Duck for some FTP transfers which went OK on my MBP.
    But now I find that although Mail and Safari work fine, the data download for DPP no longer works, all I get is 'unable to connect to server'.
    My MacMini has a copy of DPP on it and that is still able to download lens data, but I have not run Cyber Duck on that machine as yet.
    Even if I reinstall DPP it remains the same reporting 'unable to connect to server'.
    I tried contacting Cyber Duck who just bumped me off as it was a 'third party problem', which was not particularly very helpful of them.
    So I am now at a loss what to do.
    It would seem to point to something that may have been altered by using Cyber Duck, but what I do not know. All the internet connections seem to be correct as far as I can tell.
    Anyone have any idea what could have been changed to give me this problem?
    Many thanks for any help.

    I rolled my system back to a clone that I made before I downloaded and used Cyberduck.
    DPP is now able to download its Lens Data. So it would appear that Cyberduck does alter something which breaks DPP and stops it from connecting to the Lens Data server.

  • GoldenGate for Big Data 12c for Win x64?

    I was looking for the GoldenGate for Big Data download for Win x64 and all I found on edelivery was Linux, Solaris, HP-UX and AIX platforms, but no Windows at all (see the screenshot below). I wonder if it's been released yet? Or, is it just an unfortunate omission?
    Thanks
    Andy

    Thanks, for your reply, Karan!
    I tried following your advice, but bumped into yet another similar problem. I've installed OGG 12c and now I can't seem to be able to find the matching version of the GG Application Adapters for JMS and Flat File for the Win x64 platform. The latest version of Application Adapter available on edelivery is 11.1.1.0.0 which means I need to downgrade OGG to the same version. No big deal but I wanted to make sure I'm not missing anything.
    I wonder if anybody has any idea as to whether Application Adapters 12c for JMS and Flat File is available for the Win x64 platform, and if so, where can I download it from?
    Thanks
    Andy

  • Is there standard report for planned and actual devlivery date?

    Hi Guru,
    Could you help me to find standard report to compare planned delivery date in PO and actual delivery date (GR Posting date)?
    I wonder, Is there standard report for planned and actual delivery date?
    or I have to create a customizing report.
    Thank you very much.

    hi
    i dont think it is possible to see both in one pan so try to create some Z report
    u try ME80fn here u have to change the views ,in del shedule view u can see the delivery dtae and in PO histry view u can see the posting date
    regards
    kunal

  • Best practice for Plan and actual data

    Hello, what is the best practice for Plan and actual data?  should they both be in the same app or different?
    Thanks.

    Hi Zack,
    It will be easier for you to maintain the data in a single application. Every application needs to have the category dimension, mandatorily. So, you can use this dimension to maintain the actual and plan data.
    Hope this helps.

  • My itunes is up to date on windows vista but my iphone 3gs wont download the new 4.3 sofeware saying that network connection timed out after downloading for 7 minutes. can anyone help?

    my itunes is up to date on windows vista but my iphone 3gs wont download the new 4.3 sofeware saying that network connection timed out after downloading for 7 minutes. can anyone help?

    I have manage to update. You need to disable windows firewall and
    You have any other anti virus (I have kaspersky) you need to disable that as well

  • Need softwear download for the W995. All my data\ files lost in post during a move.

    Need Softwear download for a W995.  All my data and files was lost in my move to Brazil.

    Ich würde ja gerne antworten, aber ich verstehe leider kein "ENGLISCH" !?! 

  • Table for Plan Data

    Hi Experts
    Created Cost Element Groups and Cost Center Groups and have Uploaded Plan data in KP06.
    Kindly provide me the Table Names for Cost Element groups,Cost Center groups and Plan Fixed Costs.
    Thanks & Regards
    KumarRaja
    Edited by: Kumar Raja D on Oct 7, 2009 2:36 PM

    Hi,
    Tables for groups are SETNODE and SETLEAF. Select by object class the required group (cost centres, cost elements, etc.) The tables for planning are COKP (primary) and COKS (secondary).
    Regards,
    Eli

Maybe you are looking for

  • Internet data sim in saudi how to use in iphone 4

    im kevin from the philipines, im here in saudi arabia, i bought a internet data sim from one of the telecom here and unfortunately its not working on my iphone 4 which i bought from the philippines, does anyone know what should be done for the settin

  • Nano not being recognized in iTunes (Windows)

    Hi there I'll try and be brief, but this is a weird one. My iTunes is not recognizing my Nano all of a sudden. Have been using it for last 4 months with no problems. Here's what I have done so far; 1. Updated to latest version of iTunes 2. Restored N

  • Simplest iChat AV to Windows?

    I wish to use iChat AV to let a client recieve only video and audio from an editing system. Here is the setup: Editing system is on a seperate computer from iChat Mac. We use a convertor box to make video and audio from edit system into a DV firewire

  • Self-Registration in OIM 10g: how to install, customize and use of  SPML

    Hello. Can someone point me to any documentation (Oracle or other) on self-registration in OIM 10g. Like doc on how to install it and customize it. Also a doc on how to set up self-registration on a separate server and talk to OIM server using SPML.

  • Event ID 36887 Schannel - fatal alert code 49

    Use process explorer and refer to the PID in the event log. This should at least tell you what program is creating the event, narrowing down the cause a bit.