Passing the fields dynamically by bdc prog to the infotype

hi,
     I have a requirement to pass the fields dynamically to the infotype database through bdc program from flat file or data set.
               Here I will give the field values in irregular way but it has to be sort before uploading to the data base of infotype.
        I hope any body can helpl me.
thanks and regards,
Sekhar.

Hi Sekhar,
1. define the type
2. internal table & Work area declerations.
3. use function modules KD_GET_FILENAME_ON_F4 & ALSM_EXCEL_TO_INTERNAL_TABLE to upload the data from excel file.
4. Loop the internal table which is loaded from ALSM_EXCEL_TO_INTERNAL_TABLE fm and Sort the table based on the field which you required to sort.
Thanks & Regards,
Ganesh R K

Similar Messages

  • To select the field dynamically while fetching th e data

    Hi Experts,
    We have fields like TKG001, TKG002, TKG003 etc in COST table...
    My requirement is that we want the value present in the field TKG0** where ** is the month of system data.
    Do we have any method to extract the field dynamically from the table.
    Please suggest me how can i achieve the requirement.
    Thank you,
    Regards,
    Kavya

    Hello
    You can use dynamic field specification
    Check this :
    REPORT x.
    DATA :
          BEGIN OF lw_field,
            field(20),
          END OF lw_field,
          lt_field LIKE STANDARD TABLE OF lw_field.
    START-OF-SELECTION.
      lw_field-field = 'BUKRS'.
      APPEND lw_field TO lt_field.
      lw_field-field = 'GJAHR'.
      APPEND lw_field TO lt_field.
      SELECT (lt_field)   "<-- Internal table contains your dynamically specified in parenthesis
      FROM bkpf
      INTO TABLE itab.
      BREAK-POINT.

  • Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator

    Issue : In sharepoint 2013, I am experiening below error while using filter in the list view due to the number of items in this list exceeds the list view threshold, which is 10000 items. Tasks that cause excessive server load (such as those
    involving all list items) are currently prohibited.
    Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator
    Could you please suggest a way to avoid this issue apart from incrementing the list view threshold limit .
    Prashanth

    Reorganizing content, or creating more specific views. sharepoint is warning you that the content is structured in such a way that it can cause performance issues, which should be addressed in some way.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Login password field "The field is to small to accept the data."

    Hi Guys,
    I'm having a problem with the SDK.
    I.m creating a .net application that connects via SAPbobsCOM.
    And getting the folliowing error when i fill the password.
    We are using sap business one 2005.
    The field is to small to accept the data.
    comp = new SAPbobsCOM.Company();
          //You then need to set the following company object properties (connection parameters): Server,
          //UserName, Password, language, and CompanyDB , for example:
          comp.Server = @"VLSRV901"; //Name of the MS SQL DB Server
          comp.DbUserName = "sa";
          comp.DbPassword = "abcdefg!";
          comp.DbServerType = SAPbobsCOM.BoDataServerTypes.dst_MSSQL;
          comp.CompanyDB = "VLA-0209-PROD-William"; //Enter the name of your company
          comp.UserName = "manager";
          comp.Password = "abcdefg09";
          comp.language = SAPbobsCOM.BoSuppLangs.ln_English;
          //To connect to the company database, you call the company object Connect() method:
          int i = comp.Connect();
          if (i != 0)
            int errorCode;
            string errormessage;
            comp.GetLastError(out errorCode, out errormessage);
            throw new Exception(errorCode + " " + errormessage);
    The password i'm using is exactly as long as the password i show in the example code.
    Please advise, how to use "long" passwords??
    Thanks in advance.

    Hi Gordon,
    We are using sql server 2005.
    For your information, the password of the manager is already 9 characters long.
    This works when I login to Sap Business One.
    But  not when I log in through the SDK.
    Please advise.
    William
    Edited by: wvaert on Sep 7, 2010 8:04 AM

  • We are exporting data to the SAP Business one. Error: "The field is too small to accept the data you attempt to add. try inserting or pasting less data"

    Hi,
    I have exported the data from two sources, MS-Excel and SAP Business One to Sap Business One (8.81). While exporting the data, I got the error "The field is too small to accept the data you attempt to add. try inserting or pasting less data" for the first time, Immediately when I run it again, it shows export successfully completed, but nothing is changed in the SAP Business One. Could you please provide the solution as early as possible?
    Thanks & Regards,
    Chaitanya.B

    ok
    i solve the problem.i rezise the colomn size
    thanks

  • [svn:osmf:] 13538: Modified the RTMP dynamic streaming sample to use the new SMIL plugin.

    Revision: 13538
    Revision: 13538
    Author:   [email protected]
    Date:     2010-01-15 16:26:36 -0800 (Fri, 15 Jan 2010)
    Log Message:
    Modified the RTMP dynamic streaming sample to use the new SMIL plugin.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/.actionScriptProperties
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
    Removed Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/org/

    But DynamicStream.as is part of the code base and the does get executed.   Jody, which version of DynamicStream.as is more current?   The one that ships with FMS 3.5 or the one in tools?
    Can anyone answer my original question (I think) which is: should I be able to switch source = http://dynamicStream1.smil -> source = http://dynamicStream2.smil and back and forth etc.  It seems to work.    Are there any caveats?  I am not switching back and forth between flv-s and smil-s
    It turns out that there are a couple of lines of code in NCManger.as::bitrateMatch() which is concatenating the streamName and this results in 404 on the FMS side.   I'm not sure what this is supposed to do or if this is just a bug, but the upshot was that I could not specify source = http://dynamicStream.smil on a remote server.  The uncanny part of this issue is if I serve the same smil locally, referencing remote remote smil and media, it works.  Maybe this has something to do with the bit rate.    Bottom line is that this cost me 3 days, becuase I was under the incorrect impression that you could not reference *.smil directly and I blindly followed the handrail provided by the the FMS videoPlayer sample.  Shame on me for trying to leverage working code shipped with a production version.
    NCManger.as::bitrateMatch()
    if  
    (_streamName != null
    ) {_streamName += _streams[whichStream].src;
    My incling is to change the += above to an = and get on with it.
    If someone at adobe or anywhere can have a look and give me some other guidance, it would be much appreciated.
    Thanks to Sean for the kind and detailed responses and giving me the green light that source=http://dynamicStream.smil _should_ work.
    Thanks to all.

  • How to display the fields dynamically in OAF

    Hi All,
    I have developed a OAF Page and it has one table region and has 5 rows on it.One of the field on the table is Message Choice.
    The requirement is,If I select "Parts" then Lov Field should be displayed and If I select "Services" then one text field should be appear on that perticular table row.
    I have created a PPR on Message Choice and done the coding as follows,but it is not working;
    Please help me to achive it.
    if("lineChange".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
    String rowReference =pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    OARow row = (OARow)am.findRowByRef(rowReference);
    String claimCategory = (String)row.getAttribute("ClaimLineType");
    if ("Parts".equals(claimCategory))
    row.setAttribute("ClaimPartNoLovRender", Boolean.TRUE);
    row.setAttribute("ClaimPartNoRender", Boolean.FALSE);
    else
    row.setAttribute("ClaimPartNoRender", Boolean.TRUE);
    row.setAttribute("ClaimPartNoLovRender", Boolean.FALSE);
    Please let me know if there are any other ways to achive the same.
    Thanks in Advance..

    You might have the wrong forum. This forum is on IOP.

  • How to make the fields dynamic read only in live cycle designer

    hi folks
    I have created a form in Adove livecycle es. Some fields should be read only from the start. So i have set the property .access 'open'. In versions of Adobe 8 this works, but in the latest version  it won't so i think it should be done via another solution. Does anybody know how?
    kind regards,
    Anton Pierhagen

    May be the below code may help.. It loops thru all the pages in the PDF form and make them protected. So the user can not change any value in the form.
    for (var i = 0; i < xfa.host.numPages; i++)
    var oFields = xfa.layout.pageContent(i, "field");
    var nodesLength = oFields.length;
    //set the access type to be protected for all fields
    for (var j = 0; j < nodesLength; j++)
    var oItem = oFields.item(j);
    oItem.access = "protected";
    Thanks
    Srini

  • Field not present in the Field Catalog also getting displayed in the ALV

    Hi Experts,
    I am trying to display some to an ALV grid. But since i don't need all the fields from the internal table, i have deleted those fields from the field catalog. But in-spite of doing this the field heading is still getting displayed. I am not able to figure out the reason for this. Also note that the i have not deleted that field from my internal table which contains the actual data.
    Regards,
    Kush

    Hi,
    If your giving your internal table to the below field then ALV try to disply those many coloumn.
    wa_fcat-tabname    = 'IT_OUTPUT'.
    You can add for that field name.
    wa_fcat--NO_OUT = 'X'.
    Please check the field name on the output will be same as before column name .

  • Results from a form submission does not keep the fields in order when I get the email

    I created a form and it works fine but when I get the email
    back the fields are out of the tab order or out of wack meaning
    they are not in order that I set the acceptabilities to.
    Is this something in the Action script I have to add and what
    would it look like or do I need to edit the CGI script?
    I can provide a link or script let me know.
    Thanks

    This is action script 3.0 Flash CS3
    Below is what I receive back after I test it but it is not in
    order. I guess I assumed that if the tab order is correct and the
    are layout in that order and the code in the form is in order it
    would come back the same way. Mostly I am trying to narrow down the
    problem and my guess is the cgi script or am I wrong? I have
    attached the code for the form.
    Thank You for you time
    Form email submission results:
    Below is what you submitted on Tuesday, February 19, 2008 at
    10:35:08
    list:
    phone:
    address:
    comments:
    city:
    state:
    zip:
    name:

  • How can I set the field ICt in component table of the Tasklist as "Input" ?

    Hi experts,
    How can I set the field ICt (BOM's Item Category (POSTP)) in component table of the Tasklist as "Input" Status (The system is in gray now).
    I can define the different Category value by IB01 or IB02,then I can select them at the Tasklist's component table.But sometimes I need batch input such as LSMW,so pls kindly tell me how to setup it,thanks!
    Yinjun

    Hi,
    BOM is created with some component and item category.
    In task list when you go to component, in normal case one selects and copies BOM over there by clicking component selection button.
    Once BOM is copied over there the BOM item category will get copied. As it is BOM item category in Task list it is greyed and it will get copied automatically from BOM.
    You specify item category required by you in IB01 or IB02 and then use that BOM in task list. Go to componenet tab and click component selection button. Once BOM is copied over there the BOM item category will get copied

  • Help ! I can't find the "field" tab for an object in the library

    Just starting out with the software. I want to place a text box that spans several lines and "allow multiple lines" in a form I am building. The only problem is I can't find the field tab for the text box object. The only two tabs I have at the top of the object library is "Object Library" and "Fragment Library"
    What am I missing?

    Click on the Object Library. Below that there shoudl be three libraries (My Favorites, Standard and Custom). The Textfield is in the Standard library. If all else false you can use the Insert Menu and then choose standard from there.
    Paul

  • How do we make the field's technical name appear in the selection screen

    Hi everyone,
    When we go into the manage of a target for diplaying the content of the object say active data table of ODS, I can only see the technical name of custom objects( infoobjects) like /bic/zcust but the technical name of the business content Infoobject ( like /bi0/material) is not seen instead I only see the description, How can I see the Technical name in the Selection screen of the data browser
    Thank you in advance

    Hi BR,
    I have already tried that. but I cant see the tech name for the Content Infoobject there. And I have also tried User specific settings from the settings Menu.
    If any more options available. PLz tell me
    Thank you

  • Track the values of the fields changed in BDC

    Hello,
    I have a requirement in which i need to track all the changes made to any transaction run in a BDC session by a particular user.
    A report has to be generated based on the session name, giving details like transaction to which change was made, fieldname, old value and new value.
    Table CDHDR and CDPOS give the change records, but how to limit them to the BDC session changes only.
    Any pointers would help.
    Regards,
    Mansi.

    Hi Mansi,
    Before calling Call Transaction,.
    loop the BDCDATA & move it to the new internal table & log it... it shows the screen no's & fields updated & its values.. everything...
    Thanks & regards,
    Dileep .C

  • Dynamically passing the fields to the data base through bdc

    hi,
         I need to pass the fields dynamically to the database uploading. Can anyone tell me, how we can get the 'datatype and length' of all fields in hr module. Is there any table for it.
        Please give me the answer if anyone know this.
    thanks & regards,
    sekhar.

    hi,
        This is the fm to get the datatype and length of the field. Where as i want to pass my irregular format of my presentation file to the database by sorting the fields as per the structure of database fields.
    bye.

Maybe you are looking for

  • Automatic Clearing F.13 - Clearing Criterion

    Dear Forum, We are having problems with the open items clearing for payments made in foreign currencies (EUR) out of local currency account (USD). At the time of payment the system is posting the following entry - Dr. Vendor  - Doc Currency EUR Local

  • Images on Facebook do not appear when using different web browsers

    Images on Facebook do not appear when using Safari on my Macbook Pro (I've tried Google Chrome too with the same result).  This makes me think it's a setting within OS Mavericks that I'm missing.  I have not seen this issue on any other computers.  T

  • IPhone 5 shutting off

    iPhone 5 powers down after I plug the charger in or take it out. It doesn't matter if its plugged into the wall, CPU or car.

  • Kin Twom Microphone Not Working.

    My Microphone On My Phone Suddenly Stopped Working Today. I Can Hear Anyone That Calls Me But They Cant Hear Me?

  • Trouble accessing - KM content

    Hello All, Currently we are have a trouble accessing the KM contents , We are getting the following error RuntimeException: InitialConfigException: Configuration framework system error : "A problem during initialization of the configuration Framework