Alpha confirming in master data

Hi Exprets,
I am having a regular loading issue like one load is getting failed due to Alpha confirming value. we are padding zeros to that data and pushing from PSA to Target. It was solved temporarily. But I required permanent solution to fix it. I written a transfer routine to that info object and then loaded it got successed but in the PSA data is available and in the target level it is not holding the data.
I written the ABAP like this in the Transfer rules.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    INPUT         =  TRAN_STRUCTURE-ZZMATGRP
IMPORTING
   OUTPUT        =   RESULT.
Is there any error in coding part please let u throw light on this
Thanks in advance,
Krishna

Hi,
Check the code, just copy and past in SE38 and check.
REPORT  ZALPHA_INPUT.
DATA: ZI(18) TYPE C,
      ZO(12) TYPE C.
DATA: ZS(12) TYPE C,
      ZR(18) TYPE C.
      ZI = '000000099999889925'.
      ZS = '099999889925'.
  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      INPUT         = ZI
   IMPORTING
     OUTPUT        = ZO.
  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
    EXPORTING
      INPUT         = ZS
   IMPORTING
     OUTPUT        =  ZR  .
Write:/   ZI.
Write:/   ZO.
Write:/   ZS.
Write:/   ZR.
Thanks
Reddy

Similar Messages

  • Userexits   and  master data extraction

    Hi  guys
    1)can any one send me the document regarding to how to do the enhancements/modifications in RSA6 and cmod , i need the information of how to do the modifications in RSA6 after select the structure and press the enhance structure tab and also how to do the functional enhancement after press the functional enhancement tab
    2) i couldn't find any SD cubes in business content in bw side, generally mm comes under supply chain management , then SD comes under what area
    3) from where we can extract the master data in R/3 , how we can confirm thats master data before extraction,
    i will assign the points to say thanks
    regards
    Bala

    2) i couldn't find any SD cubes in business content in bw side, generally mm comes under supply chain management , then SD comes under what area
    SD will be under SD.
    3) from where we can extract the master data in R/3 , how we can confirm thats master data before extraction,
    If you dont see the suffix Attr , TEXTS, HIER afteer the data source name, then it is not master data.
    More than this, if you see the name of the data source itself, you can make out. If not, if you look at the fields of the data sources, you can make out. If not, execute RSA3, and the data will tell you whether it is master data or transaction data.
    Ravi Thothadri

  • Vendor master data change confirmation -Report Y_CD1_39000398

    Hello All,
    In report  Y_CD1_39000398 we can see the confirmation pending for the Vendor master data changs. There are some entries which are pending since last 5 years becasue the chagnes are rejected. Is there is any possibility to remove this so that in this report we can get only relevant entries
    Thanks  & regards,
    Prashant

    Hi,
    I dont think it is the standard report. I think its a developed one as it is starting with Y. If so, then co-ordinate with your abaper and do the necessary changes to get the right result.

  • Payment done without confirmation of vendor master data

    I have an issue with sensitive fields. A payment was done without confirmation of vendor master data.
    F110 , FK09  transaction is used.
    Without approving the payment, it is cleared. Although it should show Account blocked for payment run.
    Are there any notes which can be applied. This is 46C system?

    check view V_T055F
    and read docu to tcode FK09!
    A.

  • Alpha confirming value

    while I am doing a load i am getting a  Alpha-confirming value 6019999 RSAR 196 error message in Master data. But i have seen the info object setting it has got the alpha setting in it.
    But what is the real problem does any can help.Pease...

    Hi ,
    Said error occurs due to the insufficient length of the data. 
    Use following function module in the transfer routine of the characteristic.
    FM : CONVERSION_EXIT_ALPHA_INPUT.
    Pass the characteristic object as input and collect the output in the resulting variable.
    It will add required zeros before the 6019999 .
    It will solve the problem.
    Regards,
    Aditya

  • Error while deleting master data (Message no. RSDMD118)

    Dear all,
    I am performing a test to create and delete new Company Codes in Consolidation Workbench.
    Creation of new Company Codes went on successfully but deleting them give me the following error message upon saving:
    Error while deleting master data
    Message no. RSDMD118
    Since they are new Company Codes, they have not been used and stored in any BW cubes. Any idea on why BCS prevents me from deleting them?
    Appreciate assistance to troubleshoot and resolve this error.
    Thank you.

    Thank you both for your replies.
    I am sure those are not the case here as I deleted the Company immediately after creating it.
    Just to make sure, I performed "Where-Used List" again and BCS confirmed that it is not being used anywhere:
    Use of: Company UAT1 UAT Company 1
    Number of Uses Found: 0 
    However, the same error message was displayed again after I tried to delete the Company and save the configuration. Still can't find any solid reason behind this.

  • What are the dependent master data for running MRP

    Hi Experts,
                      My client wants to Run MRP After 8 Months of implementation. Now i want to know
    1) What are the Master Data need to be check. They are Using the Strategy 20.
    2) They have confirmed sales order for few customers. Forecast sales orders for few customers.How to map it in sap.
    3) Where will i get Gross Requirement in SAP. Because  MRP run will generates the net requirements.
    4) Is there any report in SAP displays the Forecast values for the selected material.
    Please help me on the above points.
    Thanks
    Satheesh

    HI Vishwa Upadhyay,
                                     Thank you Once again,
    The first point is cleared. Can you please suggest me on the 2,3& 4 points please. What are the configuration settings needed for the different sales order type( i.e.. confirmed and forecast)
    Thanks
    Satheesh.N

  • Can Not Delete Master data 0Material

    Hi Gurus:
                 I need to get rid of Leading Zeros for Material Number. My understanding is I need to do ALPHA conversion.
    I did the follwing Steps:
    1. Delete data from ODS
    2. Delete Data from Master Data 0MATRIAL.
    Although I deleted data from ODS, still when I try to delete data from 0MATERIAL it is giving me some error saying there will be still some data left.
    3. I went to RSD1 and tried to do ALPHA conversion. I m getting following errors:
      Master Data Table /BIO/PMATERIAL conatins data: Characteristc 0MATERIAL  can not be activated
    SID Data Table /BIO/SMATERIAL conatins data: Characteristc 0MATERIAL can not be activated
    Test Data Table /BIO/TMATERIAL conatins data: Characteristc 0MATERIAL can not be activated.
    Suggest me what I need to do.
    Thanks in advance for your help!

    I did the follwing for 0MATERIAL. But getting errors.
    fill the internal table "MONITOR", to make monitor entries
    CALL FUNCTION "CONVERSION_EXIT_ALPHA_OUTPUT".
    EXPORTING INPUT = COMM_STRUCTURE-/BI0/0MATERIAL.
    IMPORTING OUPUT = RESULT.
    RETURNCODE = 0.
    result value of the routine
    RESULT = .
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    This is the error I am getting:
    E:Field "EXPORTING" is unknown. It is neither in one of the specified
    tables nor defined by a "DATA" statement.
    Thanks!

  • Extraction of certain master data not working

    Hi, we are on BI7 and some of the BC masterdata extractions are not working correctly.  Some masterdata working fine, consequently communication between systems working, but some master data fields e.g. 0co_area, 0chrt_accts and more are not working fine.  Get this on 3.x and new datasources.
    The data does get pulled through but the upload just never goes green, and keeps running.  If one look at the batch jobs (SM37) in the appropriate source system, it keeps on going until it is manually stopped. 
    I am only experiencing this problem with data pulled through from the production system - I am pulling it through to my testing and production box, but fails in both, where all other ECC systems are fine.
    In the monitor there is a warning and the following is the details of the monitor: 
    Overall status: Missing Messages or warnings
       Requests (messages):  Everything OK  (green)       Data request arranged  (green)
           Confirmed with:  OK (green)
       Extraction (messages): Missing messages (yellow)
           Data request received (green)
           Data selection scheduled (green)
           Missing message:  Number of sent records (yellow)
           Missing message: Selection completed (yellow)
       Transfer (IDocs and TRFC): Missing messages or warnings (yellow)
           Request IDoc: Application document posted (green)
           Info IDoc 1 : Application document posted (green)
           Data Package 1 : arrived in BW ; Processing : Selected number does not agree with transferred n (yellow)
           Info IDoc 2 : Application document posted (green)
       Processing (data packet) : Everyting OK (green)
           Inboun Processing (32 records) : No errors (green)
           Update PSA (32 records posted) : No errors (green)
           Processing end : No errors (green)

    Thanks, for the responses.  The appropriate Idocs work fine with transaction BD87. I looked in SM58 earlier during the course of the day and there was no error, just checked again (8PM) and found some entries with error texts for BW background user - 6 errors within 10 seconds.  Something to do with 'ERROR REQU... PG# IN 1' - do not have authorisation at this moment to check the specific requests, but not sure if the master data extractions would have caused these.
    In the job log for the problematic jobs, only 1 IDoc get created, unlike the other succesful ones that have 3 IDocs (not sure if this means anything)

  • Mass Upload Documents for Master Data in BI 7.0

    Can anyone confirm that the 'How To' document for uploading mass documents is still valid in BI 7.0 SP 15 (it was stated for 3.0B SP7) or suggest another way to do this?
    The business requirement is to upload numerous image files as BW: Physical Class Master Data documents for 0MATERIAL. It would need to also set the Log.Doc.Property of Document Type = value.

    This code does work in BI 7.0 SP 16, with a small alteration.

  • Creation of OLAP Variable for Master data

    Dear BW Experts,
    How to Create OLAP Variable for Master data  in SAP BW? What is the use of OLAP Variable?

    The entry column Type (Variable) on the Select Data tabpage indicates a variable time frame in which the data should be requested. The variables are not replaced by concrete values until a request is made. There are eight options:
    Variable            Data request        Description
    0
                          Yesterday
                                            (12am – 12am)
    1
                         Last week
                                            (Monday-Sunday)
    2
                           Last month
                                            (1. (First day - last day of previous month)
    3
                           Last quarter
                                           (1. (First day - last day of previous quarter)
    4
                           Last year
                                          (01. (January 1 – Dec 31 of previous year)
    5
                      User time selection
                                               See below
    6
                       ABAP routines
                                               See below
    7
                         <b>OLAP variables</b>
                                                See below
    <b>Time selections with the help of the variables 0 to 4.</b>
    The variables 0-4 only refer to date fields of the data type DATS.
    <b>User time selection</b>
    Type 5 gives you a free selection of all fields.
    If you select this variable for a field, confirm the selection, and then choose Detail for Type, an additional dialog box appears. In this dialog box you can freely limit the values of the fields and determine the next period value and the number of periods until a repetition.
    Variables are placeholders for values and are not replaced by concrete values until a data request is made. You can also use a Variable for selections when requesting data for an InfoObject, if you choose type 7, confirm the selection, and then choose Detail for Type.

  • Unit Price in Item Master Data

    Step no.1) At time of Defining Item Master Data  we are Defining Unit Price say<b> 2,000</b> <b>INR.</b> Data Saved in Price List 01.
    Now with this information I am Preparing Purchase Order.After Selecting Specific Item unit price is reflecting in P.O by default, Then I modified Unit price from 2000 INR to 2500 INR in P.O.
    Step no 2)  I received material by Goods Receipt PO
    Step no 3) When I am posting A/P Invoice based on GoodsReceipt PO in invoice the original Master Data Unit price is Reflecting.
    Now vice versa I made another Transaction also in Another System.
    In Step no 3 it is reflecting the Unit Price of Purchase Order.
    Can I know why it gives different Information for same type of Transaction. Does I followed wrong System.
    Regards
    Narender

    Please confirm the following.
    Once you select a Price in PO it should carry all the way through at the AP Invoice and should not change unless changed manually.
    Are you copying the PO >  Goods Receipt PO > AP Invoice
    And when copying to Goods Receipt PO or Invoice you are not changing the price or Pricelist
    Pls let me know
    Suda

  • Leading zeros-master data

    Hi All,
    We have a characteristic 'Material'(custom defined master data infoObject) of length
    10,Conversion routine:ALPHA, datatype :CHAR,& output length:10.
    Requirement is Material number should be displayed as 10 digit number(characters ) in Bex
    report.
    but for some of the materials,we  don't have 10 digits for example we have a material
    123(this 123 should be seen as 0000000123 in Query output).
    When i am displaying infocube contents or master data contents i could see 123 as
    0000000123. but with F4,it shows 123 as 123  and in Query output also as '123'
    1.actually How data will be stored in infocube and master data tables? (either 123 or
    0000000123)
    2. one soution to display matarial as 10 char in report is  with  transfer/update routine by
    adding leading zeros.
    Is there any other way to achieve this without using routine ?kendly let me know.
    correct me if my above asumption is wrong.
    thanks

    Hi Murali,
    the Alpha Conversion ist used to convert data between an internal and an external view. The internal view is how the data is physically stored in the database. The external is i.e. how the data is displayed in reports.
    At some point the Alpha Conversion (if defined for the characteristic) is automatically used - you can not change it. This means that in this cases you can only see the external format. The BEx Reporting is one place and the F4 help another.
    In some places within the BW system (no enduser view) you have the option to see the data in the internal format. One of these places ist the cube content. There you have a flag "Do not use any conversion". If this flag is activated you will see the data in the internal format. But this is NOT the format a user will see in reporting.
    In your case the internal format is the value "0000000123" and the external "123".
    Hope that helps
    Regards
    Adios

  • Vendor master data-sensitive field search term 1

    Hi
    Incase of Vendor master data ,i have defined search term 1 AS SENSITIVE FIELD.
    When i change the master data i.e  search term 1 sometimes it asks for change confirmation and sometime it doesnt.
    Can you pls let me know why does this happen..that too for few vendors any logic.

    resolved

  • Dual Control for Vendor/Customer Master Data

    We can set Dual Control for Vendor/Customer Master Data. I have set it. According to the cycle, I have customized sensitive field, and make changes in Vendor/Customer A/c. Here the changes will be confirmed by other user who is authorised to confirm the changes. In this scenario, I would like to know, can we avoid this confirmation once we have actived? If, no than how could we confirm the changes and where can we set authorisation?

    Dear,
    No, You cannot avoid the dual check if You activate it. Another user by FK08 has to confirm the changes.
    Then You can delete the field for the dual control into the table T055F and no check will be done in the future.
    I hope this helps.
    Mauri

Maybe you are looking for

  • Fiori Error while creating catalog and Group in Fiori Launchpad

    Hi , We are getting following error while creating Catalog and Groups in Fiori Launchapd: Error (500, Internal Server Error) in OData response for GET "/sap/opu/odata/UI2/TRANSPORT/CustomizingRequests?$filter=isDefaultRequest%20eq%20true": HTTP reque

  • Firmware Upgrade causes severe slowness and Hangs

    Has anyone else encountered this problem? I did do the firmware upgrade, and that caused slowness in responsiveness (followed immediately by that spinning wheel). In some cases, it completely hangs. At this time, I also tried to VNC into it, and it w

  • Price in Sales Order Condition tab

    Hi,   I have set a condition type similar to PR00 to input the revised price of the product. When I create a Credit Memo req w.r.to this I see the amounts to be greyed out ! How could I make it to amend it in my Credit Memo ? Is this controlled in th

  • "Unauthorized" error for SOAP receiver channel

    Hi all, I have a scenario in which I am calling a .NET web service from a UDF in which the XML payload is constructed manually. I have configured a SOAP receiver channel. Also, since the web service needs certificate authentication, I have checked th

  • Software Recovery Tool : Lumia

    Please a request please add search button in your both recovery tool Lumia Software Recovery tool and Windows Phone Recovery tool as adding product code search is very helpful like i have lots of lumia and one lumia is in office and i know the produc