Alternate to this PM_ORDER_DATA_READ

Hi
is there any other alternate for thisFM PM_ORDER_DATA_READ either in bapi also.
with regards,
jayasankar.

Hi Jya,
after using this
Call that functionmodule in synchronusly,
call function 'PM_ORDER_DATA_READ ' in update task
again it goes to dump and giving the error
Non-update function module called for update.
(or)
when I use STARTING NEW TASK with call function it is throughing an error that
Field "EXPORTING" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement.
but here in my function module i need to export some of the fields and how come i solve this problem can u guide me with detailed infromation.
cheers,
Hema.

Similar Messages

  • Alternate for this code(joins)

    CREATE TABLE [Store](
    [StoreId] [int] IDENTITY(1,1) NOT NULL,
    [LOC_Name] [varchar](50) NULL,
    CONSTRAINT [PK_Store] PRIMARY KEY CLUSTERED
    [StoreId] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    Insert into [dbo].[Store]
    [LOC_Name]
    select 'virginia'
    union all
    select 'chicago'
    CREATE TABLE [Employee](
    [StoreId] [int] NOT NULL,
    [Emp_NAME] [nvarchar](70) NULL,
    ) ON [PRIMARY]
    Insert into [dbo].[Employee]
    [StoreId]
    ,[Emp_NAME]
    select 1,'daniel'
    union all
    select 1,'jack'
    union all
    select 1,'roger'
    union all
    select 1,'matt'
    union all
    select 2,'sam'
    union all
    select 2,'henry'
    union all
    select 2,'eston'
    union all
    select 2,'robert'
    union all
    select 2,'nadal'
    CREATE TABLE [Customer](
    [CustomerId] [int] IDENTITY(1,1) NOT NULL,
    [StoreId] [int] NOT NULL,
    [CUST_NO] [nvarchar](11) NULL,
    CONSTRAINT [PK_Customer] PRIMARY KEY CLUSTERED
    [CustomerId] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    set identity_insert [CCC_STAGE].[dbo].[Customer_test] on
    Insert into [CCC_STAGE].[dbo].[Customer_test]
    [CustomerId]
    ,[StoreId]
    ,[CUST_NO]
    select 201,1,897456
    union all
    select 202,1,974652
    union all
    select 203,1,276294
    union all
    select 204,1,612348
    union all
    select 205,2,187906
    union all
    select 206,2,289123
    union all
    select 207,2,427403
    union all
    select 208,2,591654
    union all
    select 209,2,904563
    -------------- Query to retrieve In each location each employee is working on how many customers--
    select [LOC_NAME],
    B.[Emp_NAME],
    COUNT(distinct C.[CUST_NO]) TOTAL_CUSTOMERS
    FROM [CCC_STAGE].[dbo].[Store] A
    join [CCC_STAGE].[dbo].[Employee] B
    on A.StoreId=B.StoreId
    join [CCC_STAGE].[dbo].[Customer] c
    on B.StoreId=C.StoreId
    --where LOC_NAME='virginia'
    --where LOC_NAME='chicago'
    group by [LOC_NAME]
    ,B.[Emp_NAME]
    ORDER BY [LOC_NAME],B.[Emp_NAME]
    Hi Everyone,
    I inserted the code creating tables and inserting values to tables and also there is a query which retrieves the data from the tables I created.
    In this scenario, what we need to get is.....
    we need to find out in each location, each employee is working on how many customers, but with the query I wrote I get the data like, all the employee's are working on all the customers. Below is the output I should get
    loc_name emp_name  total_customers
    chiacgo    eston             1
    Chicago    henry             2
    Chicago    nadal             2
    Chicago    Robert          1
    but I am getting the below output which is in correct
    loc_name emp_name  total_customers
    chiacgo    eston            5
    Chicago      henry         5
    Chicago    nadal           5
    Chicago    Robert         5
    Why I am getting this out put can any one tell me please.... I am getting an out put like all the employees are working on all the customers.
    Thanks
    vishu

    Thank you for trying to post DDL; unfortunately, you got it wrong. You also writer really bad SQL code. Only one store and one Personnel? And Personnel is not an attribute of store! We do not use IDENTITY in RDBMS, etc. 
    CREATE TABLE Stores
    (store_duns CHAR(9) NOT NULL PRIMARY KEY, -- wrong!
     store_location VARCHAR(50) NOT NULL);
    The DUNS is the industry standard for a business identifier, but let's keep your INTEGER for now. A location should be on the same scale – that means a city-state location name. 
    Do you really have only one employee, as you said? Why do you think a store is an attribute of this one guy? You have a relationship table here. Tables must have keys. 
    Why did you use a emp_name NVARCHAR(70) as a key?? 
    CREATE TABLE Store_Assignments 
    (emp_id CHAR(10) NOT NULL 
      REFERENCES Personnel (emp_id)
      PRIMARY KEY, 
     store_duns CHAR(9) NOT NULL
      REFERENCES Stores(store_duns));
    Customers also do not have a store as an attribute! They have a relationship. Is it 1:1, 1:m, n:m or what?? I will guess 1:1. D ou know what that means? You seem to have no idea how to write a basic schema. 
    CREATE TABLE Customer_Assignments 
    (customer_id CHAR(16) NOT NULL PRIMARY KEY
      REFERENCES Customers(customer_id)
     ON DELETE CASCADE , 
     store_duns CHAR(9) NOT NULL
      REFERENCES Stores(store_duns)
     ON DELETE CASCADE);
    >> we need to find out in each location, each employee is working on how many customers, but with the query I wrote I get the data like, all the employee’s are working on all the customers. <<
    Your design is garbage. Where did you assign a customer to an employee? (“Hello, my name is Joe and I will be your salesman/waiter!”). The location of a store is unimportant for this.  You need:
    CREATE TABLE Customer_Agent
    (customer_id CHAR(16) NOT NULL PRIMARY KEY
      REFERENCES Customers(customer_id)
     ON DELETE CASCADE, 
     emp_id CHAR(9) NOT NULL
      REFERENCES Personnel(emp_id)
     ON DELETE CASCADE);
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Alternate to this(joins)

    SELECT
    ISNULL(LastMember.DimMemberId, -1) AS PrevMemberId
    ,ISNULL(Member.DimMemberId, -1) AS DimMemberId
    ,ISNULL(LASTMembership.DimMembershipId, -1) AS PrevMembershipId
    ,ISNULL(CurrentMembership.DimMembershipId, -1) AS DimMembershipId
    ,ISNULL(MemberActivity.MemberActivityId, -1) AS MemberActivityId
    ,ISNULL(MembershipActivity.MembershipActivityId, -1) AS MembershipActivityId
    ,CAST(CONVERT(CHAR(8), CurrentMembership.Meta_DateRowEff, 112) AS INT) AS MemberActivityDateId
    ,-1 as DimEmployeeId
    ,member.MembershipNum
    ,member.MemberNum
    FROM
    (SELECT DimMembershipId, MembershipNum ,ServiceLevelId, Meta_DateRowEff
    FROM DW.Dim_Membership
    WHERE Meta_IsCurrent = 'Y' AND ServiceLevelId > -1
    AND Meta_DateRowEff > GETDATE()-30) AS CurrentMembership
    INNER JOIN
    (SELECT SL.DimMembershipId,SL.MembershipNum, SL.ServiceLevelId
    FROM
    (SELECT DimMembershipId,MembershipNum ,ServiceLevelId, Meta_DateRowExp
    FROM DW.Dim_Membership
    WHERE Meta_IsCurrent = 'N' AND ServiceLevelId > -1) AS SL
    LEFT OUTER JOIN
    (SELECT DimMembershipId,MembershipNum, MAX(Meta_DateRowExp) AS MAXMeta_DateRowExp
    FROM DW.Dim_Membership
    WHERE Meta_IsCurrent = 'N' AND ServiceLevelId > -1
    GROUP BY MembershipNum,DimMembershipId) AS MD
    ON MD.MembershipNum = SL.MembershipNum AND MD.MAXMeta_DateRowExp = SL.Meta_DateRowExp
    WHERE MD.MAXMeta_DateRowExp IS NOT NULL) AS LastMembership
    ON CurrentMembership.MembershipNum = LastMembership.MembershipNum
    AND CurrentMembership.ServiceLevelId <> LastMembership.ServiceLevelId
    LEFT OUTER JOIN
    (SELECT DimMemberId, MembershipNum, MemberNum ,ServiceLevelId
    FROM DW.Dim_Member
    WHERE Meta_IsCurrent = 'Y' AND ServiceLevelId > -1
    AND Meta_DateRowEff > GETDATE()-30) AS Member
    ON Member.MembershipNum = CurrentMembership.MembershipNum
    ---- when i join this part of code, my query is bringing more results it is running for ever and throwing me out of memory execption error.
    --can you please tell me the alternative way for this code
    INNER JOIN
    (SELECT ST.DimMemberId,ST.MembershipNum,ST.MemberNum, ST.ServiceLevelId
    FROM
    (SELECT DimMemberId,MembershipNum,MemberNum ,ServiceLevelId, Meta_DateRowExp
    FROM DW.Dim_Member
    WHERE Meta_IsCurrent = 'N' AND ServiceLevelId > -1) AS ST
    LEFT OUTER JOIN
    (SELECT DimMemberId,MembershipNum,MemberNum, MAX(Meta_DateRowExp) AS MAXMeta_DateRowExp
    FROM DW.Dim_Member
    WHERE Meta_IsCurrent = 'N' AND ServiceLevelId > -1
    GROUP BY MemberNum,MembershipNum,DimMemberId) AS MD
    ON MD.MembershipNum = ST.MembershipNum AND MD.MAXMeta_DateRowExp = ST.Meta_DateRowExp
    WHERE MD.MAXMeta_DateRowExp IS NOT NULL) AS LastMember
    ON CurrentMembership.MembershipNum = LastMember.MembershipNum
    AND Member.ServiceLevelId <> LastMember.ServiceLevelId
    CROSS JOIN
    (SELECT TOP 1 DimActivityId as MemberActivityId FROM
    (SELECT DimActivityId, 1 AS ORD
    FROM DW.Dim_Activity
    WHERE ActivityClass = 'Member'
    AND ActivityType = 'Serv Lvl Change'
    AND ActivitySubType = 'Serv Lvl Change'
    AND Meta_IsCurrent = 'Y'
    UNION ALL
    SELECT -1 AS DimActivityId, 2 AS ORD) T
    ORDER BY ORD) AS MemberActivity
    CROSS JOIN
    (SELECT TOP 1 DimActivityId as MembershipActivityId FROM
    (SELECT DimActivityId, 1 AS ORD
    FROM DW.Dim_Activity
    WHERE ActivityClass = 'Membership'
    AND ActivityType = 'Serv Lvl Change'
    AND ActivitySubType = 'Serv Lvl Change'
    AND Meta_IsCurrent = 'Y'
    UNION ALL
    SELECT -1 AS DimActivityId, 2 AS ORD) T
    ORDER BY ORD) AS MembershipActivity
    CREATE TABLE [DW].[Dim_Membership](
    [DimMembershipId] [bigint] IDENTITY(1,1) NOT NULL,
    [MembershipNum] [int] NOT NULL,
    [ServiceLevelId] [int] NOT NULL,
    [Meta_IsCurrent] [char](1) NOT NULL,
    [Meta_DateRowEff] [datetime] NOT NULL,
    CONSTRAINT [PK_Dim_Membership] PRIMARY KEY CLUSTERED
    [DimMembershipId] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [DW]
    ) ON [DW]
    CREATE TABLE [DW].[Dim_Member](
    [DimMemberId] [bigint] IDENTITY(1,1) NOT NULL,
    [MembershipNum] [int] NOT NULL,
    [MemberNum] [tinyint] NOT NULL,
    [ServiceLevelId] [int] NOT NULL,
    [Meta_IsCurrent] [char](1) NOT NULL,
    [Meta_DateRowEff] [datetime] NULL,
    CONSTRAINT [PK_Dim_Member] PRIMARY KEY CLUSTERED
    [DimMemberId] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [DW]
    ) ON [DW]
    CREATE TABLE [DW].[Dim_Activity](
    [DimActivityId] [int] IDENTITY(1,1) NOT NULL,
    [ActivityClass] [varchar](50) NOT NULL,
    [ActivityType] [varchar](50) NOT NULL,
    [ActivitySubType] [varchar](50) NULL,
    [Meta_IsCurrent] [char](1) NOT NULL,
    CONSTRAINT [PK_Dim_MemberActivity] PRIMARY KEY CLUSTERED
    [DimActivityId] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [DW]
    ) ON [DW]
    I inserted the code to create tables. I inserted the code in the code block.
    Member table is very very huge table. joining member with itself is making this query slow, can you please suggest the other way.
    ---- when i join below commented part of code, my query is bringing more results it is running for ever and throwing me out of memory execption error.
    --can you please tell me the alternative way for code

    When this happens, that is, when you get a row explosion that eventually causes SSMS to choke, the cause is usually that you have incomplete join conditions.
    I don't know your tables. Well, you posted the CREATE TABLE statements, but all they have is IDENTITY column of for PK, so I don't know rest of the columns. However, this looks suspect:
     ON CurrentMembership.MembershipNum = LastMembership.MembershipNum
    AND CurrentMembership.ServiceLevelId <> LastMembership.ServiceLevelId
    If there are 10 rows for the same MembershipNum with 10 different service level ids, this condition will produce 90 rows. That is 10x10 - the 10 where the service level IDs are the same. And then you add a second condition on the same pattern. We now have
    900 rows for the same MembershipNum.
    But how you should write your query? No, I don't know, because I don't know what you are looking for.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • ANY alternate for this???

    Hi Experts,
    Pls see the current method we are following for receiving overdelivery and suggest an alternate.
    1) At material master the Base unit of Measure is "EA".
    2) No alternate unit is maintained.
    3) At PO Item level I feed in Oun = EA & OPU = KG. System asks the conversion factor between KG & EA. I enter 1 EA = 100 kg. check unlimited delivery and save.
    4) At the time of GR I realise the goods that have come in weigh 105kgs/pc. Since I pay vendor in KGs I need to show that at MIGO by not increasing quantity. (wherein I can increase total weight since EA & KG are interlinked any increase in KG will also trigger EA)
    5) Right now we are just amending the PO by changing 1 EA = 105 KGs and inwarding material.
    6) Is there anyway I can keep my quantity STATIC and change Weight only at the time of MIGO?
    Thanks & Regards,
    Rajoo

    you can get what you want by so-called batch specific units of measure.
    http://help.sap.com/saphelp_erp2005/helpdata/en/30/e1a993db3611d185160000e82013e8/frameset.htm

  • I am trying to play bejeweled on face book which requires flash is there an alternate to this so I can play my game

    Okay tried to play bejeweled on Facebook but it requires flash which I guess apple does not allow is there a way to do this?

    Adobe owns flash.
    Adobe does not make and is not making a flashplayer for iOS.
    There is no work around.
    If your whole purpose for buying an iPad was to play flash games, you are out of luck.
    Return the iPad.

  • What is the alternate to this? without trigger & insrt...value(seq.nextval)

    create sequence myv ;
    drop table t33;
    create table t33
    (c1 number default myv.nextval);

    Perhaps this, though the downside is it's rather more bulky than a generated number, and less human-readable:
    SQL> create table t33
      2  (c1 raw(16) default sys_guid(), c2 varchar2(30));
    Table created.
    SQL> insert into t33 (c2) values ('Banana');
    1 row created.
    SQL> select * from t33;
    C1                               C2
    2571E04E2E3F59BFE040007F01001E0C Banana
    1 row selected.

  • How do you change the document settings of an alternate layout?

    When you create an alternate layout this modal pops up allowing you to choose a page size with width and height dimensions. After you've selected "OK" how to you get back to this modal? When you go to File > Document Settings it only shows the settings for the main layout (frist layout created). How do you get to the doucment presets for an alternate layout?

    You could use the Page tool.
    In the Pages panel, highlight the master page used by the alternate layout you want to change. Choose the Page tool. Enter a new page size. Because you're applying this to the master page, it will apply to all the document pages based on it.

  • Patch for bug 5397515 or alternate for query please

    Hi
    I am running following query on 10.2.0.3 but giving me internal error. Came to know that its a bug 5397515 fixed in 10.2.0.4. I want to know is there any patch available to resolve just this bug without shifting to 10.2.0.4. or any alternate for this query please??
    SELECT AB.SHIPMENT_LINE_ID, AB.TRANSACTION_ID
    FROM RCV_TRANSACTIONS AB
    WHERE AB.TRANSACTION_TYPE = 'RECEIVE'
    AND AB.SHIPMENT_LINE_ID NOT IN
    (select
    RTS.SHIPMENT_LINE_ID
    from RCV_TRANSACTIONS RTS
    WHERE (LEVEL = 2 OR
    LEVEL =
    select MAX(LEVEL)
    from RCV_TRANSACTIONS B
    start with B.TRANSACTION_ID = 133847
    connect by PRIOR B.TRANSACTION_ID = B.PARENT_TRANSACTION_ID))
    AND RTS.TRANSACTION_TYPE IN ('REJECT',
    'RETURN TO CUSTOMER',
    'RETURN TO VENDOR',
    'CORRECT')
    HAVING ABS(SUM(RTS.QUANTITY)) = AB.QUANTITY
    start with RTS.TRANSACTION_ID = 133847
    connect by PRIOR RTS.TRANSACTION_ID = RTS.PARENT_TRANSACTION_ID
    GROUP BY RTS.SHIPMENT_LINE_ID
    AND AB.TRANSACTION_ID = 133847
    regards

    >
    SELECT AB.SHIPMENT_LINE_ID, AB.TRANSACTION_ID
    FROM RCV_TRANSACTIONS AB
    WHERE AB.TRANSACTION_TYPE = 'RECEIVE'
    AND AB.SHIPMENT_LINE_ID NOT IN
    (select
    RTS.SHIPMENT_LINE_ID
    from RCV_TRANSACTIONS RTS
    WHERE (LEVEL = 2 OR
    LEVEL =
    select MAX(LEVEL)
    from RCV_TRANSACTIONS B
    start with B.TRANSACTION_ID = 133847
    connect by PRIOR B.TRANSACTION_ID = B.PARENT_TRANSACTION_ID))
    AND RTS.TRANSACTION_TYPE IN ('REJECT',
    'RETURN TO CUSTOMER',
    'RETURN TO VENDOR',
    'CORRECT')
    HAVING ABS(SUM(RTS.QUANTITY)) = AB.QUANTITY
    start with RTS.TRANSACTION_ID = 133847
    connect by PRIOR RTS.TRANSACTION_ID = RTS.PARENT_TRANSACTION_ID
    GROUP BY RTS.SHIPMENT_LINE_ID
    AND AB.TRANSACTION_ID = 133847
    >
    Are you sure this query is returning an internal error. As far as I know you can use the level keyword only when there is a connect by involved in the same level of the statement.
    For example following sql statement returns me an error.
    SQL> select * from dual where level = 2 or level = (select max(level) from dual connect by level <= 10);
    select * from dual where level = 2 or level = (select max(level) from dual connect by level <= 10)
    ERROR at line 1:
    ORA-01788: CONNECT BY clause required in this query blockI am not able to find the bug in the metalink.
    If you could copy & paste the actual error (not the contents of the trace file) and explain briefly what you are trying to achieve it will aid us in suggesting you with a solution.
    Regards
    Raj

  • Best Practice - HLevel for Alternate Hierarchy

    Good morning,
    Our Account dimension contains both a standard and alternate hierarchy.  We currently use the HLevel property to drive a variety of formatting (hierarchy indentations, outline for "data bottom", bold for "parent", etc.).  The formulas we've developed for the standard hierarchy work well, but they don't always work with the alternate hierarchy.  I'm considering the creation of a new "Alt_HLevel" property that would contain the associated numerical hierarchy levels for the alternate.  This would provide a level of simplicity in reporting as it would allow us to use consistent formulas.  Downside is the added maintenance.  Before proceeding, I'd like to know if anyone has a better solution.  Thanks!

    Hi Kim,
    As far as my understanding says, HLEVEL will work with the 1st hierarchy of your dimension. So, if you want, you can definitely go ahead by adding another property for the second hierarchy. But yes, as you have already figured out, the cost would be at the maintenance. If you are having regular additions to your dimension, it might be difficult to maintain this property. If the addition of members is not frequent, then I dont see any challenge.
    Alternatively, you can try using H2 when you are calling the HLEVEL property. I have never checked this, so not sure whether it will work or not. But worth trying.
    Hope this helps.

  • Alternate for Clickstream???  Its Urgent

    Hi,
    Currently I am working in Oracle Application Server 10.1.2.0.2 (Windows 2000- Envirnoment) My recuirement is to capture information about where the users are coming and I want to track their clicks.
    Oracle Clickstream Intelligence is not supporting 10.1.2. Urgently I need to find the alternate for this.
    Thanks in Advance...
    Regard
    Balaji S

    the same functionality is available in oracle warehouse builder, please cross check.

  • Alternate Authentication for developers of QaaWS prior to 3.1

    Great enhancement in 3.1 to allow all methods of authentication to be used by individuals creating QaaWS services.  Is there any plan to add this as a fix pack or service pack in the XI R2 series?

    Hi Miriam,
    As far as the architecture of BOXIR2 and BOXIR3.1 are concerned, ther are completely different and since there were many enhancement requests logged for this alternate authentication, this is introduced in XIR3.1.
    So, as far as I am concerned, I would say that it would not be introduced in XIR2 even in future. However there is no concrete answer to your question, because if this is compatible to the current design of the product, it could be introduced in XIR2 too (but the chances are that it would not).
    Hope this helps.
    Regards,
    Jay.

  • Alternate to trfc

    Hi all,
    I have certain data to be updated in the background when ever I create/update a material. For this currently a trfc is created whenever some action takes place on the material. But my issue is I want an alternate to this approach bcoz error correction is an issue in trfc.
    Could you please suggest an alternate to trfc probably some batch to align the data would help... or something else???
    Thanks in advance.
    Regards,
    Anju

    Going through your query, my suggestion would be to create IDoc's on the fly so that the transactions are persistent and monitoring / reprocessing failures are easier. you can also integrate this process via a work flow as suggested by "sameer ahmed" in another thread that you created.

  • How to disable "Are you sure you want to copy this file without its properties?"

    copying from NFTS to Fat32 I get a prompt
    "Are you sure you want to copy this file without its properties?"
    the answer (for me) is always yes
    is there a way to disable the prompt ?

    This may be caused by the presence of NTFS Alternate Data Stream which cannot be copied to FAT32.
    Either format destination as NTFS or use utility like 
    http://www.nirsoft.net/utils/alternate_data_streams.html
    to scan/delete the ADS before copy. From the link above, below are some examples of when an ADS might be created
    1. Favorites of Internet Explorer: When You add a Web site link into your 'Favorites', a .url file containing the url and description is created. However, if the Web site also have an icon (favicon), the icon is saved as alternate stream for the same url file.
    The stream name of the icon is :favicon:$DATA
    2. Downloaded files of Internet Explorer: When you download and save a file with Internet Explorer, it automatically add a zone information for the saved file. This zone information is used for identifying the file as downloaded file from the Internet. The
    stream name in this case is :Zone.Identifier:$DATA
    3. Summary information of files: When you right-click on a file in Explorer and go to the 'Summary' tab, you can add summary information for the file, like title, subject, author, and so on. This summary information is also saved into alternate stream. The
    stream name in this case is SummaryInformation:$DATA.
    In addition to the legitimate usage of alternate streams, this technique may also be used by Viruses/Trojans/Spywares for saving data and hiding it from the user.
    In the case of files downloaded from the internet you could also try the methods in the link below to remove the zone identifier
    http://www.howtogeek.com/70012/what-causes-the-file-downloaded-from-the-internet-warning-and-how-can-i-easily-remove-it/

  • HT4060 Hi when i connect the ipad it is showing the battery outline with red stripes and no charge signaling and the display alternates between the battery outline and apple logo. Kindly help

    Hi
    When I connect my ipad for charging, it is showing the battery outline with red stripes at the bottom and the display alternates between this picture and the apple logo. This happened when i connected to the main power and also when tried charging through my macbook. Please help.

    First step is a SMC reset:
    http://support.apple.com/en-us/HT3964
    Your font is a bit excessive.
    Ciao.

  • Alternate Hierarchy's

    Good Morning
    Is there any way to create an alternate hierarchy without having to use shared members? I have users who want me to duplicate a hierarchy (1000 members) but remove 1 member only from the alternate. This means having to copy the original hierarchy and making all the children shared members and making the parents unique. Is there an easier way to do this? Using Reporting software is not an option as my users all use excel.
    thanks

    Ah, another good use for the "Views" dimension.
    I would go about this with a custom dimension, I've seen called "Views". For the most part it is only 1 stored member, say "Data". But then you can have all kinds of Dynamic Calc members that are some variation of what is actually stored. So in this case you could have a Dynamic Calc member with a formula that is basically
    @sum(@Remove("@Relative("Dimension", 0), <member to be removed>)).
    It will probably be a slow retrieval, if they need it faster then consider making it stored and putting the formula in the nightly calc.
    Robert

Maybe you are looking for