Store common date for the sales and related subsequent rebates credit memo

Hi,
  Iam working one object for  Reporting Date in COPA.
User Exit :  COPA0005
Function Exit : EXIT_SAPLKEII_001
   This user exit will be triggered for all PA posings in COPA.
in this exit import parameter is i_item and  export parameter is E_item.
There is no information for i_item,E_item.
But iam taking one structure(E200) this is refer to i_item,E_item.
Iam getting the values(I_item,E_item) from E200.
my quiers is
1.     Move the posting date (BUDAT) in the input structure of the user exit to the reporting date field (WWRPT) and pass the reporting date to the output structure if the billing document type (FKART) is blank in the input structure.
2.     If the billing document type (FKART) in the input structure is not “B1, B1E, B2, B2E, B3, B3E, B4, BK1, BK3, FXG, G2, G2S, JGL, RE, VLG2, BM1, BM3, FXL, JLL or L2” (note: the billing document category (VBRK_VBTYP) is not avaiable in the input structure), move the posting date (BUDAT) in the input structure of the user exit to the reporting date field (WWRPT) and pass the reporting date to the output structure.
Please help me the logic.
Thanks & Regards,
suresh.T

Promo terms:
Purchase IPh6 - you've already started the purchase of the iph6. Once you receive iph6, activate it, then clean out your old one.
On or before 10/15/14, either trade in the old device at a VZW Retail store or submit the device trade-in online at trade-in.vzw.com. If trading online you have to return devices to VZW by 12/1/14

Similar Messages

  • Who to get Actual Shipment Date for the Sales Order

    Dear All,
         How to Get Actual Shipment Date for the given sales order.
    REgards
    sudheer

    Hai,
    If you want the actual shipment date of an order call the function module RV_ORDER_FLOW_INFORMATION and pass the order number as vbeln in the structure COMWA.select the values from the return table which corresponds to 'J' type which are delivery and get thedate.
    THis will give the actual delivery date (if created).
    Oher way is to look for vbeln in table LIPS using VGBEL = order number as the selection criteria.
    Cheers,
    Sandeep

  • How do I turn off the replay of "the event"?  It's eaten most of my available data for the month and I have 27 days to go.

    I have set Safari to open with Apple as my homepage.  Since the recent iPhone 6 event this has gone straight to the video replay.  How do I turn this off?
    There are 27 days left in my "data plan month" and I've already used 1/3 of my plan.  Not a happy camper....

    Thank you so much.  This seems to have solved the problem - I thought I'd been turning it off, but apparently not.  I'm truly amazed Apple didn't supply an exit/off button.  So grateful for your help.

  • SOP - Routing data consideration in the Sales and operation planning

    Hi,
    Please share knowledge how to take the consider routing while doing the sales and operation planning.
    I have done the resource planning in the sop and it is picking the data's from the rought cut profile also. As per sap help it is mentioned that in sop we can use routing or rate routing also to do the resource planning in sop.
    Where the setting to be done?
    If answered.. full pointed will be rewarded....
    Regards,

    Hi,
    Thanks for your reply.
    As per my knowledge T-code will be OPU4 for the Sales and operation planning.
    The T code OPU5 is applicable for planned orders not for SOP internal orders.
    I have checked the senario and reverting back to you.
    Did you checked the senarios for the resorce leveling with out creating the rough cut planning profile by t code mc35?
    Please give you yahoo or gmail messanger or telephone number ....
    Regards,
    Mahesh Garg

  • How to find table that store real data for field 'BETRG' ?

    1) datasource  0HR_PY_1 include field 'BETRG' in R/3 source system; extract structure HRMS_BIW_PY1 for datasource 0HR_PY_1, however structure is not used for stroing data. Question: how can we find table which store real data for the field  'BETRG'?
    2) If I want to add one type call department leader type which already defined in one enhanced HR table, to calculate the total amount using field 'BETRG'  according to department leader type. Should I enhance datasource  0HR_PY_1 by adding department leader type or create new view based on enhanced HR table and another table that include 'BETRG' data, also create new datasource based on this view later on?
    Thanks!

    Hi,
    Check this for Payroll Data (Transaction Data) 0HR_PY_1
    http://help.sap.com/saphelp_nw70/helpdata/EN/a5/94e8288eec11d4b2fb00010220c65f/frameset.htm
    The extractor for payroll results reads data from payroll cluster PCL2, not from standard tables.
    thanks,
    JituK

  • Anyone else getting a message that they have almost used all of their data for the month?

    We just got a message saying that we have used 90% of our data for the month and we are only 10 days into the billing cycle. I looked at our account on line and it says that we aren't even close to using our total data for the month. When does all of the stupid stuff stop? When I switched to Verizon 10 years ago, they were great. Great customer service, great plans, etc. Now that has gone away. The 4G service is an absolute joke. Where I used to have great service, there literally is none, and the phone won't even switch to 3G if it is in a bad area. I travel through a major city every day and I am amazed at how crappy the service is.
    Now I'm getting messages that aren't even correct??? I have a lot of lines on my account and I don't want to go elsewhere, especially since I live in the country and Verizon is the only way to get decent internet service, but this is getting rediculous. I guess listening to the customers doesn't matter anymore as long as they get their money.

        Hi GeoffPrice
    I'm sorry to hear your getting alerts that are incorrect. Let's get to the bottom of this. What zip code are you in? Are any other devices having the same issue on your account?
    JoeL_VZW
    Follow us on Twitter @VZWSupport

  • Query to find Items in the 'Sales and Marketing' category set.

    Hi,
    Does any one have the query to view the 'Categories' and 'Items' assigned within those Categories for the 'Sales and Marketing' category set. Or do you know any other way in which I can get the Catalog hierarchy along with the items assigned within the catalog?
    Thanks,
    hiten
    http://india-votes.blogspot.com

    And for the second problem try:
    WITH cte
    AS (
    SELECT OD.ProductID
    ,SUM(OD.Quantity) AS SoldQty
    ,datepart(month, O.OrderDate) AS MonthNumber
    ,datename(month, O.OrderDate) AS [Month Name]
    FROM dbo.Orders O
    INNER JOIN dbo.[Order Details] OD ON O.OrderID = OD.OrderID
    WHERE O.OrderDate >= '19970101'
    AND O.OrderDate < '19980101'
    GROUP BY datepart(month, O.OrderDate)
    ,datename(month, O.OrderDate)
    ,OD.ProductID
    ,cte1
    AS (
    SELECT P.ProductName
    ,P.ProductID
    ,cte.SoldQty
    ,cte.MonthNumber
    ,cte.[Month Name]
    ,ROW_NUMBER() OVER (
    PARTITION BY cte.MonthNumber ORDER BY SoldQty
    ) AS RnMin
    ,ROW_NUMBER() OVER (
    PARTITION BY cte.MonthNumber ORDER BY SoldQty DESC
    ) AS RnMax
    FROM cte
    INNER JOIN dbo.Products P ON cte.ProductID = P.ProductID
    SELECT [Month Name]
    ,MIN(CASE
    WHEN RnMin = 1
    THEN ProductName
    END) AS [Least Sold Product]
    ,MIN(CASE
    WHEN RnMin = 1
    THEN SoldQty
    END) AS [Least Sold Qty]
    ,MIN(CASE
    WHEN RnMax = 1
    THEN ProductName
    END) AS [Best Sold Product]
    ,MIN(CASE
    WHEN RnMax = 1
    THEN SoldQty
    END) AS [Best Sold Qty]
    FROM cte1
    GROUP BY [MonthNumber]
    ,[Month Name]
    ORDER BY [MonthNumber]
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Difference between Rebate Credit Memo and Credit Memo

    Dear Experts,
    Can an

    Credit Memo:
    Credit Memo issued for the price difference or if over billed . Credit memo always assoicated with Quantity and price.
    Rebate Credit Memo:
    Rebate credit memo is issued for the accruals ( Discount amount disbursed to the customers based on agreement).
    Rebate credit memo cannot be created manually in VA01. Accrual amount is calculated by the system based on the settle periods maintained in the rebate aggreement however accrual amt can be changed manually in Aggreement.
    Contact for further clarifications
    Senthils

  • Error in Releasing to Account for Rebate Credit Memo in Rebate Extended

    Hi All,
    Please could you let me know the possible cause of this Issue.
    User has run the extended Rebate settlement. The Rebate Credit Memo B3E has been generated but it has not been release to Accounting.  When he has tried to release it to accounting in VF02 he got the following error.
    " Profit Centre XA01/457778 does not exists for 03.07.2010"
    I have checked the Rebate Credit Memo, this Profit Centre does is not reflecting in Rebate Credit Memo. I have checked the Profit Centre reflecting in Rebate Credit Memo is not matching with this Profit Centre. Please could you let me know the possible cause of this so that I can further investigate on this Issue.
    Thanks & Regards,
    Sam Rock.

    Check the validity period you've mentioned in the Profit Centre Master Data (KE52).
    Also, kindly refer SAP Note 338529 - KM700 Profit center does not exist.
    Thanks & Regards
    JP

  • How to  find the Open sale orders till date for  given plant and material ?

    Hi experts,
                     I have a requirement to calculate the open sale orders for a given plant and material. I have tried in VA05 wherein i can get only for the material and sales area combination. From the document nos obtained from VA05 i can then find the plant. But my question is how do i get the output of VA05 into my progra. (can i use submit for a module pool report ).
    Also if ther is some other standard table or Function module to find the open sale orders till a given date ,it will be even more helpful....in which case i can drop the VA05 route.
    Kindly help
    Thanks in advance
    Ashwin

    Hi Ashwin,
        You can use SAP Tables VBAK and VBUP to get to know if the document is complete or not.
       VBUK-GBSTK is the field that will give you the status of the Sales Order .
      VBUK is used at header level , whereas VBUP is used for Item level.
      So in your case what I would do is :
      Get the Sales Orders that satisy the plant and material criteria from VBAP table , take this Sales Document numbers and go to VBUK or VBUP table to get the Sales Order Status. 
       If I need to find the open quantity as well I will link to VBFA table based on the document number.
      Reward if helpful.
    Thanks,
    Imran

  • TS2446 Hello!After I've done my last softwere update I couldn't buy or get any free apps on the apps store.There was an error on my paymant method.I reintrodius my data for the credit card and again error for my credit card.I've changed the credit card an

    Hello!After I've done my last softwere update I couldn't buy or get any free apps on the apps store.There was an error on my paymant method.I reintrodius my data for the credit card and again error for my credit card.I've changed the credit card and the same.why???????

    I have tried all those things I even updated the software to the new iOS system and it still did fix my problem.
    What happened is that my garage band looks like it will open then it shuts down.
    I have lot of important things on my garage band and I'm afraid that if I uninstall it deleting it then reinstalling it all my work on it will be gone and I can't have that happen.
    Everyday I am hoping that when i go to open the app that is will work but it doesn't it gets ready to turn on then it shuts off , the app doesn't even open all the way and turns off.
    I really hope I don't have to erase it.
    It'll say it's ,lading my songs then it shuts down .
    If I waited for the App Store to come up with an update for garage band should I wait till then to update my app so it doesn't get damaged . I don't want to erase it and all my data get erased . I figured if I wait for an update then my garage band will reset itself but won't delete my data. I'm not sure if that will help. Is there anything you or anyone else might know that can help me with this matter ?
    Thank you
    Simachyahi

  • Can we have more than One DC for the sales organization and Plant combo?

    Can we have more than One DC for the sales organization and Plant combination?
    If yes can you please site a practical example to clear the picture

    Hi
    First of all in SAP sales orgs are assigned to distribution channels and the combination of sales org and distribution channel which is called distribution chain is assigned to plant
    There is  no direct link  between sales org  and plant or distribution channel and plant
    So  sales org  and plant combination doesnot exists and
    it is only sales org and dist channel combination which is  called as distribution chain only exists
    Nowhere in SAP we are assigning sales org to plant
    It is because sales org alone doesnot make sense and its combination with dist channel only makes sense
    because sales org is a selling org and the distribution channel is the route to sell and this combination has only to pick the material from plant to process sales to customers
    The relation between sales org and distribution channels is many to many and also vice versa
    Multiple sales orgs can be assigned to one distribution channel and
    Multiple distribution channels  can be assigned to one sales org
    Similarly the relation ship between Distribution chain (sales org+dist channel) to plant is also many to many and vice versa
    Similarly plants from other company codes can also be assigned to Distribution chain to facilitate intercompany processes
    In whatever way look at it the multiple distribution channels can be fit anywhere
    Regards
    Raja

  • I want to store the data form the PWM and the value of the changing duty cycle into a file simultaneously and continually

    i want to store the data form the PWM and the value of the changing duty cycle into a file simultaneously and continually but having problem.Please can anyone help out.
    Attachments:
    data.vi ‏60 KB

    Hello,
    Have you looked at the "Write Binary File.vi" and "Read Binary File.vi" examples?
    They give you a good clue as how to write and read arrays to and from binary files.
    For your data it means that you could put the two data items to write in an array and write the array to file, for the read its important to in what sequence the number were written to file.
    Kind regards,
    André
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • TS3988 I changed my Apple ID to my new email address successfully for the iTunes and App store but it won't work for iCloud and it won't recognize my password. I read that this can't be done. How am I supposed to get into iCloud?

    I changed my Apple ID to my new email address successfully for the iTunes and App store but it won't work for iCloud and it won't recognize my password. I read that this can't be done. How am I supposed to get into iCloud? I plan on getting rid of my old email address which is my old Apple ID so how is that going to work?

    Same question Wish someone had replied!
    I changed my Apple ID to my new email and now cannot find any way to access icloud. Unfortunately I had allowed icloud to hijack my airbook files, so of course I am afraid I will lose them tomorrow when I exchange my iphone for a new one and cannot keep an icloud account i cannot access. What a poor sync system! Really atypical for apple!

  • How can I view my full billing history for the app and music stores without iTunes installed?

    I just received an email receipt from Paypal showing a $12.99 purchase from iTunes. I almost NEVER purchase anything over around five dollars in the app or music store. Since PayPal does not show what this purchase was for, I have not received the receipt from Apple yet, and I cannot find anyway to look up online what this purchase was for....I need help to find out ASAP what this purchase was. If my account has been compromised or if I have been incorrectly charged for something, I would like to get the issue handled immediately. I do not want to install iTunes on my PC (nor should I have to for Pete's sake), but I cannot see anything recent at all in my app or music history on my iPad (not that I would ever purchase anything for $12.99 anyway...I just don't). Thanks in advance for any tips!

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

Maybe you are looking for

  • Excel sheet to idoc

    hi all, the following report fetches data from an excel sheet to an internal table itab and then data from this itab is populated into an idoc. The segment ZVISTAPMS has two char fields. at the following point: Create a data segment for each line of

  • How to create a multi value property

    Hello, I've defined a new property to use with the FAQ form, and set it to a multi value enabled (Multi-Valued checkbox on, Property Renderer set to multivalued). I've added a new Combo Box object to the form using Form Builder, and assign the proper

  • HT201372 Failed to start erase of disk due to error (-9999, 0). A error occurred erasing the disk.

    Tried the recommendations in this article, however ran into the  error posted below. Creating a bootable OS X installer in OS X Mavericks sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitle

  • I do not know the answer to my security question

    I was about to buy music on my iphone, but it could not exist. I answer two security questions, but the setting is no longer respond. I had to ask a couple of years ago at the registration, fill out and pointing therefore now no longer the answer. ca

  • Urgent - SAP generated structures (like /BI0/C_00**) are missing.

    Hi Guys, I am working on a mySAP upgrade project (4.5b to ECC6). After BAT box built ( refersh from Prod box and then upgraded ), I find that there are some SAP generated structures missing. These structures like /BI0/C_00**, such as /BI0/C_0053 ("Ex