Initiate GP without filling in required parameters at initiation.

Hi Experts,
Does anyone know how to initiate a GP without filling in the required parameters? I want the user to fill those in from an Adobe Form. Also, how do I assign a role to a user at runtime so I dont have to assign role at the initiation process? We wont always know who a specific task should be assigned to until runtime.
By the way, I tried this in an iView (application parameter) of type sap.com/cafeugpuiinst. and it doesn't work:
process.template.id=[PROCESS_ID]&process.autostart=t
Kunal.

Hi Samir,
Executing each callable object separately is working fine, I have a strong feeling it has something to do with the consolidation of the parameters in the process itself.
Chandan,
In the GP runtime on the left pane you can see all the actions that are assigned to you when executing the Guided Procedure process. What I mean by "The RFC action doesn't even show in the GP runtime" is that the action which calls a BAPI which is a External Service callable object does not show in the list of actions even though it is assigned to me.
Could it be something to do with the cardinality of the parameters?? Each individual paramter is 1..1 but when I group the parameters the Group node is 0..1 and the params within it are 1..1, could this have something to do with it? I'm totally stuck!
Kunal.

Similar Messages

  • Leaving the program without filling the required fields

    Hello,
    As you know we cannot leave the screen if there is a field required to be filled on this screen.However if the user does want to leave the screen without entering any data, how can he / she leave the program?
    For example you have entered 10 bulks of data but want to exit without entering the 11. bulk.
    How?
    Thanks.

    Hi
    - U need to set the command E for the code BACK in the status by menu painter
    - U need to implement a module to be triggered when a ok-code (with command E) is called by AT EXIT-COMMAND addition:
    PROCESS PAI.
      MODULE EXIT AT EXIT-COMMAND.
    MODULE EXIT.
       IF OK_CODE = 'BACK'.
          LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.
    Max

  • Error-No value given for one or more required parameters when using oleDBDa

    Hello,
    I have this sql statement and it works well, the Crystal Report gives good result when I put concrete values like:
    string comstring = "SELECT NOVI.GBR as gbrnov, NOVI.AB as abnov, NALOG1.DATA as datanov, Min(NALOG1.POCKM) AS MinOfPOCKM, Max(NALOG1.KRAJKM) AS MaxOfKRAJKM, (Max(NALOG1.KRAJKM)-Min(NALOG1.POCKM)) AS RAZLIKA, Count(IIf(([MAGACIN.SIFRA]='0991000'),[MAGACIN.KOL],Null)) AS Gorivo, Avg(IIf(([MAGACIN.SIFRA]='0991000'),[MAGACIN.KOL],Null)/100) AS potrosgor100km, Sum(IIf(([MAGACIN.SIFRA]='0993050' Or [MAGACIN.SIFRA]='0993051'),[MAGACIN.KOL],Null)) AS Motmaslo, Sum(IIf(([MAGACIN.SIFRA]='0992201'),[MAGACIN.KOL],Null)) AS Addblue, ([Addblue]/[Gorivo])100 AS Addbluegor, Sum(IIf(([MAGACIN.SIFRA]='0999001'),[MAGACIN.KOL],Null)) AS Antifriz, NOVI.DATAP, NOVI.DATAS, IIf(([NOVI].[KM]<=([NOVI].[KMS1][NOVI].[KMS2])),'ZA SERVIS',(IIf(([NOVI].[KM]<=([NOVI].[KMP1][NOVI].[KMP2])),'PROVERKA',''))) AS Zabeleska FROM (NALOG1 INNER JOIN NOVI ON NALOG1.GBRV = NOVI.GBR) INNER JOIN MAGACIN ON NOVI.GBR = MAGACIN.GBR where (((NOVI.GBR)>='1001' And (NOVI.GBR)<='1080') AND ( ((NOVI.AB)='AK') OR ((NOVI.AB)='AK') ) AND ((NALOG1.DATA)<=#10/31/2011# and (NALOG1.DATA)>=#10/31/2011#) ) GROUP BY NOVI.GBR, NOVI.AB, NALOG1.DATA, ([Addblue]/[Gorivo])100, NOVI.DATAP, NOVI.DATAS, IIf(([NOVI].[KM]<=([NOVI].[KMS1][NOVI].[KMS2])),'ZA SERVIS',(IIf(([NOVI].[KM]<=([NOVI].[KMP1][NOVI].[KMP2])),'PROVERKA','')))";          
    but when I use code like this :
    string comstring = "SELECT NOVI.GBR as gbrnov, NOVI.AB as abnov, NALOG1.DATA as datanov, Min(NALOG1.POCKM) AS MinOfPOCKM, Max(NALOG1.KRAJKM) AS MaxOfKRAJKM, (Max(NALOG1.KRAJKM)-Min(NALOG1.POCKM)) AS RAZLIKA, Count(IIf(([MAGACIN.SIFRA]='0991000'),[MAGACIN.KOL],Null)) AS Gorivo, Avg(IIf(([MAGACIN.SIFRA]='0991000'),[MAGACIN.KOL],Null)/100) AS potrosgor100km, Sum(IIf(([MAGACIN.SIFRA]='0993050' Or [MAGACIN.SIFRA]='0993051'),[MAGACIN.KOL],Null)) AS Motmaslo, Sum(IIf(([MAGACIN.SIFRA]='0992201'),[MAGACIN.KOL],Null)) AS Addblue, ([Addblue]/[Gorivo])100 AS Addbluegor, Sum(IIf(([MAGACIN.SIFRA]='0999001'),[MAGACIN.KOL],Null)) AS Antifriz, NOVI.DATAP, NOVI.DATAS, IIf(([NOVI].[KM]<=([NOVI].[KMS1][NOVI].[KMS2])),'ZA SERVIS',(IIf(([NOVI].[KM]<=([NOVI].[KMP1][NOVI].[KMP2])),'PROVERKA',''))) AS Zabeleska FROM (NALOG1 INNER JOIN NOVI ON NALOG1.GBRV = NOVI.GBR) INNER JOIN MAGACIN ON NOVI.GBR = MAGACIN.GBR where (((NOVI.GBR)>=? And (NOVI.GBR)<=?) AND ( ((NOVI.AB)=?) OR ((NOVI.AB)=?) ) AND ((NALOG1.DATA)<=? and (NALOG1.DATA)>=?) ) GROUP BY NOVI.GBR, NOVI.AB, NALOG1.DATA, ([Addblue]/[Gorivo])100, NOVI.DATAP, NOVI.DATAS, IIf(([NOVI].[KM]<=([NOVI].[KMS1][NOVI].[KMS2])),'ZA SERVIS',(IIf(([NOVI].[KM]<=([NOVI].[KMP1][NOVI].[KMP2])),'PROVERKA','')))";
    Edited by: Don Williams on Nov 23, 2011 7:22 AM

    and the code after that:
    command.CommandText = comstring;
                if (radioButton4.Checked == true)
                    if (textBox1.Text == "")
                        button1.Enabled = false;
                        MessageBox.Show("Внесете гаражен број", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        textBox1.Focus();
                        command.Parameters.AddWithValue("@gbr1", textBox1.Text);
                        command.Parameters.AddWithValue("@gbr2", textBox1.Text);               
                else if (radioButton5.Checked == true)
                    command.Parameters.AddWithValue("@gbr1", "1001");
                    command.Parameters.AddWithValue("@gbr2", "1080");
                    button1.Enabled = true;
                    textBox1.Text = "";
                else if (radioButton6.Checked == true)
                    command.Parameters.AddWithValue("@gbr1", "1081");
                    command.Parameters.AddWithValue("@gbr2", "1149");
                    button1.Enabled = true;
                    textBox1.Text = "";
                else if (radioButton7.Checked == true)
                    command.Parameters.AddWithValue("@gbr1", "1001");
                    command.Parameters.AddWithValue("@gbr2", "1149");
                    button1.Enabled = true;
                    textBox1.Text = "";
                else
                    MessageBox.Show("Немате избрано гаражен број или тип на автобус.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    button1.Enabled = false;
                if (checkBox1.Checked == true && checkBox2.Checked==true)
                    command.Parameters.AddWithValue("@ab1", "AK");
                    command.Parameters.AddWithValue("@ab2", "GP");
                    button1.Enabled = true;
                else if ((checkBox1.Checked == true) && (checkBox2.Checked == false))
                    command.Parameters.AddWithValue("@ab1", "AK");
                    command.Parameters.AddWithValue("@ab2", "AK");
                    button1.Enabled = true;
                else if (checkBox2.Checked == true )
                    command.Parameters.AddWithValue("@ab1", "GP");
                    command.Parameters.AddWithValue("@ab2", "GP");
                    button1.Enabled = true;
                else
                    MessageBox.Show("Немате избрано автобаза.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    command.Parameters.AddWithValue("@ab1", "AK");
                    command.Parameters.AddWithValue("@ab2", "GP");
                    button1.Enabled = false;
                command.Parameters.AddWithValue("@data1", dateTimePicker1.Value.Date);
                command.Parameters.AddWithValue("@data2", dateTimePicker2.Value.Date);
                 DataSet2 dataSet2=new DataSet2();    
                 OleDbDataAdapter oleDBDataAdapter1 = new OleDbDataAdapter();
                oleDBDataAdapter1.SelectCommand=command;
                    dataSet2.Clear();
                    oleDBDataAdapter1.Fill(dataSet2,"Tabela");
                    if (dataSet2.Tabela.Count == 0)
                        MessageBox.Show("Nema podatoci za toj period");
                    ReportDocument cryRpt = new ReportDocument();
                    cryRpt.Load(@"C:\Potrosuvacka-Pregledi\Potrosuvacka-Pregledi\CrystalReport6.rpt");
                cryRpt.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.Landscape;
                    cryRpt.SetDataSource(dataSet2);
                    crystalReportViewer1.DisplayToolbar=true;
                crystalReportViewer1.ReportSource = cryRpt;                      
                crystalReportViewer1.Refresh();
                    conn.Close();
    I get an error:
    "No value given for one or more required parameters."
    Could anybody help me please?
    Thank you in advance.
    Edited by: nelpet06 on Nov 23, 2011 9:30 AM

  • BAPI_SHIPMENT_COST_ESTIMATE  What are the min. required parameters to pass

    Hi All,
       I would like to know what are the minimum required  parameters to pass in BAPI BAPI_SHIPMENT_COST_ESTIMATE. And from which tables I can pull out that information to pass to this BAPI.
    Does this BAPI creates a shipment cost document in the system or just shows the estimate of the shipment cost.
    If it creates a shipment cost document then its good for me. but if it shows us just the estimate does it shows estimate for each delivery (total Qty, Unit Price & Total Price). 
    What will be the item category it will pick. I like to see it picks  basic price related item category.
    Does any body has used this bapi ?
    Appreciate your fast reply.
    Regards,
    Leona

    Hello, I´ll try to answer your question:
    1. is it possible to run the bapi without actual shipment number and the shipment ( & cost ) will be created in simulation mode ?
    I think that the bapi only run with external shipment number and only run in simulation mode, that´s mean the bapi can not create any shipment and cost document, if you want to create a shipment use BAPI_SHIPMENT_CREATE, to create a cost document I don´t know if there is a bapi but you can create easily with transaction VI01 (batch-input)
    The shipment number that you use to call the bapi is a ficticious number always between external range indicated in field V_TVTK-NUMKE with the shipment type that you use.
    2. is it possible to perform estimation to inbound shipments ?
    Yes it´s depend on the shipment type. In standard system 0010 is used
    In the example that I have I use an inbound delivery
    3. does the bapi creates shipment and scd in simulate mode like transaction VICI ( from sales order ) ?
    I think that the bapi only run in simulation mode and it can not create any document
    4. is there any problem if i customized my scd item categories to open manualy ?
    I think that the bapi needs to work properly automatic iten categories
    can you please post sample code ( or any other doc's ) for this bapi ?
    I send you a document with an example if you give me an e-mail because I don´t know how to attach a word document
    Best regards,

  • BPC unable to merge cells and fill the required colour in EVDRE report

    Hi BPC folks,
    We are developing an EVDRE report.In that we are trying to merge some cells and fill the required colour.
    after saving the BPC excel we are clicking on "expand all" button.It is going back to it's original format.ie without merging and keeping it's original colour.
    Please help us out on this issue.Answers will be appreciated.
    Thanks and Regards,
    Sudhakar.

    Hi,
    Once you expand your template, the manual formatting done on the template will be gone. You need to use formatrange in your EVDRE.
    Hope this helps.

  • Determine the required parameters in a VM/AssemblyInstance creation...

    Oracle Enterprise Manager Cloud Control's Cloud API documentation [12.1.0.2 EM with 12.1.0.4 Cloud Service Portal Plugin|http://docs.oracle.com/cd/E24628_01/doc.121/e28814/cloud_part5.htm#sthref1171] illustrates some examples on creating VM and Assembly service instances via POSTing to either a Zone or a ServiceTemplate resource.
    However, the documentation doesn't exactly specify nor indicate what are the attributes and/or "params" that ought to be included in such as request.
    In the current interpretation of service instance creation requests (thus, POST content-type of a service instance with the intention to create a new instance of a service), we have denoted it as a "CREATE" or "DEPLOYMENT" to better synchronized with current IT nomenclature.
    As part of the introspective nature of the Cloud API, the primary attributes/params of a "DEPLOYMENT" requests are included as part of the application/oracle.com.cloud.common.ServiceTemplate resource, which means each resource type extending the ServiceTemplate may choose to populate "deployment_params" attribute. Furthermore, for ServiceTemplate in the IaaS family (application/oracle.com.cloud.common.VMTemplate and application/oracle.com.cloud.common.AssemblyTemplate), we will always populate the "deployment_params" attribute.
    Here are some examples: (all paths are relative to the EM end point)
    <h4>Get the list of IaaS Service Templates to introspect</h4>
    GET /em/cloud/service_family_type/iaas?service_templates
    "service_templates" : {
    "media_type" : "application/oracle.com.cloud.common.ServiceTemplate+json" ,
    "total" : "5" ,
    "elements" :
    "uri" : "/em/cloud/iaas/servicetemplate/vm/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3ATemplate%3AD7B887836B230A4BE0431780578C7C12%3A0.1" ,
    "name" : "saved template from ssa" ,
    "media_type" : "application/oracle.com.cloud.common.VMTemplate+json" ,
    "type" : "Template"
    "uri" : "/em/cloud/iaas/servicetemplate/vm/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3ATemplate%3AD766060CF1D07533E0431780578CA840%3A0.1" ,
    "name" : "Template1" ,
    "media_type" : "application/oracle.com.cloud.common.VMTemplate+json" ,
    "type" : "Template"
    "uri" : "/em/cloud/iaas/servicetemplate/vm/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3ATemplate%3AD7BDEC41C65F7C74E0431980578C221C%3A0.1" ,
    "name" : "aaa" ,
    "media_type" : "application/oracle.com.cloud.common.VMTemplate+json" ,
    "type" : "Template"
    "uri" : "/em/cloud/iaas/servicetemplate/assembly/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3AAssembly%3AD766B6DD3BDE0F7BE0431780578CA8D8%3A0.1" ,
    "name" : "Env Assembly" ,
    "media_type" : "application/oracle.com.cloud.common.AssemblyTemplate+json" ,
    "type" : "Assembly"
    "uri" : "/em/cloud/iaas/servicetemplate/assembly/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3AAssembly%3AD766898D34A66DCAE0431980578C55B6%3A0.1" ,
    "name" : "sidb_asm" ,
    "media_type" : "application/oracle.com.cloud.common.AssemblyTemplate+json" ,
    "type" : "Assembly"
    <h4>Select a VMTemplate to introspect the deployment parameters</h4>
    GET /em/cloud/iaas/servicetemplate/vm/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3ATemplate%3AD7B887836B230A4BE0431780578C7C12%3A0.1?deployment_params
    "deployment_params" :
    "name" : "zone" ,
    "description" : "'zone' attribute is the URI of the zone that the 'application/oracle.com.cloud.common.VM' resource is to be created in" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "based_on" ,
    "description" : "'based_on' attribute is the URI of the service template or format String of the originated source which the deployed 'application/oracle.com.cloud.common.VM' resource is to be followed" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "cpu" ,
    "description" : "The information that determined how much 'CPU' is to be allocated to the deployed resource" ,
    "type" : "LIST" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "memory" ,
    "description" : "The information that determined how much 'MEMORY' is to be allocated to the deployed resource" ,
    "type" : "NUMBER" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "disks" ,
    "description" : "The list of disks to be included in the deployed resource" ,
    "type" : "LIST" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.domain_type" ,
    "description" : "The domain type of the Virtual Machine" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.network_profile" ,
    "description" : "The identifier of the network profile to be used for the network instances of the Virtual Machine" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.server_prefix" ,
    "description" : "The server prefix to be specified for the Virtual Machine" ,
    "type" : "STRING" ,
    "require" : "true" ,
    "sensitive" : "false"
    "name" : "params.server_size" ,
    "description" : "The name of the server instance size" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.request_name" ,
    "description" : "The request name to be tracked for the Virtual Machine creation" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.request_description" ,
    "description" : "The request description to be tracked for the Virtual Machine creation" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.vnc_password" ,
    "description" : "The VNC password for the Virtual Machine" ,
    "type" : "STRING" ,
    "require" : "true" ,
    "sensitive" : "true"
    "name" : "params.root_password" ,
    "description" : "The Root password for the Virtual Machine" ,
    "type" : "STRING" ,
    "require" : "true" ,
    "sensitive" : "true"
    "name" : "params.start_vm" ,
    "description" : "Whether or not the Virtual Machine should be started after creation" ,
    "type" : "STRING" ,
    "defaultValue" : "YES" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.ha_enabled" ,
    "description" : "Whether or not the Virtual Machine should be HA enabled" ,
    "type" : "STRING" ,
    "defaultValue" : "NO" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.disks_overwrite" ,
    "description" : "Whether or not the default Virtual Machine disks should be overwritten" ,
    "type" : "STRING" ,
    "defaultValue" : "NO" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.networks" ,
    "description" : "Whether or not the default Virtual Machine disks should be overwritten" ,
    "type" : "LIST" ,
    "require" : "false" ,
    "sensitive" : "false"
    <h4>Similarly, for Assembly Template </h4>
    GET /em/cloud/iaas/servicetemplate/assembly/oracle%3AdefaultService%3Aem%3Aprovisioning%3A1%3Acmp%3AVirtualization%3AAssembly%3AD766B6DD3BDE0F7BE0431780578CA8D8%3A0.1?deployment_params
    "deployment_params" :
    "name" : "zone" ,
    "description" : "'zone' attribute is the URI of the zone that the 'application/oracle.com.cloud.common.AssemblyInstance' resource is to be created in" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "based_on" ,
    "description" : "'based_on' attribute is the URI of the service template or format String of the originated source which the deployed 'application/oracle.com.cloud.common.AssemblyInstance' resource is to be followed" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "deployment_plan" ,
    "description" : "'deployment_plan' attribute describes the configuration of which the deployed 'application/oracle.com.cloud.common.AssemblyInstance' resource is to be used in the XML deployment plan format" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    One could think of some ways to use this information in its integration. In particular, when Enterprise Manager were upgraded to a newer version, additional optional parameters may be added or some existing parameters may no longer be needed. These changes may be automatically discovered via the above introspection.
    For example, a client may cache the deployment parameters and before POSTing to create a new service instance, compare the API's deployment parameters with the cached copy to determine whether there are additional "require"="true" parameters. Even though Enterprise Manager will include missing required parameters/attributes in its 400 response, by introspecting deployment_parameters, a client can determine, a priori, what may be needed.

    The following additional parameters may be specified (though all of them are optional) as part of the Assembly Instance creation request:
    "name" : "params.assembly_instance_name" ,
    "description" : "The name of the assembly instance" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.request_name" ,
    "description" : "The request name to be tracked for the Assembly Instance creation" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.request_description" ,
    "description" : "The request description to be tracked for the Assembly Instance creation" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.vnc_password" ,
    "description" : "The VNC password for all the Virtual Machines in the assembly" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "true"
    "name" : "params.root_password" ,
    "description" : "The Root password for all the Virtual Machines in the assembly" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "true"
    "name" : "params.server_size" ,
    "description" : "The name of the server instance size for all the Virtual Machines in the assembly" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    "name" : "params.network_profile" ,
    "description" : "The id of the network profile for all the networks in all the Virtual Machines in the assembly" ,
    "type" : "STRING" ,
    "require" : "false" ,
    "sensitive" : "false"
    For example,
    "params":{
    "assembly_instance_name":"QA Assembly",
    "request_name":"Quarterly Testing 1",
    "request_description":"Here is the request to create an QA Assembly for Quarterly testing",
    "vnc_password":"secret",
    "root_password":"secret",
    "server_size":"Small",
    "network_profile":"oracle:defaultService:em:provisioning:1:netConfig:D7C43DB9969841F5E0431980578CB5C1"
    When both "deployment_plan" and "params" are specified during Assembly Instance creation request, the values in the "params" attribute would take precedent. For example,if "deployment_plan" contained various server size specifications for the assembly while "params.server_size" were specified to be "Small", all Virtual Machines created would be of size "Small" instead of the values specified in the "deployment_plan".

  • Fill all required fields SAPMF02K 0111 SZA1_D0100-TITLE_MEDI

    Hi all
    Scenario MDM - Xi - R3
    We're sending the idoc from mdm to xi, but we get an error in the R3 side about: Fill all required fields SAPMF02K 0111 SZA1_D0100-TITLE_MEDI.
    I read some notes and i have tried to change some things about MSGFN value 009, 005 but it doesn't work... Can anybody help me??
    The XML looks like:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <CREMDM04>
    - <IDOC BEGIN="1">
    - <E1LFA1M SEGMENT="1">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <ANRED>/</ANRED>
      <BRSCH>SEJ</BRSCH>
      <DATLT>/</DATLT>
      <DTAWS>/</DTAWS>
      <ERDAT>/</ERDAT>
      <ERNAM>/</ERNAM>
      <KTOKK>VADN</KTOKK>
      <KUNNR>/</KUNNR>
      <LAND1>/</LAND1>
      <LNRZA>/</LNRZA>
      <NAME1>/</NAME1>
      <NAME2>/</NAME2>
      <NAME3>/</NAME3>
      <NAME4>/</NAME4>
      <ORT01>/</ORT01>
      <ORT02>/</ORT02>
      <PFACH>/</PFACH>
      <PSTL2>/</PSTL2>
      <PSTLZ>/</PSTLZ>
      <REGIO>/</REGIO>
      <SORTL>/</SORTL>
      <SPRAS>/</SPRAS>
      <STCD1>BBQ030122SEA</STCD1>
      <STKZU>X</STKZU>
      <STRAS>/</STRAS>
      <TELBX>/</TELBX>
      <TELF1>/</TELF1>
      <TELF2>/</TELF2>
      <TELFX>/</TELFX>
      <TELTX>/</TELTX>
      <TELX1>/</TELX1>
      <XCPDK>/</XCPDK>
      <VBUND>/</VBUND>
      <FISKN>/</FISKN>
      <ADRNR>/</ADRNR>
      <MCOD1>/</MCOD1>
      <MCOD2>/</MCOD2>
      <MCOD3>/</MCOD3>
      <REVDB>/</REVDB>
      <KTOCK>/</KTOCK>
      <PFORT>/</PFORT>
      <WERKS>/</WERKS>
      <LTSNA>/</LTSNA>
      <WERKR>/</WERKR>
      <PLKAL>/</PLKAL>
      <DUEFL>/</DUEFL>
      <TXJCD>/</TXJCD>
      <FITYP>03</FITYP>
      <STCDT>04</STCDT>
      <ACTSS>PG</ACTSS>
    - <E1LFA1A SEGMENT="">
      <J_1KFTIND>Personas Morales</J_1KFTIND>
      </E1LFA1A>
    - <E1ADRMAS SEGMENT="1">
      <OBJ_TYPE>LFA1</OBJ_TYPE>
      <OBJ_ID>0005001282</OBJ_ID>
      <CONTEXT>0001</CONTEXT>
    - <E1BPAD1VL SEGMENT="1">
      <ADDR_VERS>/</ADDR_VERS>
      <FROM_DATE>/</FROM_DATE>
      <TO_DATE>/</TO_DATE>
      <TITLE>0003</TITLE>
      <NAME>BLACK BELT QUALITY CORPORATION SA D</NAME>
      <NAME_2>E CV</NAME_2>
      <CONV_NAME>/</CONV_NAME>
      <C_O_NAME>/</C_O_NAME>
      <CITY>D.F.</CITY>
      <DISTRICT>/</DISTRICT>
      <CITY_NO>/</CITY_NO>
      <DISTRCT_NO>/</DISTRCT_NO>
      <CHCKSTATUS>/</CHCKSTATUS>
      <REGIOGROUP>/</REGIOGROUP>
      <POSTL_COD1>07369</POSTL_COD1>
      <POSTL_COD2>/</POSTL_COD2>
      <POSTL_COD3>/</POSTL_COD3>
      <PCODE1_EXT>/</PCODE1_EXT>
      <PCODE2_EXT>/</PCODE2_EXT>
      <PCODE3_EXT>/</PCODE3_EXT>
      <PO_BOX>/</PO_BOX>
      <PO_W_O_NO>/</PO_W_O_NO>
      <PO_BOX_CIT>/</PO_BOX_CIT>
      <PBOXCIT_NO>/</PBOXCIT_NO>
      <PO_BOX_REG>/</PO_BOX_REG>
      <POBOX_CTRY>/</POBOX_CTRY>
      <PO_CTRYISO>/</PO_CTRYISO>
      <DELIV_DIS>/</DELIV_DIS>
      <TRANSPZONE>/</TRANSPZONE>
      <STREET>AVE. RESIDENCIAL GUSTAVO A. MADERO</STREET>
      <STREET_NO>/</STREET_NO>
      <STR_ABBR>/</STR_ABBR>
      <HOUSE_NO3>/</HOUSE_NO3>
      <STR_SUPPL1>/</STR_SUPPL1>
      <STR_SUPPL2>/</STR_SUPPL2>
      <STR_SUPPL3>/</STR_SUPPL3>
      <LOCATION>/</LOCATION>
      <BUILDING>/</BUILDING>
      <FLOOR>/</FLOOR>
      <ROOM_NO>/</ROOM_NO>
      <COUNTRY>MX</COUNTRY>
      <COUNTRYISO>/</COUNTRYISO>
      <LANGU>S</LANGU>
      <LANGU_ISO>/</LANGU_ISO>
      <REGION>DF</REGION>
      <SORT1>-</SORT1>
      <SORT2>HONORARIOS</SORT2>
      <EXTENS_1>/</EXTENS_1>
      <EXTENS_2>/</EXTENS_2>
      <TIME_ZONE>/</TIME_ZONE>
      <TAXJURCODE>/</TAXJURCODE>
    - <E1BPAD1VL1 SEGMENT="1">
      <ADDRESS_ID>/</ADDRESS_ID>
      <LANGU_CR>/</LANGU_CR>
      <LANGUCRISO>/</LANGUCRISO>
      <ADDR_GROUP>/</ADDR_GROUP>
      <HOME_CITY>/</HOME_CITY>
      <HOMECITYNO>/</HOMECITYNO>
      <DONT_USE_S>/</DONT_USE_S>
      <DONT_USE_P>/</DONT_USE_P>
      </E1BPAD1VL1>
      </E1BPAD1VL>
    - <E1BPADTEL SEGMENT="1">
      <COUNTRY>MX</COUNTRY>
      <TELEPHONE>(55)57597532</TELEPHONE>
      <CALLER_NO>/</CALLER_NO>
      <STD_RECIP>/</STD_RECIP>
      <HOME_FLAG>/</HOME_FLAG>
      <ERRORFLAG>/</ERRORFLAG>
      <FLG_NOUSE>/</FLG_NOUSE>
      </E1BPADTEL>
      <E1BPAD_REM SEGMENT="" />
      </E1ADRMAS>
    - <E1LFB1M SEGMENT="">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <BUKRS>102</BUKRS>
      <AKONT>0021051001</AKONT>
      <ZTERM>Z000</ZTERM>
      <FDGRV>A1</FDGRV>
      <REPRF>X</REPRF>
      <HBKID>BNMX</HBKID>
      <ALTKN>62058</ALTKN>
    - <E1LFBWM SEGMENT="">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <BUKRS>102</BUKRS>
      <WITHT>RP</WITHT>
      <WT_SUBJCT>X</WT_SUBJCT>
      <WT_WITHCD>HO</WT_WITHCD>
      </E1LFBWM>
    - <E1LFBWM SEGMENT="">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <BUKRS>102</BUKRS>
      <WITHT>IV</WITHT>
      <WT_SUBJCT>X</WT_SUBJCT>
      <WT_WITHCD>HI</WT_WITHCD>
      </E1LFBWM>
      </E1LFB1M>
    - <E1LFM1M SEGMENT="">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <EKORG>ABMX</EKORG>
      <WAERS>MXN</WAERS>
      <MINBW>0</MINBW>
      <ZTERM>Z000</ZTERM>
      <WEBRE>X</WEBRE>
      <KZABS>X</KZABS>
      <XERSY>X</XERSY>
    - <E1WYT3M SEGMENT="">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <EKORG>ABMX</EKORG>
      <PARVW>PR</PARVW>
      </E1WYT3M>
      </E1LFM1M>
    - <E1LFBKM SEGMENT="1">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      <BANKS>MX</BANKS>
      <BANKL>002</BANKL>
      <BANKN>002180027876216466</BANKN>
      <PROVZ>/</PROVZ>
      <STRAS>/</STRAS>
      <ORT01>/</ORT01>
      <XPGRO>/</XPGRO>
      <PSKTO>/</PSKTO>
      <BKREF>0000002787621646</BKREF>
      <PROV2>/</PROV2>
      <KOINH>BLACK BELT QUALITY CORPORATION SA DE CV</KOINH>
      <KOVON>/</KOVON>
      <KOBIS>/</KOBIS>
      </E1LFBKM>
    - <E1LFASM SEGMENT="1">
      <MSGFN>005</MSGFN>
      <LIFNR>0005001282</LIFNR>
      </E1LFASM>
      </E1LFA1M>
      </IDOC>
      </CREMDM04>

    Hi Jose,
    is there any mapping in between?
    I had the same error message when I mapped to IDoc and didn't fill some header fields/ attributes...
    //Karsten

  • I want to create a Apple ID without filling the billing information

    i want to create an apple id without filling the billing adrees but what i use to buy apps would be itunes gift card

    If you follow these instructions, you can create a new Apple ID without a bank card.
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card -
    http://support.apple.com/kb/HT2534

  • HT2731 how to sign in with apple store without filling payment information

    how to sign in apple store without filling payment information

    There are instructions on this page for how to create an account without giving a credit card number : http://support.apple.com/kb/HT2534 i.e. select a free app and create an account when 'buying' it.

  • Error :Required parameters missing when calling up module MARC_SINGLE_READ

    Dear all,
    When trying to do the production order confirmation i am getting the error "Required parameters missing when calling up module MARC_SINGLE_READ".How can this error be solved?
    Thanks,
    Kumar

    Hi
    Please activate the corresponding programs again. I think you got a short dump for this error, if yes, you can see the program's name there.
    Best Regards.
    Leon.

  • "Wrong shadow" on a drawn box without filling in titlke editor?

    Hi @all,
    I'm not sure, if it is a bug or I am too stupid
    I use the title editor to write some text and a box (without filling color) like a border. This part is used as an overlay-track in front of an image or a video. I think, it is simple
    Now, when I activate "shadow" on the box item in the title, the shadow is filled completely, not only the border. In fact, when I configure 50% transparency for the shadow, the picture behind the box is much darker as before.
    My understanding is, that a "not filled" box do not change the background ...
    Can somebody else confirm that ?
    Thanks !
    Mirko

    If you set it to Ghost it will present the full shadow
    Set box to illiminate, add an outer stroke and set it to opacity 0.
    Now check shadow.
    You can also just draw a box with outerstroke and add a drop shadow in the timeline.

  • How to sign in into apple id without filling credit card details?

    how to sign in into apple id without filling credit card details?
    i want to download free apps from app store,but when i sign it is asking me to review my apple id, when i review it ,its asking me to fill for credit card ,but i dont want to fill,
    suggest me idea!!

    Welcome to the Support Communities. See if these Apple support articles help:
    Why can’t I select None when I edit my Apple ID payment information?
    Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    ...Found by searching Apple's Knowledge Base HERE.

  • TS3479 I can't use air play mirroring because my mac 21.5-inch is a  Mid 2010... is there any way I can full fill the requirements and being able to use it? an upgrade or something??

    I can't use air play mirroring with the new upgrade on my imac (mountain lion) because my mac 21.5-inch is a  Mid 2010... is there any way I can full fill the requirements and be able to use it? an upgrade or something??

    Welcome to Apple Support Communities
    http://www.airparrot.com

  • I can't use air play mirroring because my mac 21.5-inch is a  Mid 2010... is there any way I can full fill the requirements and being able to use it? an upgrade or something??

    I can't use air play mirroring because my mac 21.5-inch is a  Mid 2010... is there any way I can full fill the requirements and being able to use it? an upgrade or something??

    No. There is a 3rd party software, Airparrot.

  • HT4009 How can I install free games without filling up the credit card details

    How can I install free games without filling up credit card detaills.

    http://support.apple.com/kb/HT2534

Maybe you are looking for